scalingo 3.4.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/dependabot.yml +17 -0
- data/.github/workflows/publish.yml +1 -1
- data/.github/workflows/ruby.yml +3 -3
- data/.rubocop.yml +9 -21
- data/CHANGELOG.md +10 -0
- data/lib/scalingo/api/client.rb +6 -15
- data/lib/scalingo/api/response.rb +3 -3
- data/lib/scalingo/auth/tokens.rb +2 -2
- data/lib/scalingo/auth.rb +1 -1
- data/lib/scalingo/billing.rb +1 -1
- data/lib/scalingo/client.rb +6 -6
- data/lib/scalingo/configuration.rb +3 -3
- data/lib/scalingo/core_client.rb +2 -3
- data/lib/scalingo/regional/addons.rb +1 -1
- data/lib/scalingo/regional.rb +1 -1
- data/lib/scalingo/regional_database.rb +1 -1
- data/lib/scalingo/token_holder.rb +1 -1
- data/lib/scalingo/version.rb +1 -1
- data/scalingo.gemspec +5 -8
- metadata +13 -97
- data/spec/scalingo/api/client_spec.rb +0 -256
- data/spec/scalingo/api/endpoint_spec.rb +0 -45
- data/spec/scalingo/api/response_spec.rb +0 -301
- data/spec/scalingo/auth/keys_spec.rb +0 -58
- data/spec/scalingo/auth/scm_integrations_spec.rb +0 -58
- data/spec/scalingo/auth/tokens_spec.rb +0 -74
- data/spec/scalingo/auth/two_factor_auth_spec.rb +0 -69
- data/spec/scalingo/auth/user_spec.rb +0 -31
- data/spec/scalingo/auth_spec.rb +0 -15
- data/spec/scalingo/bearer_token_spec.rb +0 -72
- data/spec/scalingo/billing/profile_spec.rb +0 -55
- data/spec/scalingo/billing_spec.rb +0 -11
- data/spec/scalingo/client_spec.rb +0 -93
- data/spec/scalingo/configuration_spec.rb +0 -57
- data/spec/scalingo/core_client_spec.rb +0 -23
- data/spec/scalingo/regional/addons_spec.rb +0 -169
- data/spec/scalingo/regional/apps_spec.rb +0 -137
- data/spec/scalingo/regional/autoscalers_spec.rb +0 -84
- data/spec/scalingo/regional/collaborators_spec.rb +0 -69
- data/spec/scalingo/regional/containers_spec.rb +0 -67
- data/spec/scalingo/regional/deployments_spec.rb +0 -45
- data/spec/scalingo/regional/domains_spec.rb +0 -84
- data/spec/scalingo/regional/environment_spec.rb +0 -77
- data/spec/scalingo/regional/events_spec.rb +0 -65
- data/spec/scalingo/regional/logs_spec.rb +0 -39
- data/spec/scalingo/regional/metrics_spec.rb +0 -46
- data/spec/scalingo/regional/notifiers_spec.rb +0 -113
- data/spec/scalingo/regional/operations_spec.rb +0 -27
- data/spec/scalingo/regional/scm_repo_links_spec.rb +0 -48
- data/spec/scalingo/regional_database/backups_spec.rb +0 -58
- data/spec/scalingo/regional_database/databases_spec.rb +0 -39
- data/spec/scalingo/regional_database_spec.rb +0 -11
- data/spec/scalingo/regional_spec.rb +0 -14
- data/spec/scalingo/token_holder_spec.rb +0 -81
@@ -1,169 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Addons do
|
4
|
-
describe_method "categories" do
|
5
|
-
context "guest" do
|
6
|
-
subject { guest_endpoint }
|
7
|
-
|
8
|
-
let(:expected_count) { 2 }
|
9
|
-
let(:stub_pattern) { "categories-guest" }
|
10
|
-
|
11
|
-
it_behaves_like "a collection response"
|
12
|
-
it_behaves_like "a non-paginated collection"
|
13
|
-
end
|
14
|
-
|
15
|
-
context "logged" do
|
16
|
-
let(:expected_count) { 2 }
|
17
|
-
let(:stub_pattern) { "categories-logged" }
|
18
|
-
|
19
|
-
it_behaves_like "a collection response"
|
20
|
-
it_behaves_like "a non-paginated collection"
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
describe_method "providers" do
|
25
|
-
context "guest" do
|
26
|
-
subject { guest_endpoint }
|
27
|
-
|
28
|
-
let(:expected_count) { 9 }
|
29
|
-
let(:stub_pattern) { "providers-guest" }
|
30
|
-
|
31
|
-
it_behaves_like "a collection response"
|
32
|
-
it_behaves_like "a non-paginated collection"
|
33
|
-
end
|
34
|
-
|
35
|
-
context "logged" do
|
36
|
-
let(:expected_count) { 11 }
|
37
|
-
let(:stub_pattern) { "providers-logged" }
|
38
|
-
|
39
|
-
it_behaves_like "a collection response"
|
40
|
-
it_behaves_like "a non-paginated collection"
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
describe_method "provision" do
|
45
|
-
context "success" do
|
46
|
-
let(:arguments) { [meta[:app_id], meta[:provision][:valid]] }
|
47
|
-
let(:stub_pattern) { "provision-201" }
|
48
|
-
|
49
|
-
it_behaves_like "a singular object response", 201
|
50
|
-
end
|
51
|
-
|
52
|
-
context "failure" do
|
53
|
-
let(:arguments) { [meta[:app_id], meta[:provision][:invalid]] }
|
54
|
-
let(:stub_pattern) { "provision-400" }
|
55
|
-
|
56
|
-
it_behaves_like "a client error"
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
describe_method "for" do
|
61
|
-
context "success" do
|
62
|
-
let(:arguments) { meta[:app_id] }
|
63
|
-
let(:stub_pattern) { "for-200" }
|
64
|
-
|
65
|
-
it_behaves_like "a collection response"
|
66
|
-
it_behaves_like "a non-paginated collection"
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
|
-
describe_method "find" do
|
71
|
-
context "success" do
|
72
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
73
|
-
let(:stub_pattern) { "find-200" }
|
74
|
-
|
75
|
-
it_behaves_like "a singular object response"
|
76
|
-
end
|
77
|
-
|
78
|
-
context "not found" do
|
79
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
80
|
-
let(:stub_pattern) { "find-404" }
|
81
|
-
|
82
|
-
it_behaves_like "a not found response"
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
describe_method "sso" do
|
87
|
-
context "success" do
|
88
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
89
|
-
let(:stub_pattern) { "sso-200" }
|
90
|
-
|
91
|
-
it_behaves_like "a singular object response"
|
92
|
-
end
|
93
|
-
|
94
|
-
context "not found" do
|
95
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
96
|
-
let(:stub_pattern) { "sso-404" }
|
97
|
-
|
98
|
-
it_behaves_like "a not found response"
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
describe_method "token" do
|
103
|
-
context "success" do
|
104
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
105
|
-
let(:stub_pattern) { "token-200" }
|
106
|
-
|
107
|
-
it_behaves_like "a singular object response"
|
108
|
-
end
|
109
|
-
|
110
|
-
context "not found" do
|
111
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
112
|
-
let(:stub_pattern) { "token-404" }
|
113
|
-
|
114
|
-
it_behaves_like "a not found response"
|
115
|
-
end
|
116
|
-
end
|
117
|
-
|
118
|
-
describe_method "authenticate!" do
|
119
|
-
context "success" do
|
120
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
121
|
-
let(:stub_pattern) { "token-200" }
|
122
|
-
|
123
|
-
it_behaves_like "a singular object response"
|
124
|
-
it "authenticates" do
|
125
|
-
response
|
126
|
-
expect(scalingo.authenticated_for_database?(meta[:id])).to be true
|
127
|
-
end
|
128
|
-
end
|
129
|
-
|
130
|
-
context "not found" do
|
131
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
132
|
-
let(:stub_pattern) { "token-404" }
|
133
|
-
|
134
|
-
it_behaves_like "a not found response"
|
135
|
-
end
|
136
|
-
end
|
137
|
-
|
138
|
-
describe_method "update" do
|
139
|
-
context "success" do
|
140
|
-
let(:arguments) { [meta[:app_id], meta[:id], meta[:update][:valid]] }
|
141
|
-
let(:stub_pattern) { "update-200" }
|
142
|
-
|
143
|
-
it_behaves_like "a singular object response"
|
144
|
-
end
|
145
|
-
|
146
|
-
context "failure" do
|
147
|
-
let(:arguments) { [meta[:app_id], meta[:id], meta[:update][:invalid]] }
|
148
|
-
let(:stub_pattern) { "update-404" }
|
149
|
-
|
150
|
-
it_behaves_like "a not found response"
|
151
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
describe_method "destroy" do
|
155
|
-
context "success" do
|
156
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
157
|
-
let(:stub_pattern) { "destroy-204" }
|
158
|
-
|
159
|
-
it_behaves_like "an empty response"
|
160
|
-
end
|
161
|
-
|
162
|
-
context "not found" do
|
163
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
164
|
-
let(:stub_pattern) { "destroy-404" }
|
165
|
-
|
166
|
-
it_behaves_like "a not found response"
|
167
|
-
end
|
168
|
-
end
|
169
|
-
end
|
@@ -1,137 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Apps do
|
4
|
-
describe_method "all" do
|
5
|
-
let(:expected_count) { 2 }
|
6
|
-
let(:stub_pattern) { "all" }
|
7
|
-
|
8
|
-
it_behaves_like "a collection response"
|
9
|
-
it_behaves_like "a non-paginated collection"
|
10
|
-
end
|
11
|
-
|
12
|
-
describe_method "create" do
|
13
|
-
context "success" do
|
14
|
-
let(:arguments) { meta[:create][:valid] }
|
15
|
-
let(:stub_pattern) { "create-201" }
|
16
|
-
|
17
|
-
it_behaves_like "a singular object response", 201
|
18
|
-
end
|
19
|
-
|
20
|
-
context "failure" do
|
21
|
-
let(:arguments) { meta[:create][:invalid] }
|
22
|
-
let(:stub_pattern) { "create-422" }
|
23
|
-
|
24
|
-
it_behaves_like "an unprocessable request"
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
describe_method "find" do
|
29
|
-
context "success" do
|
30
|
-
let(:arguments) { meta[:id] }
|
31
|
-
let(:stub_pattern) { "find-200" }
|
32
|
-
|
33
|
-
it_behaves_like "a singular object response"
|
34
|
-
end
|
35
|
-
|
36
|
-
context "not found" do
|
37
|
-
let(:arguments) { meta[:not_found_id] }
|
38
|
-
let(:stub_pattern) { "find-404" }
|
39
|
-
|
40
|
-
it_behaves_like "a not found response"
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
describe_method "update" do
|
45
|
-
context "success" do
|
46
|
-
let(:arguments) { [meta[:id], meta[:update][:valid]] }
|
47
|
-
let(:stub_pattern) { "update-200" }
|
48
|
-
|
49
|
-
it_behaves_like "a singular object response"
|
50
|
-
end
|
51
|
-
|
52
|
-
context "invalid stack" do
|
53
|
-
let(:arguments) { [meta[:id], meta[:update][:invalid]] }
|
54
|
-
let(:stub_pattern) { "update-stack-404" }
|
55
|
-
|
56
|
-
it_behaves_like "a not found response"
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
describe_method "logs_url" do
|
61
|
-
context "success" do
|
62
|
-
let(:arguments) { meta[:id] }
|
63
|
-
let(:stub_pattern) { "logs_url" }
|
64
|
-
|
65
|
-
it_behaves_like "a singular object response"
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
describe_method "destroy" do
|
70
|
-
context "success" do
|
71
|
-
let(:arguments) { [meta[:id], meta[:destroy][:valid]] }
|
72
|
-
let(:stub_pattern) { "destroy-204" }
|
73
|
-
|
74
|
-
it_behaves_like "an empty response"
|
75
|
-
end
|
76
|
-
|
77
|
-
context "not found" do
|
78
|
-
let(:arguments) { [meta[:not_found_id], meta[:destroy][:valid]] }
|
79
|
-
let(:stub_pattern) { "destroy-404" }
|
80
|
-
|
81
|
-
it_behaves_like "a not found response"
|
82
|
-
end
|
83
|
-
|
84
|
-
context "unprocessable" do
|
85
|
-
let(:arguments) { [meta[:id], meta[:destroy][:invalid]] }
|
86
|
-
let(:stub_pattern) { "destroy-422" }
|
87
|
-
|
88
|
-
it_behaves_like "an unprocessable request"
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
describe_method "rename" do
|
93
|
-
context "success" do
|
94
|
-
let(:arguments) { [meta[:id], meta[:rename][:valid]] }
|
95
|
-
let(:stub_pattern) { "rename-200" }
|
96
|
-
|
97
|
-
it_behaves_like "a singular object response"
|
98
|
-
end
|
99
|
-
|
100
|
-
context "not found" do
|
101
|
-
let(:arguments) { [meta[:not_found_id], meta[:rename][:valid]] }
|
102
|
-
let(:stub_pattern) { "rename-404" }
|
103
|
-
|
104
|
-
it_behaves_like "a not found response"
|
105
|
-
end
|
106
|
-
|
107
|
-
context "unprocessable" do
|
108
|
-
let(:arguments) { [meta[:id], meta[:rename][:invalid]] }
|
109
|
-
let(:stub_pattern) { "rename-422" }
|
110
|
-
|
111
|
-
it_behaves_like "an unprocessable request"
|
112
|
-
end
|
113
|
-
end
|
114
|
-
|
115
|
-
describe_method "transfer" do
|
116
|
-
context "success" do
|
117
|
-
let(:arguments) { [meta[:id], meta[:transfer][:valid]] }
|
118
|
-
let(:stub_pattern) { "transfer-200" }
|
119
|
-
|
120
|
-
it_behaves_like "a singular object response"
|
121
|
-
end
|
122
|
-
|
123
|
-
context "not found" do
|
124
|
-
let(:arguments) { [meta[:not_found_id], meta[:transfer][:valid]] }
|
125
|
-
let(:stub_pattern) { "transfer-404" }
|
126
|
-
|
127
|
-
it_behaves_like "a not found response"
|
128
|
-
end
|
129
|
-
|
130
|
-
context "unprocessable" do
|
131
|
-
let(:arguments) { [meta[:id], meta[:transfer][:invalid]] }
|
132
|
-
let(:stub_pattern) { "transfer-422" }
|
133
|
-
|
134
|
-
it_behaves_like "an unprocessable request"
|
135
|
-
end
|
136
|
-
end
|
137
|
-
end
|
@@ -1,84 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Autoscalers do
|
4
|
-
describe_method "create" do
|
5
|
-
context "success" do
|
6
|
-
let(:arguments) { [meta[:app_id], meta[:create][:valid]] }
|
7
|
-
let(:stub_pattern) { "create-201" }
|
8
|
-
|
9
|
-
it_behaves_like "a singular object response", 201
|
10
|
-
end
|
11
|
-
|
12
|
-
context "failure" do
|
13
|
-
let(:arguments) { [meta[:app_id], meta[:create][:invalid]] }
|
14
|
-
let(:stub_pattern) { "create-500" }
|
15
|
-
|
16
|
-
it_behaves_like "a server error"
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe_method "for" do
|
21
|
-
context "success" do
|
22
|
-
let(:arguments) { meta[:app_id] }
|
23
|
-
let(:stub_pattern) { "for-200" }
|
24
|
-
|
25
|
-
it_behaves_like "a collection response"
|
26
|
-
it_behaves_like "a non-paginated collection"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe_method "find" do
|
31
|
-
context "success" do
|
32
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
33
|
-
let(:stub_pattern) { "find-200" }
|
34
|
-
|
35
|
-
it_behaves_like "a singular object response"
|
36
|
-
end
|
37
|
-
|
38
|
-
context "not found" do
|
39
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
40
|
-
let(:stub_pattern) { "find-404" }
|
41
|
-
|
42
|
-
it_behaves_like "a not found response"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
describe_method "update" do
|
47
|
-
context "success" do
|
48
|
-
let(:arguments) { [meta[:app_id], meta[:id], meta[:update][:valid]] }
|
49
|
-
let(:stub_pattern) { "update-200" }
|
50
|
-
|
51
|
-
it_behaves_like "a singular object response"
|
52
|
-
end
|
53
|
-
|
54
|
-
context "failure" do
|
55
|
-
let(:arguments) { [meta[:app_id], meta[:id], meta[:update][:invalid]] }
|
56
|
-
let(:stub_pattern) { "update-500" }
|
57
|
-
|
58
|
-
it_behaves_like "a server error"
|
59
|
-
end
|
60
|
-
|
61
|
-
context "not found" do
|
62
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id], meta[:update][:valid]] }
|
63
|
-
let(:stub_pattern) { "update-404" }
|
64
|
-
|
65
|
-
it_behaves_like "a not found response"
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
describe_method "destroy" do
|
70
|
-
context "success" do
|
71
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
72
|
-
let(:stub_pattern) { "destroy-204" }
|
73
|
-
|
74
|
-
it_behaves_like "an empty response"
|
75
|
-
end
|
76
|
-
|
77
|
-
context "not found" do
|
78
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
79
|
-
let(:stub_pattern) { "destroy-404" }
|
80
|
-
|
81
|
-
it_behaves_like "a not found response"
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Collaborators do
|
4
|
-
describe_method "for" do
|
5
|
-
context "success" do
|
6
|
-
let(:arguments) { meta[:app_id] }
|
7
|
-
let(:stub_pattern) { "for-200" }
|
8
|
-
|
9
|
-
it_behaves_like "a collection response"
|
10
|
-
it_behaves_like "a non-paginated collection"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe_method "invite" do
|
15
|
-
context "success" do
|
16
|
-
let(:arguments) { [meta[:app_id], meta[:invite][:valid]] }
|
17
|
-
let(:stub_pattern) { "invite-201" }
|
18
|
-
|
19
|
-
it_behaves_like "a singular object response", 201
|
20
|
-
end
|
21
|
-
|
22
|
-
context "failure" do
|
23
|
-
let(:arguments) { [meta[:app_id], meta[:invite][:invalid]] }
|
24
|
-
let(:stub_pattern) { "invite-422" }
|
25
|
-
|
26
|
-
it_behaves_like "an unprocessable request"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe_method "accept" do
|
31
|
-
context "success" do
|
32
|
-
let(:arguments) { meta[:accept][:valid] }
|
33
|
-
let(:stub_pattern) { "accept-200" }
|
34
|
-
let(:expected_keys) { %i[app] }
|
35
|
-
|
36
|
-
it_behaves_like "a singular object response"
|
37
|
-
end
|
38
|
-
|
39
|
-
context "already collaborating" do
|
40
|
-
let(:arguments) { meta[:accept][:valid] }
|
41
|
-
let(:stub_pattern) { "accept-400" }
|
42
|
-
|
43
|
-
it_behaves_like "a client error"
|
44
|
-
end
|
45
|
-
|
46
|
-
context "not found" do
|
47
|
-
let(:arguments) { meta[:accept][:invalid] }
|
48
|
-
let(:stub_pattern) { "accept-404" }
|
49
|
-
|
50
|
-
it_behaves_like "a not found response"
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
describe_method "destroy" do
|
55
|
-
context "success" do
|
56
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
57
|
-
let(:stub_pattern) { "destroy-204" }
|
58
|
-
|
59
|
-
it_behaves_like "an empty response"
|
60
|
-
end
|
61
|
-
|
62
|
-
context "not found" do
|
63
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
64
|
-
let(:stub_pattern) { "destroy-404" }
|
65
|
-
|
66
|
-
it_behaves_like "a not found response"
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
@@ -1,67 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Containers do
|
4
|
-
describe_method "sizes" do
|
5
|
-
context "guest" do
|
6
|
-
subject { guest_endpoint }
|
7
|
-
|
8
|
-
let(:expected_count) { 7 }
|
9
|
-
let(:stub_pattern) { "sizes-guest" }
|
10
|
-
|
11
|
-
it_behaves_like "a collection response"
|
12
|
-
it_behaves_like "a non-paginated collection"
|
13
|
-
end
|
14
|
-
|
15
|
-
context "logged" do
|
16
|
-
let(:expected_count) { 7 }
|
17
|
-
let(:stub_pattern) { "sizes-logged" }
|
18
|
-
|
19
|
-
it_behaves_like "a collection response"
|
20
|
-
it_behaves_like "a non-paginated collection"
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
describe_method "for" do
|
25
|
-
context "success" do
|
26
|
-
let(:arguments) { meta[:app_id] }
|
27
|
-
let(:expected_count) { 2 }
|
28
|
-
let(:expected_keys) { %i[name] }
|
29
|
-
let(:stub_pattern) { "for-200" }
|
30
|
-
|
31
|
-
it_behaves_like "a collection response"
|
32
|
-
it_behaves_like "a non-paginated collection"
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
describe_method "restart" do
|
37
|
-
context "success" do
|
38
|
-
let(:arguments) { [meta[:app_id], meta[:restart][:valid]] }
|
39
|
-
let(:stub_pattern) { "restart-202" }
|
40
|
-
|
41
|
-
it_behaves_like "a singular object response", 202
|
42
|
-
end
|
43
|
-
|
44
|
-
context "success" do
|
45
|
-
let(:arguments) { [meta[:app_id], meta[:restart][:invalid]] }
|
46
|
-
let(:stub_pattern) { "restart-422" }
|
47
|
-
|
48
|
-
it_behaves_like "an unprocessable request"
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
describe_method "scale" do
|
53
|
-
context "success" do
|
54
|
-
let(:arguments) { [meta[:app_id], meta[:scale][:valid]] }
|
55
|
-
let(:stub_pattern) { "scale-202" }
|
56
|
-
|
57
|
-
it_behaves_like "a singular object response", 202
|
58
|
-
end
|
59
|
-
|
60
|
-
context "success" do
|
61
|
-
let(:arguments) { [meta[:app_id], meta[:scale][:invalid]] }
|
62
|
-
let(:stub_pattern) { "scale-422" }
|
63
|
-
|
64
|
-
it_behaves_like "an unprocessable request"
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Deployments do
|
4
|
-
describe_method "for" do
|
5
|
-
context "success" do
|
6
|
-
let(:arguments) { [meta[:app_id], {}] }
|
7
|
-
let(:stub_pattern) { "for-without-pages" }
|
8
|
-
|
9
|
-
it_behaves_like "a collection response"
|
10
|
-
it_behaves_like "a paginated collection"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe_method "find" do
|
15
|
-
context "success" do
|
16
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
17
|
-
let(:stub_pattern) { "find-200" }
|
18
|
-
|
19
|
-
it_behaves_like "a singular object response"
|
20
|
-
end
|
21
|
-
|
22
|
-
context "failure" do
|
23
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
24
|
-
let(:stub_pattern) { "find-404" }
|
25
|
-
|
26
|
-
it_behaves_like "a not found response"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe_method "logs" do
|
31
|
-
context "success" do
|
32
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
33
|
-
let(:stub_pattern) { "logs-200" }
|
34
|
-
|
35
|
-
it_behaves_like "a singular object response"
|
36
|
-
end
|
37
|
-
|
38
|
-
context "failure" do
|
39
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
40
|
-
let(:stub_pattern) { "logs-404" }
|
41
|
-
|
42
|
-
it_behaves_like "a not found response"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,84 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
RSpec.describe Scalingo::Regional::Domains do
|
4
|
-
describe_method "for" do
|
5
|
-
context "success" do
|
6
|
-
let(:arguments) { meta[:app_id] }
|
7
|
-
let(:stub_pattern) { "for-200" }
|
8
|
-
|
9
|
-
it_behaves_like "a collection response"
|
10
|
-
it_behaves_like "a non-paginated collection"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe_method "find" do
|
15
|
-
context "success" do
|
16
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
17
|
-
let(:stub_pattern) { "find-200" }
|
18
|
-
|
19
|
-
it_behaves_like "a singular object response"
|
20
|
-
end
|
21
|
-
|
22
|
-
context "not found" do
|
23
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
24
|
-
let(:stub_pattern) { "find-404" }
|
25
|
-
|
26
|
-
it_behaves_like "a not found response"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe_method "create" do
|
31
|
-
context "success" do
|
32
|
-
let(:arguments) { [meta[:app_id], meta[:create][:valid]] }
|
33
|
-
let(:stub_pattern) { "create-201" }
|
34
|
-
|
35
|
-
it_behaves_like "a singular object response", 201
|
36
|
-
end
|
37
|
-
|
38
|
-
context "failure" do
|
39
|
-
let(:arguments) { [meta[:app_id], meta[:create][:invalid]] }
|
40
|
-
let(:stub_pattern) { "create-422" }
|
41
|
-
|
42
|
-
it_behaves_like "an unprocessable request"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
|
46
|
-
describe_method "update" do
|
47
|
-
context "success" do
|
48
|
-
let(:arguments) { [meta[:app_id], meta[:id], meta[:update][:valid]] }
|
49
|
-
let(:stub_pattern) { "update-200" }
|
50
|
-
|
51
|
-
it_behaves_like "a singular object response"
|
52
|
-
end
|
53
|
-
|
54
|
-
context "not found" do
|
55
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id], meta[:update][:valid]] }
|
56
|
-
let(:stub_pattern) { "update-404" }
|
57
|
-
|
58
|
-
it_behaves_like "a not found response"
|
59
|
-
end
|
60
|
-
|
61
|
-
context "failure" do
|
62
|
-
let(:arguments) { [meta[:app_id], meta[:id], meta[:update][:invalid]] }
|
63
|
-
let(:stub_pattern) { "update-422" }
|
64
|
-
|
65
|
-
it_behaves_like "an unprocessable request"
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
describe_method "destroy" do
|
70
|
-
context "success" do
|
71
|
-
let(:arguments) { [meta[:app_id], meta[:id]] }
|
72
|
-
let(:stub_pattern) { "destroy-204" }
|
73
|
-
|
74
|
-
it_behaves_like "an empty response"
|
75
|
-
end
|
76
|
-
|
77
|
-
context "not found" do
|
78
|
-
let(:arguments) { [meta[:app_id], meta[:not_found_id]] }
|
79
|
-
let(:stub_pattern) { "destroy-404" }
|
80
|
-
|
81
|
-
it_behaves_like "a not found response"
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|