ConfigEntityStorageTest.php in Zircon Profile 8
File
core/modules/config/src/Tests/ConfigEntityStorageTest.php
View source
<?php
namespace Drupal\config\Tests;
use Drupal\simpletest\KernelTestBase;
use Drupal\Core\Config\ConfigDuplicateUUIDException;
class ConfigEntityStorageTest extends KernelTestBase {
public static $modules = array(
'config_test',
);
public function testUUIDConflict() {
$entity_type = 'config_test';
$id = 'test_1';
entity_create($entity_type, array(
'id' => $id,
))
->save();
$entity = entity_load($entity_type, $id);
$original_properties = $entity
->toArray();
$new_uuid = $this->container
->get('uuid')
->generate();
$entity
->set('uuid', $new_uuid);
try {
$entity
->save();
$this
->fail('Exception thrown when attempting to save a configuration entity with a UUID that does not match the existing UUID.');
} catch (ConfigDuplicateUUIDException $e) {
$this
->pass(format_string('Exception thrown when attempting to save a configuration entity with a UUID that does not match existing data: %e.', array(
'%e' => $e,
)));
}
$entity = entity_load('config_test', $entity
->id(), TRUE);
$this
->assertIdentical($entity
->toArray(), $original_properties);
}
}