class WorkspaceIntegrationTest in Drupal 8
Same name and namespace in other branches
- 9 core/modules/workspaces/tests/src/Kernel/WorkspaceIntegrationTest.php \Drupal\Tests\workspaces\Kernel\WorkspaceIntegrationTest
- 10 core/modules/workspaces/tests/src/Kernel/WorkspaceIntegrationTest.php \Drupal\Tests\workspaces\Kernel\WorkspaceIntegrationTest
Tests a complete deployment scenario across different workspaces.
@group #slow @group workspaces
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses AssertContentTrait, AssertLegacyTrait, AssertHelperTrait, ConfigTestTrait, PhpunitCompatibilityTrait, RandomGeneratorTrait, TestRequirementsTrait
- class \Drupal\Tests\workspaces\Kernel\WorkspaceIntegrationTest uses EntityReferenceTestTrait, ContentTypeCreationTrait, NodeCreationTrait, UserCreationTrait, WorkspaceTestTrait, ViewResultAssertionTrait
Expanded class hierarchy of WorkspaceIntegrationTest
File
- core/
modules/ workspaces/ tests/ src/ Kernel/ WorkspaceIntegrationTest.php, line 26
Namespace
Drupal\Tests\workspaces\KernelView source
class WorkspaceIntegrationTest extends KernelTestBase {
use ContentTypeCreationTrait;
use EntityReferenceTestTrait;
use NodeCreationTrait;
use UserCreationTrait;
use ViewResultAssertionTrait;
use WorkspaceTestTrait;
/**
* The entity type manager.
*
* @var \Drupal\Core\Entity\EntityTypeManagerInterface
*/
protected $entityTypeManager;
/**
* Creation timestamp that should be incremented for each new entity.
*
* @var int
*/
protected $createdTimestamp;
/**
* An array of nodes created before installing the Workspaces module.
*
* @var \Drupal\node\NodeInterface[]
*/
protected $nodes = [];
/**
* {@inheritdoc}
*/
protected static $modules = [
'entity_test',
'field',
'filter',
'node',
'text',
'user',
'system',
'views',
'language',
'content_translation',
'path_alias',
];
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->entityTypeManager = \Drupal::entityTypeManager();
$this
->installEntitySchema('entity_test_mulrev');
$this
->installEntitySchema('entity_test_mulrevpub');
$this
->installEntitySchema('entity_test_no_label');
$this
->installEntitySchema('node');
$this
->installEntitySchema('user');
$this
->installConfig([
'filter',
'node',
'system',
'language',
'content_translation',
]);
$this
->installSchema('system', [
'key_value_expire',
'sequences',
]);
$this
->installSchema('node', [
'node_access',
]);
$language = ConfigurableLanguage::createFromLangcode('de');
$language
->save();
$this
->createContentType([
'type' => 'page',
]);
$this
->setCurrentUser($this
->createUser([
'administer nodes',
]));
$this->container
->get('content_translation.manager')
->setEnabled('node', 'page', TRUE);
// Create two nodes, a published and an unpublished one, so we can test the
// behavior of the module with default/existing content.
$this->createdTimestamp = \Drupal::time()
->getRequestTime();
$this->nodes[] = $this
->createNode([
'title' => 'live - 1 - r1 - published',
'body' => 'node 1',
'created' => $this->createdTimestamp++,
'status' => TRUE,
]);
$this->nodes[] = $this
->createNode([
'title' => 'live - 2 - r2 - unpublished',
'body' => 'node 2',
'created' => $this->createdTimestamp++,
'status' => FALSE,
]);
$translation = $this->nodes[0]
->addTranslation('de');
$translation
->setTitle('live - 1 - r1 - published - de');
$translation
->save();
}
/**
* Tests various scenarios for creating and deploying content in workspaces.
*/
public function testWorkspaces() {
$this
->initializeWorkspacesModule();
// Notes about the structure of the test scenarios:
// - a multi-dimensional array keyed by the workspace ID, then by the entity
// ID and finally by the revision ID.
// - 'default_revision' indicates the entity revision that should be
// returned when loading an entity, non-revision entity queries and
// non-revision views *in a given workspace*, it does not indicate what is
// actually stored in the base and data entity tables.
$test_scenarios = [];
// The $expected_workspace_association array holds the revision IDs which
// should be tracked by the Workspace Association entity type in each test
// scenario, keyed by workspace ID.
$expected_workspace_association = [];
// In the initial state we have only the two revisions that were created
// before the Workspaces module was installed.
$revision_state = [
'live' => [
1 => [
1 => [
'title' => 'live - 1 - r1 - published',
'status' => TRUE,
'default_revision' => TRUE,
],
],
2 => [
2 => [
'title' => 'live - 2 - r2 - unpublished',
'status' => FALSE,
'default_revision' => TRUE,
],
],
],
'stage' => [
1 => [
1 => [
'title' => 'live - 1 - r1 - published',
'status' => TRUE,
'default_revision' => TRUE,
],
],
2 => [
2 => [
'title' => 'live - 2 - r2 - unpublished',
'status' => FALSE,
'default_revision' => TRUE,
],
],
],
];
$test_scenarios['initial_state'] = $revision_state;
$expected_workspace_association['initial_state'] = [
'stage' => [],
];
// Unpublish node 1 in 'stage'. The new revision is also added to 'live' but
// it is not the default revision.
$revision_state = array_replace_recursive($revision_state, [
'live' => [
1 => [
3 => [
'title' => 'stage - 1 - r3 - unpublished',
'status' => FALSE,
'default_revision' => FALSE,
],
],
],
'stage' => [
1 => [
1 => [
'default_revision' => FALSE,
],
3 => [
'title' => 'stage - 1 - r3 - unpublished',
'status' => FALSE,
'default_revision' => TRUE,
],
],
],
]);
$test_scenarios['unpublish_node_1_in_stage'] = $revision_state;
$expected_workspace_association['unpublish_node_1_in_stage'] = [
'stage' => [
3,
],
];
// Publish node 2 in 'stage'. The new revision is also added to 'live' but
// it is not the default revision.
$revision_state = array_replace_recursive($revision_state, [
'live' => [
2 => [
4 => [
'title' => 'stage - 2 - r4 - published',
'status' => TRUE,
'default_revision' => FALSE,
],
],
],
'stage' => [
2 => [
2 => [
'default_revision' => FALSE,
],
4 => [
'title' => 'stage - 2 - r4 - published',
'status' => TRUE,
'default_revision' => TRUE,
],
],
],
]);
$test_scenarios['publish_node_2_in_stage'] = $revision_state;
$expected_workspace_association['publish_node_2_in_stage'] = [
'stage' => [
3,
4,
],
];
// Adding a new unpublished node on 'stage' should create a single
// unpublished revision on both 'stage' and 'live'.
$revision_state = array_replace_recursive($revision_state, [
'live' => [
3 => [
5 => [
'title' => 'stage - 3 - r5 - unpublished',
'status' => FALSE,
'default_revision' => TRUE,
],
],
],
'stage' => [
3 => [
5 => [
'title' => 'stage - 3 - r5 - unpublished',
'status' => FALSE,
'default_revision' => TRUE,
],
],
],
]);
$test_scenarios['add_unpublished_node_in_stage'] = $revision_state;
$expected_workspace_association['add_unpublished_node_in_stage'] = [
'stage' => [
3,
4,
5,
],
];
// Adding a new published node on 'stage' should create two revisions, an
// unpublished revision on 'live' and a published one on 'stage'.
$revision_state = array_replace_recursive($revision_state, [
'live' => [
4 => [
6 => [
'title' => 'stage - 4 - r6 - published',
'status' => FALSE,
'default_revision' => TRUE,
],
7 => [
'title' => 'stage - 4 - r6 - published',
'status' => TRUE,
'default_revision' => FALSE,
],
],
],
'stage' => [
4 => [
6 => [
'title' => 'stage - 4 - r6 - published',
'status' => FALSE,
'default_revision' => FALSE,
],
7 => [
'title' => 'stage - 4 - r6 - published',
'status' => TRUE,
'default_revision' => TRUE,
],
],
],
]);
$test_scenarios['add_published_node_in_stage'] = $revision_state;
$expected_workspace_association['add_published_node_in_stage'] = [
'stage' => [
3,
4,
5,
7,
],
];
// Deploying 'stage' to 'live' should simply make the latest revisions in
// 'stage' the default ones in 'live'.
$revision_state = array_replace_recursive($revision_state, [
'live' => [
1 => [
1 => [
'default_revision' => FALSE,
],
3 => [
'default_revision' => TRUE,
],
],
2 => [
2 => [
'default_revision' => FALSE,
],
4 => [
'default_revision' => TRUE,
],
],
// Node 3 has a single revision for both 'stage' and 'live' and it is
// already the default revision in both of them.
4 => [
6 => [
'default_revision' => FALSE,
],
7 => [
'default_revision' => TRUE,
],
],
],
]);
$test_scenarios['push_stage_to_live'] = $revision_state;
$expected_workspace_association['push_stage_to_live'] = [
'stage' => [],
];
// Check the initial state after the module was installed.
$this
->assertWorkspaceStatus($test_scenarios['initial_state'], 'node');
$this
->assertWorkspaceAssociation($expected_workspace_association['initial_state'], 'node');
// Unpublish node 1 in 'stage'.
$this
->switchToWorkspace('stage');
$node = $this->entityTypeManager
->getStorage('node')
->load(1);
$node
->setTitle('stage - 1 - r3 - unpublished');
$node
->setUnpublished();
$node
->save();
$this
->assertWorkspaceStatus($test_scenarios['unpublish_node_1_in_stage'], 'node');
$this
->assertWorkspaceAssociation($expected_workspace_association['unpublish_node_1_in_stage'], 'node');
// Publish node 2 in 'stage'.
$this
->switchToWorkspace('stage');
$node = $this->entityTypeManager
->getStorage('node')
->load(2);
$node
->setTitle('stage - 2 - r4 - published');
$node
->setPublished();
$node
->save();
$this
->assertWorkspaceStatus($test_scenarios['publish_node_2_in_stage'], 'node');
$this
->assertWorkspaceAssociation($expected_workspace_association['publish_node_2_in_stage'], 'node');
// Add a new unpublished node on 'stage'.
$this
->switchToWorkspace('stage');
$this
->createNode([
'title' => 'stage - 3 - r5 - unpublished',
'created' => $this->createdTimestamp++,
'status' => FALSE,
]);
$this
->assertWorkspaceStatus($test_scenarios['add_unpublished_node_in_stage'], 'node');
$this
->assertWorkspaceAssociation($expected_workspace_association['add_unpublished_node_in_stage'], 'node');
// Add a new published node on 'stage'.
$this
->switchToWorkspace('stage');
$this
->createNode([
'title' => 'stage - 4 - r6 - published',
'created' => $this->createdTimestamp++,
'status' => TRUE,
]);
$this
->assertWorkspaceStatus($test_scenarios['add_published_node_in_stage'], 'node');
$this
->assertWorkspaceAssociation($expected_workspace_association['add_published_node_in_stage'], 'node');
// Deploy 'stage' to 'live'.
/** @var \Drupal\workspaces\WorkspacePublisher $workspace_publisher */
$workspace_publisher = \Drupal::service('workspaces.operation_factory')
->getPublisher($this->workspaces['stage']);
// Check which revisions need to be pushed.
$expected = [
'node' => [
3 => 1,
4 => 2,
5 => 3,
7 => 4,
],
];
$this
->assertEquals($expected, $workspace_publisher
->getDifferringRevisionIdsOnSource());
$this->workspaces['stage']
->publish();
$this
->assertWorkspaceStatus($test_scenarios['push_stage_to_live'], 'node');
$this
->assertWorkspaceAssociation($expected_workspace_association['push_stage_to_live'], 'node');
// Check that there are no more revisions to push.
$this
->assertEmpty($workspace_publisher
->getDifferringRevisionIdsOnSource());
}
/**
* Tests entity tracking in workspace descendants.
*/
public function testWorkspaceHierarchy() {
$this
->initializeWorkspacesModule();
$this
->createWorkspaceHierarchy();
// The two pre-existing nodes are not overridden in any non-default
// workspace.
$expected_workspace_association = [
'stage' => [],
'dev' => [],
'local_1' => [],
'local_2' => [],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
// Create a new revision for a node in 'stage' and check that it's tracked
// in all descendants.
$this
->switchToWorkspace('stage');
$node = $this->entityTypeManager
->getStorage('node')
->load(1);
$node
->setTitle('stage - 1 - r3');
$node
->save();
$expected_workspace_association = [
'stage' => [
3,
],
'dev' => [
3,
],
'local_1' => [
3,
],
'local_2' => [
3,
],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
// Create a new published node in 'stage' (which creates two revisions), and
// check that it's tracked in all its descendants.
$this
->switchToWorkspace('stage');
$this
->createNode([
'title' => 'stage - 3 - r5 - published',
'created' => $this->createdTimestamp++,
'status' => TRUE,
]);
$expected_workspace_association = [
'stage' => [
3,
5,
],
'dev' => [
3,
5,
],
'local_1' => [
3,
5,
],
'local_2' => [
3,
5,
],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
// Create a new revision in `dev` and check that it's also tracked in
// 'local_1' and 'local_2'.
$this
->switchToWorkspace('dev');
$node = $this->entityTypeManager
->getStorage('node')
->load(1);
$node
->setTitle('dev - 1 - r6');
$node
->save();
$expected_workspace_association = [
'stage' => [
3,
5,
],
'dev' => [
5,
6,
],
'local_1' => [
5,
6,
],
'local_2' => [
5,
6,
],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
// Create a new revision in 'local_1', then a different one in 'dev', which
// should only be tracked in `dev` and 'local_2', because 'local_1' is no
// longer inheriting from 'dev'.
$this
->switchToWorkspace('local_1');
$node = $this->entityTypeManager
->getStorage('node')
->load(1);
$node
->setTitle('local_1 - 1 - r7');
$node
->save();
$expected_workspace_association = [
'stage' => [
3,
5,
],
'dev' => [
5,
6,
],
'local_1' => [
5,
7,
],
'local_2' => [
5,
6,
],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
$this
->switchToWorkspace('dev');
$node = $this->entityTypeManager
->getStorage('node')
->load(1);
$node
->setTitle('dev - 1 - r8');
$node
->save();
$expected_workspace_association = [
'stage' => [
3,
5,
],
'dev' => [
5,
8,
],
'local_1' => [
5,
7,
],
'local_2' => [
5,
8,
],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
// Add a child workspace for 'dev' and check that it inherits all the parent
// associations by default.
$this->workspaces['local_3'] = Workspace::create([
'id' => 'local_3',
'parent' => 'dev',
]);
$this->workspaces['local_3']
->save();
$expected_workspace_association = [
'stage' => [
3,
5,
],
'dev' => [
5,
8,
],
'local_1' => [
5,
7,
],
'local_2' => [
5,
8,
],
'local_3' => [
5,
8,
],
'qa' => [],
];
$this
->assertWorkspaceAssociation($expected_workspace_association, 'node');
// Check that a workspace that is not at the top level can not be published.
$this
->expectException(WorkspaceAccessException::class);
$this
->expectExceptionMessage('Only top-level workspaces can be published.');
$this->workspaces['dev']
->publish();
}
/**
* Tests entity query overrides without any conditions.
*/
public function testEntityQueryWithoutConditions() {
$this
->initializeWorkspacesModule();
$this
->switchToWorkspace('stage');
// Add a workspace-specific revision to a pre-existing node.
$node = $this->entityTypeManager
->getStorage('node')
->load(2);
$node->title->value = 'stage - 2 - r3 - published';
$node
->save();
$query = $this->entityTypeManager
->getStorage('node')
->getQuery();
$query
->sort('nid');
$query
->pager(1);
$result = $query
->execute();
$this
->assertSame([
1 => '1',
], $result);
$query = $this->entityTypeManager
->getStorage('node')
->getQuery();
$query
->sort('nid', 'DESC');
$query
->pager(10);
$result = $query
->execute();
$this
->assertSame([
3 => '2',
1 => '1',
], $result);
}
/**
* Tests the Entity Query relationship API with workspaces.
*/
public function testEntityQueryRelationship() {
$this
->initializeWorkspacesModule();
// Add an entity reference field that targets 'entity_test_mulrevpub'
// entities.
$this
->createEntityReferenceField('node', 'page', 'field_test_entity', 'Test entity reference', 'entity_test_mulrevpub');
// Add an entity reference field that targets 'node' entities so we can test
// references to the same base tables.
$this
->createEntityReferenceField('node', 'page', 'field_test_node', 'Test node reference', 'node');
$this
->switchToWorkspace('live');
$node_1 = $this
->createNode([
'title' => 'live node 1',
]);
$entity_test = EntityTestMulRevPub::create([
'name' => 'live entity_test_mulrevpub',
'non_rev_field' => 'live non-revisionable value',
]);
$entity_test
->save();
$node_2 = $this
->createNode([
'title' => 'live node 2',
'field_test_entity' => $entity_test
->id(),
'field_test_node' => $node_1
->id(),
]);
// Switch to the 'stage' workspace and change some values for the referenced
// entities.
$this
->switchToWorkspace('stage');
$node_1->title->value = 'stage node 1';
$node_1
->save();
$node_2->title->value = 'stage node 2';
$node_2
->save();
$entity_test->name->value = 'stage entity_test_mulrevpub';
$entity_test->non_rev_field->value = 'stage non-revisionable value';
$entity_test
->save();
// Make sure that we're requesting the default revision.
$query = $this->entityTypeManager
->getStorage('node')
->getQuery();
$query
->currentRevision();
$query
->condition('title', 'stage node 2')
->condition('revision_uid', $node_2
->getRevisionUserId())
->condition('type', $node_2
->bundle())
->condition('uuid', $node_2
->uuid());
// Add conditions for a reference to the same entity type.
$query
->condition('field_test_node.entity.title', 'stage node 1')
->condition('field_test_node.entity.revision_uid', $node_1
->getRevisionUserId())
->condition('field_test_node.entity.type', $node_1
->bundle())
->condition('field_test_node.entity.uuid', $node_1
->uuid());
// Add conditions for a reference to a different entity type.
// @todo Re-enable the two conditions below when we find a way to not join
// the workspace_association table for every duplicate entity base table
// join.
// @see https://www.drupal.org/project/drupal/issues/2983639
$query
->condition('field_test_entity.entity.uuid', $entity_test
->uuid());
$result = $query
->execute();
$this
->assertSame([
$node_2
->getRevisionId() => $node_2
->id(),
], $result);
}
/**
* Tests CREATE operations for unsupported entity types.
*
* @dataProvider providerTestAllowedEntityCrudInNonDefaultWorkspace
*/
public function testDisallowedEntityCreateInNonDefaultWorkspace($entity_type_id, $allowed) {
$this
->initializeWorkspacesModule();
/** @var \Drupal\Core\Entity\ContentEntityStorageInterface $storage */
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
// Switch to a non-default workspace and check whether creating a new entity
// is allowed.
$this
->switchToWorkspace('stage');
$entity = $storage
->createWithSampleValues($entity_type_id);
if ($entity_type_id === 'workspace') {
$entity->id = 'test';
}
if (!$allowed) {
$this
->expectException(EntityStorageException::class);
$this
->expectExceptionMessage('This entity can only be saved in the default workspace.');
}
$entity
->save();
}
/**
* Tests UPDATE operations for unsupported entity types.
*
* @dataProvider providerTestAllowedEntityCrudInNonDefaultWorkspace
*/
public function testDisallowedEntityUpdateInNonDefaultWorkspace($entity_type_id, $allowed) {
$this
->initializeWorkspacesModule();
/** @var \Drupal\Core\Entity\ContentEntityStorageInterface $storage */
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
// Create the entity in the default workspace.
$this->workspaceManager
->switchToLive();
$entity = $storage
->createWithSampleValues($entity_type_id);
if ($entity_type_id === 'workspace') {
$entity->id = 'test';
}
$entity
->save();
// Switch to a non-default workspace and check whether updating the entity
// is allowed.
$this
->switchToWorkspace('stage');
$entity->created->value = 1;
if (!$allowed) {
$this
->expectException(EntityStorageException::class);
$this
->expectExceptionMessage('This entity can only be saved in the default workspace.');
}
$entity
->save();
}
/**
* Tests DELETE operations for unsupported entity types.
*
* @dataProvider providerTestAllowedEntityCrudInNonDefaultWorkspace
*/
public function testDisallowedEntityDeleteInNonDefaultWorkspace($entity_type_id, $allowed) {
$this
->initializeWorkspacesModule();
/** @var \Drupal\Core\Entity\ContentEntityStorageInterface $storage */
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
// Create the entity in the default workspace.
$this->workspaceManager
->switchToLive();
$entity = $storage
->createWithSampleValues($entity_type_id);
if ($entity_type_id === 'workspace') {
$entity->id = 'test';
}
$entity
->save();
// Switch to a non-default workspace and check whether deleting the entity
// is allowed.
$this
->switchToWorkspace('stage');
if (!$allowed) {
$this
->expectException(EntityStorageException::class);
$this
->expectExceptionMessage('This entity can only be deleted in the default workspace.');
}
$entity
->delete();
}
/**
* Data provider for allowed entity CRUD operations.
*/
public function providerTestAllowedEntityCrudInNonDefaultWorkspace() {
return [
'workspace-provided non-internal entity type' => [
'entity_type_id' => 'workspace',
'allowed' => TRUE,
],
'internal entity type' => [
'entity_type_id' => 'entity_test_no_label',
'allowed' => TRUE,
],
'non-internal entity type' => [
'entity_type_id' => 'entity_test_mulrev',
'allowed' => FALSE,
],
];
}
/**
* @covers \Drupal\workspaces\WorkspaceManager::executeInWorkspace
*/
public function testExecuteInWorkspaceContext() {
$this
->initializeWorkspacesModule();
// Create an entity in the default workspace.
$this->workspaceManager
->switchToLive();
$node = $this
->createNode([
'title' => 'live node 1',
]);
$node
->save();
// Switch to the 'stage' workspace and change some values for the referenced
// entities.
$this
->switchToWorkspace('stage');
$node->title->value = 'stage node 1';
$node
->save();
// Switch back to the default workspace and run the baseline assertions.
$this->workspaceManager
->switchToLive();
$storage = $this->entityTypeManager
->getStorage('node');
$this
->assertFalse($this->workspaceManager
->hasActiveWorkspace());
$live_node = $storage
->load($node
->id());
$this
->assertEquals('live node 1', $live_node->title->value);
$result = $storage
->getQuery()
->condition('title', 'live node 1')
->execute();
$this
->assertEquals([
$live_node
->getRevisionId() => $node
->id(),
], $result);
// Try the same assertions in the context of the 'stage' workspace.
$this->workspaceManager
->executeInWorkspace('stage', function () use ($node, $storage) {
$this
->assertEquals('stage', $this->workspaceManager
->getActiveWorkspace()
->id());
$stage_node = $storage
->load($node
->id());
$this
->assertEquals('stage node 1', $stage_node->title->value);
$result = $storage
->getQuery()
->condition('title', 'stage node 1')
->execute();
$this
->assertEquals([
$stage_node
->getRevisionId() => $stage_node
->id(),
], $result);
});
// Check that the 'stage' workspace was not persisted by the workspace
// manager.
$this
->assertFalse($this->workspaceManager
->getActiveWorkspace());
}
/**
* Checks entity load, entity queries and views results for a test scenario.
*
* @param array $expected
* An array of expected values, as defined in ::testWorkspaces().
* @param string $entity_type_id
* The ID of the entity type that is being tested.
*/
protected function assertWorkspaceStatus(array $expected, $entity_type_id) {
$expected = $this
->flattenExpectedValues($expected, $entity_type_id);
$entity_keys = $this->entityTypeManager
->getDefinition($entity_type_id)
->getKeys();
foreach ($expected as $workspace_id => $expected_values) {
$this
->switchToWorkspace($workspace_id);
// Check that default revisions are swapped with the workspace revision.
$this
->assertEntityLoad($expected_values, $entity_type_id);
// Check that non-default revisions are not changed.
$this
->assertEntityRevisionLoad($expected_values, $entity_type_id);
// Check that entity queries return the correct results.
$this
->assertEntityQuery($expected_values, $entity_type_id);
// Check that the 'Frontpage' view only shows published content that is
// also considered as the default revision in the given workspace.
$expected_frontpage = array_filter($expected_values, function ($expected_value) {
return $expected_value['status'] === TRUE && $expected_value['default_revision'] === TRUE;
});
// The 'Frontpage' view will output nodes in reverse creation order.
usort($expected_frontpage, function ($a, $b) {
return $b['nid'] - $a['nid'];
});
$view = Views::getView('frontpage');
$view
->execute();
$this
->assertIdenticalResultset($view, $expected_frontpage, [
'nid' => 'nid',
]);
$rendered_view = $view
->render('page_1');
$output = \Drupal::service('renderer')
->renderRoot($rendered_view);
$this
->setRawContent($output);
foreach ($expected_values as $expected_entity_values) {
if ($expected_entity_values[$entity_keys['published']] === TRUE && $expected_entity_values['default_revision'] === TRUE) {
$this
->assertRaw($expected_entity_values[$entity_keys['label']]);
}
elseif ($workspace_id != 'stage' && $expected_entity_values[$entity_keys['id']] != 4) {
$this
->assertNoRaw($expected_entity_values[$entity_keys['label']]);
}
}
// Add a filter on a field that is stored in a dedicated table in order to
// test field joins with extra conditions (e.g. 'deleted' and 'langcode').
$view
->destroy();
$view
->setDisplay('page_1');
$filters = $view->displayHandlers
->get('page_1')
->getOption('filters');
$view->displayHandlers
->get('page_1')
->overrideOption('filters', $filters + [
'body_value' => [
'id' => 'body_value',
'table' => 'node__body',
'field' => 'body_value',
'operator' => 'not empty',
'plugin_id' => 'string',
],
]);
$view
->execute();
$this
->assertIdenticalResultset($view, $expected_frontpage, [
'nid' => 'nid',
]);
}
}
/**
* Asserts that default revisions are properly swapped in a workspace.
*
* @param array $expected_values
* An array of expected values, as defined in ::testWorkspaces().
* @param string $entity_type_id
* The ID of the entity type to check.
*/
protected function assertEntityLoad(array $expected_values, $entity_type_id) {
// Filter the expected values so we can check only the default revisions.
$expected_default_revisions = array_filter($expected_values, function ($expected_value) {
return $expected_value['default_revision'] === TRUE;
});
$entity_keys = $this->entityTypeManager
->getDefinition($entity_type_id)
->getKeys();
$id_key = $entity_keys['id'];
$revision_key = $entity_keys['revision'];
$label_key = $entity_keys['label'];
$published_key = $entity_keys['published'];
// Check \Drupal\Core\Entity\EntityStorageInterface::loadMultiple().
/** @var \Drupal\Core\Entity\RevisionableInterface[]|\Drupal\Core\Entity\EntityPublishedInterface[] $entities */
$entities = $this->entityTypeManager
->getStorage($entity_type_id)
->loadMultiple(array_column($expected_default_revisions, $id_key));
foreach ($expected_default_revisions as $expected_default_revision) {
$entity_id = $expected_default_revision[$id_key];
$this
->assertEquals($expected_default_revision[$revision_key], $entities[$entity_id]
->getRevisionId());
$this
->assertEquals($expected_default_revision[$label_key], $entities[$entity_id]
->label());
$this
->assertEquals($expected_default_revision[$published_key], $entities[$entity_id]
->isPublished());
}
// Check loading entities one by one. It is important to do these checks
// after the "multiple load" ones above so we can test with a fully warmed
// static cache.
foreach ($expected_default_revisions as $expected_default_revision) {
$entity_id = $expected_default_revision[$id_key];
$entities = $this->entityTypeManager
->getStorage($entity_type_id)
->loadMultiple([
$entity_id,
]);
$this
->assertCount(1, $entities);
$this
->assertEquals($expected_default_revision[$revision_key], $entities[$entity_id]
->getRevisionId());
$this
->assertEquals($expected_default_revision[$label_key], $entities[$entity_id]
->label());
$this
->assertEquals($expected_default_revision[$published_key], $entities[$entity_id]
->isPublished());
}
// Check \Drupal\Core\Entity\EntityStorageInterface::loadUnchanged().
foreach ($expected_default_revisions as $expected_default_revision) {
/** @var \Drupal\Core\Entity\RevisionableInterface|\Drupal\Core\Entity\EntityPublishedInterface $entity */
$entity = $this->entityTypeManager
->getStorage($entity_type_id)
->loadUnchanged($expected_default_revision[$id_key]);
$this
->assertEquals($expected_default_revision[$revision_key], $entity
->getRevisionId());
$this
->assertEquals($expected_default_revision[$label_key], $entity
->label());
$this
->assertEquals($expected_default_revision[$published_key], $entity
->isPublished());
}
}
/**
* Asserts that non-default revisions are not changed.
*
* @param array $expected_values
* An array of expected values, as defined in ::testWorkspaces().
* @param string $entity_type_id
* The ID of the entity type to check.
*/
protected function assertEntityRevisionLoad(array $expected_values, $entity_type_id) {
$entity_keys = $this->entityTypeManager
->getDefinition($entity_type_id)
->getKeys();
$id_key = $entity_keys['id'];
$revision_key = $entity_keys['revision'];
$label_key = $entity_keys['label'];
$published_key = $entity_keys['published'];
/** @var \Drupal\Core\Entity\RevisionableInterface[]|\Drupal\Core\Entity\EntityPublishedInterface[] $entities */
$entities = $this->entityTypeManager
->getStorage($entity_type_id)
->loadMultipleRevisions(array_column($expected_values, $revision_key));
foreach ($expected_values as $expected_revision) {
$revision_id = $expected_revision[$revision_key];
$this
->assertEquals($expected_revision[$id_key], $entities[$revision_id]
->id());
$this
->assertEquals($expected_revision[$revision_key], $entities[$revision_id]
->getRevisionId());
$this
->assertEquals($expected_revision[$label_key], $entities[$revision_id]
->label());
$this
->assertEquals($expected_revision[$published_key], $entities[$revision_id]
->isPublished());
}
}
/**
* Asserts that entity queries are giving the correct results in a workspace.
*
* @param array $expected_values
* An array of expected values, as defined in ::testWorkspaces().
* @param string $entity_type_id
* The ID of the entity type to check.
*/
protected function assertEntityQuery(array $expected_values, $entity_type_id) {
$storage = $this->entityTypeManager
->getStorage($entity_type_id);
$entity_keys = $this->entityTypeManager
->getDefinition($entity_type_id)
->getKeys();
$id_key = $entity_keys['id'];
$revision_key = $entity_keys['revision'];
$label_key = $entity_keys['label'];
$published_key = $entity_keys['published'];
// Filter the expected values so we can check only the default revisions.
$expected_default_revisions = array_filter($expected_values, function ($expected_value) {
return $expected_value['default_revision'] === TRUE;
});
// Check entity query counts.
$result = $storage
->getQuery()
->count()
->execute();
$this
->assertEquals(count($expected_default_revisions), $result);
$result = $storage
->getAggregateQuery()
->count()
->execute();
$this
->assertEquals(count($expected_default_revisions), $result);
// Check entity queries with no conditions.
$result = $storage
->getQuery()
->execute();
$expected_result = array_combine(array_column($expected_default_revisions, $revision_key), array_column($expected_default_revisions, $id_key));
$this
->assertEquals($expected_result, $result);
// Check querying each revision individually.
foreach ($expected_values as $expected_value) {
$query = $storage
->getQuery();
$query
->condition($entity_keys['id'], $expected_value[$id_key])
->condition($entity_keys['label'], $expected_value[$label_key])
->condition($entity_keys['published'], (int) $expected_value[$published_key]);
// If the entity is not expected to be the default revision, we need to
// query all revisions if we want to find it.
if (!$expected_value['default_revision']) {
$query
->allRevisions();
}
$result = $query
->execute();
$this
->assertEquals([
$expected_value[$revision_key] => $expected_value[$id_key],
], $result);
}
}
/**
* Flattens the expectations array defined by testWorkspaces().
*
* @param array $expected
* An array as defined by testWorkspaces().
* @param string $entity_type_id
* The ID of the entity type that is being tested.
*
* @return array
* An array where all the entity IDs and revision IDs are merged inside each
* expected values array.
*/
protected function flattenExpectedValues(array $expected, $entity_type_id) {
$flattened = [];
$entity_keys = $this->entityTypeManager
->getDefinition($entity_type_id)
->getKeys();
foreach ($expected as $workspace_id => $workspace_values) {
foreach ($workspace_values as $entity_id => $entity_revisions) {
foreach ($entity_revisions as $revision_id => $revision_values) {
$flattened[$workspace_id][] = [
$entity_keys['id'] => $entity_id,
$entity_keys['revision'] => $revision_id,
] + $revision_values;
}
}
}
return $flattened;
}
/**
* Tests that entity forms can be stored in the form cache.
*/
public function testFormCacheForEntityForms() {
$this
->initializeWorkspacesModule();
$this
->switchToWorkspace('stage');
$form_builder = $this->container
->get('form_builder');
$form = $this->entityTypeManager
->getFormObject('entity_test_mulrevpub', 'default');
$form
->setEntity(EntityTestMulRevPub::create([]));
$form_state = new FormState();
$built_form = $form_builder
->buildForm($form, $form_state);
$form_builder
->setCache($built_form['#build_id'], $built_form, $form_state);
}
/**
* Tests that non-entity forms can be stored in the form cache.
*/
public function testFormCacheForRegularForms() {
$this
->initializeWorkspacesModule();
$this
->switchToWorkspace('stage');
$form_builder = $this->container
->get('form_builder');
$form_state = new FormState();
$built_form = $form_builder
->getForm(SiteInformationForm::class, $form_state);
$form_builder
->setCache($built_form['#build_id'], $built_form, $form_state);
}
/**
* Test a deployment with fields in dedicated table storage.
*/
public function testPublishWorkspaceDedicatedTableStorage() {
$this
->initializeWorkspacesModule();
$node_storage = $this->entityTypeManager
->getStorage('node');
$this->workspaceManager
->switchToLive();
$node = $node_storage
->create([
'title' => 'Foo title',
// Use the body field on node as a test case because it requires dedicated
// table storage.
'body' => 'Foo body',
'type' => 'page',
]);
$node
->save();
$this
->switchToWorkspace('stage');
$node->title = 'Bar title';
$node->body = 'Bar body';
$node
->save();
$this->workspaces['stage']
->publish();
$this->workspaceManager
->switchToLive();
$reloaded = $node_storage
->load($node
->id());
$this
->assertEquals('Bar title', $reloaded->title->value);
$this
->assertEquals('Bar body', $reloaded->body->value);
}
}
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. | |
ContentTypeCreationTrait:: |
protected | function | Creates a custom content type based on default settings. | 1 |
EntityReferenceTestTrait:: |
protected | function | Creates a field of an entity reference field storage on the specified bundle. | |
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. | |
NodeCreationTrait:: |
protected | function | Creates a node based on default settings. | |
NodeCreationTrait:: |
public | function | Get a node from the database based on its title. | |
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. | |
UserCreationTrait:: |
protected | function | Checks whether a given list of permission names is valid. | |
UserCreationTrait:: |
protected | function | Creates an administrative role. | |
UserCreationTrait:: |
protected | function | Creates a role with specified permissions. | |
UserCreationTrait:: |
protected | function | Create a user with a given set of permissions. | |
UserCreationTrait:: |
protected | function | Grant permissions to a user role. | |
UserCreationTrait:: |
protected | function | Switch the current logged in user. | |
UserCreationTrait:: |
protected | function | Creates a random user account and sets it as current user. | |
ViewResultAssertionTrait:: |
protected | function | Verifies that a result set returned by a View matches expected values. | |
ViewResultAssertionTrait:: |
protected | function | Performs View result assertions. | |
ViewResultAssertionTrait:: |
protected | function | Verifies that a result set returned by a View differs from certain values. | |
WorkspaceIntegrationTest:: |
protected | property | Creation timestamp that should be incremented for each new entity. | |
WorkspaceIntegrationTest:: |
protected | property | The entity type manager. | |
WorkspaceIntegrationTest:: |
protected static | property |
Modules to enable. Overrides KernelTestBase:: |
|
WorkspaceIntegrationTest:: |
protected | property | An array of nodes created before installing the Workspaces module. | |
WorkspaceIntegrationTest:: |
protected | function | Asserts that default revisions are properly swapped in a workspace. | |
WorkspaceIntegrationTest:: |
protected | function | Asserts that entity queries are giving the correct results in a workspace. | |
WorkspaceIntegrationTest:: |
protected | function | Asserts that non-default revisions are not changed. | |
WorkspaceIntegrationTest:: |
protected | function | Checks entity load, entity queries and views results for a test scenario. | |
WorkspaceIntegrationTest:: |
protected | function | Flattens the expectations array defined by testWorkspaces(). | |
WorkspaceIntegrationTest:: |
public | function | Data provider for allowed entity CRUD operations. | |
WorkspaceIntegrationTest:: |
protected | function |
Overrides KernelTestBase:: |
|
WorkspaceIntegrationTest:: |
public | function | Tests CREATE operations for unsupported entity types. | |
WorkspaceIntegrationTest:: |
public | function | Tests DELETE operations for unsupported entity types. | |
WorkspaceIntegrationTest:: |
public | function | Tests UPDATE operations for unsupported entity types. | |
WorkspaceIntegrationTest:: |
public | function | Tests the Entity Query relationship API with workspaces. | |
WorkspaceIntegrationTest:: |
public | function | Tests entity query overrides without any conditions. | |
WorkspaceIntegrationTest:: |
public | function | @covers \Drupal\workspaces\WorkspaceManager::executeInWorkspace | |
WorkspaceIntegrationTest:: |
public | function | Tests that entity forms can be stored in the form cache. | |
WorkspaceIntegrationTest:: |
public | function | Tests that non-entity forms can be stored in the form cache. | |
WorkspaceIntegrationTest:: |
public | function | Test a deployment with fields in dedicated table storage. | |
WorkspaceIntegrationTest:: |
public | function | Tests entity tracking in workspace descendants. | |
WorkspaceIntegrationTest:: |
public | function | Tests various scenarios for creating and deploying content in workspaces. | |
WorkspaceTestTrait:: |
protected | property | The workspaces manager. | 1 |
WorkspaceTestTrait:: |
protected | property | An array of test workspaces, keyed by workspace ID. | |
WorkspaceTestTrait:: |
protected | function | Checks the workspace_association records for a test scenario. | |
WorkspaceTestTrait:: |
protected | function | Creates the following workspace hierarchy: live | |
WorkspaceTestTrait:: |
protected | function | Returns all the revisions which are not associated with any workspace. | |
WorkspaceTestTrait:: |
protected | function | Enables the Workspaces module and creates two workspaces. | |
WorkspaceTestTrait:: |
protected | function | Sets a given workspace as active. |