View source
<?php
namespace Drupal\Tests\taxonomy\Functional;
use Drupal\Component\Utility\Unicode;
class VocabularyPermissionsTest extends TaxonomyTestBase {
protected static $modules = [
'help',
];
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('page_title_block');
$this
->drupalPlaceBlock('local_actions_block');
$this
->drupalPlaceBlock('help_block');
}
public function testVocabularyPermissionsVocabulary() {
$authenticated_user = $this
->drupalCreateUser([]);
$this
->drupalLogin($authenticated_user);
$assert_session = $this
->assertSession();
$this
->drupalGet('admin/structure/taxonomy');
$assert_session
->statusCodeEquals(403);
$proper_user = $this
->drupalCreateUser([
'access taxonomy overview',
]);
$this
->drupalLogin($proper_user);
$this
->drupalGet('admin/structure/taxonomy');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('Vocabulary name');
$assert_session
->linkNotExists('Add vocabulary');
}
public function testTaxonomyVocabularyOverviewPermissions() {
$vocabulary1 = $this
->createVocabulary();
$vocabulary2 = $this
->createVocabulary();
$vocabulary1_id = $vocabulary1
->id();
$vocabulary2_id = $vocabulary2
->id();
$this
->createTerm($vocabulary1);
$this
->createTerm($vocabulary1);
$vocabulary1_label = Unicode::ucfirst($vocabulary1
->label());
$edit_help_text = "You can reorganize the terms in {$vocabulary1_label} using their drag-and-drop handles, and group terms under a parent term by sliding them under and to the right of the parent.";
$no_edit_help_text = "{$vocabulary1_label} contains the following terms.";
$assert_session = $this
->assertSession();
$admin_user = $this
->drupalCreateUser([
'administer taxonomy',
]);
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->linkExists('Edit');
$assert_session
->linkExists('Delete');
$assert_session
->linkExists('Add term');
$assert_session
->buttonExists('Save');
$assert_session
->pageTextContains('Weight');
$assert_session
->fieldExists('Weight');
$assert_session
->pageTextContains($edit_help_text);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('No terms available');
$assert_session
->linkExists('Add term');
$no_permission_user = $this
->drupalCreateUser();
$this
->drupalLogin($no_permission_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(403);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(403);
$overview_only_user = $this
->drupalCreateUser([
'access taxonomy overview',
]);
$this
->drupalLogin($overview_only_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->linkNotExists('Edit');
$assert_session
->linkNotExists('Delete');
$assert_session
->buttonNotExists('Save');
$assert_session
->pageTextContains('Weight');
$assert_session
->fieldNotExists('Weight');
$assert_session
->linkNotExists('Add term');
$assert_session
->pageTextContains($no_edit_help_text);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('No terms available');
$assert_session
->linkNotExists('Add term');
$edit_user = $this
->createUser([
'access taxonomy overview',
'edit terms in ' . $vocabulary1_id,
'edit terms in ' . $vocabulary2_id,
]);
$this
->drupalLogin($edit_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->linkExists('Edit');
$assert_session
->linkNotExists('Delete');
$assert_session
->buttonExists('Save');
$assert_session
->pageTextContains('Weight');
$assert_session
->fieldExists('Weight');
$assert_session
->linkNotExists('Add term');
$assert_session
->pageTextContains($edit_help_text);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('No terms available');
$assert_session
->linkNotExists('Add term');
$edit_delete_user = $this
->createUser([
'access taxonomy overview',
'delete terms in ' . $vocabulary1_id,
'delete terms in ' . $vocabulary2_id,
]);
$this
->drupalLogin($edit_delete_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->linkNotExists('Edit');
$assert_session
->linkExists('Delete');
$assert_session
->linkNotExists('Add term');
$assert_session
->buttonNotExists('Save');
$assert_session
->pageTextContains('Weight');
$assert_session
->fieldNotExists('Weight');
$assert_session
->pageTextContains($no_edit_help_text);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('No terms available');
$assert_session
->linkNotExists('Add term');
$edit_delete_user = $this
->createUser([
'access taxonomy overview',
'edit terms in ' . $vocabulary1_id,
'delete terms in ' . $vocabulary1_id,
'edit terms in ' . $vocabulary2_id,
'delete terms in ' . $vocabulary2_id,
]);
$this
->drupalLogin($edit_delete_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->linkExists('Edit');
$assert_session
->linkExists('Delete');
$assert_session
->linkNotExists('Add term');
$assert_session
->buttonExists('Save');
$assert_session
->pageTextContains('Weight');
$assert_session
->fieldExists('Weight');
$assert_session
->pageTextContains($edit_help_text);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('No terms available');
$assert_session
->linkNotExists('Add term');
$edit_user = $this
->createUser([
'access taxonomy overview',
'create terms in ' . $vocabulary1_id,
'create terms in ' . $vocabulary2_id,
]);
$this
->drupalLogin($edit_user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary1_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->linkNotExists('Edit');
$assert_session
->linkNotExists('Delete');
$assert_session
->linkExists('Add term');
$assert_session
->buttonNotExists('Save');
$assert_session
->pageTextContains('Weight');
$assert_session
->fieldNotExists('Weight');
$assert_session
->pageTextContains($no_edit_help_text);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary2_id . '/overview');
$assert_session
->statusCodeEquals(200);
$assert_session
->pageTextContains('No terms available');
$assert_session
->linkExists('Add term');
$permissions = \Drupal::service('user.permissions')
->getPermissions();
$this
->assertTrue(isset($permissions['create terms in ' . $vocabulary1_id]));
$this
->assertEquals([
'config' => [
$vocabulary1
->getConfigDependencyName(),
],
], $permissions['create terms in ' . $vocabulary1_id]['dependencies']);
}
public function testVocabularyPermissionsTaxonomyTerm() {
$vocabulary = $this
->createVocabulary();
$user = $this
->drupalCreateUser([
'administer taxonomy',
]);
$this
->drupalLogin($user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary
->id() . '/add');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->fieldExists('edit-name-0-value');
$edit = [];
$edit['name[0][value]'] = $this
->randomMachineName();
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->pageTextContains('Created new term ' . $edit['name[0][value]'] . '.');
$this
->assertSession()
->elementExists('xpath', '//div[@data-drupal-messages]//a[contains(@href, "term/")]');
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->pageTextContains($edit['name[0][value]']);
$edit['name[0][value]'] = $this
->randomMachineName();
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->pageTextContains('Updated term ' . $edit['name[0][value]'] . '.');
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/delete');
$this
->assertSession()
->pageTextContains("Are you sure you want to delete the taxonomy term {$edit['name[0][value]']}?");
$this
->submitForm([], 'Delete');
$this
->assertSession()
->pageTextContains("Deleted term {$edit['name[0][value]']}.");
$user = $this
->drupalCreateUser([
"create terms in {$vocabulary->id()}",
]);
$this
->drupalLogin($user);
$assert_session = $this
->assertSession();
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary
->id() . '/add');
$assert_session
->statusCodeEquals(200);
$assert_session
->fieldExists('name[0][value]');
$edit = [];
$edit['name[0][value]'] = $this
->randomMachineName();
$this
->submitForm($edit, 'Save');
$assert_session
->pageTextContains("Created new term {$edit['name[0][value]']}.");
$terms = \Drupal::entityTypeManager()
->getStorage('taxonomy_term')
->loadByProperties([
'name' => $edit['name[0][value]'],
]);
$term = reset($terms);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$assert_session
->statusCodeEquals(403);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/delete');
$assert_session
->statusCodeEquals(403);
$user = $this
->drupalCreateUser([
"edit terms in {$vocabulary->id()}",
]);
$this
->drupalLogin($user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary
->id() . '/add');
$this
->assertSession()
->statusCodeEquals(403);
$term = $this
->createTerm($vocabulary);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->pageTextContains($term
->getName());
$edit['name[0][value]'] = $this
->randomMachineName();
$this
->submitForm($edit, 'Save');
$this
->assertSession()
->pageTextContains('Updated term ' . $edit['name[0][value]'] . '.');
$this
->assertSession()
->elementExists('xpath', '//div[@data-drupal-messages]//a[contains(@href, "term/")]');
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/delete');
$this
->assertSession()
->statusCodeEquals(403);
$user = $this
->drupalCreateUser([
"delete terms in {$vocabulary->id()}",
]);
$this
->drupalLogin($user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary
->id() . '/add');
$this
->assertSession()
->statusCodeEquals(403);
$term = $this
->createTerm($vocabulary);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->assertSession()
->statusCodeEquals(403);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/delete');
$this
->assertSession()
->pageTextContains("Are you sure you want to delete the taxonomy term {$term->getName()}?");
$this
->submitForm([], 'Delete');
$this
->assertSession()
->pageTextContains("Deleted term {$term->getName()}.");
$user = $this
->drupalCreateUser();
$this
->drupalLogin($user);
$this
->drupalGet('admin/structure/taxonomy/manage/' . $vocabulary
->id() . '/add');
$this
->assertSession()
->statusCodeEquals(403);
$term = $this
->createTerm($vocabulary);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/edit');
$this
->assertSession()
->statusCodeEquals(403);
$this
->drupalGet('taxonomy/term/' . $term
->id() . '/delete');
$this
->assertSession()
->statusCodeEquals(403);
}
}