Пример #1
0
 def test_build_error_handling_no_exit(self):
     # Bad parameter, error on build
     with pytest.raises(UnknownParameterError):
         with dbnd_handle_errors(exit_on_error=False):
             # Error won't cause exit
             func_you_want_to_marry_with.task(
                 bad_param="This param does not exist")
Пример #2
0
    def test_no_double_handling(self, caplog):
        # Good parameter, error in runtime while dividing by zero

        with pytest.raises(DatabandRunError):
            with dbnd_handle_errors(exit_on_error=False):
                # Error won't cause exit
                func_with_error.dbnd_run(denominator=0)
        assert caplog.text.count(
            "Your run has failed! See more info above.") == 1
Пример #3
0
    def test_run_error_handling_exit(self):
        # Good parameter, error in runtime while dividing by zero
        with pytest.raises(SystemExit) as pytest_wrapped_e:
            with dbnd_handle_errors(True):
                # Error will cause exit
                func_with_error.dbnd_run(denominator=0)

        assert pytest_wrapped_e.type == SystemExit
        assert pytest_wrapped_e.value.code == 1
Пример #4
0
    def test_build_error_handling_exit(self):
        # Bad parameter, error on build
        with pytest.raises(SystemExit) as pytest_wrapped_e:
            with dbnd_handle_errors(True):
                # Error will cause exit
                func_with_error.task(bad_param="This param does not exist")

        assert pytest_wrapped_e.type == SystemExit
        assert pytest_wrapped_e.value.code == 1
Пример #5
0
 def test_run_error_handling_no_exit(self):
     # Good parameter, error in runtime while dividing by zero
     with pytest.raises(DatabandRunError):
         with dbnd_handle_errors(exit_on_error=False):
             # Error won't cause exit
             func_with_error.dbnd_run(denominator=0)