示例#1
0
def test_filter_scripts_are_executed_in_correct_order(sql_scripts_filter):
    bootstrapper = bootstrap.BootStrapper(area_polyfile_string=area_polyfile_string())
    with mock.patch.object(bootstrapper, '_postgres') as postgres_mock:
        bootstrapper._filter_data()

        expected_calls = [
            mock.call(relative_script_path) for relative_script_path in sql_scripts_filter
        ]
        assert expected_calls == postgres_mock.execute_sql_file.mock_calls
示例#2
0
def test_filter_scripts_with_lesser_detail_are_executed_in_correct_order(sql_scripts_filter_level_60):
    bootstrapper = bootstrap.BootStrapper(area_polyfile_string=area_polyfile_string(), detail_level=DETAIL_LEVEL_REDUCED)
    with mock.patch.object(bootstrapper, '_postgres') as postgres_mock:
        bootstrapper._filter_data()

        expected_calls = [
            mock.call(relative_script_path) for relative_script_path in sql_scripts_filter_level_60
        ]
        assert expected_calls == postgres_mock.execute_sql_file.mock_calls
示例#3
0
def test_create_views_with_lesser_detail_are_limited_to_specified_tables(sql_scripts_create_view_level_60):
    bootstrapper = bootstrap.BootStrapper(area_polyfile_string=area_polyfile_string(), detail_level=DETAIL_LEVEL_REDUCED)
    with mock.patch.object(bootstrapper, '_postgres') as postgres_mock:
        bootstrapper._create_views()

        expected_calls = [
            mock.call(relative_script_path) for relative_script_path in sql_scripts_create_view_level_60
        ]
        assert expected_calls == postgres_mock.execute_sql_file.mock_calls
示例#4
0
 def __init__(self, data):
     super().__init__(area_polyfile_string=area_polyfile_string())
     self.data = data