class BlazyManagerTest in Blazy 8
Same name and namespace in other branches
- 8.2 tests/src/Kernel/BlazyManagerTest.php \Drupal\Tests\blazy\Kernel\BlazyManagerTest
Tests the Blazy manager methods.
@coversDefaultClass \Drupal\blazy\BlazyManager
@group blazy
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses AssertContentTrait, AssertLegacyTrait, AssertHelperTrait, ConfigTestTrait, PhpunitCompatibilityTrait, RandomGeneratorTrait, TestRequirementsTrait
- class \Drupal\Tests\field\Kernel\FieldKernelTestBase
- class \Drupal\Tests\blazy\Kernel\BlazyKernelTestBase uses BlazyKernelTestTrait
- class \Drupal\Tests\blazy\Kernel\BlazyManagerTest
- class \Drupal\Tests\blazy\Kernel\BlazyKernelTestBase uses BlazyKernelTestTrait
- class \Drupal\Tests\field\Kernel\FieldKernelTestBase
Expanded class hierarchy of BlazyManagerTest
File
- tests/
src/ Kernel/ BlazyManagerTest.php, line 17
Namespace
Drupal\Tests\blazy\KernelView source
class BlazyManagerTest extends BlazyKernelTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$bundle = $this->bundle;
$settings['fields']['field_text_multiple'] = 'text';
$this
->setUpContentTypeTest($bundle, $settings);
$this
->setUpContentWithItems($bundle);
$this
->setUpRealImage();
}
/**
* Tests BlazyManager image.
*
* @param array $settings
* The settings being tested.
* @param string $expected_responsive_image_style_id
* The responsive image style ID.
*
* @covers ::preRenderImage
* @covers ::getResponsiveImageCacheTags
* @covers \Drupal\blazy\BlazyLightbox::build
* @covers \Drupal\blazy\BlazyLightbox::buildCaptions
* @dataProvider providerTestPreRenderImage
*/
public function testPreRenderImage(array $settings = [], $expected_responsive_image_style_id = '') {
$build = $this->data;
$settings['count'] = $this->maxItems;
$settings['uri'] = $this->uri;
$settings['responsive_image_style_id'] = '';
$settings['resimage'] = empty($settings['responsive_image_style']) ? FALSE : $this->blazyManager
->entityLoad($settings['responsive_image_style'], 'responsive_image_style');
$build['settings'] = array_merge($build['settings'], $settings) + BlazyDefault::itemSettings();
$switch_css = str_replace('_', '-', $settings['media_switch']);
$element = $this
->doPreRenderImage($build);
if ($settings['media_switch'] == 'content') {
$this
->assertEquals($settings['content_url'], $element['#url']);
$this
->assertArrayHasKey('#url', $element);
}
else {
$this
->assertArrayHasKey('data-' . $switch_css . '-trigger', $element['#url_attributes']);
$this
->assertArrayHasKey('#url', $element);
}
$this
->assertEquals($expected_responsive_image_style_id, $element['#settings']['responsive_image_style_id']);
}
/**
* Provide test cases for ::testPreRenderImage().
*
* @return array
* An array of tested data.
*/
public function providerTestPreRenderImage() {
$data[] = [
[
'content_url' => 'node/1',
'media_switch' => 'content',
],
'',
];
$data[] = [
[
'lightbox' => TRUE,
'media_switch' => 'photobox',
'resimage' => TRUE,
'responsive_image_style' => 'blazy_responsive_test',
],
'blazy_responsive_test',
];
$data[] = [
[
'box_style' => 'blazy_crop',
'box_media_style' => 'large',
'box_caption' => 'custom',
'box_caption_custom' => '[node:field_text_multiple]',
'embed_url' => '//www.youtube.com/watch?v=E03HFA923kw',
'lightbox' => TRUE,
'media_switch' => 'blazy_test',
'scheme' => 'youtube',
'type' => 'video',
],
'',
];
return $data;
}
/**
* Tests the entity view builder.
*
* @param string $entity
* The tested entity.
* @param string $fallback
* The fallback text.
* @param string $message
* The message text.
* @param bool $expected
* The expected output.
*
* @covers ::getEntityView
* @dataProvider providerTestGetEntityView
*/
public function testGetEntityView($entity, $fallback, $message, $expected) {
if ($entity == 'entity') {
$entity_test = EntityTest::create([
'name' => $this
->randomMachineName(),
]);
$entity_test
->save();
$entity = $entity_test;
}
elseif ($entity == 'node') {
$entity = empty($this->entity) ? $this
->setUpContentWithItems($this->bundle) : $this->entity;
}
elseif ($entity == 'responsive_image') {
$entity = $this->blazyManager
->entityLoad('blazy_responsive_test', 'responsive_image_style');
}
elseif ($entity == 'image') {
$entity = $this->testItem;
}
$result = $this->blazyManager
->getEntityView($entity, [], $fallback);
$this
->assertSame($expected, !empty($result), $message);
}
/**
* Provide test cases for ::testGetEntityView().
*
* @return array
* An array of tested data.
*/
public function providerTestGetEntityView() {
return [
'Entity test' => [
'entity',
'',
'Entity test has no entity_test_view(), yet it has view builder.',
TRUE,
],
'Node' => [
'node',
'',
'Node has node_view() taking precedence over view builder.',
TRUE,
],
'Responsive image' => [
'responsive_image',
'This is some fallback text.',
'Responsive image has no view builder. Fallback to text.',
TRUE,
],
'Image' => [
'image',
'',
'Image is not an instance of EntityInterface, returns false.',
FALSE,
],
];
}
/**
* Tests building Blazy attributes.
*
* @param array $settings
* The settings being tested.
* @param bool $uri
* Whether to provide image URI, or not.
* @param object $item
* Whether to provide image item, or not.
* @param bool $iframe
* Whether to expect an iframe, or not.
* @param mixed|bool|int $expected
* The expected output.
*
* @covers \Drupal\blazy\Blazy::buildAttributes
* @covers \Drupal\blazy\Blazy::buildBreakpointAttributes
* @covers \Drupal\blazy\Blazy::buildUrl
* @covers \Drupal\blazy\Dejavu\BlazyDefault::entitySettings
* @dataProvider providerBuildAttributes
*/
public function testBuildAttributes(array $settings, $uri, $item, $iframe, $expected) {
$variables = [
'attributes' => [],
];
$settings = array_merge($this
->getFormatterSettings(), $settings);
$settings += BlazyDefault::itemSettings();
$settings['blazy'] = TRUE;
$settings['lazy'] = 'blazy';
$settings['image_style'] = 'blazy_crop';
$settings['thumbnail_style'] = 'thumbnail';
$settings['uri'] = $uri ? $this->uri : '';
if (!empty($settings['embed_url'])) {
$settings = array_merge(BlazyDefault::entitySettings(), $settings);
}
$variables['element']['#item'] = $item ? $this->testItem : NULL;
$variables['element']['#settings'] = $settings;
Blazy::buildAttributes($variables);
$image = $expected == TRUE ? !empty($variables['image']) : empty($variables['image']);
$iframe = $iframe == TRUE ? !empty($variables['iframe_attributes']) : empty($variables['iframe_attributes']);
$this
->assertTrue($image);
$this
->assertTrue($iframe);
}
/**
* Provider for ::testBuildAttributes.
*/
public function providerBuildAttributes() {
$breakpoints = $this
->getDataBreakpoints();
$data[] = [
[
'background' => FALSE,
'breakpoints' => [],
],
FALSE,
NULL,
FALSE,
FALSE,
];
$data[] = [
[
'background' => FALSE,
'breakpoints' => [],
],
FALSE,
TRUE,
FALSE,
TRUE,
];
$data[] = [
[
'background' => TRUE,
'breakpoints' => $breakpoints,
'ratio' => 'fluid',
'sizes' => '100w',
'width' => 640,
'height' => 360,
],
TRUE,
TRUE,
FALSE,
FALSE,
];
return $data;
}
/**
* Tests responsive image integration.
*
* @param string $responsive_image_style_id
* The responsive_image_style_id.
* @param bool $old
* Whether to use Drupal core 8.x-2, or later 8.x-3.
* @param bool $expected
* The expected output_image_tag.
*
* @dataProvider providerResponsiveImage
*/
public function testPreprocessResponsiveImage($responsive_image_style_id, $old, $expected) {
$variables = [
'item' => $this->testItem,
'uri' => $this->uri,
'responsive_image_style_id' => $responsive_image_style_id,
];
template_preprocess_responsive_image($variables);
if ($old) {
$variables['img_element']['#srcset'][0]['uri'] = $this->uri;
}
else {
$variables['img_element']['#uri'] = $this->uri;
}
Blazy::preprocessResponsiveImage($variables);
$this
->assertEquals($expected, $variables['output_image_tag']);
}
/**
* Provider for ::testPreprocessResponsiveImage.
*/
public function providerResponsiveImage() {
return [
'Responsive image with picture 8.x-2' => [
'blazy_picture_test',
TRUE,
FALSE,
],
'Responsive image with picture 8.x-3' => [
'blazy_picture_test',
FALSE,
FALSE,
],
'Responsive image without picture 8.x-3' => [
'blazy_responsive_test',
FALSE,
TRUE,
],
];
}
/**
* Tests isCrop.
*
* @covers ::isCrop
* @dataProvider providerIsCrop
*/
public function testIsCrop($image_style_id, $expected) {
$image_style = $this->blazyManager
->entityLoad($image_style_id, 'image_style');
$is_cropped = $this->blazyManager
->isCrop($image_style);
$this
->assertEquals($expected, $is_cropped);
}
/**
* Provider for ::testIsCrop.
*/
public function providerIsCrop() {
return [
'Cropped image style' => [
'blazy_crop',
TRUE,
],
'Non-cropped image style' => [
'large',
FALSE,
],
];
}
/**
* Tests cases for various methods.
*
* @covers ::attach
* @covers ::buildDataBlazy
* @covers ::getLightboxes
* @covers ::buildSkins
* @covers ::getCache
*
* @todo: Move some to unit tests.
*/
public function testBlazyManagerMethods() {
// Tests Blazy attachments.
$attach = [
'blazy' => TRUE,
'media_switch' => 'blazy_test',
];
$attachments = $this->blazyManager
->attach($attach);
$this
->assertArrayHasKey('blazy', $attachments['drupalSettings']);
// Tests Blazy [data-blazy] attributes.
$build = $this->data;
$settings =& $build['settings'];
$settings += BlazyDefault::itemSettings();
$item = $build['item'];
$settings['item'] = $item;
$settings['uri'] = $this->uri;
$settings['blazy_data'] = [];
$settings['background'] = TRUE;
$settings['breakpoints'] = $this
->getDataBreakpoints();
// Ensure Blazy can be activated by breakpoints.
$this->blazyManager
->buildDataBlazy($settings, $build);
$this
->assertNotEmpty($settings['blazy']);
// Tests Blazy lightboxes.
$lightboxes = $this->blazyManager
->getLightboxes();
$this
->assertFalse(in_array('nixbox', $lightboxes));
// Tests for skins.
// Tests skins with a single expected method BlazySkinTest::skins().
$skins = $this->blazyManager
->buildSkins('blazy_test', '\\Drupal\\blazy_test\\BlazySkinTest');
// Verify we have cached skins.
$cid = 'blazy_test:skins';
$cached_skins = $this->blazyManager
->getCache()
->get($cid);
$this
->assertEquals($cid, $cached_skins->cid);
$this
->assertEquals($skins, $cached_skins->data);
// Verify multiple skin methods are respected.
Cache::invalidateTags([
$cid,
]);
drupal_flush_all_caches();
$this
->assertFalse($this->blazyManager
->getCache()
->get($cid));
$skins = $this->blazyManager
->buildSkins('blazy_test', '\\Drupal\\blazy_test\\BlazySkinTest', [
'skins',
'features',
]);
$this
->assertArrayHasKey('features', $skins);
$cached_skins = $this->blazyManager
->getCache()
->get($cid);
$this
->assertEquals($skins, $cached_skins->data);
}
}
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 | ||
BlazyCreationTestTrait:: |
protected | property | The field definition. | |
BlazyCreationTestTrait:: |
protected | property | The field storage definition. | |
BlazyCreationTestTrait:: |
protected | property | Testing node type. | |
BlazyCreationTestTrait:: |
protected | function | Sets field values as built by FieldItemListInterface::view(). | |
BlazyCreationTestTrait:: |
protected | function | Sets field values as built by FieldItemListInterface::view(). | |
BlazyCreationTestTrait:: |
protected | function | Returns the created image file. | |
BlazyCreationTestTrait:: |
protected | function | Create referencing entity. | |
BlazyCreationTestTrait:: |
protected | function | Gets the field definition. | |
BlazyCreationTestTrait:: |
protected | function | Gets the field storage configuration. | |
BlazyCreationTestTrait:: |
protected | function | Returns the field formatter instance. | |
BlazyCreationTestTrait:: |
protected | function | Returns path to the stored image location. | |
BlazyCreationTestTrait:: |
protected | function | Prepares test directory to store screenshots, or images. | |
BlazyCreationTestTrait:: |
protected | function | Build dummy content types. | |
BlazyCreationTestTrait:: |
protected | function | Build dummy contents with entity references. | |
BlazyCreationTestTrait:: |
protected | function | Build dummy nodes with optional fields. | |
BlazyCreationTestTrait:: |
protected | function | Setup a new image field. | |
BlazyCreationTestTrait:: |
protected | function | Setup formatter displays, default to image, and update its settings. | |
BlazyCreationTestTrait:: |
protected | function | Set up dummy image. | |
BlazyKernelTestBase:: |
public static | property |
Modules to enable. Overrides FieldKernelTestBase:: |
|
BlazyKernelTestTrait:: |
protected | function | Setup common Kernel classes. | |
BlazyKernelTestTrait:: |
protected | function | Setup common Kernel manager classes. | |
BlazyManagerTest:: |
public | function | Provider for ::testBuildAttributes. | |
BlazyManagerTest:: |
public | function | Provider for ::testIsCrop. | |
BlazyManagerTest:: |
public | function | Provider for ::testPreprocessResponsiveImage. | |
BlazyManagerTest:: |
public | function | Provide test cases for ::testGetEntityView(). | |
BlazyManagerTest:: |
public | function | Provide test cases for ::testPreRenderImage(). | |
BlazyManagerTest:: |
protected | function |
Set the default field storage backend for fields created during tests. Overrides BlazyKernelTestBase:: |
|
BlazyManagerTest:: |
public | function | Tests cases for various methods. | |
BlazyManagerTest:: |
public | function | Tests building Blazy attributes. | |
BlazyManagerTest:: |
public | function | Tests the entity view builder. | |
BlazyManagerTest:: |
public | function | Tests isCrop. | |
BlazyManagerTest:: |
public | function | Tests responsive image integration. | |
BlazyManagerTest:: |
public | function | Tests BlazyManager image. | |
BlazyPropertiesTestTrait:: |
protected | property | The blazy admin service. | |
BlazyPropertiesTestTrait:: |
protected | property | The blazy admin service. | |
BlazyPropertiesTestTrait:: |
protected | property | The blazy manager service. | |
BlazyPropertiesTestTrait:: |
protected | property | The bundle name. | |
BlazyPropertiesTestTrait:: |
protected | property | The entity display. | |
BlazyPropertiesTestTrait:: |
protected | property | The entity. | |
BlazyPropertiesTestTrait:: |
protected | property | The entity. | |
BlazyPropertiesTestTrait:: |
protected | property | The entity manager. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested entity reference formatter ID. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested entity type. | |
BlazyPropertiesTestTrait:: |
protected | property | The formatter definition. | |
BlazyPropertiesTestTrait:: |
protected | property | The formatter plugin manager. | |
BlazyPropertiesTestTrait:: |
protected | property | The maximum number of created images. | |
BlazyPropertiesTestTrait:: |
protected | property | The maximum number of created paragraphs. | |
BlazyPropertiesTestTrait:: |
protected | property | The node entity. | |
BlazyPropertiesTestTrait:: |
protected | property | The referenced node entity. | |
BlazyPropertiesTestTrait:: |
protected | property | The node entity. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested skins. | |
BlazyPropertiesTestTrait:: |
protected | property | The target bundle names. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested empty field name. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested empty field type. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested field name. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested field type. | |
BlazyPropertiesTestTrait:: |
protected | property | The created item. | |
BlazyPropertiesTestTrait:: |
protected | property | The created items. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested formatter ID. | |
BlazyPropertiesTestTrait:: |
protected | property | The tested type definitions. | |
BlazyUnitTestTrait:: |
protected | property | The formatter settings. | |
BlazyUnitTestTrait:: |
protected | function | Pre render Blazy image. | |
BlazyUnitTestTrait:: |
protected | function | Return dummy cache metadata. | |
BlazyUnitTestTrait:: |
protected | function | Add partially empty data for breakpoints. | |
BlazyUnitTestTrait:: |
protected | function | Returns the default field formatter definition. | |
BlazyUnitTestTrait:: |
protected | function | Returns dummy fields for an entity reference. | |
BlazyUnitTestTrait:: |
protected | function | Returns the default field formatter definition. | |
BlazyUnitTestTrait:: |
protected | function | Add empty data for breakpoints. | |
BlazyUnitTestTrait:: |
protected | function | Returns the field formatter definition along with settings. | |
BlazyUnitTestTrait:: |
protected | function | Returns sensible formatter settings for testing purposes. | |
BlazyUnitTestTrait:: |
protected | function | Sets the field formatter definition. | |
BlazyUnitTestTrait:: |
protected | function | Sets formatter setting. | |
BlazyUnitTestTrait:: |
protected | function | Sets formatter settings. | |
BlazyUnitTestTrait:: |
protected | function | Setup the unit images. | |
BlazyUnitTestTrait:: |
protected | function | Setup the unit images. | |
BlazyUnitTestTrait:: |
protected | function | Set up Blazy variables. | |
ConfigTestTrait:: |
protected | function | Returns a ConfigImporter object to import test configuration. | |
ConfigTestTrait:: |
protected | function | Copies configuration objects from source storage to target storage. | |
FieldKernelTestBase:: |
protected | property | Bag of created field storages and fields. | |
FieldKernelTestBase:: |
protected | function | Assert that a field has the expected values in an entity. | |
FieldKernelTestBase:: |
protected | function | Create a field and an associated field storage. | |
FieldKernelTestBase:: |
protected | function | Saves and reloads an entity. | |
FieldKernelTestBase:: |
protected | function | Validate and save entity. Fail if violations are found. | |
FieldKernelTestBase:: |
protected | function | Generate random values for a field_test field. | |
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. | |
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. |