public function RecipeLandingPageTest::testRecipeLandingPage in Recipe 7.2
Same name and namespace in other branches
- 7 src/Tests/RecipeLandingPageTest.php \Drupal\recipe\Tests\RecipeLandingPageTest::testRecipeLandingPage()
Tests the content displayed on the Recipe module landing page.
File
- src/
Tests/ RecipeLandingPageTest.php, line 24
Class
- RecipeLandingPageTest
- Tests the Recipe module landing page at /recipe.
Namespace
Drupal\recipe\TestsCode
public function testRecipeLandingPage() {
// While logged in as admin user, check for the "Add a new recipe" link.
$this
->drupalGet('recipe');
$this
->assertLink('Add a new recipe', 0);
// Logout and check that the add recipe link is inaccessible.
$this
->drupalLogout();
$this
->drupalGet('recipe');
$this
->assertNoLink('Add a new recipe');
$this
->drupalLogin($this->adminUser);
// Check for the Recent Recipe (Latest recipes) box.
$this
->drupalGet('recipe');
$this
->assertText('Latest recipes');
// Create a recipe node.
$node_title = $this
->randomName(16);
$edit = array(
'type' => 'recipe',
'title' => $node_title,
'recipe_source' => array(
'value' => '',
),
'recipe_yield' => 1,
'recipe_yield_unit' => '',
'recipe_description' => array(
'value' => '',
),
'recipe_instructions' => array(
'value' => '',
),
'recipe_notes' => array(
'value' => '',
),
'recipe_prep_time' => array(
LANGUAGE_NONE => array(
0 => array(
'value' => 1,
),
),
),
'recipe_cook_time' => array(
LANGUAGE_NONE => array(
0 => array(
'value' => 1,
),
),
),
'recipe_ingredient' => array(
LANGUAGE_NONE => array(),
),
);
$this
->drupalCreateNode($edit);
// Check that the recipe title is displayed.
$this
->drupalGet('recipe');
$this
->assertLink($node_title, 0);
// Change the title of the box and the number of node titles displayed.
$recent_recipe_title = $this
->randomName(16);
$edit = array(
'recipe_recent_box_title' => $recent_recipe_title,
'recipe_recent_display' => 0,
);
$this
->drupalPost('admin/config/content/recipe', $edit, t('Save configuration'));
// Check that the recipe title is not displayed.
$this
->drupalGet('recipe');
$this
->assertText($recent_recipe_title);
$this
->assertNoLink($node_title);
// Disable the Recent Recipe box.
$edit = array(
'recipe_recent_box_enable' => FALSE,
);
$this
->drupalPost('admin/config/content/recipe', $edit, t('Save configuration'));
// Check that the Recent Recipe box is disabled.
$this
->drupalGet('recipe');
$this
->assertNoText($recent_recipe_title);
$this
->assertNoLink($node_title);
}