class ViewUIObjectTest
Same name in other branches
- 9 core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php \Drupal\Tests\views_ui\Unit\ViewUIObjectTest
- 10 core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php \Drupal\Tests\views_ui\Unit\ViewUIObjectTest
- 11.x core/modules/views_ui/tests/src/Unit/ViewUIObjectTest.php \Drupal\Tests\views_ui\Unit\ViewUIObjectTest
@coversDefaultClass \Drupal\views_ui\ViewUI @group views_ui
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpunitCompatibilityTrait
- class \Drupal\Tests\views_ui\Unit\ViewUIObjectTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of ViewUIObjectTest
File
-
core/
modules/ views_ui/ tests/ src/ Unit/ ViewUIObjectTest.php, line 16
Namespace
Drupal\Tests\views_ui\UnitView source
class ViewUIObjectTest extends UnitTestCase {
/**
* Tests entity method decoration.
*/
public function testEntityDecoration() {
$method_args = [];
$method_args['setOriginalId'] = [
12,
];
$method_args['setStatus'] = [
TRUE,
];
$method_args['enforceIsNew'] = [
FALSE,
];
$method_args['label'] = [
LanguageInterface::LANGCODE_NOT_SPECIFIED,
];
$reflection = new \ReflectionClass('Drupal\\Core\\Config\\Entity\\ConfigEntityInterface');
$interface_methods = [];
foreach ($reflection->getMethods() as $reflection_method) {
$interface_methods[] = $reflection_method->getName();
// EntityInterface::isNew() is missing from the list of methods, because it
// calls id(), which breaks the ->expect($this->once()) call. Call it later.
// EntityInterface::isSyncing() is only called during syncing process.
// EntityInterface::isUninstalling() is only called during uninstallation
// process. EntityInterface::getConfigDependencyName() and
// ConfigEntityInterface::calculateDependencies() are only used for
// dependency management.
if (!in_array($reflection_method->getName(), [
'isNew',
'isSyncing',
'isUninstalling',
'getConfigDependencyKey',
'getConfigDependencyName',
'calculateDependencies',
])) {
if (count($reflection_method->getParameters()) == 0) {
$method_args[$reflection_method->getName()] = [];
}
}
}
$storage = $this->getMockBuilder('Drupal\\views\\Entity\\View')
->setMethods($interface_methods)
->setConstructorArgs([
[],
'view',
])
->getMock();
$executable = $this->getMockBuilder('Drupal\\views\\ViewExecutable')
->disableOriginalConstructor()
->setConstructorArgs([
$storage,
])
->getMock();
$storage->set('executable', $executable);
$view_ui = new ViewUI($storage);
foreach ($method_args as $method => $args) {
$method_mock = $storage->expects($this->once())
->method($method);
foreach ($args as $arg) {
$method_mock->with($this->equalTo($arg));
}
call_user_func_array([
$view_ui,
$method,
], $args);
}
$storage->expects($this->once())
->method('isNew');
$view_ui->isNew();
}
/**
* Tests the isLocked method.
*/
public function testIsLocked() {
$storage = $this->getMockBuilder('Drupal\\views\\Entity\\View')
->setConstructorArgs([
[],
'view',
])
->getMock();
$executable = $this->getMockBuilder('Drupal\\views\\ViewExecutable')
->disableOriginalConstructor()
->setConstructorArgs([
$storage,
])
->getMock();
$storage->set('executable', $executable);
$account = $this->createMock('Drupal\\Core\\Session\\AccountInterface');
$account->expects($this->exactly(2))
->method('id')
->will($this->returnValue(1));
$container = new ContainerBuilder();
$container->set('current_user', $account);
\Drupal::setContainer($container);
$view_ui = new ViewUI($storage);
// A view_ui without a lock object is not locked.
$this->assertFalse($view_ui->isLocked());
// Set the lock object with a different owner than the mocked account above.
$lock = new Lock(2, (int) $_SERVER['REQUEST_TIME']);
$view_ui->setLock($lock);
$this->assertTrue($view_ui->isLocked());
// Set a different lock object with the same object as the mocked account.
$lock = new Lock(1, (int) $_SERVER['REQUEST_TIME']);
$view_ui->setLock($lock);
$this->assertFalse($view_ui->isLocked());
$view_ui->unsetLock(NULL);
$this->assertFalse($view_ui->isLocked());
}
/**
* Tests the isLocked method.
*
* @expectedDeprecation Using the "lock" public property of a View is deprecated in Drupal 8.7.0 and will not be allowed in Drupal 9.0.0. Use \Drupal\views_ui\ViewUI::setLock() instead. See https://www.drupal.org/node/3025869.
* @group legacy
*/
public function testIsLockedLegacy() {
$storage = $this->getMockBuilder('Drupal\\views\\Entity\\View')
->setConstructorArgs([
[],
'view',
])
->getMock();
$executable = $this->getMockBuilder('Drupal\\views\\ViewExecutable')
->disableOriginalConstructor()
->setConstructorArgs([
$storage,
])
->getMock();
$storage->set('executable', $executable);
$account = $this->createMock('Drupal\\Core\\Session\\AccountInterface');
$account->expects($this->exactly(2))
->method('id')
->will($this->returnValue(1));
$container = new ContainerBuilder();
$container->set('current_user', $account);
\Drupal::setContainer($container);
$view_ui = new ViewUI($storage);
// A view_ui without a lock object is not locked.
$this->assertFalse($view_ui->isLocked());
// Set the lock object with a different owner than the mocked account above.
$lock = (object) [
'owner' => 2,
'data' => [],
'updated' => (int) $_SERVER['REQUEST_TIME'],
];
$view_ui->lock = $lock;
$this->assertTrue($view_ui->isLocked());
// Set a different lock object with the same object as the mocked account.
$lock = (object) [
'owner' => 1,
'data' => [],
'updated' => (int) $_SERVER['REQUEST_TIME'],
];
$view_ui->lock = $lock;
$this->assertFalse($view_ui->isLocked());
}
/**
* Tests serialization of the ViewUI object.
*/
public function testSerialization() {
// Set a container so the DependencySerializationTrait has it.
$container = new ContainerBuilder();
\Drupal::setContainer($container);
$storage = new View([], 'view');
$executable = $this->getMockBuilder('Drupal\\views\\ViewExecutable')
->disableOriginalConstructor()
->setConstructorArgs([
$storage,
])
->getMock();
$storage->set('executable', $executable);
$view_ui = new ViewUI($storage);
// Make sure the executable is returned before serializing.
$this->assertInstanceOf('Drupal\\views\\ViewExecutable', $view_ui->getExecutable());
$serialized = serialize($view_ui);
// Make sure the ViewExecutable class is not found in the serialized string.
$this->assertStringNotContainsString('"Drupal\\views\\ViewExecutable"', $serialized);
$unserialized = unserialize($serialized);
$this->assertInstanceOf('Drupal\\views_ui\\ViewUI', $unserialized);
}
}
Members
Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|---|
PhpunitCompatibilityTrait::getMock | Deprecated | public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait::setExpectedException | Deprecated | public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase::$randomGenerator | protected | property | The random generator. | ||
UnitTestCase::$root | protected | property | The app root. | 1 | |
UnitTestCase::assertArrayEquals | protected | function | Asserts if two arrays are equal by sorting them first. | ||
UnitTestCase::getBlockMockWithMachineName | Deprecated | protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | ||
UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | ||
UnitTestCase::getConfigStorageStub | public | function | Returns a stub config storage that returns the supplied configuration. | ||
UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | ||
UnitTestCase::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | ||
UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | ||
UnitTestCase::randomMachineName | public | function | Generates a unique random string containing letters and numbers. | ||
UnitTestCase::setUp | protected | function | 340 | ||
ViewUIObjectTest::testEntityDecoration | public | function | Tests entity method decoration. | ||
ViewUIObjectTest::testIsLocked | public | function | Tests the isLocked method. | ||
ViewUIObjectTest::testIsLockedLegacy | public | function | Tests the isLocked method. | ||
ViewUIObjectTest::testSerialization | public | function | Tests serialization of the ViewUI object. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.