@@ -27,13 +27,13 @@ |
||
| 27 | 27 | if ($response->getDuration() > $this->maxDuration) { |
| 28 | 28 | return new CheckResult( |
| 29 | 29 | CheckResult::STATUS_FAILURE, |
| 30 | - 'The http request took ' . (int) $response->getDuration() . ' milliseconds (limit was ' . $this->maxDuration . 'ms).', |
|
| 30 | + 'The http request took '.(int) $response->getDuration().' milliseconds (limit was '.$this->maxDuration.'ms).', |
|
| 31 | 31 | (int) $response->getDuration()); |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | return new CheckResult( |
| 35 | 35 | CheckResult::STATUS_SUCCESS, |
| 36 | - 'The http request took ' . (int) $response->getDuration() . ' milliseconds.', |
|
| 36 | + 'The http request took '.(int) $response->getDuration().' milliseconds.', |
|
| 37 | 37 | (int) $response->getDuration()); |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -25,13 +25,13 @@ |
||
| 25 | 25 | $validTo = date('d.m.Y H:i:s', $certInfo['validTo_time_t']); |
| 26 | 26 | |
| 27 | 27 | if ($certInfo['validFrom_time_t'] > time() || $certInfo['validTo_time_t'] < time()) { |
| 28 | - $errorMessage = 'Certificate is expired. [' . $validFrom . ' - ' . $validTo . ']'; |
|
| 28 | + $errorMessage = 'Certificate is expired. ['.$validFrom.' - '.$validTo.']'; |
|
| 29 | 29 | return new CheckResult(CheckResult::STATUS_FAILURE, $errorMessage); |
| 30 | - } elseif ($certInfo['validTo_time_t'] < strtotime('+' . $this->expireWarningTime . 'days')) { |
|
| 31 | - $errorMessage = 'Certificate warning, expires in less than ' . $this->expireWarningTime . ' days. Certificate expires at: ' . $validTo; |
|
| 30 | + } elseif ($certInfo['validTo_time_t'] < strtotime('+'.$this->expireWarningTime.'days')) { |
|
| 31 | + $errorMessage = 'Certificate warning, expires in less than '.$this->expireWarningTime.' days. Certificate expires at: '.$validTo; |
|
| 32 | 32 | return new CheckResult(CheckResult::STATUS_FAILURE, $errorMessage, 0); |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - return new CheckResult(CheckResult::STATUS_SUCCESS, 'The certificate does not expire within the next ' . $this->expireWarningTime . ' days. Expire date: ' . $validTo . '.'); |
|
| 35 | + return new CheckResult(CheckResult::STATUS_SUCCESS, 'The certificate does not expire within the next '.$this->expireWarningTime.' days. Expire date: '.$validTo.'.'); |
|
| 36 | 36 | } |
| 37 | 37 | } |
@@ -22,14 +22,14 @@ |
||
| 22 | 22 | if (count($results) > 0) { |
| 23 | 23 | ++$this->urlCount; |
| 24 | 24 | $firstResult = array_pop($results); |
| 25 | - $this->output->writeln(' ' . (string) $firstResult->getResponse()->getUri()); |
|
| 25 | + $this->output->writeln(' '.(string) $firstResult->getResponse()->getUri()); |
|
| 26 | 26 | $this->output->writeln(''); |
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public function finish() |
| 31 | 31 | { |
| 32 | - $this->output->writeln(' <comment>Warm up finished. ' . $this->urlCount . ' urls visited.</comment>'); |
|
| 32 | + $this->output->writeln(' <comment>Warm up finished. '.$this->urlCount.' urls visited.</comment>'); |
|
| 33 | 33 | $this->output->writeln(''); |
| 34 | 34 | } |
| 35 | 35 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | { |
| 35 | 35 | $data = json_decode($response->getBody()); |
| 36 | 36 | if ($data === null) { |
| 37 | - throw new ValidationFailedException("The given JSON data can not be validated (last error: '" . $this->json_errors[json_last_error()] . "')."); |
|
| 37 | + throw new ValidationFailedException("The given JSON data can not be validated (last error: '".$this->json_errors[json_last_error()]."')."); |
|
| 38 | 38 | } else { |
| 39 | 39 | $errorStatus = false; |
| 40 | 40 | $messageParts = array(); |
@@ -50,14 +50,14 @@ discard block |
||
| 50 | 50 | $errorStatus = true; |
| 51 | 51 | $errorMessage = ''; |
| 52 | 52 | foreach ($validator->getErrors() as $error) { |
| 53 | - $errorMessage = $errorMessage . sprintf("[%s] %s\n", $error['property'], $error['message']); |
|
| 53 | + $errorMessage = $errorMessage.sprintf("[%s] %s\n", $error['property'], $error['message']); |
|
| 54 | 54 | } |
| 55 | - $messageParts[] = $jsonSchemaFile['jsonfilename'] . ' - ' . $jsonSchemaFile['jsonfileurl'] . '(last error: ' . $errorMessage . ').'; |
|
| 55 | + $messageParts[] = $jsonSchemaFile['jsonfilename'].' - '.$jsonSchemaFile['jsonfileurl'].'(last error: '.$errorMessage.').'; |
|
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | if ($errorStatus === true) { |
| 60 | - $message = 'JSON file (' . (string) $response->getUri() . ') does not validate against the following JSON Schema files: ' . implode(', ', $messageParts); |
|
| 60 | + $message = 'JSON file ('.(string) $response->getUri().') does not validate against the following JSON Schema files: '.implode(', ', $messageParts); |
|
| 61 | 61 | throw new ValidationFailedException($message); |
| 62 | 62 | } |
| 63 | 63 | } |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | public function doValidation(Response $response) |
| 25 | 25 | { |
| 26 | 26 | $domDocument = new \DOMDocument(); |
| 27 | - @$domDocument->loadHTML((string)$response->getBody()); |
|
| 27 | + @$domDocument->loadHTML((string) $response->getBody()); |
|
| 28 | 28 | |
| 29 | 29 | $domXPath = new \DOMXPath($domDocument); |
| 30 | 30 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | try { |
| 38 | 38 | $selectorAsXPath = $converter->toXPath($selector['pattern']); |
| 39 | 39 | } catch (\Exception $e) { |
| 40 | - throw new ValidationFailedException('Invalid css selector (' . $selector['pattern'] . ').'); |
|
| 40 | + throw new ValidationFailedException('Invalid css selector ('.$selector['pattern'].').'); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $count = $domXPath->query($selectorAsXPath)->length; |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | if ($error === true) { |
| 52 | 52 | $allNotFoundSelectors = implode('", "', $snotFoundSelectors); |
| 53 | 53 | |
| 54 | - throw new ValidationFailedException('CSS Selector "' . $allNotFoundSelectors . '" not found in DOM.'); |
|
| 54 | + throw new ValidationFailedException('CSS Selector "'.$allNotFoundSelectors.'" not found in DOM.'); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | } |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | } catch (ValidationFailedException $e) { |
| 97 | 97 | $result = new CheckResult(CheckResult::STATUS_FAILURE, $e->getMessage()); |
| 98 | 98 | } catch (\Exception $e) { |
| 99 | - $result = new CheckResult(CheckResult::STATUS_FAILURE, 'An error occured: ' . $e->getMessage()); |
|
| 99 | + $result = new CheckResult(CheckResult::STATUS_FAILURE, 'An error occured: '.$e->getMessage()); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | $result->setResponse($response); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | if ($url['url'] instanceof UriInterface) { |
| 93 | 93 | $urlObject = $url['url']; |
| 94 | - }else { |
|
| 94 | + } else { |
|
| 95 | 95 | $urlObject = new Uri($url['url']); |
| 96 | 96 | } |
| 97 | 97 | |
@@ -112,20 +112,20 @@ discard block |
||
| 112 | 112 | /* @var \Ivory\HttpAdapter\HttpAdapterException $exception */ |
| 113 | 113 | |
| 114 | 114 | $mainUri = $request->getUri(); |
| 115 | - $this->redirects[(string)$mainUri->getScheme() . '://' . $mainUri->getHost() . $corruptUrl] = (string)$mainUri; |
|
| 115 | + $this->redirects[(string) $mainUri->getScheme().'://'.$mainUri->getHost().$corruptUrl] = (string) $mainUri; |
|
| 116 | 116 | |
| 117 | - $this->urls[] = ['url' => $mainUri->getScheme() . '://' . $mainUri->getHost() . $corruptUrl, 'system' => $url['system']]; |
|
| 118 | - $this->urlStack[] = ['url' => $mainUri->getScheme() . '://' . $mainUri->getHost() . $corruptUrl, 'system' => $url['system']]; |
|
| 117 | + $this->urls[] = ['url' => $mainUri->getScheme().'://'.$mainUri->getHost().$corruptUrl, 'system' => $url['system']]; |
|
| 118 | + $this->urlStack[] = ['url' => $mainUri->getScheme().'://'.$mainUri->getHost().$corruptUrl, 'system' => $url['system']]; |
|
| 119 | 119 | |
| 120 | 120 | return $this->next(); |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | // the error handling should be done withing the calling class |
| 124 | - echo "\n " . $exception->getMessage() . "\n"; |
|
| 124 | + echo "\n ".$exception->getMessage()."\n"; |
|
| 125 | 125 | |
| 126 | 126 | return $this->next(); |
| 127 | 127 | } else { |
| 128 | - $errorMessages .= $exception->getMessage() . "\n"; |
|
| 128 | + $errorMessages .= $exception->getMessage()."\n"; |
|
| 129 | 129 | } |
| 130 | 130 | } |
| 131 | 131 | if ($errorMessages !== '') { |
@@ -138,8 +138,8 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | public function getOriginUri(UriInterface $uri) |
| 140 | 140 | { |
| 141 | - if (array_key_exists((string)$uri, $this->redirects)) { |
|
| 142 | - return $this->urls[$this->redirects[(string)$uri]]['url']; |
|
| 141 | + if (array_key_exists((string) $uri, $this->redirects)) { |
|
| 142 | + return $this->urls[$this->redirects[(string) $uri]]['url']; |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | return $uri; |
@@ -152,11 +152,11 @@ discard block |
||
| 152 | 152 | |
| 153 | 153 | public function getSystem(UriInterface $uri) |
| 154 | 154 | { |
| 155 | - if (array_key_exists((string)$uri, $this->redirects)) { |
|
| 156 | - return $this->urls[$this->redirects[(string)$uri]]['system']; |
|
| 155 | + if (array_key_exists((string) $uri, $this->redirects)) { |
|
| 156 | + return $this->urls[$this->redirects[(string) $uri]]['system']; |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - return $this->urls[(string)$uri]['system']; |
|
| 159 | + return $this->urls[(string) $uri]['system']; |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | public function getSystems() |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | |
| 92 | 92 | if ($url['url'] instanceof UriInterface) { |
| 93 | 93 | $urlObject = $url['url']; |
| 94 | - }else { |
|
| 94 | + } else { |
|
| 95 | 95 | $urlObject = new Uri($url['url']); |
| 96 | 96 | } |
| 97 | 97 | |
@@ -198,12 +198,12 @@ |
||
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | /** |
| 201 | - * @param $identifier |
|
| 201 | + * @param string $identifier |
|
| 202 | 202 | * @param $system |
| 203 | - * @param $message |
|
| 203 | + * @param string $message |
|
| 204 | 204 | * @param $status |
| 205 | 205 | * @param $value |
| 206 | - * @param $tool |
|
| 206 | + * @param string $tool |
|
| 207 | 207 | * @param $component |
| 208 | 208 | * @param Attribute[] $attributes |
| 209 | 209 | */ |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | foreach ($this->results as $results) { |
| 119 | 119 | foreach ($results as $result) { |
| 120 | 120 | /* @var CheckResult $result */ |
| 121 | - $tool = 'Smoke' . $result->getRuleName(); |
|
| 121 | + $tool = 'Smoke'.$result->getRuleName(); |
|
| 122 | 122 | $checks[$tool][] = $result; |
| 123 | 123 | } |
| 124 | 124 | } |
@@ -130,19 +130,19 @@ discard block |
||
| 130 | 130 | continue; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - $message = 'The smoke test for #system_name# failed (Rule: ' . $toolName . ').<ul>'; |
|
| 133 | + $message = 'The smoke test for #system_name# failed (Rule: '.$toolName.').<ul>'; |
|
| 134 | 134 | $status = Event::STATUS_SUCCESS; |
| 135 | 135 | $failureCount = 0; |
| 136 | - $identifier = $toolName . '_' . $this->system; |
|
| 136 | + $identifier = $toolName.'_'.$this->system; |
|
| 137 | 137 | |
| 138 | 138 | foreach ($results as $result) { |
| 139 | 139 | /** @var CheckResult $result */ |
| 140 | 140 | if ($result->getStatus() === CheckResult::STATUS_FAILURE) { |
| 141 | 141 | $comingFrom = ''; |
| 142 | 142 | if ($this->addComingFrom && $this->retriever->getComingFrom($result->getResponse()->getUri())) { |
| 143 | - $comingFrom = ', coming from: ' . $this->retriever->getComingFrom($result->getResponse()->getUri()); |
|
| 143 | + $comingFrom = ', coming from: '.$this->retriever->getComingFrom($result->getResponse()->getUri()); |
|
| 144 | 144 | } |
| 145 | - $message .= '<li>' . $result->getMessage() . ' (url: ' . (string)$result->getResponse()->getUri() . $comingFrom . ')</li>'; |
|
| 145 | + $message .= '<li>'.$result->getMessage().' (url: '.(string) $result->getResponse()->getUri().$comingFrom.')</li>'; |
|
| 146 | 146 | ++$failureCount; |
| 147 | 147 | } |
| 148 | 148 | } |
@@ -150,9 +150,9 @@ discard block |
||
| 150 | 150 | $status = Event::STATUS_FAILURE; |
| 151 | 151 | $message .= '</ul>'; |
| 152 | 152 | $firstResult = array_pop($results); |
| 153 | - $attributes[] = new Attribute('html-content', (string)$firstResult->getResponse()->getBody(), true); |
|
| 153 | + $attributes[] = new Attribute('html-content', (string) $firstResult->getResponse()->getBody(), true); |
|
| 154 | 154 | } else { |
| 155 | - $message = 'All checks for system "#system_name#" succeeded [SmokeBasic:' . $toolName . '].'; |
|
| 155 | + $message = 'All checks for system "#system_name#" succeeded [SmokeBasic:'.$toolName.'].'; |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | foreach ($results as $result) { |
| 167 | 167 | /* @var CheckResult $result */ |
| 168 | 168 | |
| 169 | - $identifier = '_' . $this->getIdentifier($result); |
|
| 169 | + $identifier = '_'.$this->getIdentifier($result); |
|
| 170 | 170 | $tool = $this->getPrefix($result->getRuleName()); |
| 171 | 171 | |
| 172 | 172 | $component = $this->getComponent($result->getRuleName()); |
@@ -174,14 +174,14 @@ discard block |
||
| 174 | 174 | |
| 175 | 175 | $attributes = array(); |
| 176 | 176 | if ($result->getStatus() == CheckResult::STATUS_FAILURE) { |
| 177 | - $attributes[] = new Attribute('html content', (string)$result->getResponse()->getBody(), true); |
|
| 177 | + $attributes[] = new Attribute('html content', (string) $result->getResponse()->getBody(), true); |
|
| 178 | 178 | $attributes[] = new Attribute('http status code', $result->getResponse()->getStatusCode()); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | $this->send( |
| 182 | 182 | $identifier, |
| 183 | 183 | $system, |
| 184 | - $result->getMessage() . ' (url: ' . (string)$result->getResponse()->getUri() . ')', |
|
| 184 | + $result->getMessage().' (url: '.(string) $result->getResponse()->getUri().')', |
|
| 185 | 185 | $result->getStatus(), |
| 186 | 186 | $result->getValue(), |
| 187 | 187 | $tool, |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | |
| 195 | 195 | private function getIdentifier(CheckResult $result) |
| 196 | 196 | { |
| 197 | - return $this->tool . '_' . $result->getRuleName(); |
|
| 197 | + return $this->tool.'_'.$result->getRuleName(); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | private function getPrefix($string) |
@@ -27,13 +27,13 @@ |
||
| 27 | 27 | |
| 28 | 28 | foreach ($urls as $url) { |
| 29 | 29 | |
| 30 | - $idnUrl = $url->getScheme() . '://' . idn_to_ascii($url->getHost()) . $url->getPath(); |
|
| 30 | + $idnUrl = $url->getScheme().'://'.idn_to_ascii($url->getHost()).$url->getPath(); |
|
| 31 | 31 | |
| 32 | 32 | if (!filter_var($idnUrl, FILTER_VALIDATE_URL)) { |
| 33 | - $invalidUrls[] = (string)$url; |
|
| 33 | + $invalidUrls[] = (string) $url; |
|
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - $this->assert(count($invalidUrls) === 0, 'Invalid urls found (' . implode(', ', $invalidUrls) . ').'); |
|
| 37 | + $this->assert(count($invalidUrls) === 0, 'Invalid urls found ('.implode(', ', $invalidUrls).').'); |
|
| 38 | 38 | } |
| 39 | 39 | } |