Ejemplo n.º 1
0
    def test_e2e_ok(self, config_prop, tmpdir):
        input_file = os.path.join(conf.DATA_PATH, "workitems_ids.csv")
        db_file = os.path.join(str(tmpdir), "workitems_copy.sqlite3")
        args = ["-i", input_file, "-o", db_file]
        with patch("dump2polarion.csv2sqlite_cli.utils.init_log"):
            retval = csv2sqlite_cli.main(args)
        assert retval == 0

        records = dbtools.import_sqlite(db_file)
        exporter = XunitExport("5_8_0_17", records, config_prop)
        complete = exporter.export()
        fname = "complete_transform.xml"
        with io.open(os.path.join(conf.DATA_PATH, fname), encoding="utf-8") as input_xml:
            parsed = input_xml.read()
        assert complete == parsed
Ejemplo n.º 2
0
    def test_e2e_ok(self, config_prop, tmpdir):
        input_file = os.path.join(conf.DATA_PATH, 'workitems_ids.csv')
        db_file = os.path.join(str(tmpdir), 'workitems_copy.sqlite3')
        args = ['-i', input_file, '-o', db_file]
        with patch('dump2polarion.csv2sqlite_cli.utils.init_log'):
            retval = csv2sqlite_cli.main(args)
        assert retval == 0

        records = dbtools.import_sqlite(db_file)
        exporter = XunitExport('5_8_0_17', records, config_prop)
        complete = exporter.export()
        fname = 'complete_transform.xml'
        with io.open(os.path.join(conf.DATA_PATH, fname),
                     encoding='utf-8') as input_xml:
            parsed = input_xml.read()
        assert complete == parsed
Ejemplo n.º 3
0
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
csv2sqlite CLI
"""

import sys

from dump2polarion.csv2sqlite_cli import main

if __name__ == '__main__':
    sys.exit(main())
Ejemplo n.º 4
0
 def test_e2e_not_csv(self, captured_log):
     non_file = "nonexistent.txt"
     args = ["-i", non_file, "-o", non_file]
     retval = csv2sqlite_cli.main(args)
     assert retval == 1
     assert "is in CSV format" in captured_log.getvalue()
Ejemplo n.º 5
0
 def test_e2e_invalid_csv(self, captured_log):
     non_file = "nonexistent.csv"
     args = ["-i", non_file, "-o", non_file]
     retval = csv2sqlite_cli.main(args)
     assert retval == 1
     assert "No such file or directory" in captured_log.getvalue()
Ejemplo n.º 6
0
 def test_e2e_not_csv(self, captured_log):
     non_file = 'nonexistent.txt'
     args = ['-i', non_file, '-o', non_file]
     retval = csv2sqlite_cli.main(args)
     assert retval == 1
     assert 'is in CSV format' in captured_log.getvalue()
Ejemplo n.º 7
0
 def test_e2e_invalid_csv(self, captured_log):
     non_file = 'nonexistent.csv'
     args = ['-i', non_file, '-o', non_file]
     retval = csv2sqlite_cli.main(args)
     assert retval == 1
     assert 'No such file or directory' in captured_log.getvalue()