This repository was archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy patherror.feature
More file actions
156 lines (134 loc) · 10.4 KB
/
error.feature
File metadata and controls
156 lines (134 loc) · 10.4 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
@wip @api @errorPage @group-c
Feature: On errors I want to see a friendly page and be able to report an
incident number/code.
Scenario: Test exception, fatal error, user error.
# We're not using a scenario outline as that would be too expensive because
# it would run the before/after hooks on each example.
# Error level: hide.
Given the site error reporting verbosity is "hide"
When I am on "/error_page_test/exception"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And I should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should not see "Exception: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->exception()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/fatal_error"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should not see "Error: Call to undefined method Drupal\error_page_test\Controller\ErrorPageTestController::functionDoesNotExist() in Drupal\error_page_test\Controller\ErrorPageTestController->fatalError()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/user_error"
Then the response status code should be 200
And I should not see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should not see "User error: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->userError()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/php_notice"
Then the response status code should be 200
And I should not see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should not see "Notice: Undefined variable: not_initialised_variable in Drupal\error_page_test\Controller\ErrorPageTestController->notice()"
And the response should not contain "<pre class=\"backtrace\">"
# Error level: some.
Given the site error reporting verbosity is "some"
When I am on "/error_page_test/exception"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And I should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should see "Exception: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->exception()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/fatal_error"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should see "Error: Call to undefined method Drupal\error_page_test\Controller\ErrorPageTestController::functionDoesNotExist() in Drupal\error_page_test\Controller\ErrorPageTestController->fatalError()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/user_error"
Then the response status code should be 200
And I should see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should see "User error: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->userError()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/php_notice"
Then the response status code should be 200
And I should not see the following success messages:
| success messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should not see "Notice: Undefined variable: not_initialised_variable in Drupal\error_page_test\Controller\ErrorPageTestController->notice()"
And the response should not contain "<pre class=\"backtrace\">"
# Error level: all.
Given the site error reporting verbosity is "all"
When I am on "/error_page_test/exception"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And I should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should see "Exception: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->exception()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/fatal_error"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should see "Error: Call to undefined method Drupal\error_page_test\Controller\ErrorPageTestController::functionDoesNotExist() in Drupal\error_page_test\Controller\ErrorPageTestController->fatalError()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/user_error"
Then the response status code should be 200
And I should see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should see "User error: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->userError()"
And the response should not contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/php_notice"
Then the response status code should be 200
And I should see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should see "Notice: Undefined variable: not_initialised_variable in Drupal\error_page_test\Controller\ErrorPageTestController->notice()"
And the response should not contain "<pre class=\"backtrace\">"
# Error level: verbose.
Given the site error reporting verbosity is "verbose"
When I am on "/error_page_test/exception"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And I should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should see "Exception: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->exception()"
And the response should contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/fatal_error"
Then the response status code should be 500
And I should see the heading "There was an unexpected problem serving your request"
And should see text matching "Please try again and contact us if the problem persist including [0-9a-f]{8}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{4}\-[0-9a-f]{12} in your message."
And I should see "Error: Call to undefined method Drupal\error_page_test\Controller\ErrorPageTestController::functionDoesNotExist() in Drupal\error_page_test\Controller\ErrorPageTestController->fatalError()"
And the response should contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/user_error"
Then the response status code should be 200
And I should see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should see "User error: donuts in Drupal\error_page_test\Controller\ErrorPageTestController->userError()"
And the response should contain "<pre class=\"backtrace\">"
When I am on "/error_page_test/php_notice"
Then the response status code should be 200
And I should see the following error messages:
| error messages |
| There was an unexpected problem serving your request. |
| Please try again and contact us if the problem persist including |
| in your message. |
And I should see "Notice: Undefined variable: not_initialised_variable in Drupal\error_page_test\Controller\ErrorPageTestController->notice()"
And the response should contain "<pre class=\"backtrace\">"