public function TabledragMenuTest::testTabledragInteractions in Examples for Developers 3.x
Same name and namespace in other branches
- 8 tabledrag_example/tests/src/Functional/TabledragMenuTest.php \Drupal\Tests\tabledrag_example\Functional\TabledragMenuTest::testTabledragInteractions()
Tests tabledrag_example menus.
File
- modules/
tabledrag_example/ tests/ src/ Functional/ TabledragMenuTest.php, line 44
Class
- TabledragMenuTest
- Verify functionalities of tabledrag_example.
Namespace
Drupal\Tests\tabledrag_example\FunctionalCode
public function testTabledragInteractions() {
$links = [
'examples/tabledrag-example',
'examples/tabledrag-example/row',
'examples/tabledrag-example/nested',
'examples/tabledrag-example/roots-and-leaves',
'examples/tabledrag-example/reset',
];
// Login a user that can access content.
$this
->drupalLogin($this
->createUser([
'access content',
]));
$assertion = $this
->assertSession();
// Get the front page, which should only have the links in the sidebar.
$this
->drupalGet('');
foreach ($links as $path) {
$assertion
->linkByHrefExists($path);
}
// Get each path and verify a 200 response.
foreach ($links as $path) {
$this
->drupalGet($path);
$assertion
->statusCodeEquals(200);
}
// Click all the submit and cancel buttons.
$pages = [
'tabledrag_example.simple_form' => [
'Save All Changes',
'Cancel',
],
'tabledrag_example.parent_form' => [
'Save All Changes',
'Cancel',
],
'tabledrag_example.rootleaf_form' => [
'Save All Changes',
'Cancel',
],
'tabledrag_example.reset_form' => [
'Yes, Reset It!',
],
];
foreach ($pages as $route => $buttons) {
$path = Url::fromRoute($route);
foreach ($buttons as $button) {
$this
->drupalPostForm($path, [], $button);
$assertion
->statusCodeEquals(200);
}
}
// The reset form implements 'Cancel' as a link.
$this
->drupalGet(Url::fromRoute('tabledrag_example.reset_form'));
$this
->clickLink('Cancel');
$assertion
->statusCodeEquals(200);
}