Exemplo n.º 1
0
    def test_validate_command(self):
        test_validate_command_dir = f'{os.path.dirname(__file__)}/resources/test_validate_command'

        test_cases = [
            {
                'dir': 'missing_replication_key_incremental',
                'exception': True
            },
            {
                'dir': 'missing_replication_key',
                'exception': False
            },
            {
                'dir': 'invalid_target',
                'exception': True
            }
        ]

        for test_case in test_cases:
            args = CliArgs(dir=f'{test_validate_command_dir}/{test_case["dir"]}')
            pipelinewise = PipelineWise(args, CONFIG_DIR, VIRTUALENVS_DIR)

            if test_case['exception']:
                with pytest.raises(SystemExit):
                    pipelinewise.validate()
            else:
                pipelinewise.validate()
Exemplo n.º 2
0
    def test_validate_command_3(self):
        """Test validate command should fail because of invalid target in tap config"""
        test_validate_command_dir = f'{os.path.dirname(__file__)}/resources/test_validate_command/invalid_target'

        args = CliArgs(dir=test_validate_command_dir)
        pipelinewise = PipelineWise(args, CONFIG_DIR, VIRTUALENVS_DIR)

        with pytest.raises(SystemExit):
            pipelinewise.validate()
Exemplo n.º 3
0
    def test_validate_command_2(self):
        """Test validate command should succeed"""
        test_validate_command_dir = \
            f'{os.path.dirname(__file__)}/resources/test_validate_command/missing_replication_key'

        args = CliArgs(dir=test_validate_command_dir)
        pipelinewise = PipelineWise(args, CONFIG_DIR, VIRTUALENVS_DIR)

        pipelinewise.validate()
Exemplo n.º 4
0
    def test_validate_command_4(self):
        """Test validate command should fail because of duplicate targets"""
        test_validate_command_dir = \
            f'{os.path.dirname(__file__)}/resources/test_validate_command/test_yaml_config_two_targets'

        args = CliArgs(dir=test_validate_command_dir)
        pipelinewise = PipelineWise(args, CONFIG_DIR, VIRTUALENVS_DIR)

        with pytest.raises(SystemExit):
            pipelinewise.validate()
Exemplo n.º 5
0
    def test_validate_command_1(self):
        """Test validate command should fail because of missing replication key for incremental"""
        test_validate_command_dir = \
            f'{os.path.dirname(__file__)}/resources/test_validate_command/missing_replication_key_incremental'

        args = CliArgs(dir=test_validate_command_dir)
        pipelinewise = PipelineWise(args, CONFIG_DIR, VIRTUALENVS_DIR)

        with pytest.raises(SystemExit):
            pipelinewise.validate()
Exemplo n.º 6
0
    def test_validate_command_5(self):
        """
        Test validate command should fail because of transformation on json properties for a tap-target combo that
        has Fastsync
        """
        test_validate_command_dir = \
            f'{os.path.dirname(__file__)}/resources/test_validate_command/json_transformation_in_fastsync'

        args = CliArgs(dir=test_validate_command_dir)
        pipelinewise = PipelineWise(args, CONFIG_DIR, VIRTUALENVS_DIR)

        with pytest.raises(InvalidTransformationException):
            pipelinewise.validate()