1

我正在尝试排除我为需要更新且我不希望运行的 Selenium 测试设置的“隔离”文件夹。我知道一种解决方案是为这些类中的测试设置和分配测试组,但考虑到将在这里进行的测试的庞大规模和数量,我宁愿使用 Ant 样式的过滤器。

这是我的build.gradle文件的片段:

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'

repositories {
    mavenCentral()
}

dependencies {
    compile "org.seleniumhq.selenium:selenium-java:2.35.0"
    compile "org.testng:testng:5.14.10"
    testCompile('org.uncommons:reportng:1.1.2') {
        exclude group: 'org.testng'
    }
    testCompile "junit:junit:4.8.2"
    compile "com.jayway.restassured:rest-assured:1.8.1"
}

//initialize thread count variable for parallel testing and default to 1
def threadCount = System.getProperty("MAXTHREADS", "1")

tasks.withType(Test) {
    maxParallelForks = 1
    forkEvery = 1000
    ignoreFailures = false

    // Pass all system properties to the tests
    systemProperties = System.getProperties()

    // Makes the standard streams (err and out) visible at console when running tests
    testLogging.showStandardStreams = true

    exclude '**/tasks/'
    exclude '**/disabled/'

    classpath += configurations.testCompile
}

task firefox(type: Test) {
    maxParallelForks = Integer.valueOf(threadCount) //default is 1 if not specified
    testLogging.events "started"
    testLogging {
        events "started", "passed", "skipped", "failed", "standardOut", "standardError"
        exceptionFormat "full" // default is "short"
    }
    useTestNG() {
        excludeGroups 'chrome'
        useDefaultListeners = false
        listeners << 'org.uncommons.reportng.HTMLReporter'
        listeners << 'org.uncommons.reportng.JUnitXMLReporter'
        listeners << 'com.xmatters.testng.Listener'
    }

    testResultsDir = file("${buildDir}/test-results/firefox")
    testReportDir = file("${reporting.baseDir}/firefox")

    systemProperties.BROWSER = System.getProperty('BROWSER', 'firefox')

    exclude '**/selenium/'
    exclude '**/setupscripts/'
}

task chrome(type: Test) {
    maxParallelForks = Integer.valueOf(threadCount) //default is 1 if not specified
    testLogging.events "started"
    useTestNG() {
        useDefaultListeners = false;
        listeners << 'org.uncommons.reportng.HTMLReporter'
        listeners << 'org.uncommons.reportng.JUnitXMLReporter'
        listeners << 'com.xmatters.testng.Listener'
    }

    testResultsDir = file("${buildDir}/test-results/chrome")
    testReportDir = file("${reporting.baseDir}/chrome")

    systemProperties.BROWSER = System.getProperty('BROWSER', 'chrome')

    exclude '**/selenium/'
    exclude '**/setupscripts/'
}

在第 34 行你可以看到exclude '**/disabled/'我添加了。此文件夹比根文件夹高几个级别。前面的 like withexclude '**/tasks/'已经在构建文件中,并且似乎可以在类似的目录结构中正常工作。

当我运行构建时,/disabled/ 文件夹中的测试仍在运行。我在这里做错了吗?我假设使用该语法,一个名为“排除”的目录将被忽略scanForTestClasses,默认情况下为 true。知道这里有什么吗?

我在 Gradle 测试报告中注意到的另一件事是,报告中列出的包名称是default-package针对未“排除”的排除测试,而其他要运行的测试列出了正确的包名称。Java 文件中的包名称与它们的文件夹结构正确匹配,所以我不确定为什么会这样报告。我检查了重复、错别字等,但没有得到任何结果。

如果有人能对此有所了解,那就太好了,因为运行这些不完整/损坏的测试类会导致失败,在更新这些测试之前应该忽略这些失败。

这些测试是在我们在 Linux 上运行的测试 CI (Jenkins) 盒子上使用 Gradle 包装器生成的 bash 脚本运行的。

4

1 回答 1

1

看起来排除模式应用于文件的相对路径(即相对于您的根文件夹),这解释了为什么它适用于根文件夹下的文件夹。

使用 excludeSpec (请参阅Gradle 测试任务 DSL)应该可以正常工作:

exclude { it.file.canonicalPath.contains('/disabled/')}

当然,根据你的操作系统注意/ vs \。

于 2014-05-06T12:36:43.320 回答