You are here

class LocationTest in farmOS 2.x

Same name in this branch
  1. 2.x modules/core/location/tests/src/Functional/LocationTest.php \Drupal\Tests\farm_location\Functional\LocationTest
  2. 2.x modules/core/location/tests/src/Kernel/LocationTest.php \Drupal\Tests\farm_location\Kernel\LocationTest

Tests for farmOS location logic.

@group farm

Hierarchy

Expanded class hierarchy of LocationTest

File

modules/core/location/tests/src/Kernel/LocationTest.php, line 16

Namespace

Drupal\Tests\farm_location\Kernel
View source
class LocationTest extends KernelTestBase {
  use FarmEntityCacheTestTrait;
  use WktTrait;

  /**
   * WKT Generator service.
   *
   * @var \Drupal\geofield\WktGeneratorInterface
   */
  protected $wktGenerator;

  /**
   * Asset location service.
   *
   * @var \Drupal\farm_location\AssetLocationInterface
   */
  protected $assetLocation;

  /**
   * Log location service.
   *
   * @var \Drupal\farm_location\LogLocationInterface
   */
  protected $logLocation;

  /**
   * Array of polygon WKT strings.
   *
   * @var string[]
   */
  protected $polygons = [];

  /**
   * Array of location assets.
   *
   * @var \Drupal\asset\Entity\AssetInterface[]
   */
  protected $locations = [];

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'asset',
    'geofield',
    'log',
    'farm_field',
    'farm_location',
    'farm_location_test',
    'farm_log',
    'state_machine',
    'user',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->wktGenerator = \Drupal::service('geofield.wkt_generator');
    $this->assetLocation = \Drupal::service('asset.location');
    $this->logLocation = \Drupal::service('log.location');
    $this
      ->installEntitySchema('asset');
    $this
      ->installEntitySchema('log');
    $this
      ->installEntitySchema('user');
    $this
      ->installConfig([
      'farm_location_test',
    ]);

    // Generate random WKT polygons.
    for ($i = 0; $i < 3; $i++) {
      $segments = rand(3, 7);
      $this->polygons[] = $this
        ->reduceWkt($this->wktGenerator
        ->wktGeneratePolygon(NULL, $segments));
    }

    // Generate location assets.
    for ($i = 0; $i < 3; $i++) {
      $location = Asset::create([
        'type' => 'location',
        'name' => $this
          ->randomMachineName(),
        'status' => 'active',
        'intrinsic_geometry' => $this->polygons[$i],
        'is_fixed' => TRUE,
      ]);
      $location
        ->save();
      $this->locations[] = $location;
    }
  }

  /**
   * Test auto population of log geometry field.
   */
  public function testPopulateLogGeometry() {

    // When a log is saved with a location and without a geometry, the geometry
    // is copied from the location.

    /** @var \Drupal\log\Entity\LogInterface $log */
    $log = Log::create([
      'type' => 'movement',
      'status' => 'pending',
      'location' => [
        'target_id' => $this->locations[0]
          ->id(),
      ],
    ]);
    $log
      ->save();
    $this
      ->assertEquals($this->locations[0]
      ->get('intrinsic_geometry')->value, $log
      ->get('geometry')->value, 'Empty geometry is populated from location.');

    // When multiple locations are added, all of their geometries are combined.
    $log->location = [
      [
        'target_id' => $this->locations[0]
          ->id(),
      ],
      [
        'target_id' => $this->locations[1]
          ->id(),
      ],
    ];
    $log->geometry->value = '';
    $log
      ->save();
    $combined = $this
      ->combineWkt([
      $this->polygons[0],
      $this->polygons[1],
    ]);
    $this
      ->assertEquals($combined, $log
      ->get('geometry')->value, 'Geometries from multiple locations are combined.');

    // When a log's locations change, and the geometry is not customized, the
    // geometry is updated.
    $log->location = [
      'target_id' => $this->locations[1]
        ->id(),
    ];
    $log
      ->save();
    $this
      ->assertEquals($this->locations[1]
      ->get('intrinsic_geometry')->value, $log
      ->get('geometry')->value, 'Geometry is updated when locations are changed.');

    // When a log's geometry is set, it is saved.
    $log->geometry->value = $this->polygons[2];
    $log
      ->save();
    $this
      ->assertEquals($this->polygons[2], $log
      ->get('geometry')->value, 'Custom geometry can be saved.');

    // When a log's locations change, and the geometry is customized, the
    // geometry is not updated.
    $log->location = [
      'target_id' => $this->locations[0]
        ->id(),
    ];
    $log
      ->save();
    $this
      ->assertEquals($this->polygons[2], $log
      ->get('geometry')->value, 'Custom geometry is not overwritten when locations change.');
  }

  /**
   * Test asset location.
   */
  public function testAssetLocation() {

    // Create a new asset.

    /** @var \Drupal\asset\Entity\AssetInterface $asset */
    $asset = Asset::create([
      'type' => 'object',
      'name' => $this
        ->randomMachineName(),
      'status' => 'active',
    ]);
    $asset
      ->save();

    // Populate a cache value dependent on the asset's cache tags.
    $this
      ->populateEntityTestCache($asset);

    // When an asset has no movement logs, it has no location or geometry.
    $this
      ->assertFalse($this->assetLocation
      ->hasLocation($asset), 'New assets do not have location.');
    $this
      ->assertFalse($this->assetLocation
      ->hasGeometry($asset), 'New assets do not have geometry.');

    // Assert that the asset's cache tags were not invalidated.
    $this
      ->assertEntityTestCache($asset, TRUE);

    // Create a "done" movement log that references the asset.

    /** @var \Drupal\log\Entity\LogInterface $first_log */
    $first_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        'target_id' => $asset
          ->id(),
      ],
      'location' => [
        'target_id' => $this->locations[0]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $first_log
      ->save();

    // When a movement log is created and marked as "done", the asset has
    // the same location and geometry as the log.
    $this
      ->assertTrue($this->assetLocation
      ->hasLocation($asset), 'Asset with movement log has location.');
    $this
      ->assertTrue($this->assetLocation
      ->hasGeometry($asset), 'Asset with movement log has geometry.');
    $this
      ->assertEquals($this->logLocation
      ->getLocation($first_log), $this->assetLocation
      ->getLocation($asset), 'Asset with movement log has same location as log.');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($first_log), $this->assetLocation
      ->getGeometry($asset), 'Asset with movement log has same geometry as log.');

    // Assert that the asset's cache tags were invalidated.
    $this
      ->assertEntityTestCache($asset, FALSE);

    // Re-populate a cache value dependent on the asset's cache tags.
    $this
      ->populateEntityTestCache($asset);

    // When a movement log's locations are changed, the asset location changes.
    $first_log->location = [
      'target_id' => $this->locations[1]
        ->id(),
    ];
    $first_log
      ->save();
    $this
      ->assertEquals($this->logLocation
      ->getLocation($first_log), $this->assetLocation
      ->getLocation($asset), 'Asset with changed movement log has same location as log.');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($first_log), $this->assetLocation
      ->getGeometry($asset), 'Asset with changed movement log has same geometry as log.');

    // Assert that the asset's cache tags were invalidated.
    $this
      ->assertEntityTestCache($asset, FALSE);

    // Re-populate a cache value dependent on the asset's cache tags.
    $this
      ->populateEntityTestCache($asset);

    // Create a "pending" movement log that references the asset.

    /** @var \Drupal\log\Entity\LogInterface $second_log */
    $second_log = Log::create([
      'type' => 'movement',
      'status' => 'pending',
      'asset' => [
        'target_id' => $asset
          ->id(),
      ],
      'location' => [
        'target_id' => $this->locations[2]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $second_log
      ->save();

    // When an asset has a "pending" movement log, the asset location and
    // geometry remain the same as the previous "done" movement log.
    $this
      ->assertEquals($this->logLocation
      ->getLocation($first_log), $this->assetLocation
      ->getLocation($asset), 'Asset with pending movement log has original location');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($first_log), $this->assetLocation
      ->getGeometry($asset), 'Asset with pending movement log has original geometry.');

    // Assert that the asset's cache tags were not invalidated.
    $this
      ->assertEntityTestCache($asset, TRUE);

    // When the log is marked as "done", the asset location is updated.
    $second_log->status = 'done';
    $second_log
      ->save();
    $this
      ->assertEquals($this->logLocation
      ->getLocation($second_log), $this->assetLocation
      ->getLocation($asset), 'Asset with second movement log has new location');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($second_log), $this->assetLocation
      ->getGeometry($asset), 'Asset with second movement log has new geometry.');

    // Assert that the asset's cache tags were invalidated.
    $this
      ->assertEntityTestCache($asset, FALSE);

    // Re-populate a cache value dependent on the asset's cache tags.
    $this
      ->populateEntityTestCache($asset);

    // Create a third "done" movement log in the future.

    /** @var \Drupal\log\Entity\LogInterface $third_log */
    $third_log = Log::create([
      'type' => 'movement',
      'timestamp' => \Drupal::time()
        ->getRequestTime() + 86400,
      'status' => 'done',
      'asset' => [
        'target_id' => $asset
          ->id(),
      ],
      'location' => [
        'target_id' => $this->locations[0]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $third_log
      ->save();

    // When an asset has a "done" movement log in the future, the asset
    // location and geometry remain the same as the previous "done" movement
    // log.
    $this
      ->assertEquals($this->logLocation
      ->getLocation($second_log), $this->assetLocation
      ->getLocation($asset), 'Asset with future movement log has current location');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($second_log), $this->assetLocation
      ->getGeometry($asset), 'Asset with future movement log has current geometry.');

    // Assert that the asset's cache tags were not invalidated.
    $this
      ->assertEntityTestCache($asset, TRUE);

    // Create a fourth "done" movement log without location.

    /** @var \Drupal\log\Entity\LogInterface $fourth_log */
    $fourth_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        'target_id' => $asset
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $fourth_log
      ->save();

    // When a movement log is created with no location/geometry, it effectively
    // "unsets" the asset's location/geometry.
    $this
      ->assertFalse($this->assetLocation
      ->hasLocation($asset), 'Asset location can be unset.');
    $this
      ->assertFalse($this->assetLocation
      ->hasGeometry($asset), 'Asset geometry can be unset.');

    // Assert that the asset's cache tags were invalidated.
    $this
      ->assertEntityTestCache($asset, FALSE);

    // Re-populate a cache value dependent on the asset's cache tags.
    $this
      ->populateEntityTestCache($asset);

    // Delete the fourth log.
    $fourth_log
      ->delete();

    // When a movement log is deleted, the previous location is used.
    $this
      ->assertEquals($this->logLocation
      ->getLocation($second_log), $this->assetLocation
      ->getLocation($asset), 'When a movement log is deleted, the previous location is used.');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($second_log), $this->assetLocation
      ->getGeometry($asset), 'When a movement log is deleted, the previous locations geometry is used. .');

    // Assert that the asset's cache tags were invalidated.
    $this
      ->assertEntityTestCache($asset, FALSE);
  }

  /**
   * Test fixed asset location.
   */
  public function testFixedAssetLocation() {

    // Create a new "fixed" asset.

    /** @var \Drupal\asset\Entity\AssetInterface $asset */
    $asset = Asset::create([
      'type' => 'object',
      'name' => $this
        ->randomMachineName(),
      'status' => 'active',
      'is_fixed' => TRUE,
    ]);
    $asset
      ->save();

    // When a new asset is saved, it does not have a geometry.
    $this
      ->assertFalse($this->assetLocation
      ->hasGeometry($asset), 'New assets do not have geometry.');

    // When an asset is fixed, and has intrinsic geometry, it is the asset's
    // geometry.
    $this->assetLocation
      ->setIntrinsicGeometry($asset, $this->polygons[0]);
    $asset
      ->save();
    $this
      ->assertTrue($this->assetLocation
      ->hasGeometry($asset), 'Assets with intrinsic geometry have geometry.');
    $this
      ->assertEquals($this->polygons[0], $this->assetLocation
      ->getGeometry($asset), 'Asset intrinsic geometry is asset geometry.');

    // Create a "done" movement log that references the asset.

    /** @var \Drupal\log\Entity\LogInterface $log */
    $log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        'target_id' => $asset
          ->id(),
      ],
      'location' => [
        'target_id' => $this->locations[0]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $log
      ->save();

    // Movement logs of a fixed asset do not affect that asset's location or
    // geometry.
    $this
      ->assertEquals([], $this->assetLocation
      ->getLocation($asset), 'Movement logs of a fixed asset do not affect location.');
    $this
      ->assertEquals($this->polygons[0], $this->assetLocation
      ->getGeometry($asset), 'Movement logs of a fixed asset do not affect geometry.');

    // Set is_fixed to FALSE on the asset.
    $asset->is_fixed = FALSE;
    $asset
      ->save();

    // If an asset has a movement log and is no longer fixed, it's location and
    // geometry equal location and geometry of the log.
    $this
      ->assertEquals($this->logLocation
      ->getLocation($log), $this->assetLocation
      ->getLocation($asset), 'Movement logs of a not fixed asset do affect location.');
    $this
      ->assertEquals($this->logLocation
      ->getGeometry($log), $this->assetLocation
      ->getGeometry($asset), 'Movement logs of a not fixed asset do affect geometry.');
  }

  /**
   * Test assets in location.
   */
  public function testLocationAssets() {

    // Locations have no assets.
    $this
      ->assertEmpty($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
      $this->locations[1],
    ]));

    // Create an asset and move it to the first location.

    /** @var \Drupal\asset\Entity\AssetInterface $first_asset */
    $first_asset = Asset::create([
      'type' => 'object',
      'name' => $this
        ->randomMachineName(),
      'status' => 'active',
    ]);
    $first_asset
      ->save();

    /** @var \Drupal\log\Entity\LogInterface $first_log */
    $first_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        'target_id' => $first_asset
          ->id(),
      ],
      'location' => [
        'target_id' => $this->locations[0]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $first_log
      ->save();

    // First location has one asset, second has none.
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
    ])));
    $this
      ->assertEmpty($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[1],
    ]));
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
      $this->locations[1],
    ])));

    // Create a second asset and move it to the second location.

    /** @var \Drupal\asset\Entity\AssetInterface $second_asset */
    $second_asset = Asset::create([
      'type' => 'object',
      'name' => $this
        ->randomMachineName(),
      'status' => 'active',
    ]);
    $second_asset
      ->save();

    /** @var \Drupal\log\Entity\LogInterface $first_log */
    $second_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        'target_id' => $second_asset
          ->id(),
      ],
      'location' => [
        'target_id' => $this->locations[1]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $second_log
      ->save();

    // Both locations have one asset.
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
    ])));
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[1],
    ])));
    $this
      ->assertEquals(2, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
      $this->locations[1],
    ])));

    // Create a third log that moves both assets to the first location.

    /** @var \Drupal\log\Entity\LogInterface $third_log */
    $third_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        [
          'target_id' => $first_asset
            ->id(),
        ],
        [
          'target_id' => $second_asset
            ->id(),
        ],
      ],
      'location' => [
        'target_id' => $this->locations[0]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $third_log
      ->save();

    // First location has two assets, second has none.
    $this
      ->assertEquals(2, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
    ])));
    $this
      ->assertEmpty($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[1],
    ]));
    $this
      ->assertEquals(2, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
      $this->locations[1],
    ])));

    // Create a fourth log that moves first asset to the second location.

    /** @var \Drupal\log\Entity\LogInterface $fourth_log */
    $fourth_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        [
          'target_id' => $first_asset
            ->id(),
        ],
      ],
      'location' => [
        'target_id' => $this->locations[1]
          ->id(),
      ],
      'is_movement' => TRUE,
    ]);
    $fourth_log
      ->save();

    // Both locations have one asset.
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
    ])));
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[1],
    ])));
    $this
      ->assertEquals(2, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
      $this->locations[1],
    ])));

    // Create a fifth log that moves first asset to the both locations.

    /** @var \Drupal\log\Entity\LogInterface $fifth_log */
    $fifth_log = Log::create([
      'type' => 'movement',
      'status' => 'done',
      'asset' => [
        [
          'target_id' => $first_asset
            ->id(),
        ],
      ],
      'location' => [
        [
          'target_id' => $this->locations[0]
            ->id(),
        ],
        [
          'target_id' => $this->locations[1]
            ->id(),
        ],
      ],
      'is_movement' => TRUE,
    ]);
    $fifth_log
      ->save();

    // First location has two asset, second location has one asset.
    $this
      ->assertEquals(2, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
    ])));
    $this
      ->assertEquals(1, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[1],
    ])));
    $this
      ->assertEquals(2, count($this->assetLocation
      ->getAssetsByLocation([
      $this->locations[0],
      $this->locations[1],
    ])));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 1
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionByText protected function Asserts that a select option with the visible text exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertLegacyTrait::assert Deprecated protected function
AssertLegacyTrait::assertEqual Deprecated protected function
AssertLegacyTrait::assertIdentical Deprecated protected function
AssertLegacyTrait::assertIdenticalObject Deprecated protected function
AssertLegacyTrait::assertNotEqual Deprecated protected function
AssertLegacyTrait::assertNotIdentical Deprecated protected function
AssertLegacyTrait::pass Deprecated protected function
AssertLegacyTrait::verbose Deprecated protected function
ConfigTestTrait::configImporter protected function Returns a ConfigImporter object to import test configuration.
ConfigTestTrait::copyConfig protected function Copies configuration objects from source storage to target storage.
ExtensionListTestTrait::getModulePath protected function Gets the path for the specified module.
ExtensionListTestTrait::getThemePath protected function Gets the path for the specified theme.
FarmEntityCacheTestTrait::assertEntityTestCache protected function Assert that a cache value dependent on an entity's cache tags exists.
FarmEntityCacheTestTrait::getEntityCacheId protected function Helper method to build the entity test cache ID.
FarmEntityCacheTestTrait::populateEntityTestCache protected function Populate a cache value that is dependent on an entity's cache tags.
KernelTestBase::$backupGlobals protected property Back up and restore any global variables that may be changed by tests.
KernelTestBase::$backupStaticAttributes protected property Back up and restore static class properties that may be changed by tests.
KernelTestBase::$backupStaticAttributesBlacklist protected property Contains a few static class properties for performance.
KernelTestBase::$classLoader protected property
KernelTestBase::$configImporter protected property @todo Move into Config test base class. 7
KernelTestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
KernelTestBase::$container protected property
KernelTestBase::$databasePrefix protected property
KernelTestBase::$preserveGlobalState protected property Do not forward any global state from the parent process to the processes that run the actual tests.
KernelTestBase::$root protected property The app root.
KernelTestBase::$runTestInSeparateProcess 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::$siteDirectory protected property
KernelTestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 6
KernelTestBase::$vfsRoot protected property The virtual filesystem root directory.
KernelTestBase::assertPostConditions protected function 1
KernelTestBase::bootEnvironment protected function Bootstraps a basic test environment.
KernelTestBase::bootKernel private function Bootstraps a kernel for a test.
KernelTestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
KernelTestBase::disableModules protected function Disables modules for this test.
KernelTestBase::enableModules protected function Enables modules for this test.
KernelTestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
KernelTestBase::getDatabaseConnectionInfo protected function Returns the Database connection info to be used for this test. 3
KernelTestBase::getDatabasePrefix public function
KernelTestBase::getExtensionsForModules private function Returns Extension objects for $modules to enable.
KernelTestBase::getModulesToEnable private static function Returns the modules to enable for this test.
KernelTestBase::initFileCache protected function Initializes the FileCache component.
KernelTestBase::installConfig protected function Installs default configuration for a given list of modules.
KernelTestBase::installEntitySchema protected function Installs the storage schema for a specific entity type.
KernelTestBase::installSchema protected function Installs database tables from a module schema definition.
KernelTestBase::prepareTemplate protected function
KernelTestBase::register public function Registers test-specific services. Overrides ServiceProviderInterface::register 24
KernelTestBase::render protected function Renders a render array. 1
KernelTestBase::setInstallProfile protected function Sets the install profile and rebuilds the container to update it.
KernelTestBase::setSetting protected function Sets an in-memory Settings variable.
KernelTestBase::setUpBeforeClass public static function 1
KernelTestBase::setUpFilesystem protected function Sets up the filesystem, so things like the file directory. 2
KernelTestBase::stop protected function Stops test execution.
KernelTestBase::tearDown protected function 4
KernelTestBase::tearDownCloseDatabaseConnection public function @after
KernelTestBase::vfsDump protected function Dumps the current state of the virtual filesystem to STDOUT.
KernelTestBase::__sleep public function Prevents serializing any properties.
LocationTest::$assetLocation protected property Asset location service.
LocationTest::$locations protected property Array of location assets.
LocationTest::$logLocation protected property Log location service.
LocationTest::$modules protected static property Modules to enable. Overrides KernelTestBase::$modules
LocationTest::$polygons protected property Array of polygon WKT strings.
LocationTest::$wktGenerator protected property WKT Generator service.
LocationTest::setUp protected function Overrides KernelTestBase::setUp
LocationTest::testAssetLocation public function Test asset location.
LocationTest::testFixedAssetLocation public function Test fixed asset location.
LocationTest::testLocationAssets public function Test assets in location.
LocationTest::testPopulateLogGeometry public function Test auto population of log geometry field.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers. 1
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
StorageCopyTrait::replaceStorageContents protected static function Copy the configuration from one storage to another and remove stale items.
TestRequirementsTrait::checkModuleRequirements private function Checks missing module requirements.
TestRequirementsTrait::checkRequirements protected function Check module requirements for the Drupal use case. 1
TestRequirementsTrait::getDrupalRoot protected static function Returns the Drupal root directory.
WktTrait::combineWkt public function Combine WKT geometries.
WktTrait::reduceWkt public function Reduce a WKT geometry.