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
|
<?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\Task\System;
use AssertionError;
use Phing\Io\File;
use Phing\Listener\BuildEvent;
use Phing\Listener\BuildListener;
use Phing\Test\Support\BuildFileTest;
use Phing\Type\Path;
use Throwable;
/**
* Testcase for the Phing task/condition.
*
* @author Siad Ardroumli <siad.ardroumli@gmail.com>
*
* @internal
*/
class PhingTaskTest extends BuildFileTest
{
public function setUp(): void
{
$this->configureProject(PHING_TEST_BASE . '/etc/tasks/system/phing.xml');
}
public function tearDown(): void
{
$this->getProject()->executeTarget('cleanup');
}
public function test1(): void
{
$this->expectBuildException(__FUNCTION__, 'phing task self referencing.');
}
public function test2(): void
{
$this->expectBuildException(__FUNCTION__, 'phingcall without arguments.');
}
public function test3(): void
{
$this->expectBuildException(__FUNCTION__, 'No BuildException thrown.');
}
public function test4(): void
{
$this->expectBuildException(__FUNCTION__, 'phingcall with empty target.');
}
public function test4b(): void
{
$this->expectBuildException(__FUNCTION__, 'phingcall with not existing target.');
}
public function test5(): void
{
$this->expectNotToPerformAssertions();
$this->getProject()->executeTarget(__FUNCTION__);
}
public function test6(): void
{
$this->expectNotToPerformAssertions();
$this->getProject()->executeTarget(__FUNCTION__);
}
public function testExplicitBasedir1(): void
{
$dir1 = $this->getProject()->getBaseDir();
$dir2 = $this->getProject()->resolveFile('..');
$this->baseDirs('explicitBasedir1', [$dir1->getAbsolutePath(), $dir2->getAbsolutePath()]);
}
public function testExplicitBasedir2(): void
{
$dir1 = $this->getProject()->getBaseDir();
$dir2 = $this->getProject()->resolveFile('..');
$this->baseDirs('explicitBasedir2', [$dir1->getAbsolutePath(), $dir2->getAbsolutePath()]);
}
public function testInheritBasedir(): void
{
$basedir = $this->getProject()->getBaseDir()->getAbsolutePath();
$this->baseDirs('inheritBasedir', [$basedir, $basedir]);
}
public function testDoNotInheritBasedir(): void
{
$dir1 = $this->getProject()->getBaseDir();
$dir2 = $this->getProject()->resolveFile('phing');
$this->baseDirs('doNotInheritBasedir', [$dir1->getAbsolutePath(), $dir2->getAbsolutePath()]);
}
public function testBasedirTripleCall(): void
{
$dir1 = $this->getProject()->getBaseDir();
$dir2 = $this->getProject()->resolveFile('phing');
$this->baseDirs('tripleCall', [$dir1->getAbsolutePath(), $dir2->getAbsolutePath(), $dir1->getAbsolutePath()]);
}
public function testReferenceInheritance(): void
{
$p = new Path($this->getProject(), 'test-path');
$this->getProject()->addReference('path', $p);
$this->getProject()->addReference('no-override', $p);
$this->reference('testInherit', ['path', 'path'], [true, true], $p);
$this->reference('testInherit', ['no-override', 'no-override'], [true, false], $p);
$this->reference('testInherit', ['no-override', 'no-override'], [false, false], null);
}
public function testReferenceNoInheritance(): void
{
$p = new Path($this->getProject(), 'test-path');
$this->getProject()->addReference('path', $p);
$this->getProject()->addReference('no-override', $p);
$this->reference('testNoInherit', ['path', 'path'], [true, false], $p);
$this->reference('testNoInherit', ['path', 'path'], [false, true], null);
$this->reference('testInherit', ['no-override', 'no-override'], [true, false], $p);
$this->reference('testInherit', ['no-override', 'no-override'], [false, false], null);
}
public function testInheritPath(): void
{
$this->expectNotToPerformAssertions();
$this->getProject()->executeTarget('testInheritPath');
}
public function testLogfilePlacement(): void
{
/** @var File[] $logFiles */
$logFiles = [
$this->getProject()->resolveFile('test1.log'),
$this->getProject()->resolveFile('test2.log'),
$this->getProject()->resolveFile('phing/test3.log'),
$this->getProject()->resolveFile('phing/test4.log'),
];
foreach ($logFiles as $file) {
$this->assertFalse($file->exists(), $file->getName() . " doesn't exist");
}
$this->getProject()->executeTarget(__FUNCTION__);
foreach ($logFiles as $file) {
$this->assertTrue($file->exists(), $file->getName() . ' exist');
}
}
public function testUserPropertyWinsInheritAll(): void
{
$this->getProject()->setUserProperty('test', '7');
$this->getProject()->executeTarget('test-property-override-inheritall-start');
$this->assertInLogs('The value of test is 7');
}
public function testUserPropertyWinsNoInheritAll(): void
{
$this->getProject()->setUserProperty('test', '7');
$this->getProject()->executeTarget('test-property-override-no-inheritall-start');
$this->assertInLogs('The value of test is 7');
}
public function testOverrideWinsInheritAll(): void
{
$this->expectLogContaining('test-property-override-inheritall-start', 'The value of test is 4');
}
public function testOverrideWinsNoInheritAll(): void
{
$this->expectLogContaining('test-property-override-no-inheritall-start', 'The value of test is 4');
}
/**
* Fail due to infinite recursion loop.
*/
public function testInfiniteLoopViaDepends(): void
{
$this->markTestSkipped('infinite loop could occure');
// $this->expectBuildException('infinite-loop-via-depends', 'infinite loop');
}
public function testMultiSameProperty(): void
{
$this->expectLogContaining('multi-same-property', 'prop is two');
}
public function testTopLevelTarget(): void
{
$this->expectLogContaining('topleveltarget', 'Hello world');
}
protected function reference(string $target, array $keys, array $expect, $value): void
{
$rc = new class ($keys, $expect, $value) implements BuildListener {
private $keys;
private $expectSame;
private $value;
private $calls = 0;
private $error;
public function __construct(array $keys, array $expectSame, $value)
{
$this->keys = $keys;
$this->expectSame = $expectSame;
$this->value = $value;
}
public function buildStarted(BuildEvent $event)
{
}
public function buildFinished(BuildEvent $event)
{
}
public function targetFinished(BuildEvent $event)
{
}
public function taskStarted(BuildEvent $event)
{
}
public function taskFinished(BuildEvent $event)
{
}
public function messageLogged(BuildEvent $event)
{
}
public function targetStarted(BuildEvent $event)
{
if ('' === $event->getTarget()->getName()) {
return;
}
if (null === $this->error) {
try {
$msg = 'Call ' . $this->calls . " refid=\\'" . $this->keys[$this->calls] . "\\'";
if (null === $this->value) {
$o = $event->getProject()->getReference($this->keys[$this->calls]);
if ($this->expectSame[$this->calls++]) {
PhingTaskTest::assertNull($o, $msg);
} else {
PhingTaskTest::assertNotNull($o, $msg);
}
} else {
// a rather convoluted equals() test
/** @var Path $expect */
$expect = $this->value;
$received = $event->getProject()->getReference($this->keys[$this->calls]);
$shouldBeEqual = $this->expectSame[$this->calls++];
if (null === $received) {
PhingTaskTest::assertFalse($shouldBeEqual, $msg);
} else {
$l1 = $expect->listPaths();
$l2 = $received->listPaths();
if (count($l1) === count($l2)) {
for ($i = 0, $iMax = count($l1); $i < $iMax; ++$i) {
if ($l1[$i] !== $l2[$i]) {
PhingTaskTest::assertFalse($shouldBeEqual, $msg);
}
}
PhingTaskTest::assertTrue($shouldBeEqual, $msg);
} else {
PhingTaskTest::assertFalse($shouldBeEqual, $msg);
}
}
}
} catch (Throwable $e) {
$this->error = $e;
}
}
}
public function getError()
{
return $this->error;
}
};
$this->getProject()->addBuildListener($rc);
$this->getProject()->executeTarget($target);
$ae = $rc->getError();
if (null !== $ae) {
throw $ae;
}
$this->getProject()->removeBuildListener($rc);
}
private function baseDirs(string $target, array $dirs): void
{
$bc = new class ($dirs) implements BuildListener {
private $expectedBasedirs;
private $calls = 0;
private $error;
public function __construct(array $dirs)
{
$this->expectedBasedirs = $dirs;
}
public function buildStarted(BuildEvent $event)
{
}
public function buildFinished(BuildEvent $event)
{
}
public function targetFinished(BuildEvent $event)
{
}
public function taskStarted(BuildEvent $event)
{
}
public function taskFinished(BuildEvent $event)
{
}
public function messageLogged(BuildEvent $event)
{
}
public function targetStarted(BuildEvent $event)
{
if ('' === $event->getTarget()->getName()) {
return;
}
if (null === $this->error) {
try {
BuildFileTest::assertEquals(
$this->expectedBasedirs[$this->calls++],
$event->getProject()->getBaseDir()->getAbsolutePath()
);
} catch (AssertionError $e) {
$this->error = $e;
}
}
}
public function getError()
{
return $this->error;
}
};
$this->getProject()->addBuildListener($bc);
$this->executeTarget($target);
$ae = $bc->getError();
if (null !== $ae) {
throw $ae;
}
$this->getProject()->removeBuildListener($bc);
}
}
|