Exemplo n.º 1
0
    def test_should_not_exit_when_command_is_ignore_and_message_is_given(self, mock_exit):
        options = Mock()
        options.message = 'ignore message'

        validate_command_line_options(
            'ignore', options, self.fake_show_help_callback)

        mock_exit.assert_not_called()
Exemplo n.º 2
0
    def test_should_execute_show_help_callback_when_no_ignore_message_is_given(self, _):
        options = Mock()
        options.message = None

        validate_command_line_options(
            'ignore', options, self.fake_show_help_callback)

        self.assertTrue(self._show_help_callback_has_been_called)
Exemplo n.º 3
0
    def test_should_exit_with_appropriate_code_when_command_is_ignore_and_no_message_was_given(self, mock_exit):
        options = Mock()
        options.message = None

        validate_command_line_options(
            'ignore', options, self.fake_show_help_callback)

        mock_exit.assert_called_with(EXIT_CODE_MISSING_MESSAGE_OPTION)
Exemplo n.º 4
0
    def test_should_execute_show_help_callback_when_no_ignore_message_is_given(self):
        when(yadtshell.commandline.sys).exit(any_value()).thenReturn(None)
        options = mock()
        options.message = None

        validate_command_line_options(
            'ignore', options, self.fake_show_help_callback)

        self.assertTrue(self._show_help_callback_has_been_called)
Exemplo n.º 5
0
    def test_should_not_exit_when_command_is_ignore_and_message_is_given(self):
        when(yadtshell.commandline.sys).exit(any_value()).thenReturn(None)
        options = mock()
        options.message = 'ignore message'

        validate_command_line_options(
            'ignore', options, self.fake_show_help_callback)

        verify(yadtshell.commandline.sys, never).exit(
            EXIT_CODE_MISSING_MESSAGE_OPTION)
Exemplo n.º 6
0
    def test_should_exit_with_appropriate_code_when_command_is_lock_and_no_message_was_given(self):
        when(yadtshell.commandline.sys).exit(any_value()).thenReturn(None)
        options = mock()
        options.message = None

        validate_command_line_options(
            'lock', options, self.fake_show_help_callback)

        verify(yadtshell.commandline.sys).exit(
            EXIT_CODE_MISSING_MESSAGE_OPTION)