需要在并行执行模式下只执行一次setup方法

时间:2017-07-28 10:27:51

标签: java testng

我使用testng进行了并行测试用例执行设置,但我只需要执行一次安装方法。

BeforeClass,BeforeMethod也会针对各个线程执行。 但我需要在所有线程之前执行一次方法。

如何通过TestNG设置实现这一目标?

package com.howtodoinjava.parallelism;

import org.testng.annotations.AfterClass;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Parameters;
import org.testng.annotations.Test;

public class ParallelSuiteTest 
{
    String testName = "";

    @BeforeTest
    @Parameters({ "test-name" })
    public void beforeTest(String testName) {
        this.testName = testName;
        long id = Thread.currentThread().getId();
        System.out.println("Before test " + testName + ". Thread id is: " + id);
    }

    @BeforeClass
    public void beforeClass() {
        long id = Thread.currentThread().getId();
        System.out.println("Before test-class " + testName + ". Thread id is: "
                + id);
    }

    @Test
    public void testMethodOne() {
        long id = Thread.currentThread().getId();
        System.out.println("Sample test-method " + testName
                + ". Thread id is: " + id);
    }

    @AfterClass
    public void afterClass() {
        long id = Thread.currentThread().getId();
        System.out.println("After test-method  " + testName
                + ". Thread id is: " + id);
    }

    @AfterTest
    public void afterTest() {
        long id = Thread.currentThread().getId();
        System.out.println("After test  " + testName + ". Thread id is: " + id);
    }
}

的testng.xml

<suite name="Test-class Suite" parallel="tests" thread-count="2">
    <test name="Test-class test 1">
        <parameter name="test-name" value="test-method One" />
        <classes>
            <class name="com.howtodoinjava.parallelism.ParallelSuiteTest" />
        </classes>
    </test>
    <test name="Test-class test 2">
        <parameter name="test-name" value="test-method One" />
        <classes>
            <class name="com.howtodoinjava.parallelism.ParallelSuiteTest" />
        </classes>
    </test>
</suite>

1 个答案:

答案 0 :(得分:1)

以下示例应该解释我的建议。

package com.rationaleemotions.stackoverflow.qn45371087;

import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

public class ParallelSuiteTest {
    private static final Object lock = new Object();
    private static boolean initialised = false;

    @BeforeClass
    public void beforeClass() {
        synchronized (lock) {
            if (!initialised) {
                init();
                initialised = true;
            }
        }
    }

    private void init() {
        System.err.println("Initialisation done");
    }

    @Test
    public void testMethodOne() {
        System.err.println("This is a test method running on [" + Thread.currentThread().getId() + "]");
    }

}

Suite xml文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="45371087_Suite" verbose="2" parallel="tests" thread-count="10">
    <test name="45371087_Tests_1">
        <classes>
            <class name="com.rationaleemotions.stackoverflow.qn45371087.ParallelSuiteTest"/>
        </classes>
    </test>
    <test name="45371087_Tests_2">
        <classes>
            <class name="com.rationaleemotions.stackoverflow.qn45371087.ParallelSuiteTest"/>
        </classes>
    </test>
</suite>

这是输出:

...
... TestNG 6.12 by Cédric Beust (cedric@beust.com)
...
Initialisation done
This is a test method running on [12]
This is a test method running on [11]

===============================================
45371087_Suite
Total tests run: 2, Failures: 0, Skips: 0
===============================================