def test_extract_isis_should_log_steps(self, subprocess_mock): with self.assertLogs(level="DEBUG") as log: extract_isis.run("file.mst", "file.json") self.assertEqual(2, len(log.output)) self.assertIn("Extracting database file: file.mst", log.output[0]) self.assertIn( "Writing extracted result as JSON file in: file.json", log.output[1] )
def migrate_isis_parser(sargs): parser = argparse.ArgumentParser(description="ISIS database migration tool") subparsers = parser.add_subparsers(title="Commands", metavar="", dest="command") extract_parser = subparsers.add_parser("extract", help="Extract mst files to json") extract_parser.add_argument( "mst_file_path", metavar="file", help="Path to MST file that will be extracted" ) extract_parser.add_argument("--output", required=True, help="The output file path") import_parser = subparsers.add_parser( "import", parents=[mongodb_parser(sargs)], help="Process JSON files then import into Kernel database", ) import_parser.add_argument( "import_file", metavar="file", help="JSON file path that contains mst extraction result, e.g: collection-title.json", ) import_parser.add_argument( "--type", help="Type of JSON file that will load into Kernel database", choices=["journal", "issue", "documents-bundles-link"], required=True, ) link_parser = subparsers.add_parser( "link", help="Generate JSON file of journals' ids and their issues linked by ISSN", ) link_parser.add_argument( "issues", help="JSON file path that contains mst extraction result, e.g: ~/json/collection-issues.json", ) link_parser.add_argument("--output", required=True, help="The output file path") args = parser.parse_args(sargs) if args.command == "extract": extract_isis.create_output_dir(args.output) extract_isis.run(args.mst_file_path, args.output) elif args.command == "import": mongo = ds_adapters.MongoDB(uri=args.uri, dbname=args.db) Session = ds_adapters.Session.partial(mongo) if args.type == "journal": pipeline.import_journals(args.import_file, session=Session()) elif args.type == "issue": pipeline.import_issues(args.import_file, session=Session()) elif args.type == "documents-bundles-link": pipeline.import_documents_bundles_link_with_journal( args.import_file, session=Session() ) elif args.command == "link": pipeline.link_documents_bundles_with_journals(args.issues, args.output) else: parser.print_help()
def teste_should_raise_called_process_erro(self, subprocess_mock): subprocess_mock.run.side_effect = subprocess.CalledProcessError(1, 2) with self.assertRaises(exceptions.ExtractError): extract_isis.run("file.mst", "file.json")
def test_should_raise_file_not_found_exception(self, subprocess_mock): subprocess_mock.run.side_effect = FileNotFoundError with self.assertRaises(exceptions.ExtractError): extract_isis.run("file.mst", "file.json")
def test_should_raise_file_not_found_exception(self): with self.assertRaises(FileNotFoundError): extract_isis.run("file.mst", "file.json")