Best Testng code snippet using org.testng.TestNG.addClassLoader
Source:TestNGRunner.java
...113 static {114 if (null != TestingTools.getTestingTree(false).getClassLoaders())115 for (String pluginName : TestingTools.getTestingTree(false).getClassLoaders().getAdiPluginName()) {116 ClassLoader classLoader = AdichatzApplication.getPluginResources(pluginName).getGencodePath().getClassLoader();117 ClassHelper.addClassLoader(classLoader);118 }119 }120121 /** The testing class loaders. */122 private static Map<AdiPluginResources, TestingClassLoader> testingClassLoaders = new HashMap<AdiPluginResources, TestingClassLoader>();123124 /**125 * Gets the class from uri.126 *127 * @param testSuiteURI128 * the test suite uri129 * @return the class from uri130 * @throws ClassNotFoundException131 * the class not found exception132 */133 public static Class<?> getClassFromURI(String testSuiteURI) throws ClassNotFoundException {134 String[] keys = EngineTools.getContributionURIToStrings(testSuiteURI);135 AdiPluginResources pluginResources = AdichatzApplication.getPluginResources(keys[0]);136 if (null == pluginResources) {137 throw new RuntimeException("Invalid plugin key '" + keys[0] + "' from URI '" + testSuiteURI + "'!");138 }139 TestingClassLoader testingClassLoader = testingClassLoaders.get(pluginResources);140 if (null == testingClassLoader) {141 testingClassLoader = new TestingClassLoader(pluginResources);142 testingClassLoaders.put(pluginResources, testingClassLoader);143 }144 return testingClassLoader.loadClass(keys[1]);145 }146147 /*148 * end S T A T I C149 */150151 /** The logger listener. */152 private E4LoggerListener loggerListener;153154 /**155 * Instantiates a new test ng runner.156 */157 public TestNGRunner() {158 TestingTools.init();159 loggerListener = new E4LoggerListener() {160 public void beforeError(org.adichatz.engine.e4.resource.E4LoggerEvent event) {161 String message = event.message;162 if (null == event.throwable) {163 message = event.className.concat("[").concat(String.valueOf(event.lineNumber)).concat("] ").concat(message);164 }165 throw new AssertionError(message, event.throwable);166 };167 };168 }169170 /*171 * (non-Javadoc)172 * 173 * @see org.adichatz.engine.extra.ITestRunner#runTesting(org.adichatz.engine.xjc.TestingType, boolean)174 */175 @Override176 public void runTesting(AdichatzTestingTree testingTree, boolean force) {177 ((E4Logger) LogBroker.getLogger()).addListener(loggerListener);178 try {179 for (TestNodeType node : testingTree.getSuiteOrTestFile()) {180 if (node instanceof SuiteType && (force || ((SuiteType) node).isLaunchOnStartup())) {181 SuiteType suite = (SuiteType) node;182 runSuite(suite);183 } else if (node instanceof TestFileType && (force || ((TestFileType) node).isLaunchOnStartup())) {184 TestFileType testFile = (TestFileType) node;185 runFile(getFromTestingBundle("testing.file", TestingTools.getLabel(testFile)), testFile.getFileName(),186 testFile.isForceOpenManagerPart());187 }188 }189 } finally {190 ((E4Logger) LogBroker.getLogger()).removeListener(loggerListener);191 }192 }193194 /*195 * (non-Javadoc)196 * 197 * @see org.adichatz.engine.extra.ITestRunner#runSuite(org.adichatz.engine.xjc.SuiteType)198 */199 @Override200 public void runSuite(SuiteType suite) {201 if (!suite.getTest().isEmpty()) {202 String[] testSuiteURIs = new String[suite.getTest().size()];203 int i = 0;204 for (TestType test : suite.getTest())205 if (!EngineTools.isEmpty(test.getTestURI()))206 testSuiteURIs[i++] = test.getTestURI();207 else208 logError(getFromTestingBundle("testing.error.null.testURI", test.getId()));209 runClasses(getFromTestingBundle("testing.suite", TestingTools.getLabel(suite)),210 TestingTools.getRegistry("runSuiteImage"), suite.isForceOpenManagerPart(), testSuiteURIs);211 doOpenManagerPart(suite.isForceOpenManagerPart());212 }213 }214215 /*216 * (non-Javadoc)217 * 218 * @see org.adichatz.engine.extra.ITestRunner#runFile(java.lang.String, java.lang.String)219 */220 @Override221 public void runFile(String label, String fileName, boolean forceOpenManagerPart) {222 ((E4Logger) LogBroker.getLogger()).addListener(loggerListener);223 try {224 String pluginName = AdichatzApplication.getInstance().getApplicationPluginResources().getPluginName();225 ClassHelper.addClassLoader(AdichatzApplication.getPluginResources(pluginName).getGencodePath().getClassLoader());226 TestNG testng = new TestNG(false);227 Parser fileParser = new Parser(fileName);228 final List<XmlSuite> suites = fileParser.parseToList();229 testng.setXmlSuites(suites);230 testng.setVerbose(0);231 testng.addListener(new AdiResultListener(label, TestingTools.getRegistry("runFileImage")));232 testng.setDefaultTestName(label);233 testng.run();234 doOpenManagerPart(forceOpenManagerPart);235 } catch (ParserConfigurationException | SAXException | IOException e) {236 logError(e);237 } finally {238 ((E4Logger) LogBroker.getLogger()).removeListener(loggerListener);239 }
...
Source:IssueTest.java
...23 continue;24 }25 Class<?> clazz = defineClass(byteCode.getName(), byteCode.getByteCode(), 0,26 byteCode.getByteCode().length);27 tng.addClassLoader(clazz.getClassLoader());28 clazz.getClassLoader().loadClass(clazz.getName());29 classes.add(clazz);30 }31 tng.setTestClasses(classes.toArray(new Class[0]));32 tng.run();33 Arrays.stream(sources).forEach(sourceCode -> sourceCode.getLocation().delete());34 }35 @DataProvider(name = "dp")36 public Object[][] getTestData() throws IOException {37 return new Object[][]{38 {new SourceCode[]{missingTypeAtMethodLevel(), exception1()}},39 {new SourceCode[]{missingTypeAtClassLevel(), exception2()}},40 {new SourceCode[]{missingTypeAtConstructor(), dataProvider()}},41 {new SourceCode[]{missingTypeAtListenerAnnotation(), listener()}},...
Source:RemotePrestartedTestNGExecutor.java
...98 MyClassLoader classLoader, Class<?> cls) {99 XmlSuite suite = new XmlSuite();100 XmlTest test = new XmlTest();101 XmlClass clz = new XmlClass();102 testng.addClassLoader(classLoader);103 Map<String, String> params = new HashMap<>();104 params.put("port", String.valueOf(port));105 clz.setClass(cls);106 clz.setParameters(params);107 List<XmlClass> clzList = new ArrayList<>();108 clzList.add(clz);109 test.setClasses(clzList);110 test.setName(testCase);111 test.setParameters(params);112 suite.setName(testCase+"_SUITE_"+port);113 test.setSuite(suite);114 suite.addTest(test);115 suite.setParameters(params);116 testng.setCommandLineSuite(suite);...
Source:ClassHelperTest.java
...41 public Class<?> loadClass(String name) throws ClassNotFoundException {42 throw new NoClassDefFoundError();43 }44 };45 ClassHelper.addClassLoader(urlClassLoader);46 String fakeClassName = UUID.randomUUID().toString();47 Assert.assertNull(ClassHelper.forName(fakeClassName), "The result should be null; no exception should be thrown.");48 }49 private static void runTest(Class<?> classToBeFound, int expectedCount, Class<?>... classes) {50 XmlSuite xmlSuite = new XmlSuite();51 xmlSuite.setName("xml_suite");52 newXmlTest("test1", xmlSuite, classes);53 newXmlTest("test2", xmlSuite, classes);54 newXmlTest("test3", xmlSuite, classes);55 XmlClass[] xmlClasses = ClassHelper.findClassesInSameTest(classToBeFound, xmlSuite);56 assertThat(xmlClasses.length).isEqualTo(expectedCount);57 }58 private static void newXmlTest(String testname, XmlSuite xmlSuite, Class<?>... clazz) {59 XmlTest xmlTest = new XmlTest(xmlSuite);...
Source:JUnitTestClassLoader.java
...58 TestNG tng = new TestNG(false);59 Class<?> testClass = compile(src, name);60 Listener listener = new Listener();61 tng.setJUnit(true);62 tng.addClassLoader(testClass.getClassLoader());63 assertNotEquals(testClass.getClassLoader(), this.getClass().getClassLoader(),64 "JUnit test must be loaded by a different classloader");65 try {66 this.getClass().getClassLoader().loadClass(testClass.getName());67 fail("it must be imposiible to load JUnit test by current classloader");68 } catch (ClassNotFoundException c) {69 }70 tng.setTestClasses(new Class<?>[]{testClass});71 tng.addListener(listener);72 tng.run();73 return listener;74 }75 private Class<?> compile(String src, String name) throws Exception {76 File directory = SimpleCompiler.createTempDir();...
Source:TestNGInstance.java
...54 public TestNGInstance(Logger[] loggers,55 ClassLoader testClassLoader,56 CommandLineArgs args,57 EventHandler eventHandler) {58 addClassLoader(testClassLoader);59 this.addListener(new TestNGListener(eventHandler));60 configure(args);61 }62}...
Source:ExtensionUtilTest.java
...33 LC.zimbra_extension_directory.setDefault(null);34 }35 @Test36 public void simple() throws Exception {37 ExtensionUtil.addClassLoader(new ZimbraExtensionClassLoader(classpath,38 SimpleExtension.class.getName()));39 ExtensionUtil.initAll();40 SimpleExtension ext =41 (SimpleExtension) ExtensionUtil.getExtension("simple");42 Assert.assertNotNull(ext);43 Assert.assertTrue(ext.isInitialized());44 Assert.assertFalse(ext.isDestroyed());45 }46 @Test47 public void resign() throws Exception {48 ExtensionUtil.addClassLoader(new ZimbraExtensionClassLoader(classpath,49 ResignExtension.class.getName()));50 ExtensionUtil.initAll();51 Assert.assertNull(ExtensionUtil.getExtension("resign"));52 Assert.assertTrue(ResignExtension.isDestroyed());53 }54}...
Source:Start.java
...25 TestNG testNG = new TestNG();26 testNG.setTestClasses(new Class[]{config.getTarget()});27 testNG.addListener(new ExtentTestNGIReporterListener());28// testNG.setListenerClasses(Collections.singletonList(ExtentTestNGIReporterListener.class));29 testNG.addClassLoader(config.getTargetInstance().getClass().getClassLoader());30 testNG.run();31 }32}...
TestNG is a Java-based open-source framework for test automation that includes various test types, such as unit testing, functional testing, E2E testing, etc. TestNG is in many ways similar to JUnit and NUnit. But in contrast to its competitors, its extensive features make it a lot more reliable framework. One of the major reasons for its popularity is its ability to structure tests and improve the scripts' readability and maintainability. Another reason can be the important characteristics like the convenience of using multiple annotations, reliance, and priority that make this framework popular among developers and testers for test design. You can refer to the TestNG tutorial to learn why you should choose the TestNG framework.
You can push your abilities to do automated testing using TestNG and advance your career by earning a TestNG certification. Check out our TestNG certification.
Watch this complete tutorial to learn how you can leverage the capabilities of the TestNG framework for Selenium automation testing.
Get 100 minutes of automation test minutes FREE!!