Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip known to fail tests on 10.0.3 #29842

Merged
merged 1 commit into from
Dec 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 31 additions & 8 deletions tests/ui/features/other/managingGroups.feature
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,49 @@ So that access to resources can be controlled more effectively
And I am logged in as admin
And I am on the users page

Scenario: delete groups
@skipOnOcV10.0.3
Scenario: delete group called "0" and "false"
And these groups exist:
|groupname |
|do-not-delete |
|grp1 |
|0 |
|false |
|do-not-delete2|
And I am on the users page
When I delete these groups:
|groupname|
|0 |
|false |
And the users page is reloaded
Then these groups should be listed:
|groupname |
|do-not-delete |
|do-not-delete2|
But these groups should not be listed:
|groupname|
|0 |
|false |
And these groups should exist:
|groupname |
|do-not-delete |
|do-not-delete2|
But these groups should not exist:
|groupname|
|0 |
|false |

Scenario: delete groups with problematic names
And these groups exist:
|groupname |
|do-not-delete |
|grp1 |
|quotes' |
|quotes" |
|do-not-delete2|
And I am on the users page
When I delete these groups:
|groupname|
|grp1 |
|0 |
|false |
|quotes' |
|quotes" |
And the users page is reloaded
Expand All @@ -34,8 +61,6 @@ So that access to resources can be controlled more effectively
But these groups should not be listed:
|groupname|
|grp1 |
|0 |
|false |
|quotes' |
|quotes" |
And these groups should exist:
Expand All @@ -45,7 +70,5 @@ So that access to resources can be controlled more effectively
But these groups should not exist:
|groupname|
|grp1 |
|0 |
|false |
|quotes' |
|quotes" |
8 changes: 7 additions & 1 deletion tests/ui/features/other/managingingUserQuota.feature
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ So that users can only take up a certain amount of storage space
|Unlimited |5B |5 B |
|Unlimited |55kB |55 KB |
|Unlimited |45Kb |45 KB |
|Unlimited |0 Kb |0 B |

@skipOnOcV10.0.3
Scenario: change quota to a valid value that do not work on 10.0.3
And quota of user "%regularuser%" is set to "Unlimited"
When quota of user "%regularuser%" is changed to "0 Kb"
And the users page is reloaded
Then quota of user "%regularuser%" should be set to "0 B"

Scenario Outline: change quota to an invalid value
When quota of user "%regularuser%" is changed to "<wished_quota>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ So that public sharing is limited according to organization policy
And I access the last created public link
Then the file "lorem.txt" should be listed

@skipOnOcV10.0.3 @feature_was_changed_in_10.0.4
Scenario: creating a public link with read & write permissions makes it possible to delete files via the link
When I create a new public link for the folder "simple-folder" with
| permission | Read & Write |
Expand All @@ -33,6 +34,7 @@ So that public sharing is limited according to organization policy
Then the deleted elements should not be listed
And the deleted elements should not be listed after a page reload

@skipOnOcV10.0.3 @feature_was_changed_in_10.0.4
Scenario: creating a public link with read permissions only makes it impossible to delete files via the link
When I create a new public link for the folder "simple-folder" with
| permission | Read |
Expand Down