summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/version-management/mr
AgeCommit message (Expand)Author
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2019-12-30treewide: replace make/build/configure/patchFlags with nix listsMerijn Broeren
2019-08-28treewide: remove redundant recvolth
2019-08-15treewide: name -> pname (easy cases) (#66585)volth
2018-11-18mr: fix srcJan Malakhovski
2018-09-19mr: 1.20170129 -> 1.20180726Maciej Mazur
2018-08-11mr: fix testsJan Malakhovski
2017-06-13mr: update to version 1.20170129Peter Simons
2016-02-01mr: 1.20150503 -> 1.20160123Henry Till
2015-06-14mr: update from 1.20141024 to 1.20150503Henry Till
2014-11-22mr: update to 1.20141024Henry Till
2014-07-28Turn some license strings into lib.licenses valuesMateusz Kowalczyk
2014-02-06updates: mr, vcsh and transmission-remote-gtkJan Malakhovski
2012-08-31mr-1.13, more verbose installYury G. Kudryashov
2012-07-07Added mr - Multiple Repository management toolAntono Vasiljev
s-when-starting-and-stopping-media'>do-not-force-reconnections-when-starting-and-stopping-media Mirror of https://github.com/nextcloud/spreedmatthias
summaryrefslogtreecommitdiffstats
path: root/tests/integration/features/callapi/public.feature
blob: 38293b0a7c89c3ef5bc994a9282685ff01c63f7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Feature: callapi/public
  Background:
    Given user "participant1" exists
    And user "participant2" exists
    And user "participant3" exists

  Scenario: User has no rooms
    Then user "participant1" is participant of the following rooms
    Then user "participant2" is participant of the following rooms
    Then user "participant3" is participant of the following rooms

  Scenario: User1 invites user2 to a public room and they can do everything
    When user "participant1" creates room "room"
      | roomType | 3 |
    And user "participant1" adds "participant2" to room "room" with 200
    Then user "participant1" is participant of room "room"
    And user "participant2" is participant of room "room"
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant2" sees 0 peers in call "room" with 200
    Then user "participant1" joins room "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant2" sees 0 peers in call "room" with 200
    Then user "participant1" joins call "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant2" sees 1 peers in call "room" with 200
    Then user "participant2" joins room "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant2" sees 1 peers in call "room" with 200
    And user "participant2" joins call "room" with 200
    Then user "participant1" sees 2 peers in call "room" with 200
    And user "participant2" sees 2 peers in call "room" with 200
    Then user "participant1" pings call "room" with 200
    And user "participant2" pings call "room" with 200
    Then user "participant1" leaves call "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant2" sees 1 peers in call "room" with 200
    Then user "participant1" exits room "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant2" sees 1 peers in call "room" with 200
    Then user "participant2" leaves call "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant2" sees 0 peers in call "room" with 200
    Then user "participant2" exits room "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant2" sees 0 peers in call "room" with 200

  Scenario: User1 invites user2 to a public room and user3 can do everything
    When user "participant1" creates room "room"
      | roomType | 3 |
    And user "participant1" adds "participant2" to room "room" with 200
    Then user "participant1" is participant of room "room"
    Then user "participant3" is not participant of room "room"
    And user "participant3" sees 0 peers in call "room" with 404
    Then user "participant1" joins room "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant2" sees 0 peers in call "room" with 200
    Then user "participant1" joins call "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant3" sees 0 peers in call "room" with 404
    Then user "participant3" joins room "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant3" sees 1 peers in call "room" with 200
    And user "participant3" joins call "room" with 200
    Then user "participant1" sees 2 peers in call "room" with 200
    And user "participant3" sees 2 peers in call "room" with 200
    And user "participant3" pings call "room" with 200
    Then user "participant1" sees 2 peers in call "room" with 200
    And user "participant3" sees 2 peers in call "room" with 200
    Then user "participant3" leaves call "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant3" sees 1 peers in call "room" with 200
    Then user "participant3" exits room "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "participant3" sees 0 peers in call "room" with 404
    Then user "participant1" leaves call "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant3" sees 0 peers in call "room" with 404
    Then user "participant1" exits room "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant3" sees 0 peers in call "room" with 404

  Scenario: User1 invites user2 to a public room and guest can do everything
    When user "participant1" creates room "room"
      | roomType | 3 |
    And user "participant1" adds "participant2" to room "room" with 200
    Then user "participant1" is participant of room "room"
    And user "guest" sees 0 peers in call "room" with 404
    Then user "participant1" joins room "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "participant2" sees 0 peers in call "room" with 200
    Then user "participant1" joins call "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "guest" sees 0 peers in call "room" with 404
    Then user "guest" joins room "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "guest" sees 1 peers in call "room" with 200
    And user "guest" joins call "room" with 200
    Then user "participant1" sees 2 peers in call "room" with 200
    And user "guest" sees 2 peers in call "room" with 200
    And user "guest" pings call "room" with 200
    Then user "participant1" sees 2 peers in call "room" with 200
    And user "guest" sees 2 peers in call "room" with 200
    Then user "guest" leaves call "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "guest" sees 1 peers in call "room" with 200
    Then user "guest" exits room "room" with 200
    Then user "participant1" sees 1 peers in call "room" with 200
    And user "guest" sees 0 peers in call "room" with 404
    Then user "participant1" leaves call "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "guest" sees 0 peers in call "room" with 404
    Then user "participant1" exits room "room" with 200
    Then user "participant1" sees 0 peers in call "room" with 200
    And user "guest" sees