<?php
namespace Drupal\path\Tests;
class PathTaxonomyTermTest extends PathTestBase {
public static $modules = array(
'taxonomy',
);
public static function getInfo() {
return array(
'name' => 'Taxonomy term URL aliases',
'description' => 'Tests URL aliases for taxonomy terms.',
'group' => 'Path',
);
}
function setUp() {
parent::setUp();
$vocabulary = entity_create('taxonomy_vocabulary', array(
'name' => t('Tags'),
'vid' => 'tags',
));
$vocabulary
->save();
$web_user = $this
->drupalCreateUser(array(
'administer url aliases',
'administer taxonomy',
'access administration pages',
));
$this
->drupalLogin($web_user);
}
function testTermAlias() {
$vocabulary = taxonomy_vocabulary_load('tags');
$description = $this
->randomName();
$edit = array(
'name' => $this
->randomName(),
'description[value]' => $description,
'path[alias]' => $this
->randomName(),
);
$this
->drupalPost('admin/structure/taxonomy/manage/' . $vocabulary
->id() . '/add', $edit, t('Save'));
$this
->drupalGet($edit['path[alias]']);
$this
->assertText($description, 'Term can be accessed on URL alias.');
$tid = db_query("SELECT tid FROM {taxonomy_term_data} WHERE name = :name", array(
':name' => $edit['name'],
))
->fetchField();
$edit2 = array();
$edit2['path[alias]'] = $this
->randomName();
$this
->drupalPost('taxonomy/term/' . $tid . '/edit', $edit2, t('Save'));
$this
->drupalGet($edit2['path[alias]']);
$this
->assertText($description, 'Term can be accessed on changed URL alias.');
$this
->drupalGet($edit['path[alias]']);
$this
->assertNoText($description, 'Old URL alias has been removed after altering.');
$this
->assertResponse(404, 'Old URL alias returns 404.');
$edit3 = array();
$edit3['path[alias]'] = '';
$this
->drupalPost('taxonomy/term/' . $tid . '/edit', $edit3, t('Save'));
$this
->drupalGet($edit2['path[alias]']);
$this
->assertNoText($description, 'Old URL alias has been removed after altering.');
$this
->assertResponse(404, 'Old URL alias returns 404.');
}
}