Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notifications.feature « features « integration « tests - github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44b1f8ff0e8a2da637f0f180b850b1a9334f13f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Feature: notifications
  Background:
    Given using api version "1"

  Scenario: Create test user
    Given As an "admin"
    And user "test1" does not exist
    When sending "POST" to "/cloud/users" with
      | userid | test1 |
      | password | 123456 |
    Then the OCS status code should be "100"
    And the HTTP status code should be "200"
    And user "test1" exists

  Scenario: Creating a new notification
    Given As an "test1"
    When sending "GET" to "/notifications/v1"
    Then the HTTP status code should be "200"
    # 204 No Content - Because there is no notifier
    And the OCS status code should be "204"