- Issue created by @alayham
The best way forward would be for you to add a test to, or enhance a test in, Drupal core, here, in a patch or in a merge request.
- 🇮🇳India shailja179 India
@alayham,
it will be better if you could give the steps too.
I faced an issue with the account switcher when trying the to switch accounts in a drush command. It looks to me that the account switcher does not properly refresh the list of available text formats when a session is passed, however the issue does not happen when a user entity is passed.
The following test proves the issue
<?php
namespace Drupal\Tests\gu_kop\Functional;
use Drupal\Core\Session\UserSession;
use Drupal\Tests\BrowserTestBase;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\filter\Entity\FilterFormat;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
/**
* Base class for GU KoP tests.
*/
class SessionSwitcherTest extends BrowserTestBase {
protected static $modules = [
'node',
'filter',
'user'
];
protected $defaultTheme= 'classy';
public function testSessionSwitcher() {
$format = FilterFormat::create([
'format' => $this->randomMachineName(),
'name' => $this->randomString(),
'weight' => 1,
'filters' => [],
]);
$format->save();
$role = $this->drupalCreateRole([$format->getPermissionName()]);
$user = $this->drupalCreateUser(['administer nodes'], $this->randomMachineName());
$user->addRole($role);
$node_type = NodeType::create([
'type' => $this->randomMachineName(),
'name' => $this->randomString(),
]);
$node_type->save();
$text_field = 'field_text';
$field_storage = FieldStorageConfig::create([
'field_name' => $text_field,
'entity_type' => 'node',
'type' => 'text_long',
]);
$field_storage->save();
$field = FieldConfig::create([
'field_storage' => $field_storage,
'bundle' => $node_type->id(),
]);
$field->save();
$node = Node::create([
'type' => $node_type->id(),
'title' => $this->randomString(),
$text_field => [
'value' => $this->randomString(),
'format' => $format->id(),
],
]);
$account_switcher = \Drupal::service('account_switcher');
$violations = $node->validate();
$this->assertCount(1, $violations);
$this->assertEquals($text_field . '.0.format', $violations[0]->getPropertyPath());
$session = new UserSession(['uid' => $user->id()]);
$account_switcher->switchTo($session);
$violations = $node->validate();
$this->assertCount(0, $violations);
$account_switcher->switchBack();
$violations = $node->validate();
$this->assertCount(1, $violations);
$this->assertEquals($text_field . '.0.format', $violations[0]->getPropertyPath());
}
}
Active
9.5
Last updated
The best way forward would be for you to add a test to, or enhance a test in, Drupal core, here, in a patch or in a merge request.
@alayham,
it will be better if you could give the steps too.