Best Testng code snippet using org.testng.xml.TestNGContentHandler.xmlSelectorClass
Source:TestNGContentHandler.java
...375 }376 /**377 * Parse <selector-class>378 */379 public void xmlSelectorClass(boolean start, Attributes attributes) {380 if (start) {381 m_currentSelector.setName(attributes.getValue("name"));382 String priority = attributes.getValue("priority");383 if (priority == null) {384 priority = "0";385 }386 m_currentSelector.setPriority(new Integer(priority));387 }388 else {389 // do nothing390 }391 }392 393 /**394 * Parse <method-selector>395 */396 public void xmlMethodSelector(boolean start, Attributes attributes) {397 if (start) {398 m_currentSelector = new XmlMethodSelector();399 }400 else {401 m_currentSelectors.add(m_currentSelector);402 m_currentSelector = null;403 }404 }405 private void xmlMethod(boolean start, Attributes attributes) {406 if (start) {407 m_currentIncludedMethods = new ArrayList<XmlInclude>();408 m_currentExcludedMethods = Lists.newArrayList();409 m_currentIncludeIndex = 0;410 }411 else {412 m_currentClass.setIncludedMethods(m_currentIncludedMethods);413 m_currentClass.setExcludedMethods(m_currentExcludedMethods);414 m_currentIncludedMethods = null;415 m_currentExcludedMethods = null;416 }417 }418 /**419 * Parse <run>420 */421 public void xmlRun(boolean start, Attributes attributes) throws SAXException {422 if (start) {423 m_currentRuns = Lists.newArrayList();424 }425 else {426 if (null == m_currentTest) {427 throw new SAXException("Check the testng XML against schema. Expected <test> tag not found");428 }429 m_currentTest.setIncludedGroups(m_currentIncludedGroups);430 m_currentTest.setExcludedGroups(m_currentExcludedGroups);431 }432 }433 /**434 * NOTE: I only invoke xml*methods (e.g. xmlSuite()) if I am acting on both435 * the start and the end of the tag. This way I can keep the treatment of436 * this tag in one place. If I am only doing something when the tag opens,437 * the code is inlined below in the startElement() method.438 */439 @Override440 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {441 String name = attributes.getValue("name");442 // ppp("START ELEMENT uri:" + uri + " sName:" + localName + " qName:" + qName +443 // " " + attributes);444 if ("suite".equals(qName)) {445 xmlSuite(true, attributes);446 }447 else if ("suite-file".equals(qName)) {448 xmlSuiteFile(true, attributes);449 }450 else if ("test".equals(qName)) {451 xmlTest(true, attributes);452 }453 else if ("script".equals(qName)) {454 xmlScript(true, attributes);455 }456 else if ("method-selector".equals(qName)) {457 xmlMethodSelector(true, attributes);458 }459 else if ("method-selectors".equals(qName)) {460 xmlMethodSelectors(true, attributes);461 }462 else if ("selector-class".equals(qName)) {463 xmlSelectorClass(true, attributes);464 }465 else if ("classes".equals(qName)) {466 xmlClasses(true, attributes);467 }468 else if ("packages".equals(qName)) {469 xmlPackages(true, attributes);470 }471 else if ("listeners".equals(qName)) {472 xmlListeners(true, attributes);473 }474 else if ("listener".equals(qName)) {475 xmlListener(true, attributes);476 }477 else if ("class".equals(qName)) {478 // If m_currentClasses is null, the XML is invalid and SAX479 // will complain, but in the meantime, dodge the NPE so SAX480 // can finish parsing the file.481 if (null != m_currentClasses) {482 m_currentClass = new XmlClass(name, Boolean.TRUE, m_currentClassIndex++);483 m_currentClasses.add(m_currentClass);484 }485 }486 else if ("package".equals(qName)) {487 if (null != m_currentPackages) {488 m_currentPackage = new XmlPackage();489 m_currentPackage.setName(name);490 m_currentPackages.add(m_currentPackage);491 }492 }493 else if ("define".equals(qName)) {494 xmlDefine(true, attributes);495 }496 else if ("run".equals(qName)) {497 xmlRun(true, attributes);498 }499 else if ("groups".equals(qName)) {500 m_currentIncludedGroups = Lists.newArrayList();501 m_currentExcludedGroups = Lists.newArrayList();502 }503 else if ("methods".equals(qName)) {504 xmlMethod(true, attributes);505 }506 else if ("include".equals(qName)) {507 if (null != m_currentIncludedMethods) {508 String in = attributes.getValue("invocation-numbers");509 if (!Utils.isStringEmpty(in)) {510 m_currentIncludedMethods.add(new XmlInclude(name, stringToList(in),511 m_currentIncludeIndex++));512 } else {513 m_currentIncludedMethods.add(new XmlInclude(name, m_currentIncludeIndex++));514 }515 }516 else if (null != m_currentDefines) {517 m_currentMetaGroup.add(name);518 }519 else if (null != m_currentRuns) {520 m_currentIncludedGroups.add(name);521 }522 else if (null != m_currentPackage) {523 m_currentPackage.getInclude().add(name);524 }525 }526 else if ("exclude".equals(qName)) {527 if (null != m_currentExcludedMethods) {528 m_currentExcludedMethods.add(name);529 }530 else if (null != m_currentRuns) {531 m_currentExcludedGroups.add(name);532 }533 else if (null != m_currentPackage) {534 m_currentPackage.getExclude().add(name);535 }536 }537 else if ("parameter".equals(qName)) {538 String value = attributes.getValue("value");539 if (m_inTest) {540 m_currentTestParameters.put(name, value);541 }542 else {543 m_currentSuiteParameters.put(name, value);544 }545 }546 }547 private List<Integer> stringToList(String in) {548 String[] numbers = in.split(" ");549 List<Integer> result = Lists.newArrayList();550 for (String n : numbers) {551 result.add(Integer.parseInt(n));552 }553 return result;554 }555 @Override556 public void endElement(String uri, String localName, String qName) throws SAXException {557 if ("suite".equals(qName)) {558 xmlSuite(false, null);559 }560 else if ("suite-file".equals(qName)) {561 xmlSuiteFile(false, null);562 }563 else if ("test".equals(qName)) {564 xmlTest(false, null);565 }566 else if ("define".equals(qName)) {567 xmlDefine(false, null);568 }569 else if ("run".equals(qName)) {570 xmlRun(false, null);571 }572 else if ("methods".equals(qName)) {573 xmlMethod(false, null);574 }575 else if ("classes".equals(qName)) {576 xmlClasses(false, null);577 }578 else if ("classes".equals(qName)) {579 xmlPackages(false, null);580 }581 else if ("listeners".equals(qName)) {582 xmlListeners(false, null);583 }584 else if ("method-selector".equals(qName)) {585 xmlMethodSelector(false, null);586 }587 else if ("method-selectors".equals(qName)) {588 xmlMethodSelectors(false, null);589 }590 else if ("selector-class".equals(qName)) {591 xmlSelectorClass(false, null);592 }593 else if ("script".equals(qName)) {594 xmlScript(false, null);595 }596 else if ("packages".equals(qName)) {597 xmlPackages(false, null);598 }599 }600 @Override601 public void error(SAXParseException e) throws SAXException {602 throw e;603 }604 private boolean areWhiteSpaces(char[] ch, int start, int length) {605 for (int i = start; i < start + length; i++) {...
xmlSelectorClass
Using AI Code Generation
1import java.io.File;2import java.io.IOException;3import java.util.List;4import javax.xml.parsers.ParserConfigurationException;5import javax.xml.parsers.SAXParser;6import javax.xml.parsers.SAXParserFactory;7import org.testng.xml.TestNGContentHandler;8import org.testng.xml.XmlSuite;9import org.xml.sax.Attributes;10import org.xml.sax.SAXException;11import org.xml.sax.helpers.DefaultHandler;12public class ReadXmlFile extends DefaultHandler {13 private TestNGContentHandler handler;14 private XmlSuite suite;15 private List<XmlSuite> suites;16 private String xmlFilePath;17 private SAXParserFactory factory;18 private SAXParser saxParser;19 public ReadXmlFile(String xmlFilePath) throws ParserConfigurationException, SAXException {20 this.xmlFilePath = xmlFilePath;21 handler = new TestNGContentHandler();22 factory = SAXParserFactory.newInstance();23 factory.setNamespaceAware(true);24 saxParser = factory.newSAXParser();25 }26 public void parse() throws SAXException, IOException {27 saxParser.parse(new File(xmlFilePath), this);28 }29 public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {30 handler.startElement(uri, localName, qName, attributes);31 }32 public void endElement(String uri, String localName, String qName) throws SAXException {33 handler.endElement(uri, localName, qName);34 }35 public void characters(char[] ch, int start, int length) throws SAXException {36 handler.characters(ch, start, length);37 }38 public List<XmlSuite> getSuites() {39 return handler.getSuites();40 }41}42package com.mkyong.xml.sax;43import java.io.File;44import java.io.IOException;45import java.util.List;46import javax.xml.parsers.ParserConfigurationException;47import javax.xml.parsers.SAXParser;48import javax.xml.parsers.SAXParserFactory;49import org.testng.xml.TestNGContentHandler;50import org.testng.xml.XmlSuite;51import org.xml.sax.Attributes;52import org.xml.sax.SAXException;53import org.xml.sax.helpers.DefaultHandler;54public class ReadXmlFile extends DefaultHandler {55 private TestNGContentHandler handler;56 private XmlSuite suite;57 private List<XmlSuite> suites;58 private String xmlFilePath;59 private SAXParserFactory factory;60 private SAXParser saxParser;
xmlSelectorClass
Using AI Code Generation
1import org.testng.xml.TestNGContentHandler2import org.xml.sax.InputSource3import org.xml.sax.XMLReader4import org.xml.sax.helpers.XMLReaderFactory5import java.io.File6def xmlFiles = new File(".").listFiles(new FilenameFilter() {7 boolean accept(File dir, String name) {8 name.endsWith(".xml")9 }10})11def handler = new TestNGContentHandler()12def reader = XMLReaderFactory.createXMLReader()13reader.setContentHandler(handler)14xmlFiles.each { xmlFile ->15 reader.parse(new InputSource(xmlFile.toURI().toString()))16}17def xmlList = handler.xmlSelectorClass().getXmlFiles()18def testng = new TestNG()19testng.setXmlSuites(xmlList)20testng.run()
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!!