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

capabilities.feature « capabilities_features « integration « build - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4c53269caabff4c03adfc6ec13af2d67e1b57eb (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
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
Feature: capabilities
	Background:
		Given using api version "1"

	Scenario: getting capabilities with admin user
		Given As an "admin"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | 1 | |
			| files_sharing | public | enabled | 1 |
			| files_sharing | public | upload | 1 |
			| files_sharing | resharing | 1 | |
			| files_sharing | federation | outgoing | 1 |
			| files_sharing | federation | incoming | 1 |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |

	Scenario: Changing public upload
		Given As an "admin"
		And parameter "shareapi_allow_public_upload" of app "core" is set to "no"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | 1 | |
			| files_sharing | public | enabled | 1 |
			| files_sharing | public | upload | EMPTY |
			| files_sharing | resharing | 1 | |
			| files_sharing | federation | outgoing | 1 |
			| files_sharing | federation | incoming | 1 |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |

	Scenario: Disabling share api
		Given As an "admin"
		And parameter "shareapi_enabled" of app "core" is set to "no"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | EMPTY | |
			| files_sharing | public | enabled | EMPTY |
			| files_sharing | public | upload | EMPTY |
			| files_sharing | resharing | EMPTY | |
			| files_sharing | federation | outgoing | 1 |
			| files_sharing | federation | incoming | 1 |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |

	Scenario: Disabling public links
		Given As an "admin"
		And parameter "shareapi_allow_links" of app "core" is set to "no"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | 1 | |
			| files_sharing | public | enabled | EMPTY |
			| files_sharing | public | upload | EMPTY |
			| files_sharing | resharing | 1 | |
			| files_sharing | federation | outgoing | 1 |
			| files_sharing | federation | incoming | 1 |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |

	Scenario: Changing resharing
		Given As an "admin"
		And parameter "shareapi_allow_resharing" of app "core" is set to "no"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | 1 | |
			| files_sharing | public | enabled | 1 |
			| files_sharing | public | upload | 1 |
			| files_sharing | resharing | EMPTY | |
			| files_sharing | federation | outgoing | 1 |
			| files_sharing | federation | incoming | 1 |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |

	Scenario: Changing federation outgoing
		Given As an "admin"
		And parameter "outgoing_server2server_share_enabled" of app "files_sharing" is set to "no"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | 1 | |
			| files_sharing | public | enabled | 1 |
			| files_sharing | public | upload | 1 |
			| files_sharing | resharing | 1 | |
			| files_sharing | federation | outgoing | EMPTY |
			| files_sharing | federation | incoming | 1 |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |

	Scenario: Changing federation incoming
		Given As an "admin"
		And parameter "incoming_server2server_share_enabled" of app "files_sharing" is set to "no"
		When sending "GET" to "/cloud/capabilities"
		Then the HTTP status code should be "200"
		And fields of capabilities match with
			| capability | feature | value_or_subfeature | value |
			| core | pollinterval | 60 | |
			| core | webdav-root | remote.php/webdav | |
			| files_sharing | api_enabled | 1 | |
			| files_sharing | public | enabled | 1 |
			| files_sharing | public | upload | 1 |
			| files_sharing | resharing | 1 | |
			| files_sharing | federation | outgoing | 1 |
			| files_sharing | federation | incoming | EMPTY |
			| files | bigfilechunking | 1 | |
			| files | undelete | 1 | |
			| files | versioning | 1 | |