2016-02-29 13 views

cevap

1

Testng.xml dosyasını okuyabilir ve programlamayı jar'ı çıkarmadan çalıştırabilirsiniz.

Önce xml'yi okuyup onu ayrıştırmanız gerekir. Burada xml dosya formatımla eşleşecek bazı fasulye sınıfları oluşturdum. Bu benim fasulye sınıftır, bunu size ihtiyacı

@XmlRootElement(name = "suite") 
public class Suite { 

private String name; 
private String verbose = "1"; 
private boolean parallel =false; 

private List<Test> testCases = new ArrayList<Test>(); 
private List<Parameter> parameters = new ArrayList<Parameter>(); 

@XmlAttribute 
public String getName() { 
    return name; 
} 


public void setName(String name) { 
    this.name = name; 
} 

@XmlAttribute 
public String getVerbose() { 
    return verbose; 
} 


public void setVerbose(String verbose) { 
    this.verbose = verbose; 
} 

@XmlAttribute 
public boolean isParallel() { 
    return parallel; 
} 


public void setParallel(boolean parallel) { 
    this.parallel = parallel; 
} 

@XmlElement(name = "test") 
public List<Test> getTestCases() { 
    return testCases; 
} 

public void setTestCases(List<Test> testCases) { 
    this.testCases = testCases; 
} 

@XmlElement(name = "parameter") 
public List<Parameter> getParameters() { 
    return parameters; 
} 


public void setParameters(List<Parameter> parameters) { 
    this.parameters = parameters; 
} 
} 

ile eşleşen sınıfların set kendi oluşturmak ve bu okuduğunuz nasıl ve ayrıştırmak:

public Suite getTestSuiteFromJar(String jarFilePath, String filename) { 
    File jarFile = new File(jarFilePath); 
    Suite suite = null; 
    try { 
     if (jarFile.isFile()) { 
      final JarFile jar = new JarFile(jarFile); 

      InputStream in = jar.getInputStream(new ZipEntry(filename)); 
      suite = XmlUtil.parseSuite(in); 
      jar.close(); 
     } 

    } catch (IOException | JAXBException | SAXException | ParserConfigurationException e) { 
     e.printStackTrace(); 
    } 
    return suite; 
} 

public static Suite parseSuite(InputStream is) throws JAXBException, SAXException, ParserConfigurationException { 
    JAXBContext jaxbContext = JAXBContext.newInstance(Suite.class); 
    Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller(); 
    return (Suite) jaxbUnmarshaller.unmarshal(is); 
} 

Sonunda çalıştırmak paketi:

public static void runSuite(String jarFilePath, Suite s) 
     throws MalformedURLException, ClassNotFoundException { 
    //Don't confuse : XmlSuite here, is the standard testNg class. our bean class is Suite 
    XmlSuite suite = new XmlSuite(); 
    suite.setName(s.getName()); 

    for (Test t : s.getTestCases()) { 
     XmlTest test = new XmlTest(suite); 
     test.setName(t.getName()); 
     List<XmlClass> classes = new ArrayList<XmlClass>(); 
     for (TestClass tc : t.getClasses()) { 
      Class cls = loadClass(jarFilePath, tc.getName()); 
      if (cls != null) { 
       XmlClass xClass = new XmlClass(cls, false); 
       classes.add(xClass); 
       test.setXmlClasses(classes); 
      } 
     } 
    } 
    List<XmlSuite> suites = new ArrayList<XmlSuite>(); 

    suites.add(suite); 
    TestNG tng = new TestNG(); 

    tng.setXmlSuites(suites); 
    tng.run(); 
} 

public Class 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); 
     return cl.loadClass(className); 
    } else { 
     return null; 
    } 
} 
+0

Thanks.it beklendiği gibi çalışıyor. – gihan

2

Sen xml çalıştırmak için -xmlpathinjar suit/GroupBased_Tests.xml seçeneğini kullanabilirsiniz.
Eğer yardımcı olursa, maven here ile ilgili adımlara başvurabilirsiniz.

Diğer seçenekleri kullanabilmek için, lütfen bkz. Test dokümantasyonu here.

+0

Komut satırı yerine programlı çalışabilir miyim? – gihan

+0

Sunu programlı olarak yürütmek ister misiniz? –

+0

yes.i maven build.let adlı bir jar dosyası var benim jar dosya adı 'myproject-1.0-SNAPSHOT' bu jar 'src/target' klasörünün tüm kaynakları içerir.so testngTestfile yürütmek istiyorum Bu oluşturulan jar dosyası içinde bulunan .xml 'programmatically.Eg:user bir arg olarak dosya adı ile jar vermek ve bu test programmatically.'executeTest (.jarfilelocation, fileNametobeExecuted)' .inside bu yöntemi test yürütmek çalıştırılacak. – gihan

İlgili konular