public function ConfigEntityBaseUnitTest::testThirdPartySettings in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Config/Entity/ConfigEntityBaseUnitTest.php \Drupal\Tests\Core\Config\Entity\ConfigEntityBaseUnitTest::testThirdPartySettings()
@covers ::getThirdPartySetting @covers ::setThirdPartySetting @covers ::getThirdPartySettings @covers ::unsetThirdPartySetting @covers ::getThirdPartyProviders
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ Entity/ ConfigEntityBaseUnitTest.php, line 554 - Contains \Drupal\Tests\Core\Config\Entity\ConfigEntityBaseUnitTest.
Class
- ConfigEntityBaseUnitTest
- @coversDefaultClass \Drupal\Core\Config\Entity\ConfigEntityBase @group Config
Namespace
Drupal\Tests\Core\Config\EntityCode
public function testThirdPartySettings() {
$key = 'test';
$third_party = 'test_provider';
$value = $this
->getRandomGenerator()
->string();
// Test getThirdPartySetting() with no settings.
$this
->assertEquals($value, $this->entity
->getThirdPartySetting($third_party, $key, $value));
$this
->assertNull($this->entity
->getThirdPartySetting($third_party, $key));
// Test setThirdPartySetting().
$this->entity
->setThirdPartySetting($third_party, $key, $value);
$this
->assertEquals($value, $this->entity
->getThirdPartySetting($third_party, $key));
$this
->assertEquals($value, $this->entity
->getThirdPartySetting($third_party, $key, $this->randomGenerator
->string()));
// Test getThirdPartySettings().
$this->entity
->setThirdPartySetting($third_party, 'test2', 'value2');
$this
->assertEquals(array(
$key => $value,
'test2' => 'value2',
), $this->entity
->getThirdPartySettings($third_party));
// Test getThirdPartyProviders().
$this->entity
->setThirdPartySetting('test_provider2', $key, $value);
$this
->assertEquals(array(
$third_party,
'test_provider2',
), $this->entity
->getThirdPartyProviders());
// Test unsetThirdPartyProviders().
$this->entity
->unsetThirdPartySetting('test_provider2', $key);
$this
->assertEquals(array(
$third_party,
), $this->entity
->getThirdPartyProviders());
}