Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Feature: delete-notifications

Background:
Given user "test1" has been created with default attributes
Given user "test1" has been created with default attributes and skeleton files
And using OCS API version "2"

Scenario: Delete first notification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Feature: notifications-content

Background:
Given user "user1" has been created with default attributes
Given user "user1" has been created with default attributes and skeleton files
And using OCS API version "2"

Scenario: Create notification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Feature: notifications-content

Background:
Given user "test1" has been created with default attributes
Given user "test1" has been created with default attributes and skeleton files
And using OCS API version "2"

Scenario: Create notification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Feature: statuscodes

Background:
Given user "test1" has been created with default attributes
Given user "test1" has been created with default attributes and skeleton files
And as user "test1"
And using OCS API version "2"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Feature: send notifications using the occ command
So that I can inform them about the necessary things

Scenario: administrator should be able to send a notification with subject and message to a user
Given user "user0" has been created with default attributes
Given user "user0" has been created with default attributes and skeleton files
When the administrator sends following notifications using the occ command
| subject | message | user |
| Quota updated | Congratulations your oC quota has been increased | user0 |
Expand All @@ -17,7 +17,7 @@ Feature: send notifications using the occ command
| message | Congratulations your oC quota has been increased |

Scenario: administrator should be able to send a notification with a link
Given user "user0" has been created with default attributes
Given user "user0" has been created with default attributes and skeleton files
When the administrator sends following notifications using the occ command
| subject | message | user | link |
| Quota updated | Congratulations your oC quota has been increased | user0 | https://owncloud.org/blog/about-activities-and-notifications-in-owncloud/ |
Expand All @@ -29,7 +29,7 @@ Feature: send notifications using the occ command
| link | https://owncloud.org/blog/about-activities-and-notifications-in-owncloud/ |

Scenario: administrator should be able to send a notification with only the subject to a user
Given user "user0" has been created with default attributes
Given user "user0" has been created with default attributes and skeleton files
When the administrator sends following notifications using the occ command
| subject | user |
| Quota updated | user0 |
Expand All @@ -56,7 +56,7 @@ Feature: send notifications using the occ command
And user "user2" should have 0 notification

Scenario: administrator should be able to send a notification with subject and message to a group
Given user "user0" has been created with default attributes
Given user "user0" has been created with default attributes and skeleton files
And group "grp1" has been created
And user "user0" has been added to group "grp1"
When the administrator sends following notifications using the occ command
Expand All @@ -69,7 +69,7 @@ Feature: send notifications using the occ command
| message | Congratulations your oC quota has been increased |

Scenario: administrator sends more than one notifications to a user
Given user "user0" has been created with default attributes
Given user "user0" has been created with default attributes and skeleton files
When the administrator sends following notifications using the occ command
| subject | message | user |
| Quota updated | Congratulations your oC quota has been increased | user0 |
Expand Down