-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdaily.feature
More file actions
146 lines (133 loc) · 6.77 KB
/
daily.feature
File metadata and controls
146 lines (133 loc) · 6.77 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
Feature: Testing the update scenario of daily releases
Scenario: Updating an outdated Nextcloud 32 daily
Given There is a release with channel "daily"
And The received version is "32.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-master.zip"
And URL to documentation is "https://docs.nextcloud.com/server/latest/admin_manual/maintenance/upgrade.html"
And EOL is set to "0"
And No signature is set
Scenario: Updating an outdated Nextcloud 31 daily
Given There is a release with channel "daily"
And The received version is "31.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable31.zip"
And URL to documentation is "https://docs.nextcloud.com/server/31/admin_manual/maintenance/upgrade.html"
And EOL is set to "0"
And No signature is set
Scenario: Updating an outdated Nextcloud 30 daily
Given There is a release with channel "daily"
And The received version is "30.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable30.zip"
And URL to documentation is "https://docs.nextcloud.com/server/30/admin_manual/maintenance/upgrade.html"
And EOL is set to "0"
And No signature is set
Scenario: Updating an outdated Nextcloud 29 daily
Given There is a release with channel "daily"
And The received version is "29.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable29.zip"
And URL to documentation is "https://docs.nextcloud.com/server/29/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 28 daily
Given There is a release with channel "daily"
And The received version is "28.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable28.zip"
And URL to documentation is "https://docs.nextcloud.com/server/28/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 27 daily
Given There is a release with channel "daily"
And The received version is "27.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable27.zip"
And URL to documentation is "https://docs.nextcloud.com/server/27/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 26 daily
Given There is a release with channel "daily"
And The received version is "26.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable26.zip"
And URL to documentation is "https://docs.nextcloud.com/server/26/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 25 daily
Given There is a release with channel "daily"
And The received version is "25.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable25.zip"
And URL to documentation is "https://docs.nextcloud.com/server/25/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 24 daily
Given There is a release with channel "daily"
And The received version is "24.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable24.zip"
And URL to documentation is "https://docs.nextcloud.com/server/24/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 23 daily
Given There is a release with channel "daily"
And The received version is "23.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable23.zip"
And URL to documentation is "https://docs.nextcloud.com/server/23/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 22 daily
Given There is a release with channel "daily"
And The received version is "22.1.0"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable22.zip"
And URL to documentation is "https://docs.nextcloud.com/server/22/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set
Scenario: Updating an outdated Nextcloud 21 daily
Given There is a release with channel "daily"
And The received version is "21.0.4"
And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
And URL to download is "https://download.nextcloud.com/server/daily/latest-stable21.zip"
And URL to documentation is "https://docs.nextcloud.com/server/21/admin_manual/maintenance/upgrade.html"
And EOL is set to "1"
And No signature is set