Issue #1797366 by xjm: Remove t() from test assertions in menu module

8.0.x
Jennifer Hodgdon 2012-10-01 14:36:17 -07:00
parent 4a0b83bff3
commit 59a51ae15d
2 changed files with 22 additions and 22 deletions

View File

@ -95,7 +95,7 @@ class MenuNodeTest extends WebTestBase {
$this->assertLink($node_title); $this->assertLink($node_title);
$this->drupalGet('node/' . $node->nid . '/edit'); $this->drupalGet('node/' . $node->nid . '/edit');
$this->assertOptionSelected('edit-menu-weight', 17, t('Menu weight correct in edit form')); $this->assertOptionSelected('edit-menu-weight', 17, 'Menu weight correct in edit form');
// Edit the node and remove the menu link. // Edit the node and remove the menu link.
$edit = array( $edit = array(
@ -116,11 +116,11 @@ class MenuNodeTest extends WebTestBase {
// Assert that disabled Management menu is not shown on the node/$nid/edit page. // Assert that disabled Management menu is not shown on the node/$nid/edit page.
$this->drupalGet('node/' . $node->nid . '/edit'); $this->drupalGet('node/' . $node->nid . '/edit');
$this->assertText('Provide a menu link', t('Link in not allowed menu not shown in node edit form')); $this->assertText('Provide a menu link', 'Link in not allowed menu not shown in node edit form');
// Assert that the link is still in the management menu after save. // Assert that the link is still in the management menu after save.
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save')); $this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
$link = menu_link_load($item['mlid']); $link = menu_link_load($item['mlid']);
$this->assertTrue($link, t('Link in not allowed menu still exists after saving node')); $this->assertTrue($link, 'Link in not allowed menu still exists after saving node');
// Move the menu link back to the Navigation menu. // Move the menu link back to the Navigation menu.
$item['menu_name'] = 'navigation'; $item['menu_name'] = 'navigation';

View File

@ -85,7 +85,7 @@ class MenuTest extends WebTestBase {
$item['options']['attributes']['title'] = $description; $item['options']['attributes']['title'] = $description;
menu_link_save($item); menu_link_save($item);
$saved_item = menu_link_load($item['mlid']); $saved_item = menu_link_load($item['mlid']);
$this->assertEqual($description, $saved_item['options']['attributes']['title'], t('Saving an existing link updates the description (title attribute)')); $this->assertEqual($description, $saved_item['options']['attributes']['title'], 'Saving an existing link updates the description (title attribute)');
$this->resetMenuLink($item, $old_title); $this->resetMenuLink($item, $old_title);
} }
@ -126,14 +126,14 @@ class MenuTest extends WebTestBase {
// Assert the new menu. // Assert the new menu.
$this->drupalGet('admin/structure/menu/manage/' . $menu_name . '/edit'); $this->drupalGet('admin/structure/menu/manage/' . $menu_name . '/edit');
$this->assertRaw($title, t('Custom menu was added.')); $this->assertRaw($title, 'Custom menu was added.');
// Edit the menu. // Edit the menu.
$new_title = $this->randomName(16); $new_title = $this->randomName(16);
$menu['title'] = $new_title; $menu['title'] = $new_title;
menu_save($menu); menu_save($menu);
$this->drupalGet('admin/structure/menu/manage/' . $menu_name . '/edit'); $this->drupalGet('admin/structure/menu/manage/' . $menu_name . '/edit');
$this->assertRaw($new_title, t('Custom menu was edited.')); $this->assertRaw($new_title, 'Custom menu was edited.');
} }
/** /**
@ -182,7 +182,7 @@ class MenuTest extends WebTestBase {
$edit['blocks[menu_' . $menu_name . '][region]'] = 'sidebar_first'; $edit['blocks[menu_' . $menu_name . '][region]'] = 'sidebar_first';
$this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
$this->assertResponse(200); $this->assertResponse(200);
$this->assertText(t('The block settings have been updated.'), t('Custom menu block was enabled')); $this->assertText(t('The block settings have been updated.'), 'Custom menu block was enabled');
return menu_load($menu_name); return menu_load($menu_name);
} }
@ -199,11 +199,11 @@ class MenuTest extends WebTestBase {
// Delete custom menu. // Delete custom menu.
$this->drupalPost("admin/structure/menu/manage/$menu_name/delete", array(), t('Delete')); $this->drupalPost("admin/structure/menu/manage/$menu_name/delete", array(), t('Delete'));
$this->assertResponse(200); $this->assertResponse(200);
$this->assertRaw(t('The custom menu %title has been deleted.', array('%title' => $title)), t('Custom menu was deleted')); $this->assertRaw(t('The custom menu %title has been deleted.', array('%title' => $title)), 'Custom menu was deleted');
$this->assertFalse(menu_load($menu_name), 'Custom menu was deleted'); $this->assertFalse(menu_load($menu_name), 'Custom menu was deleted');
// Test if all menu links associated to the menu were removed from database. // Test if all menu links associated to the menu were removed from database.
$result = db_query("SELECT menu_name FROM {menu_links} WHERE menu_name = :menu_name", array(':menu_name' => $menu_name))->fetchField(); $result = db_query("SELECT menu_name FROM {menu_links} WHERE menu_name = :menu_name", array(':menu_name' => $menu_name))->fetchField();
$this->assertFalse($result, t('All menu links associated to the custom menu were deleted.')); $this->assertFalse($result, 'All menu links associated to the custom menu were deleted.');
} }
/** /**
@ -289,13 +289,13 @@ class MenuTest extends WebTestBase {
$item = $this->addMenuLink(0, $path); $item = $this->addMenuLink(0, $path);
$this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit'); $this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit');
$this->assertFieldByName('link_path', $path, t('Path is found with both query and fragment.')); $this->assertFieldByName('link_path', $path, 'Path is found with both query and fragment.');
// Now change the path to something without query and fragment. // Now change the path to something without query and fragment.
$path = 'node'; $path = 'node';
$this->drupalPost('admin/structure/menu/item/' . $item['mlid'] . '/edit', array('link_path' => $path), t('Save')); $this->drupalPost('admin/structure/menu/item/' . $item['mlid'] . '/edit', array('link_path' => $path), t('Save'));
$this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit'); $this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit');
$this->assertFieldByName('link_path', $path, t('Path no longer has query or fragment.')); $this->assertFieldByName('link_path', $path, 'Path no longer has query or fragment.');
} }
/** /**
@ -374,7 +374,7 @@ class MenuTest extends WebTestBase {
// Verify menu link link. // Verify menu link link.
$this->clickLink($title); $this->clickLink($title);
$title = $parent_node->label(); $title = $parent_node->label();
$this->assertTitle(t("@title | Drupal", array('@title' => $title)), t('Parent menu link link target was correct')); $this->assertTitle(t("@title | Drupal", array('@title' => $title)), 'Parent menu link link target was correct');
} }
// Verify menu link. // Verify menu link.
@ -384,7 +384,7 @@ class MenuTest extends WebTestBase {
// Verify menu link link. // Verify menu link link.
$this->clickLink($title); $this->clickLink($title);
$title = $item_node->label(); $title = $item_node->label();
$this->assertTitle(t("@title | Drupal", array('@title' => $title)), t('Menu link link target was correct')); $this->assertTitle(t("@title | Drupal", array('@title' => $title)), 'Menu link link target was correct');
} }
/** /**
@ -436,7 +436,7 @@ class MenuTest extends WebTestBase {
// Reset menu link. // Reset menu link.
$this->drupalPost("admin/structure/menu/item/$mlid/reset", array(), t('Reset')); $this->drupalPost("admin/structure/menu/item/$mlid/reset", array(), t('Reset'));
$this->assertResponse(200); $this->assertResponse(200);
$this->assertRaw(t('The menu link was reset to its default settings.'), t('Menu link was reset')); $this->assertRaw(t('The menu link was reset to its default settings.'), 'Menu link was reset');
// Verify menu link. // Verify menu link.
$this->drupalGet(''); $this->drupalGet('');
@ -456,7 +456,7 @@ class MenuTest extends WebTestBase {
// Delete menu link. // Delete menu link.
$this->drupalPost("admin/structure/menu/item/$mlid/delete", array(), t('Confirm')); $this->drupalPost("admin/structure/menu/item/$mlid/delete", array(), t('Confirm'));
$this->assertResponse(200); $this->assertResponse(200);
$this->assertRaw(t('The menu link %title has been deleted.', array('%title' => $title)), t('Menu link was deleted')); $this->assertRaw(t('The menu link %title has been deleted.', array('%title' => $title)), 'Menu link was deleted');
// Verify deletion. // Verify deletion.
$this->drupalGet(''); $this->drupalGet('');
@ -533,7 +533,7 @@ class MenuTest extends WebTestBase {
$item['link_path'] .= '#' . $options['fragment']; $item['link_path'] .= '#' . $options['fragment'];
} }
foreach ($expected_item as $key => $value) { foreach ($expected_item as $key => $value) {
$this->assertEqual($item[$key], $value, t('Parameter %key had expected value.', array('%key' => $key))); $this->assertEqual($item[$key], $value, format_string('Parameter %key had expected value.', array('%key' => $key)));
} }
} }
@ -561,21 +561,21 @@ class MenuTest extends WebTestBase {
$this->drupalGet('admin/help/menu'); $this->drupalGet('admin/help/menu');
$this->assertResponse($response); $this->assertResponse($response);
if ($response == 200) { if ($response == 200) {
$this->assertText(t('Menu'), t('Menu help was displayed')); $this->assertText(t('Menu'), 'Menu help was displayed');
} }
// View menu build overview node. // View menu build overview node.
$this->drupalGet('admin/structure/menu'); $this->drupalGet('admin/structure/menu');
$this->assertResponse($response); $this->assertResponse($response);
if ($response == 200) { if ($response == 200) {
$this->assertText(t('Menus'), t('Menu build overview node was displayed')); $this->assertText(t('Menus'), 'Menu build overview node was displayed');
} }
// View navigation menu customization node. // View navigation menu customization node.
$this->drupalGet('admin/structure/menu/manage/navigation'); $this->drupalGet('admin/structure/menu/manage/navigation');
$this->assertResponse($response); $this->assertResponse($response);
if ($response == 200) { if ($response == 200) {
$this->assertText(t('Navigation'), t('Navigation menu node was displayed')); $this->assertText(t('Navigation'), 'Navigation menu node was displayed');
} }
// View menu edit node. // View menu edit node.
@ -583,21 +583,21 @@ class MenuTest extends WebTestBase {
$this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit'); $this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit');
$this->assertResponse($response); $this->assertResponse($response);
if ($response == 200) { if ($response == 200) {
$this->assertText(t('Edit menu item'), t('Menu edit node was displayed')); $this->assertText(t('Edit menu item'), 'Menu edit node was displayed');
} }
// View menu settings node. // View menu settings node.
$this->drupalGet('admin/structure/menu/settings'); $this->drupalGet('admin/structure/menu/settings');
$this->assertResponse($response); $this->assertResponse($response);
if ($response == 200) { if ($response == 200) {
$this->assertText(t('Menus'), t('Menu settings node was displayed')); $this->assertText(t('Menus'), 'Menu settings node was displayed');
} }
// View add menu node. // View add menu node.
$this->drupalGet('admin/structure/menu/add'); $this->drupalGet('admin/structure/menu/add');
$this->assertResponse($response); $this->assertResponse($response);
if ($response == 200) { if ($response == 200) {
$this->assertText(t('Menus'), t('Add menu node was displayed')); $this->assertText(t('Menus'), 'Add menu node was displayed');
} }
} }
} }