2012-11-09 19:15:54 +01:00
|
|
|
Feature: Search for a page
|
2013-06-07 10:21:05 +02:00
|
|
|
As an author
|
|
|
|
I want to search for a page in the CMS
|
|
|
|
So that I can efficiently navigate nested content structures
|
2012-11-09 19:15:54 +01:00
|
|
|
|
2013-06-07 10:21:05 +02:00
|
|
|
Background:
|
2013-09-13 18:46:23 +02:00
|
|
|
Given a "page" "Home"
|
|
|
|
And a "page" "About Us"
|
2013-06-07 10:21:05 +02:00
|
|
|
And a "page" "Contact Us"
|
2013-09-13 18:46:23 +02:00
|
|
|
And I am logged in with "ADMIN" permissions
|
|
|
|
And I go to "/admin/pages"
|
|
|
|
And I expand the "Filter" CMS Panel
|
2013-06-05 13:30:15 +02:00
|
|
|
|
2013-06-07 10:21:05 +02:00
|
|
|
Scenario: I can search for a page by its title
|
2013-09-13 18:46:23 +02:00
|
|
|
Given I fill in "Content" with "About Us"
|
|
|
|
And I press the "Apply Filter" button
|
2013-09-14 00:21:29 +02:00
|
|
|
Then I should see "About Us" in the tree
|
|
|
|
But I should not see "Contact Us" in the tree
|
2012-11-09 19:15:54 +01:00
|
|
|
|
2013-09-13 18:46:23 +02:00
|
|
|
Scenario: I can search for a page by its type
|
2013-11-15 14:43:55 +01:00
|
|
|
Given a "Error Page" "My Error Page"
|
|
|
|
When I select "Error Page" from "Page Type"
|
2013-06-07 10:21:05 +02:00
|
|
|
And I press the "Apply Filter" button
|
2013-09-14 00:21:29 +02:00
|
|
|
Then I should see "My Error Page" in the tree
|
|
|
|
But I should not see "Contact Us" in the tree
|
2013-09-13 18:46:23 +02:00
|
|
|
|
|
|
|
Scenario: I can search for a page by its oldest last edited date
|
|
|
|
Given a "page" "Recent Page"
|
2013-11-15 14:43:55 +01:00
|
|
|
And a "page" "Old Page" was last edited "7 days ago"
|
|
|
|
When I fill in "From" with "the date of 5 days ago"
|
2013-09-13 18:46:23 +02:00
|
|
|
And I press the "Apply Filter" button
|
2013-09-14 00:21:29 +02:00
|
|
|
Then I should see "Recent Page" in the tree
|
|
|
|
But I should not see "Old Page" in the tree
|
2013-09-13 18:46:23 +02:00
|
|
|
|
|
|
|
Scenario: I can search for a page by its newest last edited date
|
|
|
|
Given a "page" "Recent Page"
|
2013-11-15 14:43:55 +01:00
|
|
|
And a "page" "Old Page" was last edited "7 days ago"
|
|
|
|
When I fill in "To" with "the date of 5 days ago"
|
2013-09-13 18:46:23 +02:00
|
|
|
And I press the "Apply Filter" button
|
2013-09-14 00:21:29 +02:00
|
|
|
Then I should not see "Recent Page" in the tree
|
|
|
|
But I should see "Old Page" in the tree
|
2013-09-13 18:46:23 +02:00
|
|
|
|
|
|
|
Scenario: I can include deleted pages in my search
|
|
|
|
Given a "page" "Deleted Page"
|
2014-03-27 20:29:30 +01:00
|
|
|
And the "page" "Deleted Page" is unpublished
|
2013-11-15 14:43:55 +01:00
|
|
|
And the "page" "Deleted Page" is deleted
|
2013-09-13 18:46:23 +02:00
|
|
|
When I press the "Apply Filter" button
|
2013-09-14 00:21:29 +02:00
|
|
|
Then I should not see "Deleted Page" in the tree
|
2013-11-15 14:43:55 +01:00
|
|
|
When I select "All pages, including deleted" from "Pages"
|
2013-09-13 18:46:23 +02:00
|
|
|
And I press the "Apply Filter" button
|
2014-03-27 20:29:30 +01:00
|
|
|
Then I should see "Deleted Page" in the tree
|
|
|
|
|
|
|
|
Scenario: I can include only deleted pages in my search
|
|
|
|
Given a "page" "Deleted Page"
|
|
|
|
And the "page" "Deleted Page" is unpublished
|
|
|
|
And the "page" "Deleted Page" is deleted
|
|
|
|
When I press the "Apply Filter" button
|
|
|
|
Then I should not see "Deleted Page" in the tree
|
|
|
|
When I select "Deleted pages" from "Pages"
|
|
|
|
And I press the "Apply Filter" button
|
|
|
|
Then I should see "Deleted Page" in the tree
|
|
|
|
And I should not see "About Us" in the tree
|
|
|
|
|
|
|
|
Scenario: I can include draft pages in my search
|
|
|
|
Given a "page" "Draft Page"
|
|
|
|
And the "page" "Draft Page" is not published
|
|
|
|
When I press the "Apply Filter" button
|
|
|
|
Then I should see "Draft Page" in the tree
|
|
|
|
When I select "Draft unpublished pages" from "Pages"
|
|
|
|
And I press the "Apply Filter" button
|
|
|
|
Then I should see "Draft Page" in the tree
|
|
|
|
And I should not see "About Us" in the tree
|
|
|
|
|
|
|
|
Scenario: I can include changed pages in my search
|
|
|
|
When I click on "About Us" in the tree
|
|
|
|
Then I should see an edit page form
|
|
|
|
|
|
|
|
When I fill in the "Content" HTML field with "my new content"
|
|
|
|
And I press the "Save draft" button
|
|
|
|
Then I should see "Saved" in the "button#Form_EditForm_action_save" element
|
|
|
|
|
|
|
|
When I go to "/admin/pages"
|
|
|
|
And I expand the "Filter" CMS Panel
|
|
|
|
When I select "Changed pages" from "Pages"
|
|
|
|
And I press the "Apply Filter" button
|
|
|
|
Then I should see "About Us" in the tree
|
|
|
|
And I should not see "Home" in the tree
|
|
|
|
|
|
|
|
Scenario: I can include live pages in my search
|
|
|
|
Given a "page" "Live Page"
|
|
|
|
And the "page" "Live Page" is published
|
|
|
|
And the "page" "Live Page" is deleted
|
|
|
|
When I press the "Apply Filter" button
|
|
|
|
Then I should not see "Live Page" in the tree
|
|
|
|
When I select "Live but removed from draft" from "Pages"
|
|
|
|
And I press the "Apply Filter" button
|
|
|
|
Then I should see "Live Page" in the tree
|
|
|
|
And I should not see "About Us" in the tree
|