Ejemplo n.º 1
0
 def test_dry_run(self):
     """Testing simple bash script in dry run mode."""
     bash = Bash(ShellConfig(script='''echo "hello"''', dry_run=True))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(2))
     assert_that(output[0], equal_to('''#!/bin/bash'''))
     assert_that(output[1], equal_to('''echo "hello"'''))
Ejemplo n.º 2
0
 def test_render_error(self):
     """Testing error in jinja2 rendering."""
     bash = Bash(ShellConfig(script='''echo "{{ foo.bar }}"'''))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(0))
     assert_that(bash.success, equal_to(False))
     assert_that(bash.exit_code, equal_to(0))
Ejemplo n.º 3
0
    def cleanup(name, tag):
        """Removing Docker image."""
        shell = Bash(ShellConfig(script="docker rmi %s:%s" % (name, tag)))
        for line in shell.process():
            logging.info(line)

        assert_that(shell.success, equal_to(True))
Ejemplo n.º 4
0
 def test_templ_using_model(self):
     """Testing using model data via Jinja templating."""
     config = ShellConfig(script='''echo "foo={{ model.foo }}"''',
                          model={'foo': 'some model foo'})
     bash = Bash(config)
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(1))
     assert_that(output[0], equal_to('foo=some model foo'))
Ejemplo n.º 5
0
 def test_external_bash_script(self):
     """Testing of an external bash script."""
     bash = Bash(
         ShellConfig(script='''{{ env.tests }}/scripts/hello.sh''',
                     env={'tests': os.path.dirname(__file__)}))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(1))
     assert_that(output[0], equal_to('hello'))
Ejemplo n.º 6
0
 def test_templ_using_custom_env_vars(self):
     """Testing using user defined environment variables."""
     bash = Bash(
         ShellConfig(script='''echo "foo={{ env.foo }}"''',
                     env={'foo': 'some foo'}))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(1))
     assert_that(output[0], equal_to('foo=some foo'))
Ejemplo n.º 7
0
    def test_oserror(self):
        """Testing exception."""
        bash = Bash(ShellConfig(script='''echo "hello"'''))
        with patch('subprocess.Popen') as mocked_popen:
            mocked_popen.side_effect = OSError('Exception: popen has failed')
            output = [line for line in bash.process() if len(line) > 0]

            assert_that(len(output), equal_to(1))
            assert_that(output[0], equal_to('Exception: popen has failed'))
            assert_that(bash.exit_code, equal_to(1))
Ejemplo n.º 8
0
 def test_render_bash_options(self):
     """Testing rendering Bash options."""
     bash = Bash(ShellConfig(script='''echo "hello"'''))
     assert_that(bash.render_bash_options(), equal_to(''))
     bash = Bash(ShellConfig(script='''echo "hello"''', debug=True))
     assert_that(bash.render_bash_options(), equal_to('set -x\n'))
     bash = Bash(ShellConfig(script='''echo "hello"''', strict=True))
     assert_that(bash.render_bash_options(),
                 equal_to('set -euo pipefail\n'))
Ejemplo n.º 9
0
 def test_nested_templ_using_model(self):
     """Testing using model data via Jinja templating."""
     bash = Bash(
         ShellConfig(
             script=
             '''echo "foo={{ model.template|render(model=model) }}"''',
             model={
                 'foo': 'some nested foo',
                 'template': '{{ model.foo }}'
             }))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(1))
     assert_that(output[0], equal_to('foo=some nested foo'))
Ejemplo n.º 10
0
 def cleanup(self):
     """Run cleanup script of pipeline when hook is configured."""
     if self.data.hooks and len(self.data.hooks.cleanup) > 0:
         env = self.data.env_list[0].copy()
         env.update({'PIPELINE_RESULT': 'SUCCESS'})
         env.update({'PIPELINE_SHELL_EXIT_CODE': '0'})
         config = ShellConfig(
             script=self.data.hooks.cleanup,
             model=self.model,
             env=env,
             dry_run=self.options.dry_run,
             debug=self.options.debug,
             strict=self.options.strict,
             temporary_scripts_path=self.options.temporary_scripts_path)
         cleanup_shell = Bash(config)
         for line in cleanup_shell.process():
             yield line
Ejemplo n.º 11
0
    def test_get_temporary_scripts_path(self):
        """Testing temporary scripts path."""
        bash = Bash(
            ShellConfig(script='''echo "hello"''',
                        temporary_scripts_path='/tmp'))
        assert_that(bash.get_temporary_scripts_path(), equal_to('/tmp'))

        bash = Bash(
            ShellConfig(script='''echo "hello"''', temporary_scripts_path=''))
        assert_that(bash.get_temporary_scripts_path(), equal_to(None))

        bash = Bash(
            ShellConfig(script='''echo "hello"''',
                        temporary_scripts_path='/tmp/does-not-exist'))
        assert_that(bash.get_temporary_scripts_path(), equal_to(None))
Ejemplo n.º 12
0
 def test_creator_complete(self):
     """Testing creator function using model data end env. vars via Jinja templating."""
     config = ShellConfig(script='''echo "{{ env.foo }}-{{ model.foo }}"''',
                          title='test',
                          model={'foo': 'model foo'},
                          env={'foo': 'env foo'})
     bash = Bash.creator(None, config)
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(1))
     assert_that(output[0], equal_to('env foo-model foo'))
Ejemplo n.º 13
0
 def run_cleanup(self, env, exit_code):
     """Run cleanup hook when configured."""
     output = []
     if self.pipeline.data.hooks and len(
             self.pipeline.data.hooks.cleanup) > 0:
         env.update({'PIPELINE_RESULT': 'FAILURE'})
         env.update({'PIPELINE_SHELL_EXIT_CODE': str(exit_code)})
         config = ShellConfig(script=self.pipeline.data.hooks.cleanup,
                              model=self.pipeline.model,
                              env=env,
                              dry_run=self.pipeline.options.dry_run,
                              debug=self.pipeline.options.debug,
                              strict=self.pipeline.options.strict,
                              temporary_scripts_path=self.pipeline.options.
                              temporary_scripts_path)
         cleanup_shell = Bash(config)
         for line in cleanup_shell.process():
             output.append(line)
             self.logger.info(" | %s", line)
     return output
Ejemplo n.º 14
0
    def get_version(tool_name, tool_command):
        """
        Get name and version of a tool defined by given command.

        Args:
            tool_name (str): name of the tool.
            tool_command (str): Bash one line command to get the version of the tool.

        Returns:
            dict: tool name and version or empty when no line has been found
        """
        result = {}
        for line in Bash(ShellConfig(script=tool_command, internal=True)).process():
            if line.find("command not found") >= 0:
                VersionsCheck.LOGGER.error("Required tool '%s' not found (stopping pipeline)!", tool_name)
                sys.exit(1)
            result = {tool_name: Version(line)}
            break
        return result
Ejemplo n.º 15
0
    def test_internal_flag(self):
        """Testing simple bash script with internal flag."""
        bash = Bash(ShellConfig(script='''echo "hello"''', internal=True))
        output = [line for line in bash.process() if len(line) > 0]
        assert_that(len(output), equal_to(1))
        assert_that(output[0], equal_to('hello'))

        bash = Bash(
            ShellConfig(script='''echo "hello"''', internal=True,
                        dry_run=True))
        output = [line for line in bash.process() if len(line) > 0]
        assert_that(len(output), equal_to(2))
        assert_that(output[0], equal_to('#!/bin/bash'))
        assert_that(output[1], equal_to('echo "hello"'))
Ejemplo n.º 16
0
    def test_pipeline_bash_file_variable(self):
        """Testing the injected variable representing the script."""
        bash = Bash(
            ShellConfig(
                script='''echo "PIPELINE_BASH_FILE=$PIPELINE_BASH_FILE"'''))
        output = [
            line for line in bash.process() if line.lower().find("script") > 0
        ]
        assert_that(len(output), equal_to(1))
        assert_that(
            output[0],
            matches_regexp('PIPELINE_BASH_FILE=.*/tmp/pipeline-script-.*.sh'))

        bash = Bash(
            ShellConfig(
                script=
                '''echo "PIPELINE_BASH_FILE={{ env.PIPELINE_BASH_FILE }}"'''))
        output = [
            line for line in bash.process() if line.lower().find("script") > 0
        ]
        assert_that(len(output), equal_to(1))
        assert_that(
            output[0],
            matches_regexp('PIPELINE_BASH_FILE=.*/tmp/pipeline-script-.*.sh'))
Ejemplo n.º 17
0
 def test_script_only(self):
     """Testing simple bash script."""
     bash = Bash(ShellConfig(script='''echo "hello"'''))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(1))
     assert_that(output[0], equal_to('hello'))
Ejemplo n.º 18
0
 def test_failed_exit_not_zero(self):
     """testing normal failed bash script."""
     bash = Bash(ShellConfig(script='''exit 1'''))
     output = [line for line in bash.process() if len(line) > 0]
     assert_that(len(output), equal_to(0))
     assert_that(bash.exit_code, equal_to(1))