abstract class PluginTestBase in Purge 8.3
Same name in this branch
- 8.3 tests/src/Kernel/Queue/PluginTestBase.php \Drupal\Tests\purge\Kernel\Queue\PluginTestBase
- 8.3 tests/src/Kernel/Invalidation/PluginTestBase.php \Drupal\Tests\purge\Kernel\Invalidation\PluginTestBase
Provides an abstract test class to thoroughly test invalidation types.
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses AssertContentTrait, AssertLegacyTrait, AssertHelperTrait, ConfigTestTrait, PhpunitCompatibilityTrait, RandomGeneratorTrait, TestRequirementsTrait
- class \Drupal\Tests\purge\Kernel\KernelTestBase uses TestTrait
- class \Drupal\Tests\purge\Kernel\Invalidation\PluginTestBase
- class \Drupal\Tests\purge\Kernel\KernelTestBase uses TestTrait
Expanded class hierarchy of PluginTestBase
See also
\Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface
File
- tests/
src/ Kernel/ Invalidation/ PluginTestBase.php, line 22
Namespace
Drupal\Tests\purge\Kernel\InvalidationView source
abstract class PluginTestBase extends KernelTestBase {
/**
* The plugin ID of the invalidation type being tested.
*
* @var string
*/
protected $pluginId;
/**
* String expressions valid to the invalidation type being tested.
*
* @var null|mixed[]
*/
protected $expressions = NULL;
/**
* String expressions invalid to the invalidation type being tested.
*
* @var null|mixed[]
*/
protected $expressionsInvalid;
/**
* {@inheritdoc}
*/
public static $modules = [
'purge_purger_test',
];
/**
* Set up the test.
*/
public function setUp($switch_to_memory_queue = TRUE) : void {
parent::setUp($switch_to_memory_queue);
$this
->initializePurgersService([
'good',
]);
$this
->initializeInvalidationFactoryService();
}
/**
* Retrieve a invalidation object provided by the plugin.
*/
public function getInstance() : InvalidationInterface {
return $this
->getInvalidations(1, $this->pluginId, $this->expressions[0]);
}
/**
* Retrieve a immutable invalidation object, which wraps the plugin.
*/
public function getImmutableInstance() : ImmutableInvalidationInterface {
return $this->purgeInvalidationFactory
->getImmutable($this->pluginId, $this->expressions[0]);
}
/**
* Tests the code contract strictly enforced on invalidation type plugins.
*/
public function testCodeContract() : void {
$this
->assertTrue($this
->getInstance() instanceof ImmutableInvalidationInterface);
$this
->assertTrue($this
->getInstance() instanceof InvalidationInterface);
$this
->assertTrue($this
->getInstance() instanceof ImmutableInvalidationBase);
$this
->assertTrue($this
->getInstance() instanceof InvalidationBase);
$this
->assertTrue($this
->getImmutableInstance() instanceof ImmutableInvalidationInterface);
$this
->assertFalse($this
->getImmutableInstance() instanceof InvalidationInterface);
$this
->assertTrue($this
->getImmutableInstance() instanceof ImmutableInvalidationBase);
$this
->assertFalse($this
->getImmutableInstance() instanceof InvalidationBase);
}
/**
* Tests TypeUnsupportedException.
*/
public function testTypeUnsupportedException() : void {
$this
->initializePurgersService([], TRUE);
$this
->expectException(TypeUnsupportedException::class);
$this
->getInvalidations(1, $this->pluginId, $this->expressions[0], FALSE);
$this
->getInstance(FALSE);
}
/**
* Tests \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidation.
*/
public function testImmutable() : void {
$immutable = $this
->getImmutableInstance();
$mutable = $this
->getInstance();
$this
->assertEquals($immutable
->__toString(), $mutable
->__toString());
$this
->assertEquals($immutable
->getExpression(), $mutable
->getExpression());
$this
->assertEquals($immutable
->getState(), $mutable
->getState());
$this
->assertEquals($immutable
->getStateString(), $mutable
->getStateString());
$this
->assertEquals($immutable
->getType(), $mutable
->getType());
}
/**
* Test that instances initialize with no properties.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationInterface::getProperties
*/
public function testPropertiesInitializeEmpty() : void {
$i = $this
->getInstance();
$this
->assertSame([], $i
->getProperties());
}
/**
* Test deleting a property.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::deleteProperty
*/
public function testDeleteProperty() : void {
$i = $this
->getInstance();
$i
->setStateContext('purger_a');
$i
->setProperty('myprop', 1234);
$i
->deleteProperty('myprop');
$this
->assertSame(NULL, $i
->getProperty('myprop'));
}
/**
* Test retrieving a property.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationInterface::getProperty
*/
public function testGetProperty() : void {
$i = $this
->getInstance();
$i
->setStateContext('purger_b');
$i
->setProperty('my_book', 'Nineteen Eighty-Four');
$this
->assertSame('Nineteen Eighty-Four', $i
->getProperty('my_book'));
$this
->assertSame(NULL, $i
->getProperty('my_film'));
// Test again within a different context.
$i
->setState(InvalidationInterface::FAILED);
$i
->setStateContext('purger_b2');
$this
->assertSame(NULL, $i
->getProperty('my_book'));
}
/**
* Test setting a property.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setProperty
*/
public function testSetProperty() : void {
$i = $this
->getInstance();
$i
->setStateContext('purger_d');
$this
->assertSame(NULL, $i
->setProperty('my_film', 'Pulp Fiction'));
$this
->assertSame('Pulp Fiction', $i
->getProperty('my_film'));
}
/**
* Test that properties are stored by context.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationInterface::getProperties
* @see \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationInterface::getProperty
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::deleteProperty
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setProperty
*/
public function testPropertyStorageModel() : void {
$i = $this
->getInstance();
// Verify retrieving and setting properties.
$i
->setStateContext('purger1');
$this
->assertSame(NULL, $i
->getProperty('doesntexist'));
$this
->assertSame(NULL, $i
->setProperty('key1', 'foobar'));
$this
->assertSame('foobar', $i
->getProperty('key1'));
$this
->assertSame(NULL, $i
->deleteProperty('key1'));
$this
->assertSame(NULL, $i
->getProperty('key1'));
$this
->assertSame(NULL, $i
->setProperty('key1', 'foobar2'));
$this
->assertSame('foobar2', $i
->getProperty('key1'));
// Switch state to add some more properties.
$i
->setState(InvalidationInterface::FAILED);
$i
->setStateContext('purger2');
$i
->setProperty('key2', 'baz');
$i
->setState(InvalidationInterface::FAILED);
$i
->setStateContext(NULL);
// Verify that every property is stored by context.
$p = $i
->getProperties();
$this
->assertSame(2, count($p));
$this
->assertSame(TRUE, isset($p['purger1']['key1']));
$this
->assertSame('foobar2', $p['purger1']['key1']);
$this
->assertSame(TRUE, isset($p['purger2']['key2']));
$this
->assertSame('baz', $p['purger2']['key2']);
}
/**
* Test that you can't delete a property without specifying the state context.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::deleteProperty
*/
public function testStateContextExceptionDeleteProperty() : void {
$i = $this
->getInstance();
$this
->expectException(\LogicException::class);
$this
->expectExceptionMessage('Call ::setStateContext() before deleting properties!');
$i
->deleteProperty('my_setting');
}
/**
* Test that you can't fetch a property without specifying the state context.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationInterface::getProperty
*/
public function testStateContextExceptionGetProperty() : void {
$i = $this
->getInstance();
$this
->expectException(\LogicException::class);
$this
->expectExceptionMessage('Call ::setStateContext() before retrieving properties!');
$i
->getProperty('my_setting');
}
/**
* Test that you can't set a property without specifying the state context.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setProperty
*/
public function testStateContextExceptionSetProperty() : void {
$i = $this
->getInstance();
$this
->expectException(\LogicException::class);
$this
->expectExceptionMessage('Call ::setStateContext() before setting properties!');
$i
->setProperty('my_setting', FALSE);
}
/**
* Test the initial state of the invalidation object.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getState
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getStateString
*/
public function testStateInitial() : void {
$i = $this
->getInstance();
$this
->assertEquals($i
->getState(), InvalidationInterface::FRESH);
$this
->assertEquals($i
->getStateString(), 'FRESH');
}
/**
* Test switching away from the acceptable states.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setStateContext
*/
public function testStateSwitchGoodBehavior() : void {
$i = $this
->getInstance();
$i
->setStateContext('failingpurger');
$i
->setState(InvalidationInterface::NOT_SUPPORTED);
$i
->setStateContext(NULL);
$i
->setStateContext('failingpurger');
$i
->setState(InvalidationInterface::PROCESSING);
$i
->setStateContext(NULL);
$i
->setStateContext('failingpurger');
$i
->setState(InvalidationInterface::SUCCEEDED);
$i
->setStateContext(NULL);
$i
->setStateContext('failingpurger');
$i
->setState(InvalidationInterface::FAILED);
$i
->setStateContext(NULL);
$this
->assertSame([
'failingpurger',
], $i
->getStateContexts());
}
/**
* Test exception when switching away from the 'FRESH' state.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setStateContext
*/
public function testStateSwitchBadBehavior() : void {
$i = $this
->getInstance();
$i
->setStateContext('test');
$this
->expectException(BadPluginBehaviorException::class);
$this
->expectExceptionMessage('Only NOT_SUPPORTED, PROCESSING, SUCCEEDED and FAILED are valid outbound states.');
$i
->setStateContext(NULL);
}
/**
* Test exception when setting state in NULL context.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
*/
public function testStateSetInGeneralContext() : void {
$i = $this
->getInstance();
$this
->expectException(\LogicException::class);
$this
->expectExceptionMessage('State cannot be set in NULL context!');
$i
->setState(InvalidationInterface::FAILED);
}
/**
* Test exceptions when setting invalid states.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
*/
public function testStateSetInvalidStateA() : void {
$i = $this
->getInstance();
$this
->expectException(InvalidStateException::class);
$this
->expectExceptionMessage('$state not an integer!');
$i
->setState('2');
}
/**
* Test exceptions when setting invalid states.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
*/
public function testStateSetInvalidStateB() : void {
$i = $this
->getInstance();
$this
->expectException(InvalidStateException::class);
$this
->expectExceptionMessage('$state not an integer!');
$i
->setState('FRESH');
}
/**
* Test exceptions when setting invalid states.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
*/
public function testStateSetInvalidStateC() : void {
$i = $this
->getInstance();
$this
->expectException(InvalidStateException::class);
$this
->expectExceptionMessage('$state is out of range!');
$i
->setState(-1);
}
/**
* Test exceptions when setting invalid states.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
*/
public function testStateSetInvalidStateD() : void {
$i = $this
->getInstance();
$this
->expectException(InvalidStateException::class);
$this
->expectExceptionMessage('$state is out of range!');
$i
->setState(5);
}
/**
* Test exceptions when setting invalid states.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
*/
public function testStateSetInvalidStateE() : void {
$i = $this
->getInstance();
$this
->expectException(InvalidStateException::class);
$this
->expectExceptionMessage('$state is out of range!');
$i
->setState(100);
}
/**
* Test overal state storage and retrieval.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setState
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::setStateContext
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getState
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getStateString
*/
public function testStateStorageAndRetrieval() : void {
$i = $this
->getInstance();
// Test setting normal states results in the same return state.
$test_states = [
InvalidationInterface::PROCESSING => 'PROCESSING',
InvalidationInterface::SUCCEEDED => 'SUCCEEDED',
InvalidationInterface::FAILED => 'FAILED',
InvalidationInterface::NOT_SUPPORTED => 'NOT_SUPPORTED',
];
$context = 0;
$i
->setStateContext((string) $context);
foreach ($test_states as $state => $string) {
$this
->assertNull($i
->setStateContext((string) $context++));
$this
->assertNull($i
->setState($state));
$this
->assertEquals($i
->getState(), $state);
$this
->assertEquals($i
->getStateString(), $string);
}
$i
->setStateContext(NULL);
}
/**
* Test if typecasting invalidation objects to strings gets us a string.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::__toString
*/
public function testStringExpression() : void {
$this
->assertEquals((string) $this
->getInstance(), $this->expressions[0], 'The __toString method returns $expression.');
}
/**
* Test if all valid string expressions properly instantiate the object.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::__construct
*/
public function testValidExpressions() : void {
if (is_null($this->expressions)) {
$this
->assertInstanceOf(InvalidationInterface::class, $this->purgeInvalidationFactory
->get($this->pluginId));
}
else {
foreach ($this->expressions as $e) {
$this
->assertInstanceOf(InvalidationInterface::class, $this->purgeInvalidationFactory
->get($this->pluginId, $e));
}
}
}
/**
* Test if all invalid string expressions fail to instantiate the object.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::__construct
*/
public function testInvalidExpressions() : void {
foreach ($this->expressionsInvalid as $exp) {
$thrown = FALSE;
try {
$this->purgeInvalidationFactory
->get($this->pluginId, $exp);
} catch (\Exception $e) {
$thrown = $e;
}
if (is_null($exp)) {
$this
->assertInstanceOf(MissingExpressionException::class, $thrown);
}
else {
$this
->assertInstanceOf(InvalidExpressionException::class, $thrown);
}
}
}
/**
* Test retrieving the plugin ID and definition.
*
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getPluginId
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getType
* @see \Drupal\purge\Plugin\Purge\Invalidation\InvalidationInterface::getPluginDefinition
*/
public function testPluginIdAndDefinition() : void {
// Test mutable objects.
$mutable = $this
->getInstance();
$this
->assertEquals($this->pluginId, $mutable
->getPluginId());
$this
->assertEquals($this->pluginId, $mutable
->getType());
$d = $mutable
->getPluginDefinition();
$this
->assertTrue(is_array($d));
$this
->assertTrue(is_array($d['examples']));
$this
->assertTrue($d['label'] instanceof TranslatableMarkup);
$this
->assertFalse(empty((string) $d['label']));
$this
->assertTrue($d['description'] instanceof TranslatableMarkup);
$this
->assertFalse(empty((string) $d['description']));
$this
->assertTrue(isset($d['expression_required']));
$this
->assertTrue(isset($d['expression_can_be_empty']));
$this
->assertTrue(isset($d['expression_must_be_string']));
if (!$d["expression_required"]) {
$this
->assertFalse($d["expression_can_be_empty"]);
}
// Test the immutable objects.
$immutable = $this
->getImmutableInstance();
$this
->assertEquals($this->pluginId, $immutable
->getPluginId());
$this
->assertEquals($this->pluginId, $immutable
->getType());
$d = $immutable
->getPluginDefinition();
$this
->assertTrue(is_array($d));
$this
->assertTrue(is_array($d['examples']));
$this
->assertTrue($d['label'] instanceof TranslatableMarkup);
$this
->assertFalse(empty((string) $d['label']));
$this
->assertTrue($d['description'] instanceof TranslatableMarkup);
$this
->assertFalse(empty((string) $d['description']));
$this
->assertTrue(isset($d['expression_required']));
$this
->assertTrue(isset($d['expression_can_be_empty']));
$this
->assertTrue(isset($d['expression_must_be_string']));
if (!$d["expression_required"]) {
$this
->assertFalse($d["expression_can_be_empty"]);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AssertContentTrait:: |
protected | property | The current raw content. | |
AssertContentTrait:: |
protected | property | The drupalSettings value from the current raw $content. | |
AssertContentTrait:: |
protected | property | The XML structure parsed from the current raw $content. | 1 |
AssertContentTrait:: |
protected | property | The plain-text content of raw $content (text nodes). | |
AssertContentTrait:: |
protected | function | Passes if the raw text IS found escaped on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists with the given name or ID. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists with the given ID and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists with the given name and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
AssertContentTrait:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
AssertContentTrait:: |
protected | function | Asserts that a field exists in the current page with a given Xpath result. | |
AssertContentTrait:: |
protected | function | Passes if a link with the specified label is found. | |
AssertContentTrait:: |
protected | function | Passes if a link containing a given href (part) is found. | |
AssertContentTrait:: |
protected | function | Asserts that each HTML ID is used for just a single element. | |
AssertContentTrait:: |
protected | function | Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist with the given name or ID. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist with the given ID and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
AssertContentTrait:: |
protected | function | Asserts that a field does not exist or its value does not match, by XPath. | |
AssertContentTrait:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
AssertContentTrait:: |
protected | function | Passes if a link with the specified label is not found. | |
AssertContentTrait:: |
protected | function | Passes if a link containing a given href (part) is not found. | |
AssertContentTrait:: |
protected | function | Passes if a link containing a given href is not found in the main region. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page does not exist. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page is not checked. | |
AssertContentTrait:: |
protected | function | Triggers a pass if the perl regex pattern is not found in raw content. | |
AssertContentTrait:: |
protected | function | Passes if the raw text is NOT found on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Passes if the page (with HTML stripped) does not contains the text. | |
AssertContentTrait:: |
protected | function | Pass if the page title is not the given string. | |
AssertContentTrait:: |
protected | function | Passes if the text is found MORE THAN ONCE on the text version of the page. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page exists. | |
AssertContentTrait:: |
protected | function | Asserts that a select option with the visible text exists. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page is checked. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page is checked. | |
AssertContentTrait:: |
protected | function | Asserts that a select option in the current page exists. | |
AssertContentTrait:: |
protected | function | Triggers a pass if the Perl regex pattern is found in the raw content. | |
AssertContentTrait:: |
protected | function | Passes if the raw text IS found on the loaded page, fail otherwise. | |
AssertContentTrait:: |
protected | function | Passes if the page (with HTML stripped) contains the text. | |
AssertContentTrait:: |
protected | function | Helper for assertText and assertNoText. | |
AssertContentTrait:: |
protected | function | Asserts that a Perl regex pattern is found in the plain-text content. | |
AssertContentTrait:: |
protected | function | Asserts themed output. | |
AssertContentTrait:: |
protected | function | Pass if the page title is the given string. | |
AssertContentTrait:: |
protected | function | Passes if the text is found ONLY ONCE on the text version of the page. | |
AssertContentTrait:: |
protected | function | Helper for assertUniqueText and assertNoUniqueText. | |
AssertContentTrait:: |
protected | function | Builds an XPath query. | |
AssertContentTrait:: |
protected | function | Helper: Constructs an XPath for the given set of attributes and value. | |
AssertContentTrait:: |
protected | function | Searches elements using a CSS selector in the raw content. | |
AssertContentTrait:: |
protected | function | Get all option elements, including nested options, in a select. | |
AssertContentTrait:: |
protected | function | Gets the value of drupalSettings for the currently-loaded page. | |
AssertContentTrait:: |
protected | function | Gets the current raw content. | |
AssertContentTrait:: |
protected | function | Get the selected value from a select field. | |
AssertContentTrait:: |
protected | function | Retrieves the plain-text content from the current raw content. | |
AssertContentTrait:: |
protected | function | Get the current URL from the cURL handler. | 1 |
AssertContentTrait:: |
protected | function | Parse content returned from curlExec using DOM and SimpleXML. | |
AssertContentTrait:: |
protected | function | Removes all white-space between HTML tags from the raw content. | |
AssertContentTrait:: |
protected | function | Sets the value of drupalSettings for the currently-loaded page. | |
AssertContentTrait:: |
protected | function | Sets the raw content (e.g. HTML). | |
AssertContentTrait:: |
protected | function | Performs an xpath search on the contents of the internal browser. | |
AssertHelperTrait:: |
protected static | function | Casts MarkupInterface objects into strings. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead. | |
AssertLegacyTrait:: |
protected | function | Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead. | |
AssertLegacyTrait:: |
protected | function | ||
ConfigTestTrait:: |
protected | function | Returns a ConfigImporter object to import test configuration. | |
ConfigTestTrait:: |
protected | function | Copies configuration objects from source storage to target storage. | |
KernelTestBase:: |
protected | property | Back up and restore any global variables that may be changed by tests. | |
KernelTestBase:: |
protected | property | Back up and restore static class properties that may be changed by tests. | |
KernelTestBase:: |
protected | property | Contains a few static class properties for performance. | |
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | @todo Move into Config test base class. | 7 |
KernelTestBase:: |
protected static | property | An array of config object names that are excluded from schema checking. | |
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | Do not forward any global state from the parent process to the processes that run the actual tests. | |
KernelTestBase:: |
protected | property | The app root. | |
KernelTestBase:: |
protected | property | Kernel tests are run in separate processes because they allow autoloading of code from extensions. Running the test in a separate process isolates this behavior from other tests. Subclasses should not override this property. | |
KernelTestBase:: |
protected | property | ||
KernelTestBase:: |
protected | property | Set to TRUE to strict check all configuration saved. | 6 |
KernelTestBase:: |
protected | property | The virtual filesystem root directory. | |
KernelTestBase:: |
protected | function | 1 | |
KernelTestBase:: |
protected | function | Bootstraps a basic test environment. | |
KernelTestBase:: |
private | function | Bootstraps a kernel for a test. | |
KernelTestBase:: |
protected | function | Configuration accessor for tests. Returns non-overridden configuration. | |
KernelTestBase:: |
protected | function | Disables modules for this test. | |
KernelTestBase:: |
protected | function | Enables modules for this test. | |
KernelTestBase:: |
protected | function | Gets the config schema exclusions for this test. | |
KernelTestBase:: |
protected | function | Returns the Database connection info to be used for this test. | 1 |
KernelTestBase:: |
public | function | ||
KernelTestBase:: |
private | function | Returns Extension objects for $modules to enable. | |
KernelTestBase:: |
private static | function | Returns the modules to enable for this test. | |
KernelTestBase:: |
protected | function | Initializes the FileCache component. | |
KernelTestBase:: |
protected | function | Installs default configuration for a given list of modules. | |
KernelTestBase:: |
protected | function | Installs the storage schema for a specific entity type. | |
KernelTestBase:: |
protected | function | Installs database tables from a module schema definition. | |
KernelTestBase:: |
protected | function | Returns whether the current test method is running in a separate process. | |
KernelTestBase:: |
protected | function | ||
KernelTestBase:: |
public | function |
Registers test-specific services. Overrides ServiceProviderInterface:: |
26 |
KernelTestBase:: |
protected | function | Renders a render array. | 1 |
KernelTestBase:: |
protected | function | Sets the install profile and rebuilds the container to update it. | |
KernelTestBase:: |
protected | function | Sets an in-memory Settings variable. | |
KernelTestBase:: |
public static | function | 1 | |
KernelTestBase:: |
protected | function | Sets up the filesystem, so things like the file directory. | 2 |
KernelTestBase:: |
protected | function | Stops test execution. | |
KernelTestBase:: |
protected | function | 6 | |
KernelTestBase:: |
public | function | @after | |
KernelTestBase:: |
protected | function | Dumps the current state of the virtual filesystem to STDOUT. | |
KernelTestBase:: |
public | function | BC: Automatically resolve former KernelTestBase class properties. | |
KernelTestBase:: |
public | function | Prevents serializing any properties. | |
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. | |
PluginTestBase:: |
protected | property | String expressions valid to the invalidation type being tested. | 8 |
PluginTestBase:: |
protected | property | String expressions invalid to the invalidation type being tested. | 8 |
PluginTestBase:: |
public static | property |
Modules to enable. Overrides KernelTestBase:: |
|
PluginTestBase:: |
protected | property | The plugin ID of the invalidation type being tested. | |
PluginTestBase:: |
public | function | Retrieve a immutable invalidation object, which wraps the plugin. | |
PluginTestBase:: |
public | function | Retrieve a invalidation object provided by the plugin. | |
PluginTestBase:: |
public | function |
Set up the test. Overrides KernelTestBase:: |
|
PluginTestBase:: |
public | function | Tests the code contract strictly enforced on invalidation type plugins. | |
PluginTestBase:: |
public | function | Test deleting a property. | |
PluginTestBase:: |
public | function | Test retrieving a property. | |
PluginTestBase:: |
public | function | Tests \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidation. | |
PluginTestBase:: |
public | function | Test if all invalid string expressions fail to instantiate the object. | |
PluginTestBase:: |
public | function | Test retrieving the plugin ID and definition. | |
PluginTestBase:: |
public | function | Test that instances initialize with no properties. | |
PluginTestBase:: |
public | function | Test that properties are stored by context. | |
PluginTestBase:: |
public | function | Test setting a property. | |
PluginTestBase:: |
public | function | Test that you can't delete a property without specifying the state context. | |
PluginTestBase:: |
public | function | Test that you can't fetch a property without specifying the state context. | |
PluginTestBase:: |
public | function | Test that you can't set a property without specifying the state context. | |
PluginTestBase:: |
public | function | Test the initial state of the invalidation object. | |
PluginTestBase:: |
public | function | Test exception when setting state in NULL context. | |
PluginTestBase:: |
public | function | Test exceptions when setting invalid states. | |
PluginTestBase:: |
public | function | Test exceptions when setting invalid states. | |
PluginTestBase:: |
public | function | Test exceptions when setting invalid states. | |
PluginTestBase:: |
public | function | Test exceptions when setting invalid states. | |
PluginTestBase:: |
public | function | Test exceptions when setting invalid states. | |
PluginTestBase:: |
public | function | Test overal state storage and retrieval. | |
PluginTestBase:: |
public | function | Test exception when switching away from the 'FRESH' state. | |
PluginTestBase:: |
public | function | Test switching away from the acceptable states. | |
PluginTestBase:: |
public | function | Test if typecasting invalidation objects to strings gets us a string. | |
PluginTestBase:: |
public | function | Tests TypeUnsupportedException. | |
PluginTestBase:: |
public | function | Test if all valid string expressions properly instantiate the object. | |
RandomGeneratorTrait:: |
protected | property | The random generator. | |
RandomGeneratorTrait:: |
protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait:: |
protected | function | Generates a unique random string containing letters and numbers. | 1 |
RandomGeneratorTrait:: |
public | function | Generates a random PHP object. | |
RandomGeneratorTrait:: |
public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
RandomGeneratorTrait:: |
public | function | Callback for random string validation. | |
StorageCopyTrait:: |
protected static | function | Copy the configuration from one storage to another and remove stale items. | |
TestRequirementsTrait:: |
private | function | Checks missing module requirements. | |
TestRequirementsTrait:: |
protected | function | Check module requirements for the Drupal use case. | 1 |
TestRequirementsTrait:: |
protected static | function | Returns the Drupal root directory. | |
TestTrait:: |
protected | property | The factory for configuration objects. | |
TestTrait:: |
protected | property | The 'purge.diagnostics' service. | |
TestTrait:: |
protected | property | The 'purge.invalidation.factory' service. | |
TestTrait:: |
protected | property | The 'purge.logger' service. | |
TestTrait:: |
protected | property | The 'purge.processors' service. | |
TestTrait:: |
protected | property | The 'purge.purgers' service. | |
TestTrait:: |
protected | property | The 'purge.queue' service. | |
TestTrait:: |
protected | property | The 'purge.queuers' service. | |
TestTrait:: |
protected | property | The 'purge.queue.stats' service. | |
TestTrait:: |
protected | property | The 'purge.queue.txbuffer' service. | |
TestTrait:: |
protected | property | The 'purge.tagsheaders' service. | |
TestTrait:: |
public | function | Create $amount requested invalidation objects. | |
TestTrait:: |
protected | function | Make $this->purgeDiagnostics available. | |
TestTrait:: |
protected | function | Make $this->purgeInvalidationFactory available. | |
TestTrait:: |
protected | function | Make $this->purgeLogger available. | |
TestTrait:: |
protected | function | Make $this->purgeProcessors available. | |
TestTrait:: |
protected | function | Make $this->purgePurgers available. | |
TestTrait:: |
protected | function | Make $this->purgeQueuers available. | |
TestTrait:: |
protected | function | Make $this->purgeQueue available. | |
TestTrait:: |
protected | function | Make $this->purgeTagsheaders available. | |
TestTrait:: |
public | function | Switch to the memory queue backend. |