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)
def test_db(self, ext): importer = _get_importer("workitems{}".format(ext)) assert importer == import_sqlite
def test_csv(self): importer = _get_importer("workitems.csv") assert importer == import_csv
def test_junit(self): importer = _get_importer("test_junit.xml") assert importer == import_junit
def test_ostriz_remote(self): importer = _get_importer( "http://trackerbot/ostriz/jenkins/jenkins/downstream-58z-extcloud-tests-master" ) assert importer == import_ostriz
def test_ostriz_local(self): importer = _get_importer("test_ostriz_file.json") assert importer == import_ostriz