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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
|
<?php
/**
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information please see
* <http://phing.info>.
*/
namespace Phing\Test\Support;
use Phing\Exception\BuildException;
use Phing\Io\File;
use Phing\Io\IOException;
use Phing\Parser\ProjectConfigurator;
use Phing\Project;
use PHPUnit\Framework\TestCase;
/**
* A BuildFileTest is a TestCase which executes targets from a Phing buildfile
* for testing.
*
* This class provides a number of utility methods for particular build file
* tests which extend this class.
*
* @author Nico Seessle <nico@seessle.de>
* @author Conor MacNeill
* @author Victor Farazdagi <simple.square@gmail.com>
*/
abstract class BuildFileTest extends TestCase
{
/**
* @var array array of log BuildEvent objects
*/
public $logBuffer = [];
/** @var Project */
protected $project;
/**
* @var array
*/
private $outBuffer;
/**
* @var array
*/
private $errBuffer;
/**
* @var BuildException
*/
private $buildException;
public function assertFileSizeAtLeast(string $filepath, int $bytes): void
{
$actualSize = filesize($filepath);
if (!is_int($actualSize)) {
$this->fail("Error while reading file '{$filepath}'");
}
$this->assertGreaterThanOrEqual($bytes, $actualSize);
}
/**
* Asserts that the log buffer contains specified message at specified priority.
*
* @param string $expected Message subsctring
* @param null $priority Message priority (default: any)
* @param string $errormsg the error message to display
*/
protected function assertInLogs(string $expected, $priority = null, $errormsg = "Expected to find '%s' in logs: %s"): void
{
$found = false;
foreach ($this->logBuffer as $log) {
if (false !== stripos($log['message'], $expected)) {
$this->assertEquals(1, 1); // increase number of positive assertions
if (null === $priority) {
return;
}
if ($priority >= $log['priority']) {
$found = true;
}
}
if ($found) {
return;
}
}
$representation = [];
foreach ($this->logBuffer as $log) {
$representation[] = "[msg=\"{$log['message']}\",priority={$log['priority']}]";
}
$this->fail(sprintf($errormsg, $expected, var_export($representation, true)));
}
/**
* Asserts that the log buffer contains specified message at specified priority.
*
* @param string $expected Message subsctring
* @param null $priority Message priority (default: any)
* @param string $errormsg the error message to display
*/
protected function assertLogLineContaining(
string $expected,
$priority = null,
$errormsg = "Expected to find a log line that starts with '%s': %s"
): void {
$found = false;
foreach ($this->logBuffer as $log) {
if (false !== stripos($log['message'], $expected)) {
$this->assertEquals(1, 1); // increase number of positive assertions
if (null === $priority) {
return;
}
if ($priority >= $log['priority']) {
$found = true;
}
}
if ($found) {
return;
}
}
$representation = [];
foreach ($this->logBuffer as $log) {
$representation[] = "[msg=\"{$log['message']}\",priority={$log['priority']}]";
}
$this->fail(sprintf($errormsg, $expected, var_export($representation, true)));
}
/**
* Asserts that the log buffer does NOT contain specified message at specified priority.
*
* @param string $message Message subsctring
* @param string $errormsg the error message to display
*/
protected function assertNotInLogs(
string $message,
$errormsg = "Unexpected string '%s' found in logs: %s"
): void {
foreach ($this->logBuffer as $log) {
if (false !== stripos($log['message'], $message)) {
$representation = [];
foreach ($this->logBuffer as $log) {
$representation[] = "[msg=\"{$log['message']}\",priority={$log['priority']}]";
}
$this->fail(sprintf($errormsg, $message, var_export($representation, true)));
}
}
$this->assertEquals(1, 1); // increase number of positive assertions
}
/**
* run a target, expect for any build exception.
*
* @param string $target target to run
* @param string $cause information string to reader of report
*/
protected function expectBuildException(string $target, string $cause): void
{
$this->expectSpecificBuildException($target, $cause, null);
}
/**
* Assert that only the given message has been logged with a
* priority >= INFO when running the given target.
*
* @param mixed $target
* @param mixed $log
*/
protected function expectLog($target, $log): void
{
$this->executeTarget($target);
$this->assertInLogs($log);
}
/**
* Assert that the given message has been logged with a priority
* >= INFO when running the given target.
*
* @param mixed $target
* @param mixed $log
*/
protected function expectLogContaining($target, $log): void
{
$this->executeTarget($target);
$this->assertInLogs($log);
}
/**
* Assert that the given message has been logged with a priority
* >= DEBUG when running the given target.
*
* @param mixed $target
* @param mixed $log
*/
protected function expectDebuglog($target, $log): void
{
$this->executeTarget($target);
$this->assertInLogs($log, Project::MSG_DEBUG);
}
/**
* execute the target, verify output matches expectations.
*
* @param string $target target to execute
* @param string $output output to look for
*/
protected function expectOutput(string $target, string $output): void
{
$this->executeTarget($target);
$realOutput = $this->getOutput();
$this->assertEquals($output, $realOutput);
}
/**
* execute the target, verify output matches expectations
* and that we got the named error at the end.
*
* @param string $target target to execute
* @param string $output output to look for
* @param string $error Description of Parameter
*/
protected function expectOutputAndError(string $target, string $output, string $error): void
{
$this->executeTarget($target);
$realOutput = $this->getOutput();
$this->assertEquals($output, $realOutput);
$realError = $this->getError();
$this->assertEquals($error, $realError);
}
protected function getOutput(): string
{
return $this->cleanBuffer($this->outBuffer);
}
protected function getError(): string
{
return $this->cleanBuffer($this->errBuffer);
}
protected function getBuildException(): BuildException
{
return $this->buildException;
}
/**
* set up to run the named project.
*
* @param string $filename name of project file to run
*
* @throws BuildException
* @throws IOException
*/
protected function configureProject(string $filename): void
{
$this->logBuffer = [];
$this->project = new Project();
$this->project->init();
$f = new File($filename);
$this->project->setUserProperty('phing.file', $f->getAbsolutePath());
$this->project->setUserProperty('phing.dir', dirname($f->getAbsolutePath()));
$this->project->addBuildListener(new PhingTestListener($this));
ProjectConfigurator::configureProject($this->project, new File($filename));
}
/**
* execute a target we have set up.
*
* @pre configureProject has been called
*
* @param string $targetName target to run
*/
protected function executeTarget(string $targetName): void
{
if (empty($this->project)) {
return;
}
$this->outBuffer = '';
$this->errBuffer = '';
$this->logBuffer = [];
$this->buildException = null;
$this->project->executeTarget($targetName);
}
/**
* Get the project which has been configured for a test.
*
* @return Project the Project instance for this test
*/
protected function getProject(): Project
{
return $this->project;
}
/**
* get the directory of the project.
*
* @return File the base dir of the project
*/
protected function getProjectDir(): File
{
return $this->project->getBasedir();
}
/**
* run a target, wait for a build exception.
*
* @param string $target target to run
* @param string $cause information string to reader of report
* @param null|string $msg the message value of the build exception we are waiting for
* set to null for any build exception to be valid
*/
protected function expectSpecificBuildException(string $target, string $cause, ?string $msg): void
{
try {
$this->executeTarget($target);
} catch (BuildException $ex) {
$this->buildException = $ex;
if ((null !== $msg) && ($ex->getMessage() !== $msg)) {
$this->fail(
"Should throw BuildException because '" . $cause
. "' with message '" . $msg
. "' (actual message '" . $ex->getMessage() . "' instead)"
);
}
$this->assertEquals(1, 1); // increase number of positive assertions
return;
}
$this->fail('Should throw BuildException because: ' . $cause);
}
/**
* run a target, expect an exception string
* containing the substring we look for (case sensitive match).
*
* @param string $target target to run
* @param string $cause information string to reader of report
* @param string $contains substring of the build exception to look for
*/
protected function expectBuildExceptionContaining(string $target, string $cause, string $contains): void
{
try {
$this->executeTarget($target);
} catch (BuildException $ex) {
$this->buildException = $ex;
$found = false;
while ($ex) {
$msg = $ex->getMessage();
if (false !== stripos($ex->getMessage(), $contains)) {
$found = true;
}
$ex = $ex->getPrevious();
}
if (!$found) {
$this->fail(
"Should throw BuildException because '" . $cause . "' with message containing '" . $contains
. "' (actual message '" . $msg . "' instead)"
);
}
$this->assertEquals(1, 1); // increase number of positive assertions
return;
}
$this->fail('Should throw BuildException because: ' . $cause);
}
/**
* call a target, verify property is as expected.
*
* @param string $target build file target
* @param string $property property name
* @param string $value expected value
*/
protected function expectPropertySet(string $target, string $property, $value = 'true'): void
{
$this->executeTarget($target);
$this->assertPropertyEquals($property, $value);
}
/**
* assert that a property equals a value; comparison is case sensitive.
*
* @param string $property property name
* @param null|string $value expected value
*/
protected function assertPropertyEquals(string $property, ?string $value): void
{
$result = $this->project->getProperty($property);
$this->assertEquals($value, $result, 'property ' . $property);
}
/**
* assert that a property equals "true".
*
* @param string $property property name
*/
protected function assertPropertySet(string $property): void
{
$this->assertPropertyEquals($property, 'true');
}
/**
* assert that a property is null.
*
* @param string $property property name
*/
protected function assertPropertyUnset(string $property): void
{
$this->assertPropertyEquals($property, null);
}
/**
* call a target, verify property is null.
*
* @param string $target build file target
* @param string $property property name
*/
protected function expectPropertyUnset(string $target, string $property): void
{
$this->expectPropertySet($target, $property, null);
}
protected function rmdir($dir): bool
{
if (!file_exists($dir)) {
return true;
}
if (!is_dir($dir)) {
return unlink($dir);
}
foreach (scandir($dir) as $item) {
if ('.' === $item || '..' === $item) {
continue;
}
if (!$this->rmdir($dir . DIRECTORY_SEPARATOR . $item)) {
return false;
}
}
return rmdir($dir);
}
/**
* Get relative date.
*
* @param int $timestamp Timestamp to us as pin-point
* @param string $type Whether 'fulldate' or 'time'
*/
protected function getRelativeDate(int $timestamp, $type = 'fulldate'): string
{
// calculate the diffrence
$timediff = time() - $timestamp;
if ($timediff < 3600) {
if ($timediff < 120) {
$returndate = '1 minute ago';
} else {
$returndate = ceil($timediff / 60) . ' minutes ago';
}
} else {
if ($timediff < 7200) {
$returndate = '1 hour ago.';
} else {
if ($timediff < 86400) {
$returndate = ceil($timediff / 3600) . ' hours ago';
} else {
if ($timediff < 172800) {
$returndate = '1 day ago.';
} else {
if ($timediff < 604800) {
$returndate = ceil($timediff / 86400) . ' days ago';
} else {
if ($timediff < 1209600) {
$returndate = ceil($timediff / 86400) . ' days ago';
} else {
if ($timediff < 2629744) {
$returndate = ceil($timediff / 86400) . ' days ago';
} else {
if ($timediff < 3024000) {
$returndate = ceil($timediff / 604900) . ' weeks ago';
} else {
if ($timediff > 5259486) {
$returndate = ceil($timediff / 2629744) . ' months ago';
} else {
$returndate = ceil($timediff / 604900) . ' weeks ago';
}
}
}
}
}
}
}
}
}
return $returndate;
}
private function cleanBuffer($buffer): string
{
$cleanedBuffer = '';
$cr = false;
for ($i = 0, $bufflen = strlen($buffer); $i < $bufflen; ++$i) {
$ch = $buffer[$i];
if ("\r" === $ch) {
$cr = true;
continue;
}
if (!$cr) {
$cleanedBuffer .= $ch;
} else {
if ("\n" === $ch) {
$cleanedBuffer .= $ch;
} else {
$cleanedBuffer .= "\r" . $ch;
}
}
}
return $cleanedBuffer;
}
}
|