mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Merge pull request #904 from srizzling/is/cms/892
Added new step Pages can be editable by
This commit is contained in:
commit
8613e055ae
@ -47,5 +47,4 @@ class FeatureContext extends \SilverStripe\Framework\Test\Behaviour\FeatureConte
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -45,4 +45,25 @@ class FixtureContext extends \SilverStripe\BehatExtension\Context\FixtureContext
|
|||||||
$obj->publish('Stage', 'Live');
|
$obj->publish('Stage', 'Live');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Check if the user can edit a page
|
||||||
|
*
|
||||||
|
* Example: Then pages should be editable by "Admin"
|
||||||
|
* Then pages should not be editable by "Admin"
|
||||||
|
*
|
||||||
|
* @Then /^pages should( not? |\s*)be editable by "([^"]*)"$/
|
||||||
|
*/
|
||||||
|
public function pagesShouldBeEditableBy($negative, $member){
|
||||||
|
$edit = '"/admin/pages/edit"';
|
||||||
|
$editable = 'I should'.$negative.'see an edit page form';
|
||||||
|
|
||||||
|
return array(
|
||||||
|
new Step\Given('I am not logged in'),
|
||||||
|
new Step\Given('I am logged in with "'.$member.'" permissions'),
|
||||||
|
new Step\Given('I go to '.$edit),
|
||||||
|
new Step\Given($editable),
|
||||||
|
new Step\Then('I am on the homepage')
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
@ -43,18 +43,16 @@ Scenario: I can limit global view permissions to certain groups
|
|||||||
And I go to the homepage
|
And I go to the homepage
|
||||||
Then I should see "Welcome"
|
Then I should see "Welcome"
|
||||||
|
|
||||||
@todo
|
|
||||||
Scenario: I can limit global edit permissions to logged-in users
|
Scenario: I can limit global edit permissions to logged-in users
|
||||||
Given I select "Logged-in users" in "Who can edit pages on this site?" input group
|
Given I select "Anyone who can log-in to the CMS" from "Who can edit pages on this site?" input group
|
||||||
And I press the "Save" button
|
And I press the "Save" button
|
||||||
Then pages should be editable by "Content Authors"
|
Then pages should be editable by "AUTHOR"
|
||||||
And pages should be editable by "Administrators"
|
And pages should be editable by "ADMIN"
|
||||||
|
|
||||||
@todo
|
|
||||||
Scenario: I can limit global edit permissions to certain groups
|
Scenario: I can limit global edit permissions to certain groups
|
||||||
Given I select "Only these people (choose from list)" from "Who can edit pages on this site?" input group
|
Given I select "Only these people (choose from list)" from "Who can edit pages on this site?" input group
|
||||||
And I select "Administrators" from "Viewer Groups"
|
And I select "ADMIN group" from "Viewer Groups"
|
||||||
And I press the "Save" button
|
And I press the "Save" button
|
||||||
Then pages should not be editable by "Content Authors"
|
Then pages should not be editable by "AUTHOR"
|
||||||
But pages should be editable by "Administrators"
|
But pages should be editable by "ADMIN"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user