Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / doc / _static / snippets / blackbox.feature
diff --git a/vendor/drupal/drupal-extension/doc/_static/snippets/blackbox.feature b/vendor/drupal/drupal-extension/doc/_static/snippets/blackbox.feature
new file mode 100644 (file)
index 0000000..5265570
--- /dev/null
@@ -0,0 +1,81 @@
+Feature: Test DrupalContext
+  In order to prove the Drupal context using the blackbox driver is working properly
+  As a developer
+  I need to use the step definitions of this context
+
+  Scenario: Test the ability to find a heading in a region
+    Given I am on the homepage
+    When I click "Download & Extend"
+    Then I should see the heading "Core" in the "content" region
+
+  Scenario: Clicking content in a region
+    Given I am at "download"
+    When I click "About Distributions" in the "content" region
+    Then I should see "Page status" in the "right sidebar"
+    And I should see the link "Drupal News" in the "footer" region
+
+  Scenario: Viewing content in a region
+    Given I am on the homepage
+    Then I should see "Come for the software, stay for the community" in the "left header"
+
+  Scenario: Test ability to find text that should not appear in a region
+    Given I am on the homepage
+    Then I should not see the text "Proprietary software is cutting edge" in the "left header"
+
+  Scenario: Submit a form in a region
+    Given I am on the homepage
+    When I fill in "Search Drupal.org" with "Views" in the "right header" region
+    And I press "Search" in the "right header" region
+    Then I should see the text "Search again" in the "right sidebar" region
+
+  Scenario: Check a link should not exist in a region
+    Given I am on the homepage
+    Then I should not see the link "This link should never exist in a default Drupal install" in the "right header"
+
+  Scenario: Find a button
+    Given I am on the homepage
+    Then I should see the "Search" button
+
+  Scenario: Find a button in a region
+    Given I am on the homepage
+    Then I should see the "Search" button in the "right header"
+
+  Scenario: Find an element in a region
+    Given I am on the homepage
+    Then I should see the "h1" element in the "left header"
+
+  Scenario: Element not in region
+    Given I am on the homepage
+    Then I should not see the "h1" element in the "footer"
+
+  Scenario: Text not in element in region
+    Given I am on the homepage
+    Then I should not see "DotNetNuke" in the "h1" element in the "left header"
+
+  Scenario: Find an element with an attribute in a region
+    Given I am on the homepage
+    Then I should see the "h1" element with the "id" attribute set to "site-name" in the "left header" region
+
+  Scenario: Find text in an element with an attribute in a region
+    Given I am on the homepage
+    Then I should see "Drupal" in the "h1" element with the "id" attribute set to "site-name" in the "left header" region
+
+  Scenario: Error messages
+   Given I am on "/user"
+   When I press "Log in"
+   Then I should see the error message "Password field is required"
+   And I should not see the error message "Sorry, unrecognized username or password"
+   And I should see the following error messages:
+   | error messages             |
+   | Username field is required |
+   | Password field is required |
+   And I should not see the following error messages:
+   | error messages                                                                |
+   | Sorry, unrecognized username or password                                      |
+   | Unable to send e-mail. Contact the site administrator if the problem persists |
+
+ Scenario: Messages
+   Given I am on "/user/register"
+   When I press "Create new account"
+   Then I should see the message "Username field is required"
+   But I should not see the message "Registration successful. You are now logged in"