Add basic test for Forge run config validation

This commit is contained in:
Juuz
2023-05-30 19:31:01 +03:00
parent fd46c13778
commit 4eadfb2d19

View File

@@ -0,0 +1,71 @@
/*
* This file is part of fabric-loom, licensed under the MIT License (MIT).
*
* Copyright (c) 2023 FabricMC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package net.fabricmc.loom.test.integration.forge
import net.fabricmc.loom.test.util.GradleProjectTestTrait
import spock.lang.Specification
import spock.lang.Unroll
import static net.fabricmc.loom.test.LoomTestConstants.DEFAULT_GRADLE
import static org.gradle.testkit.runner.TaskOutcome.SUCCESS
class ForgeRunConfigTest extends Specification implements GradleProjectTestTrait {
@Unroll
def "verify run configs #mcVersion #forgeVersion"() {
setup:
def gradle = gradleProject(project: "forge/simple", version: DEFAULT_GRADLE)
gradle.buildGradle.text = gradle.buildGradle.text.replace('@MCVERSION@', mcVersion)
.replace('@FORGEVERSION@', forgeVersion)
.replace('@MAPPINGS@', 'loom.officialMojangMappings()')
gradle.buildGradle << """
tasks.register('verifyRunConfigs') {
doLast {
loom.runs.each {
it.evaluateNow()
def expected = $mainClass
def found = it.mainClass.get()
if (expected != found) {
throw new AssertionError("\$it.name: found main class \$found, expected \$expected")
}
}
}
}
""".stripIndent()
when:
def result = gradle.run(task: "verifyRunConfigs")
then:
result.task(":verifyRunConfigs").outcome == SUCCESS
where:
mcVersion | forgeVersion | mainClass
'1.19.4' | "45.0.43" | 'cpw.mods.bootstraplauncher.BootstrapLauncher'
'1.18.1' | "39.0.63" | 'cpw.mods.bootstraplauncher.BootstrapLauncher'
'1.17.1' | "37.0.67" | 'cpw.mods.bootstraplauncher.BootstrapLauncher'
'1.16.5' | "36.2.4" | 'net.minecraftforge.userdev.LaunchTesting'
'1.14.4' | "28.2.23" | 'net.minecraftforge.userdev.LaunchTesting'
}
}