@@ -25,6 +25,6 @@ |
||
25 | 25 | protected function doValidation(ResponseInterface $response) |
26 | 26 | { |
27 | 27 | $this->assert(strpos($response->getBody(), $this->string) !== false, |
28 | - 'The given string (' . $this->string . ') was not found in this document.'); |
|
28 | + 'The given string ('.$this->string.') was not found in this document.'); |
|
29 | 29 | } |
30 | 30 | } |
@@ -25,8 +25,8 @@ |
||
25 | 25 | protected function doValidation(ResponseInterface $response) |
26 | 26 | { |
27 | 27 | foreach ($this->regExs as $regEx) { |
28 | - $this->assert(preg_match('^' . $regEx . '^', (string)$response->getBody()) === 0, |
|
29 | - 'The given regular expression (' . $regEx . ') was found in this document.'); |
|
28 | + $this->assert(preg_match('^'.$regEx.'^', (string) $response->getBody()) === 0, |
|
29 | + 'The given regular expression ('.$regEx.') was found in this document.'); |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 | } |
@@ -26,6 +26,6 @@ |
||
26 | 26 | protected function doValidation(ResponseInterface $response) |
27 | 27 | { |
28 | 28 | $size = strlen($response->getBody()) / 1000; |
29 | - $this->assert($size <= $this->maxSize, 'The size of this html file is too big (' . $size . ' KB)'); |
|
29 | + $this->assert($size <= $this->maxSize, 'The size of this html file is too big ('.$size.' KB)'); |
|
30 | 30 | } |
31 | 31 | } |
@@ -29,12 +29,12 @@ discard block |
||
29 | 29 | |
30 | 30 | foreach ($this->regExs as $regEx) { |
31 | 31 | if ($regEx['isRegEx']) { |
32 | - if (preg_match('^' . $regEx['pattern'] . '^', (string)$response->getBody()) === 0) { |
|
33 | - $errors[] = 'Regular expression: ' . $regEx['pattern']; |
|
32 | + if (preg_match('^'.$regEx['pattern'].'^', (string) $response->getBody()) === 0) { |
|
33 | + $errors[] = 'Regular expression: '.$regEx['pattern']; |
|
34 | 34 | } |
35 | 35 | } else { |
36 | - if (preg_match('^' . preg_quote($regEx['pattern']) . '^', (string)$response->getBody()) === 0) { |
|
37 | - $errors[] = 'Text: ' . $regEx['pattern']; |
|
36 | + if (preg_match('^'.preg_quote($regEx['pattern']).'^', (string) $response->getBody()) === 0) { |
|
37 | + $errors[] = 'Text: '.$regEx['pattern']; |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $errorString = 'The following text elements were not found: <ul>'; |
44 | 44 | |
45 | 45 | foreach ($errors as $error) { |
46 | - $errorString .= '<li>' . $error . '</li>'; |
|
46 | + $errorString .= '<li>'.$error.'</li>'; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | $errorString .= '</ul>'; |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | protected function doValidation(ResponseInterface $response) |
28 | 28 | { |
29 | - $document = new Document((string)$response->getBody()); |
|
29 | + $document = new Document((string) $response->getBody()); |
|
30 | 30 | $files = $this->getFilesToCount($document, $response); |
31 | 31 | |
32 | 32 | $this->assert(count($files) <= $this->maxCount, sprintf($this->errorMessage, count($files))); |
@@ -37,10 +37,10 @@ |
||
37 | 37 | foreach ($images as $image) { |
38 | 38 | /* @var $image Uri */ |
39 | 39 | if ($currentUri->getHost($this->depth) !== $image->getHost($this->depth)) { |
40 | - $foreignImages[] = (string)$image; |
|
40 | + $foreignImages[] = (string) $image; |
|
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | - $this->assert(count($foreignImages) === 0, 'Images from a foreign domain where found (' . implode(', ', $foreignImages) . ')'); |
|
44 | + $this->assert(count($foreignImages) === 0, 'Images from a foreign domain where found ('.implode(', ', $foreignImages).')'); |
|
45 | 45 | } |
46 | 46 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | if ($response instanceof ContentTypeAwareResponse) { |
18 | 18 | if (($response->getStatusCode() < 300 || $response->getStatusCode() >= 400) && $response->getContentType() === 'text/html') { |
19 | 19 | if (stripos($response->getBody(), '</html>') === false) { |
20 | - throw new ValidationFailedException('Closing html tag is missing (document lengh: ' . strlen($response->getBody()) . ').'); |
|
20 | + throw new ValidationFailedException('Closing html tag is missing (document lengh: '.strlen($response->getBody()).').'); |
|
21 | 21 | } |
22 | 22 | } |
23 | 23 | } |
@@ -25,6 +25,6 @@ |
||
25 | 25 | public function doValidation(ResponseInterface $response) |
26 | 26 | { |
27 | 27 | $this->assert(strpos($response->getBody(), $this->string) !== false, |
28 | - 'The given string (' . $this->string . ') was found in this document.'); |
|
28 | + 'The given string ('.$this->string.') was found in this document.'); |
|
29 | 29 | } |
30 | 30 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | public function doValidation(ResponseInterface $response) |
23 | 23 | { |
24 | 24 | $domDocument = new \DOMDocument(); |
25 | - @$domDocument->loadHTML((string)$response->getBody()); |
|
25 | + @$domDocument->loadHTML((string) $response->getBody()); |
|
26 | 26 | |
27 | 27 | $domXPath = new \DOMXPath($domDocument); |
28 | 28 | |
@@ -30,16 +30,16 @@ discard block |
||
30 | 30 | $count = $domXPath->query($xpath['pattern'])->length; |
31 | 31 | |
32 | 32 | if ($xpath['relation'] === 'equals') { |
33 | - $result = $count === (int)$xpath['value']; |
|
34 | - $message = 'The xpath "' . $xpath['pattern'] . '" was found ' . $count . ' times. Expected were exact ' . $xpath['value'] . ' occurencies.'; |
|
33 | + $result = $count === (int) $xpath['value']; |
|
34 | + $message = 'The xpath "'.$xpath['pattern'].'" was found '.$count.' times. Expected were exact '.$xpath['value'].' occurencies.'; |
|
35 | 35 | } elseif ($xpath['relation'] === 'less than') { |
36 | - $result = $count < (int)$xpath['value']; |
|
37 | - $message = 'The xpath "' . $xpath['pattern'] . '" was found ' . $count . ' times. Expected were less than ' . $xpath['value'] . '.'; |
|
36 | + $result = $count < (int) $xpath['value']; |
|
37 | + $message = 'The xpath "'.$xpath['pattern'].'" was found '.$count.' times. Expected were less than '.$xpath['value'].'.'; |
|
38 | 38 | } elseif ($xpath['relation'] === 'greater than') { |
39 | - $result = $count > (int)$xpath['value']; |
|
40 | - $message = 'The xpath "' . $xpath['pattern'] . '" was found ' . $count . ' times. Expected were more than ' . $xpath['value'] . '.'; |
|
39 | + $result = $count > (int) $xpath['value']; |
|
40 | + $message = 'The xpath "'.$xpath['pattern'].'" was found '.$count.' times. Expected were more than '.$xpath['value'].'.'; |
|
41 | 41 | } else { |
42 | - throw new \RuntimeException('Relation not defined. Given "' . $xpath['relation'] . '" expected [equals, greater than, less than]'); |
|
42 | + throw new \RuntimeException('Relation not defined. Given "'.$xpath['relation'].'" expected [equals, greater than, less than]'); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | $this->assert($result, $message); |