class PathUtilityTest in Drupal 7 to 8/9 Module Upgrader 8
Same name in this branch
- 8 tests/src/Unit/Utility/Path/Drupal7/PathUtilityTest.php \Drupal\Tests\drupalmoduleupgrader\Unit\Utility\Path\Drupal7\PathUtilityTest
- 8 tests/src/Unit/Utility/Path/Drupal8/PathUtilityTest.php \Drupal\Tests\drupalmoduleupgrader\Unit\Utility\Path\Drupal8\PathUtilityTest
@group DMU.Utility.Path
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\drupalmoduleupgrader\Unit\Utility\Path\Drupal8\PathUtilityTest
Expanded class hierarchy of PathUtilityTest
File
- tests/
src/ Unit/ Utility/ Path/ Drupal8/ PathUtilityTest.php, line 12
Namespace
Drupal\Tests\drupalmoduleupgrader\Unit\Utility\Path\Drupal8View source
class PathUtilityTest extends UnitTestCase {
public function setUp() {
parent::setUp();
$this->path = new PathUtility('node/{node}/foo/{bar}');
}
public function testCount() {
$this
->assertCount(4, $this->path);
}
public function testAdd() {
$path = clone $this->path;
$path
->add('baz');
$this
->assertCount(5, $path);
$this
->assertInstanceOf('Drupal\\drupalmoduleupgrader\\Utility\\Path\\Drupal8\\PathComponent', $path
->last());
$this
->assertEquals('baz', $path
->last()
->__toString());
$path
->add(new PathComponent('wambooli'));
$this
->assertCount(6, $path);
$this
->assertEquals('wambooli', $path
->last()
->__toString());
}
/**
* @expectedException \InvalidArgumentException
*/
public function testAddArray() {
$this->path
->add([]);
}
/**
* @expectedException \InvalidArgumentException
*/
public function testAddObject() {
$this->path
->add(new \StdClass());
}
public function testFind() {
$result = $this->path
->find('foo');
$this
->assertCount(1, $result);
$this
->assertInstanceOf('Drupal\\drupalmoduleupgrader\\Utility\\Path\\Drupal8\\PathComponent', $result
->first());
$this
->assertEquals('foo', $result
->first()
->__toString());
}
public function testContains() {
$this
->assertTrue($this->path
->contains('{node}'));
$this
->assertFalse($this->path
->contains('fruit'));
}
public function testHasWildcards() {
$this
->assertTrue($this->path
->hasWildcards());
}
public function testGetWildcards() {
$this
->assertEquals('{node}/{bar}', $this->path
->getWildcards()
->__toString());
}
public function testGetNextWildcard() {
$wildcard = $this->path
->getNextWildcard();
$this
->assertInstanceOf('Drupal\\drupalmoduleupgrader\\Utility\\Path\\Drupal8\\PathComponent', $wildcard);
$this
->assertEquals('{node}', $wildcard
->__toString());
$wildcard = $this->path
->getNextWildcard();
$this
->assertInstanceOf('Drupal\\drupalmoduleupgrader\\Utility\\Path\\Drupal8\\PathComponent', $wildcard);
$this
->assertEquals('{bar}', $wildcard
->__toString());
$wildcard = $this->path
->getNextWildcard();
$this
->assertNull($wildcard);
}
public function testDeleteWildcards() {
$this
->assertEquals('node/foo', $this->path
->deleteWildcards()
->__toString());
}
public function testGetParent() {
$this
->assertEquals('node/{node}/foo', $this->path
->getParent()
->__toString());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PathUtilityTest:: |
public | function |
Overrides UnitTestCase:: |
|
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | @expectedException \InvalidArgumentException | |
PathUtilityTest:: |
public | function | @expectedException \InvalidArgumentException | |
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PathUtilityTest:: |
public | function | ||
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |