Exemplo n.º 1
0
 def test_invalid(self):
     with pytest.raises(Dump2PolarionException) as excinfo:
         _get_importer("workitems.txt")
     assert "Cannot recognize type of input data, add file extension" in str(
         excinfo.value)
Exemplo n.º 2
0
 def test_db(self, ext):
     importer = _get_importer("workitems{}".format(ext))
     assert importer == import_sqlite
Exemplo n.º 3
0
 def test_csv(self):
     importer = _get_importer("workitems.csv")
     assert importer == import_csv
Exemplo n.º 4
0
 def test_junit(self):
     importer = _get_importer("test_junit.xml")
     assert importer == import_junit
Exemplo n.º 5
0
 def test_ostriz_remote(self):
     importer = _get_importer(
         "http://trackerbot/ostriz/jenkins/jenkins/downstream-58z-extcloud-tests-master"
     )
     assert importer == import_ostriz
Exemplo n.º 6
0
 def test_ostriz_local(self):
     importer = _get_importer("test_ostriz_file.json")
     assert importer == import_ostriz