scalingo 3.4.0 → 4.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (282) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/dependabot.yml +17 -0
  3. data/.github/workflows/publish.yml +6 -3
  4. data/.github/workflows/ruby.yml +3 -3
  5. data/.rubocop.yml +46 -17
  6. data/CHANGELOG.md +20 -1
  7. data/Gemfile +2 -0
  8. data/README.md +13 -62
  9. data/bin/console +11 -1
  10. data/bin/lint +2 -0
  11. data/bin/setup +21 -6
  12. data/bin/specs +2 -0
  13. data/lib/scalingo/api/client.rb +26 -53
  14. data/lib/scalingo/api/endpoint.rb +88 -11
  15. data/lib/scalingo/auth/keys.rb +4 -50
  16. data/lib/scalingo/auth/scm_integrations.rb +4 -51
  17. data/lib/scalingo/auth/tokens.rb +5 -72
  18. data/lib/scalingo/auth/two_factor_auth.rb +4 -55
  19. data/lib/scalingo/auth/user.rb +3 -38
  20. data/lib/scalingo/auth.rb +1 -1
  21. data/lib/scalingo/bearer_token.rb +16 -9
  22. data/lib/scalingo/billing/profile.rb +3 -40
  23. data/lib/scalingo/billing.rb +1 -1
  24. data/lib/scalingo/client.rb +21 -31
  25. data/lib/scalingo/configuration.rb +3 -27
  26. data/lib/scalingo/core_client.rb +9 -30
  27. data/lib/scalingo/database/backups.rb +9 -0
  28. data/lib/scalingo/database/databases.rb +8 -0
  29. data/lib/scalingo/database.rb +13 -0
  30. data/lib/scalingo/faraday/extract_meta.rb +33 -0
  31. data/lib/scalingo/faraday/extract_root_value.rb +18 -0
  32. data/lib/scalingo/faraday/response.rb +36 -0
  33. data/lib/scalingo/regional/addons.rb +18 -130
  34. data/lib/scalingo/regional/apps.rb +10 -103
  35. data/lib/scalingo/regional/autoscalers.rb +5 -64
  36. data/lib/scalingo/regional/collaborators.rb +4 -51
  37. data/lib/scalingo/regional/containers.rb +4 -51
  38. data/lib/scalingo/regional/deployments.rb +3 -38
  39. data/lib/scalingo/regional/domains.rb +5 -64
  40. data/lib/scalingo/regional/environment.rb +6 -77
  41. data/lib/scalingo/regional/events.rb +5 -50
  42. data/lib/scalingo/regional/logs.rb +10 -28
  43. data/lib/scalingo/regional/metrics.rb +2 -34
  44. data/lib/scalingo/regional/notifiers.rb +7 -90
  45. data/lib/scalingo/regional/operations.rb +5 -18
  46. data/lib/scalingo/regional/scm_repo_links.rb +8 -103
  47. data/lib/scalingo/regional.rb +1 -1
  48. data/lib/scalingo/token_holder.rb +1 -46
  49. data/lib/scalingo/version.rb +1 -1
  50. data/scalingo.gemspec +7 -7
  51. metadata +63 -285
  52. data/lib/scalingo/api/response.rb +0 -69
  53. data/lib/scalingo/regional_database/backups.rb +0 -44
  54. data/lib/scalingo/regional_database/databases.rb +0 -31
  55. data/lib/scalingo/regional_database.rb +0 -13
  56. data/samples/auth/keys/_meta.json +0 -13
  57. data/samples/auth/keys/all-200.json +0 -62
  58. data/samples/auth/keys/create-201.json +0 -67
  59. data/samples/auth/keys/create-422.json +0 -34
  60. data/samples/auth/keys/destroy-204.json +0 -19
  61. data/samples/auth/keys/destroy-404.json +0 -19
  62. data/samples/auth/keys/show-200.json +0 -60
  63. data/samples/auth/keys/show-404.json +0 -19
  64. data/samples/auth/scm_integrations/_meta.json +0 -14
  65. data/samples/auth/scm_integrations/all-200.json +0 -41
  66. data/samples/auth/scm_integrations/create-201.json +0 -41
  67. data/samples/auth/scm_integrations/create-422.json +0 -36
  68. data/samples/auth/scm_integrations/destroy-204.json +0 -15
  69. data/samples/auth/scm_integrations/destroy-404.json +0 -23
  70. data/samples/auth/scm_integrations/show-200.json +0 -34
  71. data/samples/auth/scm_integrations/show-404.json +0 -23
  72. data/samples/auth/tokens/_meta.json +0 -13
  73. data/samples/auth/tokens/all-200.json +0 -32
  74. data/samples/auth/tokens/create-201.json +0 -37
  75. data/samples/auth/tokens/destroy-204.json +0 -19
  76. data/samples/auth/tokens/destroy-404.json +0 -19
  77. data/samples/auth/tokens/exchange-200.json +0 -25
  78. data/samples/auth/tokens/exchange-401.json +0 -24
  79. data/samples/auth/tokens/renew-200.json +0 -32
  80. data/samples/auth/tokens/renew-404.json +0 -20
  81. data/samples/auth/two_factor_auth/_meta.json +0 -10
  82. data/samples/auth/two_factor_auth/disable-not-initiated.json +0 -23
  83. data/samples/auth/two_factor_auth/disable-success.json +0 -29
  84. data/samples/auth/two_factor_auth/initiate-already-enabled.json +0 -29
  85. data/samples/auth/two_factor_auth/initiate-success.json +0 -36
  86. data/samples/auth/two_factor_auth/initiate-wrong-provider.json +0 -29
  87. data/samples/auth/two_factor_auth/status.json +0 -29
  88. data/samples/auth/two_factor_auth/validate-not-initiated.json +0 -29
  89. data/samples/auth/two_factor_auth/validate-success.json +0 -49
  90. data/samples/auth/two_factor_auth/validate-wrong.json +0 -29
  91. data/samples/auth/user/_meta.json +0 -10
  92. data/samples/auth/user/self.json +0 -54
  93. data/samples/auth/user/stop-free-trial.json +0 -24
  94. data/samples/auth/user/update-200.json +0 -59
  95. data/samples/auth/user/update-422.json +0 -33
  96. data/samples/billing/profile/_meta.json +0 -23
  97. data/samples/billing/profile/create-201.json +0 -50
  98. data/samples/billing/profile/create-400.json +0 -27
  99. data/samples/billing/profile/create-422.json +0 -44
  100. data/samples/billing/profile/show-200.json +0 -41
  101. data/samples/billing/profile/show-404.json +0 -22
  102. data/samples/billing/profile/update-200.json +0 -47
  103. data/samples/billing/profile/update-422.json +0 -32
  104. data/samples/regional/addons/_meta.json +0 -22
  105. data/samples/regional/addons/categories-guest.json +0 -36
  106. data/samples/regional/addons/categories-logged.json +0 -37
  107. data/samples/regional/addons/destroy-204.json +0 -19
  108. data/samples/regional/addons/destroy-404.json +0 -24
  109. data/samples/regional/addons/find-200.json +0 -48
  110. data/samples/regional/addons/find-404.json +0 -24
  111. data/samples/regional/addons/for-200.json +0 -50
  112. data/samples/regional/addons/providers-guest.json +0 -588
  113. data/samples/regional/addons/providers-logged.json +0 -705
  114. data/samples/regional/addons/provision-201.json +0 -58
  115. data/samples/regional/addons/provision-400.json +0 -29
  116. data/samples/regional/addons/sso-200.json +0 -49
  117. data/samples/regional/addons/sso-404.json +0 -24
  118. data/samples/regional/addons/token-200.json +0 -49
  119. data/samples/regional/addons/token-404.json +0 -24
  120. data/samples/regional/addons/update-200.json +0 -58
  121. data/samples/regional/addons/update-404.json +0 -30
  122. data/samples/regional/apps/_meta.json +0 -52
  123. data/samples/regional/apps/all.json +0 -99
  124. data/samples/regional/apps/create-201.json +0 -66
  125. data/samples/regional/apps/create-422.json +0 -34
  126. data/samples/regional/apps/destroy-204.json +0 -19
  127. data/samples/regional/apps/destroy-404.json +0 -24
  128. data/samples/regional/apps/destroy-422.json +0 -27
  129. data/samples/regional/apps/find-200.json +0 -60
  130. data/samples/regional/apps/find-404.json +0 -24
  131. data/samples/regional/apps/logs_url.json +0 -62
  132. data/samples/regional/apps/rename-200.json +0 -65
  133. data/samples/regional/apps/rename-404.json +0 -29
  134. data/samples/regional/apps/rename-422.json +0 -33
  135. data/samples/regional/apps/transfer-200.json +0 -65
  136. data/samples/regional/apps/transfer-404.json +0 -27
  137. data/samples/regional/apps/transfer-422.json +0 -34
  138. data/samples/regional/apps/update-200.json +0 -66
  139. data/samples/regional/apps/update-stack-404.json +0 -30
  140. data/samples/regional/autoscalers/_meta.json +0 -27
  141. data/samples/regional/autoscalers/create-201.json +0 -49
  142. data/samples/regional/autoscalers/create-500.json +0 -32
  143. data/samples/regional/autoscalers/destroy-204.json +0 -20
  144. data/samples/regional/autoscalers/destroy-404.json +0 -25
  145. data/samples/regional/autoscalers/find-200.json +0 -39
  146. data/samples/regional/autoscalers/find-404.json +0 -25
  147. data/samples/regional/autoscalers/for-200.json +0 -41
  148. data/samples/regional/autoscalers/update-200.json +0 -45
  149. data/samples/regional/autoscalers/update-404.json +0 -31
  150. data/samples/regional/autoscalers/update-500.json +0 -30
  151. data/samples/regional/collaborators/_meta.json +0 -17
  152. data/samples/regional/collaborators/accept-200.json +0 -60
  153. data/samples/regional/collaborators/accept-400.json +0 -24
  154. data/samples/regional/collaborators/accept-404.json +0 -24
  155. data/samples/regional/collaborators/destroy-204.json +0 -19
  156. data/samples/regional/collaborators/destroy-404.json +0 -24
  157. data/samples/regional/collaborators/for-200.json +0 -34
  158. data/samples/regional/collaborators/invite-201.json +0 -37
  159. data/samples/regional/collaborators/invite-422.json +0 -34
  160. data/samples/regional/containers/_meta.json +0 -25
  161. data/samples/regional/containers/for-200.json +0 -39
  162. data/samples/regional/containers/restart-202.json +0 -28
  163. data/samples/regional/containers/restart-422.json +0 -33
  164. data/samples/regional/containers/scale-202.json +0 -48
  165. data/samples/regional/containers/scale-422.json +0 -36
  166. data/samples/regional/containers/sizes-guest.json +0 -115
  167. data/samples/regional/containers/sizes-logged.json +0 -116
  168. data/samples/regional/deployments/_meta.json +0 -8
  169. data/samples/regional/deployments/find-200.json +0 -45
  170. data/samples/regional/deployments/find-404.json +0 -24
  171. data/samples/regional/deployments/for-with-paging.json +0 -35
  172. data/samples/regional/deployments/for-without-pages.json +0 -56
  173. data/samples/regional/deployments/logs-200.json +0 -22
  174. data/samples/regional/deployments/logs-404.json +0 -24
  175. data/samples/regional/domains/_meta.json +0 -21
  176. data/samples/regional/domains/create-201.json +0 -44
  177. data/samples/regional/domains/create-422.json +0 -33
  178. data/samples/regional/domains/destroy-204.json +0 -19
  179. data/samples/regional/domains/destroy-404.json +0 -24
  180. data/samples/regional/domains/find-200.json +0 -38
  181. data/samples/regional/domains/find-404.json +0 -24
  182. data/samples/regional/domains/for-200.json +0 -40
  183. data/samples/regional/domains/update-200.json +0 -44
  184. data/samples/regional/domains/update-404.json +0 -30
  185. data/samples/regional/domains/update-422.json +0 -33
  186. data/samples/regional/environment/_meta.json +0 -43
  187. data/samples/regional/environment/bulk-destroy-204.json +0 -19
  188. data/samples/regional/environment/bulk-update-200.json +0 -70
  189. data/samples/regional/environment/create-201.json +0 -36
  190. data/samples/regional/environment/create-422.json +0 -37
  191. data/samples/regional/environment/destroy-204.json +0 -19
  192. data/samples/regional/environment/destroy-404.json +0 -24
  193. data/samples/regional/environment/for-200.json +0 -31
  194. data/samples/regional/environment/update-200.json +0 -35
  195. data/samples/regional/environment/update-404.json +0 -30
  196. data/samples/regional/events/_meta.json +0 -3
  197. data/samples/regional/events/all-200.json +0 -619
  198. data/samples/regional/events/categories-guest.json +0 -66
  199. data/samples/regional/events/categories-logged.json +0 -67
  200. data/samples/regional/events/for-200.json +0 -404
  201. data/samples/regional/events/types-guest.json +0 -288
  202. data/samples/regional/events/types-logged.json +0 -289
  203. data/samples/regional/logs/_meta.json +0 -11
  204. data/samples/regional/logs/archives-200.json +0 -28
  205. data/samples/regional/logs/get-guest-200.json +0 -18
  206. data/samples/regional/logs/get-logged-200.json +0 -19
  207. data/samples/regional/logs/get-with-limit-200.json +0 -18
  208. data/samples/regional/metrics/_meta.json +0 -15
  209. data/samples/regional/metrics/for-invalid-400.json +0 -23
  210. data/samples/regional/metrics/for-valid-cpu-200.json +0 -747
  211. data/samples/regional/metrics/for-valid-router-404.json +0 -23
  212. data/samples/regional/metrics/types-guest.json +0 -66
  213. data/samples/regional/metrics/types-logged.json +0 -67
  214. data/samples/regional/notifiers/_meta.json +0 -23
  215. data/samples/regional/notifiers/create-201.json +0 -55
  216. data/samples/regional/notifiers/create-404.json +0 -30
  217. data/samples/regional/notifiers/create-422.json +0 -36
  218. data/samples/regional/notifiers/destroy-204.json +0 -19
  219. data/samples/regional/notifiers/destroy-404.json +0 -24
  220. data/samples/regional/notifiers/find-200.json +0 -47
  221. data/samples/regional/notifiers/find-404.json +0 -24
  222. data/samples/regional/notifiers/for-200.json +0 -49
  223. data/samples/regional/notifiers/platforms-guest.json +0 -184
  224. data/samples/regional/notifiers/platforms-logged.json +0 -185
  225. data/samples/regional/notifiers/test-200.json +0 -22
  226. data/samples/regional/notifiers/test-404.json +0 -25
  227. data/samples/regional/notifiers/update-200.json +0 -53
  228. data/samples/regional/operations/_meta.json +0 -5
  229. data/samples/regional/operations/find-200.json +0 -31
  230. data/samples/regional/operations/find-404.json +0 -24
  231. data/samples/regional/scm_repo_links/_meta.json +0 -22
  232. data/samples/regional/scm_repo_links/create-201.json +0 -54
  233. data/samples/regional/scm_repo_links/destroy-204.json +0 -15
  234. data/samples/regional/scm_repo_links/manual-deploy-200.json +0 -32
  235. data/samples/regional/scm_repo_links/show-200.json +0 -43
  236. data/samples/regional/scm_repo_links/update-200.json +0 -50
  237. data/samples/regional_database/backups/_meta.json +0 -4
  238. data/samples/regional_database/backups/archive-200.json +0 -24
  239. data/samples/regional_database/backups/archive-400.json +0 -24
  240. data/samples/regional_database/backups/create-201.json +0 -32
  241. data/samples/regional_database/backups/create-400.json +0 -24
  242. data/samples/regional_database/backups/for-200.json +0 -52
  243. data/samples/regional_database/backups/for-400.json +0 -24
  244. data/samples/regional_database/databases/_meta.json +0 -3
  245. data/samples/regional_database/databases/find-200.json +0 -47
  246. data/samples/regional_database/databases/find-400.json +0 -24
  247. data/samples/regional_database/databases/upgrade-202.json +0 -39
  248. data/samples/regional_database/databases/upgrade-400.json +0 -24
  249. data/spec/scalingo/api/client_spec.rb +0 -256
  250. data/spec/scalingo/api/endpoint_spec.rb +0 -45
  251. data/spec/scalingo/api/response_spec.rb +0 -301
  252. data/spec/scalingo/auth/keys_spec.rb +0 -58
  253. data/spec/scalingo/auth/scm_integrations_spec.rb +0 -58
  254. data/spec/scalingo/auth/tokens_spec.rb +0 -74
  255. data/spec/scalingo/auth/two_factor_auth_spec.rb +0 -69
  256. data/spec/scalingo/auth/user_spec.rb +0 -31
  257. data/spec/scalingo/auth_spec.rb +0 -15
  258. data/spec/scalingo/bearer_token_spec.rb +0 -72
  259. data/spec/scalingo/billing/profile_spec.rb +0 -55
  260. data/spec/scalingo/billing_spec.rb +0 -11
  261. data/spec/scalingo/client_spec.rb +0 -93
  262. data/spec/scalingo/configuration_spec.rb +0 -57
  263. data/spec/scalingo/core_client_spec.rb +0 -23
  264. data/spec/scalingo/regional/addons_spec.rb +0 -169
  265. data/spec/scalingo/regional/apps_spec.rb +0 -137
  266. data/spec/scalingo/regional/autoscalers_spec.rb +0 -84
  267. data/spec/scalingo/regional/collaborators_spec.rb +0 -69
  268. data/spec/scalingo/regional/containers_spec.rb +0 -67
  269. data/spec/scalingo/regional/deployments_spec.rb +0 -45
  270. data/spec/scalingo/regional/domains_spec.rb +0 -84
  271. data/spec/scalingo/regional/environment_spec.rb +0 -77
  272. data/spec/scalingo/regional/events_spec.rb +0 -65
  273. data/spec/scalingo/regional/logs_spec.rb +0 -39
  274. data/spec/scalingo/regional/metrics_spec.rb +0 -46
  275. data/spec/scalingo/regional/notifiers_spec.rb +0 -113
  276. data/spec/scalingo/regional/operations_spec.rb +0 -27
  277. data/spec/scalingo/regional/scm_repo_links_spec.rb +0 -48
  278. data/spec/scalingo/regional_database/backups_spec.rb +0 -58
  279. data/spec/scalingo/regional_database/databases_spec.rb +0 -39
  280. data/spec/scalingo/regional_database_spec.rb +0 -11
  281. data/spec/scalingo/regional_spec.rb +0 -14
  282. data/spec/scalingo/token_holder_spec.rb +0 -81
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/backups",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 400,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "error": "unauthorized"
22
- }
23
- }
24
- }
@@ -1,52 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/backups",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 200,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "database_backups": [
22
- {
23
- "id": "5bde44904ffb096c714be89c",
24
- "created_at": "2018-11-04T02:00:00.154+01:00",
25
- "name": "20181104010000_kibana-3938",
26
- "size": 0,
27
- "status": "pending",
28
- "database_id": "597601234ffb097af4f3099b",
29
- "type": "postgresql"
30
- },
31
- {
32
- "id": "5bb95a904ffb096e9a2831b8",
33
- "created_at": "2018-10-07T03:00:00.150+02:00",
34
- "name": "20181007010000_kibana-3938",
35
- "size": 0,
36
- "status": "error",
37
- "database_id": "597601234ffb097af4f3099b",
38
- "type": "postgresql"
39
- },
40
- {
41
- "id": "5b8b36104ffb090be1ac3ce1",
42
- "created_at": "2018-09-02T03:00:00.178+02:00",
43
- "name": "20180902010000_kibana-3938",
44
- "size": 17484513608,
45
- "status": "done",
46
- "database_id": "597601234ffb097af4f3099b",
47
- "type": "postgresql"
48
- }
49
- ]
50
- }
51
- }
52
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/backups",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 400,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "error": "unauthorized"
22
- }
23
- }
24
- }
@@ -1,3 +0,0 @@
1
- {
2
- "id": "63bfe3b600deff4f0516cc12"
3
- }
@@ -1,47 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 200,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "database": {
22
- "id": "63bfe3b600deff4f0516cc12",
23
- "resource_id": "my-db-123",
24
- "app_name": "my-app",
25
- "created_at": "2019-02-05T15:38:14.343+01:00",
26
- "encryption_at_rest": true,
27
- "features": [
28
- {
29
- "name": "redis-rdb",
30
- "status": "ACTIVATED"
31
- }
32
- ],
33
- "plan": "free",
34
- "status": "running",
35
- "type_id": "5bf30d1104c87f000161285a",
36
- "type_name": "redis",
37
- "version_id": "5bf30d1104c87f000161285b",
38
- "instances": [],
39
- "readable_version": "3.2.9-1",
40
- "periodic_backups_enabled": true,
41
- "periodic_backups_scheduled_at": [
42
- 0
43
- ]
44
- }
45
- }
46
- }
47
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12",
3
- "method": "get",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 400,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "error": "unauthorized"
22
- }
23
- }
24
- }
@@ -1,39 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/upgrade",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 202,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin",
19
- "Location": "https://db-api.osc-st-fr1.st-sc.fr/api/operations/63bef2179307d55a9658cd99"
20
- },
21
- "json_body": {
22
- "message": "Database upgrade to 7.0.5-1 is pending",
23
- "id": "6335961fb07f4c000fe7461c",
24
- "created_at": "2022-09-29T12:57:03.372Z",
25
- "updated_at": "2022-09-29T12:57:03.372Z",
26
- "database_type_id": "5eea3345d6f2bd5a55e2aad0",
27
- "major": 7,
28
- "minor": 0,
29
- "patch": 5,
30
- "build": 1,
31
- "features": [
32
- "tls"
33
- ],
34
- "release_number": 330,
35
- "allowed_plugins": null,
36
- "warning_message": ""
37
- }
38
- }
39
- }
@@ -1,24 +0,0 @@
1
- {
2
- "path": "/databases/63bfe3b600deff4f0516cc12/upgrade",
3
- "method": "post",
4
- "request": {
5
- "headers": {
6
- "Authorization": "Bearer the-bearer-token"
7
- }
8
- },
9
- "response": {
10
- "status": 400,
11
- "headers": {
12
- "Date": "Fri, 29 May 2020 13:08:59 GMT",
13
- "Etag": "W/\"a9504bb2f6f87c65ff68074ae787831e\"",
14
- "Content-Type": "application/json; charset=utf-8",
15
- "Transfer-Encoding": "chunked",
16
- "Connection": "keep-alive",
17
- "Cache-Control": "max-age=0, private, must-revalidate",
18
- "Referrer-Policy": "strict-origin-when-cross-origin"
19
- },
20
- "json_body": {
21
- "error": "unauthorized"
22
- }
23
- }
24
- }
@@ -1,256 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Scalingo::API::Client do
4
- let(:url) { "http://localhost" }
5
-
6
- subject { described_class.new(url, scalingo: scalingo) }
7
-
8
- describe "initialize" do
9
- let(:config) { {default_region: :test} }
10
-
11
- describe "with only url" do
12
- subject { described_class.new(:url) }
13
-
14
- it "stores the url" do
15
- expect(subject.url).to eq(:url)
16
- end
17
-
18
- it "uses itself as token holder" do
19
- expect(subject.token_holder).to eq(subject)
20
- end
21
-
22
- it "configuration is the global one" do
23
- expect(Scalingo::Configuration).to receive(:new).with({}, Scalingo.config).and_return(:config).once
24
-
25
- expect(subject.config).to eq(:config)
26
- end
27
- end
28
-
29
- describe "with scalingo client supplied" do
30
- subject { described_class.new(:url, scalingo: scalingo) }
31
-
32
- it "uses the scalingo client as token holder" do
33
- expect(subject.token_holder).to eq(scalingo)
34
- end
35
-
36
- it "configuration is herited from the scalingo client" do
37
- expect(Scalingo::Configuration).to receive(:new).with({}, scalingo.config).once
38
-
39
- subject
40
- end
41
- end
42
-
43
- describe "with config supplied" do
44
- subject { described_class.new(:url, config: config) }
45
-
46
- it "configuration is herited from the global one" do
47
- expect(Scalingo::Configuration).to receive(:new).with(config, Scalingo.config).and_return(:config).once
48
-
49
- expect(subject.config).to eq(:config)
50
- end
51
- end
52
-
53
- describe "with both supplied" do
54
- subject { described_class.new(:url, scalingo: scalingo, config: config) }
55
-
56
- it "configuration is herited from the scalingo one" do
57
- expect(Scalingo::Configuration).to receive(:new).with(config, scalingo.config).once
58
-
59
- subject
60
- end
61
- end
62
- end
63
-
64
- describe "self.register_handler(s)!" do
65
- it "is called for each key/value pair" do
66
- expect(described_class).to receive(:register_handler!).with(:a, :b).once
67
- expect(described_class).to receive(:register_handler!).with(:c, :d).once
68
-
69
- described_class.register_handlers!(a: :b, c: :d)
70
- end
71
-
72
- it "defines a lazy-loaded memoized getter, returning an instance of the class supplied" do
73
- mock = double
74
-
75
- described_class.register_handler!(:handler, mock)
76
- instance = described_class.new(:url, scalingo: scalingo)
77
-
78
- # Only 1 instanciation should be done, no matter how many calls are done below
79
- expect(mock).to receive(:new).with(instance).and_return("1st").once
80
-
81
- # Not yet loaded...
82
- expect(instance.instance_variable_get(:@handler)).to eq(nil)
83
- instance.handler
84
-
85
- # Memoized...
86
- expect(instance.instance_variable_get(:@handler)).not_to eq(nil)
87
-
88
- # More calls won't try to perform more instanciations
89
- instance.handler
90
- instance.handler
91
- end
92
- end
93
-
94
- describe "headers" do
95
- before do
96
- expect(scalingo.config).to receive(:user_agent).and_return(user_agent).once
97
- end
98
-
99
- let(:user_agent) { "user agent" }
100
- let(:extra_hash) { {"X-Other" => "other"} }
101
- let(:extra_block) {
102
- proc { {"X-Another" => "another"} }
103
- }
104
-
105
- it "only returns the user agent and accept if nothing else is configured" do
106
- expect(subject.headers).to eq("Accept" => "application/json", "User-Agent" => user_agent)
107
- end
108
-
109
- it "allows additional headers to be globally configured" do
110
- expect(scalingo.config).to receive(:additional_headers).and_return(extra_hash)
111
-
112
- expect(subject.headers).to eq("Accept" => "application/json", "User-Agent" => user_agent, "X-Other" => "other")
113
- end
114
-
115
- it "additional headers can be a block" do
116
- expect(scalingo.config).to receive(:additional_headers).and_return(extra_block)
117
-
118
- expect(subject.headers).to eq("Accept" => "application/json", "User-Agent" => user_agent, "X-Another" => "another")
119
- end
120
- end
121
-
122
- describe "connection_options" do
123
- it "returns the url and headers" do
124
- expect(subject).to receive(:url).and_return("url").once
125
- expect(subject).to receive(:headers).and_return("headers").once
126
-
127
- expect(subject.connection_options).to eq(url: "url", headers: "headers")
128
- end
129
- end
130
-
131
- describe "unauthenticated_connection" do
132
- it "returns a memoized object" do
133
- expect(Faraday).to receive(:new).with(subject.connection_options).and_return("faraday").once
134
-
135
- expect(subject.unauthenticated_connection).to eq "faraday"
136
-
137
- subject.unauthenticated_connection
138
- subject.unauthenticated_connection
139
- end
140
-
141
- it "has no authentication header set" do
142
- expect(subject.unauthenticated_connection.headers.key?("Authorization")).not_to be true
143
- end
144
- end
145
-
146
- describe "authenticated_connection" do
147
- context "without bearer token" do
148
- let(:scalingo) { scalingo_guest }
149
-
150
- it "raises if configured to" do
151
- expect(scalingo.config).to receive(:raise_on_missing_authentication).and_return(true).once
152
-
153
- expect {
154
- subject.authenticated_connection
155
- }.to raise_error(Scalingo::Error::Unauthenticated)
156
- end
157
-
158
- it "returns an unauthenticated connection if configured to not raise" do
159
- expect(scalingo.config).to receive(:raise_on_missing_authentication).and_return(false).once
160
-
161
- expect(subject).to receive(:unauthenticated_connection).and_return(:object).once
162
- expect(subject.authenticated_connection).to eq(:object)
163
- end
164
- end
165
-
166
- context "with bearer token" do
167
- it "has an authentication header set with a bearer scheme" do
168
- expect(subject.connection.headers["Authorization"]).to eq "Bearer #{subject.token_holder.token.value}"
169
- end
170
- end
171
- end
172
-
173
- describe "database_connection" do
174
- let(:database_id) { "db-id-1234" }
175
-
176
- context "without bearer token" do
177
- let(:scalingo) { scalingo_guest }
178
-
179
- it "raises" do
180
- expect {
181
- subject.database_connection(database_id)
182
- }.to raise_error(Scalingo::Error::Unauthenticated)
183
- end
184
- end
185
-
186
- context "with bearer token" do
187
- it "has an authentication header set with a bearer scheme" do
188
- scalingo.authenticate_database_with_bearer_token(
189
- database_id,
190
- "1234",
191
- expires_at: Time.now + 1.hour,
192
- raise_on_expired_token: false,
193
- )
194
- expect(subject.database_connection(database_id).headers["Authorization"]).to eq "Bearer #{subject.token_holder.database_tokens[database_id].value}"
195
- end
196
- end
197
-
198
- context "with wrong bearer token" do
199
- it "raises" do
200
- database_id_2 = "db-id-5678"
201
- scalingo.authenticate_database_with_bearer_token(
202
- database_id_2,
203
- "1234",
204
- expires_at: Time.now + 1.hour,
205
- raise_on_expired_token: false,
206
- )
207
- expect {
208
- subject.database_connection(database_id)
209
- }.to raise_error(Scalingo::Error::Unauthenticated)
210
- end
211
- end
212
- end
213
-
214
- describe "connection" do
215
- context "logged" do
216
- context "no fallback to guest" do
217
- it "calls and return the authenticated_connection" do
218
- expect(subject).to receive(:authenticated_connection).and_return(:conn)
219
- expect(subject.connection).to eq(:conn)
220
- end
221
- end
222
-
223
- context "with fallback to guest" do
224
- it "calls and return the authenticated_connection" do
225
- expect(subject).to receive(:authenticated_connection).and_return(:conn)
226
- expect(subject.connection(fallback_to_guest: true)).to eq(:conn)
227
- end
228
- end
229
- end
230
-
231
- context "not logged" do
232
- let(:scalingo) { scalingo_guest }
233
-
234
- context "no fallback to guest" do
235
- it "raises when set to raise" do
236
- expect(scalingo.config).to receive(:raise_on_missing_authentication).and_return(true).once
237
-
238
- expect { subject.connection }.to raise_error(Scalingo::Error::Unauthenticated)
239
- end
240
-
241
- it "calls and return the unauthenticated_connection when set not to raise" do
242
- expect(scalingo.config).to receive(:raise_on_missing_authentication).and_return(false).once
243
- expect(subject).to receive(:unauthenticated_connection).and_return(:conn)
244
- expect(subject.connection(fallback_to_guest: true)).to eq(:conn)
245
- end
246
- end
247
-
248
- context "with fallback to guest" do
249
- it "calls and return the unauthenticated_connection" do
250
- expect(subject).to receive(:unauthenticated_connection).and_return(:conn)
251
- expect(subject.connection(fallback_to_guest: true)).to eq(:conn)
252
- end
253
- end
254
- end
255
- end
256
- end
@@ -1,45 +0,0 @@
1
- require "spec_helper"
2
-
3
- RSpec.describe Scalingo::API::Endpoint do
4
- let(:client) { double }
5
-
6
- subject { described_class.new(client) }
7
-
8
- describe "initialize" do
9
- it "stores the client" do
10
- instance = described_class.new(:client)
11
-
12
- expect(instance.client).to eq(:client)
13
- end
14
- end
15
-
16
- describe "connection" do
17
- it "delegates the connection to the client" do
18
- expect(client).to receive(:connection).and_return(:value).once
19
- expect(subject.connection).to eq :value
20
- end
21
- end
22
-
23
- describe "unpack" do
24
- it "forwards unpack to Response without keys" do
25
- mock = proc { 1 }
26
-
27
- expect(Scalingo::API::Response).to receive(:unpack).with(client, keys: [], &mock).and_return(:d).once
28
- expect(subject.send(:unpack, &mock)).to eq :d
29
- end
30
-
31
- it "forwards unpack to Response with a single key" do
32
- mock = proc { 1 }
33
-
34
- expect(Scalingo::API::Response).to receive(:unpack).with(client, keys: [:a], &mock).and_return(:d).once
35
- expect(subject.send(:unpack, :a, &mock)).to eq :d
36
- end
37
-
38
- it "forwards unpack to Response with many keys" do
39
- mock = proc { 1 }
40
-
41
- expect(Scalingo::API::Response).to receive(:unpack).with(client, keys: [:a, :b], &mock).and_return(:d).once
42
- expect(subject.send(:unpack, :a, :b, &mock)).to eq :d
43
- end
44
- end
45
- end