通过指向外部jar以编程方式运行testNG会抛出ClassNotFoundException

时间:2017-11-07 11:37:29

标签: java testng classloader

我想通过指向包含测试类的jar来以编程方式运行TestNG测试。为此,首先解析testng.xml并获取类。然后使用URLCLassLoader将每个类加载到类路径中。但这会抛出org.testng.TestNGException: Cannot find class in classpath:例外。

以下是我尝试过的代码

public void execute() {
    String testNGXmlPath = "/path/to/testng.xml";
    try {
        getClassesToLoad(testNGXmlPath);
    } catch (ParserConfigurationException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (SAXException e) {
        e.printStackTrace();
    }
    TestNG testng = new TestNG();
    List<String> suites = Lists.newArrayList();
    suites.add(testNGXmlPath);
    testng.setTestSuites(suites);
    testng.run();
}

public void getClassesToLoad(String path) throws ParserConfigurationException, IOException, SAXException {
    File inputFile = new File(path);
    DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
    Document doc = dBuilder.parse(inputFile);
    doc.getDocumentElement().normalize();
    NodeList nodeList = doc.getElementsByTagName("class");
    Element element;
    Node node;
    NamedNodeMap namedNodeMap;

    int i, length;
    length = nodeList.getLength();
    for (int j=0; j < length; j++) {
        element = (Element)nodeList.item(j);
        namedNodeMap = element.getAttributes();
        if (namedNodeMap != null) {
            for (i=0; i<namedNodeMap.getLength(); i++) {
                node = namedNodeMap.item(i);
                if (node.getNodeName() == "name") {
                    try {
                        loadClass("/path/to/testng.sample-1.0-SNAPSHOT.jar", node.getNodeValue());
                    } catch (ClassNotFoundException e1) {
                        e1.printStackTrace();
                    }
                }
            }
        }
    }
}

public static void loadClass(String jarFilePath, String className) throws MalformedURLException,
        ClassNotFoundException {
    File jarFile  = new File(jarFilePath);
    if (jarFile.isFile()) {
        URL url = jarFile.toURL();
        URL[] urls = new URL[] { url };
        ClassLoader cl = new URLClassLoader(urls);
        cl.loadClass(className);
    }
}

2 个答案:

答案 0 :(得分:0)

您正在使用URLClassLoader加载类加载器,但是对于由类加载器加载的类对当前ContextualClassLoader可见,您需要对其进行设置。

请尝试在Thread.currentThread().setContextClassLoader();方法中通过loadClass()进行操作,然后尝试运行测试。这将确保当TestNG启动时,它使用您注入当前线程的ContextClassLoader来用于加载类,从而帮助您超越ClassNotFoundException

答案 1 :(得分:0)

如果你打算从jar运行你的测试,你可以简单地打包它们并使用你的xml运行 请参阅testng documentation的命令行部分。

如果你的是maven项目,可以参考这些steps