
org.gradle.performance.JavaTestExecutionPerformanceTest.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.performance
import spock.lang.Unroll
class JavaTestExecutionPerformanceTest extends AbstractCrossVersionPerformanceTest {
@Unroll("#description build for #template")
def "cleanTest test performance non regression test"() {
given:
runner.testId = "$size $description with old Java plugin"
runner.testProject = template
runner.tasksToRun = gradleTasks
runner.targetVersions = targetVersions
runner.useDaemon = true
runner.gradleOpts = ['-Xms1G', '-Xmx1G']
when:
def result = runner.run()
then:
result.assertCurrentVersionHasNotRegressed()
where:
template | size | description | gradleTasks | targetVersions
// TODO: Restore 'last' when sufficent performance gains are made.
'mediumWithJUnit' | 'medium' | 'runs tests only' | ['cleanTest', 'test'] | ['3.1-20160818000032+0000']
'mediumWithJUnit' | 'medium' | 'clean build and run tests' | ['clean', 'test'] | ['3.1-20160818000032+0000']
}
@Unroll("#description build for #template")
def "incremental test build performance non regression test"() {
given:
runner.testId = "$size $description with old Java plugin"
runner.testProject = template
runner.tasksToRun = gradleTasks
runner.targetVersions = ['2.11', 'last']
runner.useDaemon = true
runner.gradleOpts = ['-Xms1G', '-Xmx1G']
runner.buildExperimentListener = new JavaOldModelSourceFileUpdater(10)
when:
def result = runner.run()
then:
result.assertCurrentVersionHasNotRegressed()
where:
template | size | description | gradleTasks
'mediumWithJUnit' | 'medium' | 'incremental test build' | ['test']
'largeWithJUnit' | 'large' | 'incremental test build' | ['test']
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy