-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00fd36e
commit 05b0d86
Showing
8 changed files
with
141 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
Feature: Multi-tab page validation icons | ||
As a content author | ||
I want to see which tabs have form fields that failed validation | ||
So that I know what I need to fix before saving | ||
|
||
Background: | ||
Given a "multi tab page" "My MultiTab Page" | ||
And a "single tab page" "My SingleTab Page" | ||
|
||
Scenario: I can see tab validation icons on mutli-tab pages | ||
Given I am logged in with "ADMIN" permissions | ||
And I go to "/admin/pages" | ||
And I should see "My MultiTab Page" in the tree | ||
And I click on "My MultiTab Page" in the tree | ||
When I press the "Save" button | ||
Then I can see the form validation error message | ||
Then I should not see an invalid tab icon on the "Second" tab | ||
Then I should see an invalid tab icon on the "Third" tab | ||
Then I should see an invalid tab icon on the "Fourth" tab | ||
When I click the "#tab-Root_Third" element | ||
And I fill in "Third tab first field" with "abc" | ||
When I press the "Save" button | ||
Then I can see the form validation error message | ||
Then I should not see an invalid tab icon on the "Second" tab | ||
Then I should not see an invalid tab icon on the "Third" tab | ||
Then I should see an invalid tab icon on the "Fourth" tab | ||
When I click the "#tab-Root_Fourth" element | ||
And I fill in "Fourth tab first field" with "def" | ||
When I press the "Save" button | ||
Then I can not see the form validation error message | ||
Then I should not see an invalid tab icon on the "Second" tab | ||
Then I should not see an invalid tab icon on the "Third" tab | ||
Then I should not see an invalid tab icon on the "Fourth" tab | ||
When I click the "#tab-Root_Second" element | ||
And I fill in "Second tab first field" with "wrong value" | ||
When I press the "Save" button | ||
Then I can see the form validation error message | ||
Then I should see an invalid tab icon on the "Second" tab | ||
Then I should not see an invalid tab icon on the "Third" tab | ||
Then I should not see an invalid tab icon on the "Fourth" tab | ||
When I fill in "Second tab first field" with "222" | ||
When I press the "Save" button | ||
Then I can not see the form validation error message | ||
Then I should not see an invalid tab icon on the "Second" tab | ||
Then I should not see an invalid tab icon on the "Third" tab | ||
Then I should not see an invalid tab icon on the "Fourth" tab | ||
|
||
Scenario: Tab validation icons dont appear on pages with a single tab | ||
Given I am logged in with "ADMIN" permissions | ||
And I go to "/admin/pages" | ||
And I should see "My SingleTab Page" in the tree | ||
And I click on "My SingleTab Page" in the tree | ||
When I press the "Save" button | ||
Then I can see the form validation error message | ||
And I should not see an invalid tab icon on the "Main Content" tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
|
||
namespace SilverStripe\Admin\Tests\Behat\Context; | ||
|
||
use Behat\Behat\Context\Context; | ||
use Behat\Mink\Element\DocumentElement; | ||
use SilverStripe\BehatExtension\Context\MainContextAwareTrait; | ||
|
||
/** | ||
* Context used to create fixtures in the SilverStripe ORM. | ||
*/ | ||
class AdminContext implements Context | ||
{ | ||
use MainContextAwareTrait; | ||
|
||
/** | ||
* Example: I should see an invalid tab icon on the "Third" tab | ||
* Example: I should not see an invalid tab icon on the "Second" tab | ||
* | ||
* @Then /^I should (not |)see an invalid tab icon on the "(.+?)" tab/ | ||
* @param string $not | ||
* @param string $tabLabel | ||
*/ | ||
public function iShouldSeeAnInvalidTabIcon(string $not, string $tabLabel) | ||
{ | ||
$id = str_replace('Main Content', 'Main', $tabLabel); | ||
$id = str_replace(' ', '_', $id); | ||
$id = "tab-Root_$id"; | ||
$selector = "[aria-labelledby=$id] .font-icon-attention-1"; | ||
$hiddenSelector = ".ss-tabset-tabshidden $selector"; | ||
$page = $this->getMainContext()->getSession()->getPage(); | ||
if ($not) { | ||
$element = $page->find('css', $selector); | ||
$hiddenElement = $page->find('css', $hiddenSelector); | ||
$message = "Tab validation icon for $id is visible when it should not be"; | ||
assertTrue(is_null($element) || $hiddenElement, $message); | ||
} else { | ||
$element = $page->find('css', $selector); | ||
assertNotNull($element, "Tab validation icon for $id was not found"); | ||
} | ||
} | ||
|
||
/** | ||
* @When /^I can (not |)see the form validation error message$/ | ||
* @param $not | ||
*/ | ||
public function iCanSeeTheFromValidationErrorMessage($not) | ||
{ | ||
$selector = '#Form_EditForm_error'; | ||
$text = 'There are validation errors on this page'; | ||
$page = $this->getMainContext()->getSession()->getPage(); | ||
$element = $page->find('css', $selector); | ||
if ($not) { | ||
if (is_null($element)) { | ||
assertTrue(true); | ||
} else { | ||
$message = 'Form validation error message is present when it should not be'; | ||
assertFalse(strpos($element->getText(), $text), $message); | ||
} | ||
} else { | ||
$message = sprintf('Element %s not found', $selector); | ||
assertNotNull($element, $message); | ||
assertTrue(strpos($element->getText(), $text) !== false, $message); | ||
} | ||
} | ||
|
||
/** | ||
* @When /^I click the "([^"]+)" element$/ | ||
* @param $selector | ||
*/ | ||
public function iClickTheElement($selector) | ||
{ | ||
$page = $this->getMainContext()->getSession()->getPage(); | ||
$element = $page->find('css', $selector); | ||
assertNotNull($element, sprintf('Element %s not found', $selector)); | ||
$element->click(); | ||
} | ||
} |