-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy patherrors.py
121 lines (65 loc) · 2.79 KB
/
errors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
"""Exceptions raised by resmoke.py."""
class ResmokeError(Exception): # noqa: D204
"""Base class for all resmoke.py exceptions."""
pass
class SuiteNotFound(ResmokeError): # noqa: D204
"""A suite that isn't recognized was specified."""
pass
class DuplicateSuiteDefinition(ResmokeError): # noqa: D204
"""A suite name with multiple definitions."""
pass
class StopExecution(ResmokeError): # noqa: D204
"""Exception raised when resmoke.py should stop executing tests if failing fast is enabled."""
pass
class UserInterrupt(StopExecution): # noqa: D204
"""Exception raised when a user signals resmoke.py to unconditionally stop executing tests."""
EXIT_CODE = 130 # Simulate SIGINT as exit code.
class LoggerRuntimeConfigError(StopExecution): # noqa: D204
"""Exception raised when a logging handler couldn't be configured at runtime."""
EXIT_CODE = 75
class TestFailure(ResmokeError): # noqa: D204
"""Exception raised by a hook in the after_test method.
Raised if it determines the the previous test should be marked as a failure.
"""
pass
class ServerFailure(TestFailure): # noqa: D204
"""Exception raised by a hook in the after_test method.
Raised if it detects that the fixture did not exit cleanly and should be marked
as a failure.
"""
pass
class PortAllocationError(ResmokeError): # noqa: D204
"""Exception that is raised by the PortAllocator.
Raised if a port is requested outside of the range of valid ports, or if a
fixture requests more ports than were reserved for that job.
"""
pass
class ProcessError(ResmokeError):
"""Exception raised in the process wrapper.
Raised if a termination mode is given to the process wrapper that it doesn't
know how to send a signal for.
"""
pass
class UnsafeExitError(ResmokeError):
"""Exception raised by process test cases.
Raised if a process terminates in such a way that further test execution may be unsafe.
"""
pass
class CedarReportError(ResmokeError):
"""Exception raised while generating cedar report."""
pass
class InvalidMatrixSuiteError(ResmokeError):
"""Exception raised when validating a matrix suite mapping file."""
pass
class TagFileDoesNotExistError(ResmokeError):
"""Exception raised when a tag file is passed into resmoke that does not exist."""
pass
class RequiresForceRemove(ResmokeError):
"""Exception raised when a directory cannot be removed."""
pass
class TestExcludedFromSuiteError(ResmokeError):
"""Exception raised when an excluded from suite test passed as positional argument to resmoke."""
pass
class SuiteSelectorConfigurationError(ResmokeError):
"""Exceptions raised when selector section in suite configuration has errors."""
pass