@@ -42,6 +42,11 @@ |
||
42 | 42 | return json_decode($systems->getBody()); |
43 | 43 | } |
44 | 44 | |
45 | + /** |
|
46 | + * @param string $url |
|
47 | + * |
|
48 | + * @return string |
|
49 | + */ |
|
45 | 50 | private function prepareUrl($url) |
46 | 51 | { |
47 | 52 | $preparedUrl = str_replace("#project#", $this->project, $url); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | public function validate(Response $response) |
15 | 15 | { |
16 | - $url = (string)$response->getUri(); |
|
16 | + $url = (string) $response->getUri(); |
|
17 | 17 | |
18 | 18 | if (substr_count($url, '/') == 2) { |
19 | 19 | $filename = $robotsUrl = $url . "/robots.txt"; |
@@ -13,6 +13,9 @@ |
||
13 | 13 | return $this->getStatusCode(); |
14 | 14 | } |
15 | 15 | |
16 | + /** |
|
17 | + * @return string |
|
18 | + */ |
|
16 | 19 | public function getContentType() |
17 | 20 | { |
18 | 21 | $exploded = explode(';', $this->hasHeader('Content-Type') ? $this->getHeader('Content-Type')[0] : null); |
@@ -159,6 +159,10 @@ |
||
159 | 159 | } |
160 | 160 | } |
161 | 161 | |
162 | + /** |
|
163 | + * @param string $identifier |
|
164 | + * @param string $message |
|
165 | + */ |
|
162 | 166 | public function send($identifier, $system, $message, $status, $url = '', $value = 0) |
163 | 167 | { |
164 | 168 | $event = new Event($identifier, $system, $status, $this->tool, $message, $value); |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | } else { |
174 | 174 | $system = $this->system; |
175 | 175 | } |
176 | - $this->send($identifier, $system, 'smoke', $message, self::STATUS_FAILURE, (string)$result->getUrl()); |
|
176 | + $this->send($identifier, $system, 'smoke', $message, self::STATUS_FAILURE, (string) $result->getUrl()); |
|
177 | 177 | $failedTests[] = $ruleLKey; |
178 | 178 | } |
179 | 179 | } |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | } else { |
189 | 189 | $system = $this->system; |
190 | 190 | } |
191 | - $this->send($identifier, $system, 'smoke_' . $rule . '_' . $result->getUrl(), self::STATUS_SUCCESS, (string)$result->getUrl()); |
|
191 | + $this->send($identifier, $system, 'smoke_' . $rule . '_' . $result->getUrl(), self::STATUS_SUCCESS, (string) $result->getUrl()); |
|
192 | 192 | } |
193 | 193 | } |
194 | 194 | } |
@@ -52,7 +52,7 @@ |
||
52 | 52 | public function isFiltered(Event $event, $ruleName, Response $response) |
53 | 53 | { |
54 | 54 | foreach ($this->filters as $filter) { |
55 | - if ($ruleName === $filter['rule'] && 0 < preg_match('$' . preg_quote($filter['uri']) . '$', (string)$response->getUri())) { |
|
55 | + if ($ruleName === $filter['rule'] && 0 < preg_match('$' . preg_quote($filter['uri']) . '$', (string) $response->getUri())) { |
|
56 | 56 | $event->setProcessed(); |
57 | 57 | return true; |
58 | 58 | } |