expressa 2.0.15 → 2.0.16

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.
Files changed (206) hide show
  1. package/.circleci/config.yml +21 -21
  2. package/.eslintrc.json +29 -29
  3. package/LICENSE +21 -21
  4. package/README.md +137 -137
  5. package/auth/index.js +76 -76
  6. package/auth/jwt.js +31 -31
  7. package/controllers/collections.js +258 -258
  8. package/controllers/install.js +105 -105
  9. package/controllers/status.js +43 -43
  10. package/controllers/users.js +52 -52
  11. package/cypress/fixtures/example.json +4 -4
  12. package/cypress/integration/0_install_spec.js +8 -8
  13. package/cypress/integration/custom_collections.js +28 -28
  14. package/cypress/integration/home.js +9 -9
  15. package/cypress/integration/settings.js +34 -34
  16. package/cypress/integration/users.js +61 -61
  17. package/cypress/plugins/index.js +17 -17
  18. package/cypress/support/commands.js +54 -54
  19. package/cypress/support/index.js +20 -20
  20. package/cypress/support/util.js +10 -10
  21. package/cypress.json +4 -4
  22. package/db/cached.js +40 -40
  23. package/db/file.js +112 -112
  24. package/db/memory.js +79 -79
  25. package/db/mongo.js +86 -86
  26. package/db/postgres.js +93 -93
  27. package/doc/authentication.md +38 -38
  28. package/doc/automatic-fields.md +12 -12
  29. package/doc/blogexample.md +16 -16
  30. package/doc/custom-endpoints.md +20 -20
  31. package/doc/database.md +23 -23
  32. package/doc/development.md +33 -33
  33. package/doc/listeners.md +103 -103
  34. package/doc/modules.md +8 -8
  35. package/doc/permissions.md +14 -14
  36. package/doc/relationships.md +65 -65
  37. package/doc/testing.md +47 -47
  38. package/doc/uploading-files.md +53 -53
  39. package/index.js +297 -297
  40. package/listeners.js +65 -65
  41. package/listeners_collection_permissions.js +29 -29
  42. package/listeners_users.js +96 -96
  43. package/listeners_validation.js +43 -43
  44. package/middleware/logging.js +30 -30
  45. package/middleware/permissions.js +41 -41
  46. package/modules/access_keys/access_keys.js +32 -32
  47. package/modules/admin/.babelrc +12 -12
  48. package/modules/admin/.editorconfig +14 -14
  49. package/modules/admin/.eslintignore +5 -5
  50. package/modules/admin/.eslintrc.js +197 -197
  51. package/modules/admin/.postcssrc.js +10 -10
  52. package/modules/admin/.travis.yml +5 -5
  53. package/modules/admin/LICENSE +21 -21
  54. package/modules/admin/README.md +88 -88
  55. package/modules/admin/build/build.js +45 -45
  56. package/modules/admin/build/check-versions.js +64 -64
  57. package/modules/admin/build/utils.js +108 -108
  58. package/modules/admin/build/vue-loader.conf.js +5 -5
  59. package/modules/admin/build/webpack.base.conf.js +108 -108
  60. package/modules/admin/build/webpack.dev.conf.js +95 -95
  61. package/modules/admin/build/webpack.prod.conf.js +171 -171
  62. package/modules/admin/config/dev.env.js +8 -8
  63. package/modules/admin/config/index.js +86 -86
  64. package/modules/admin/config/prod.env.js +5 -5
  65. package/modules/admin/index.html +16 -16
  66. package/modules/admin/package.json +98 -98
  67. package/modules/admin/src/App.vue +11 -11
  68. package/modules/admin/src/api/login.js +26 -26
  69. package/modules/admin/src/api/table.js +9 -9
  70. package/modules/admin/src/components/Breadcrumb/index.vue +79 -79
  71. package/modules/admin/src/components/Hamburger/index.vue +62 -62
  72. package/modules/admin/src/components/JSONEditor.vue +180 -180
  73. package/modules/admin/src/components/SvgIcon/index.vue +43 -43
  74. package/modules/admin/src/icons/index.js +9 -9
  75. package/modules/admin/src/icons/svgo.yml +22 -22
  76. package/modules/admin/src/permission.js +49 -49
  77. package/modules/admin/src/router/index.js +200 -200
  78. package/modules/admin/src/store/getters.js +11 -11
  79. package/modules/admin/src/store/index.js +17 -17
  80. package/modules/admin/src/store/modules/app.js +43 -43
  81. package/modules/admin/src/store/modules/user.js +104 -104
  82. package/modules/admin/src/styles/element-ui.scss +29 -29
  83. package/modules/admin/src/styles/index.scss +78 -78
  84. package/modules/admin/src/styles/mixin.scss +27 -27
  85. package/modules/admin/src/styles/sidebar.scss +133 -133
  86. package/modules/admin/src/styles/transition.scss +46 -46
  87. package/modules/admin/src/styles/variables.scss +4 -4
  88. package/modules/admin/src/utils/auth.js +15 -15
  89. package/modules/admin/src/utils/index.js +74 -74
  90. package/modules/admin/src/utils/request.js +48 -48
  91. package/modules/admin/src/utils/validate.js +31 -31
  92. package/modules/admin/src/views/404.vue +235 -235
  93. package/modules/admin/src/views/Dev.vue +33 -33
  94. package/modules/admin/src/views/EditDocument.vue +116 -116
  95. package/modules/admin/src/views/Endpoints.vue +279 -279
  96. package/modules/admin/src/views/Home.vue +84 -84
  97. package/modules/admin/src/views/Install.vue +79 -79
  98. package/modules/admin/src/views/ListDocuments.vue +72 -72
  99. package/modules/admin/src/views/ListDocuments2.vue +462 -462
  100. package/modules/admin/src/views/ManageListeners.vue +67 -67
  101. package/modules/admin/src/views/ManageMiddleware.vue +43 -43
  102. package/modules/admin/src/views/ManagePermissions.vue +75 -75
  103. package/modules/admin/src/views/ViewRequest.vue +77 -77
  104. package/modules/admin/src/views/form/index.vue +91 -91
  105. package/modules/admin/src/views/layout/Layout.vue +69 -69
  106. package/modules/admin/src/views/layout/components/AppMain.vue +41 -41
  107. package/modules/admin/src/views/layout/components/Navbar.vue +97 -97
  108. package/modules/admin/src/views/layout/components/Sidebar/Item.vue +29 -29
  109. package/modules/admin/src/views/layout/components/Sidebar/Link.vue +39 -39
  110. package/modules/admin/src/views/layout/components/Sidebar/SidebarItem.vue +103 -103
  111. package/modules/admin/src/views/layout/components/Sidebar/index.vue +62 -62
  112. package/modules/admin/src/views/layout/components/index.js +3 -3
  113. package/modules/admin/src/views/layout/mixin/ResizeHandler.js +41 -41
  114. package/modules/admin/src/views/login/index.vue +195 -195
  115. package/modules/admin/src/views/tree/index.vue +77 -77
  116. package/modules/collections/collections.js +39 -39
  117. package/modules/core/core.js +197 -197
  118. package/modules/logging/logging.js +88 -88
  119. package/modules/permissions/permissions.js +106 -106
  120. package/package.json +59 -59
  121. package/scripts/expressa +12 -12
  122. package/scripts/run_cypress_tests.sh +5 -5
  123. package/scripts/run_db_tests.sh +8 -8
  124. package/test/0-install.js +96 -96
  125. package/test/collections.js +431 -423
  126. package/test/collections.querying.js +289 -269
  127. package/test/db.js +258 -250
  128. package/test/db.strings.js +73 -73
  129. package/test/db.updating.js +144 -144
  130. package/test/logging.js +29 -29
  131. package/test/test.js +94 -94
  132. package/test/testserver.js +17 -17
  133. package/test/testutils.js +136 -136
  134. package/test/users.js +425 -425
  135. package/util.js +522 -521
  136. package/modules/admin/dist/favicon.ico +0 -0
  137. package/modules/admin/dist/index.html +0 -1
  138. package/modules/admin/dist/index.html.gz +0 -0
  139. package/modules/admin/dist/static/css/app.9dd57eea.css +0 -1
  140. package/modules/admin/dist/static/css/app.9dd57eea.css.gz +0 -0
  141. package/modules/admin/dist/static/css/chunk-5061.ce0e4bdb.css +0 -1
  142. package/modules/admin/dist/static/css/chunk-5061.ce0e4bdb.css.gz +0 -0
  143. package/modules/admin/dist/static/css/chunk-5b97.7f9cb53e.css +0 -1
  144. package/modules/admin/dist/static/css/chunk-5b97.7f9cb53e.css.gz +0 -0
  145. package/modules/admin/dist/static/css/chunk-621e.b826be8d.css +0 -1
  146. package/modules/admin/dist/static/css/chunk-621e.b826be8d.css.gz +0 -0
  147. package/modules/admin/dist/static/css/chunk-656b.9c828b00.css +0 -1
  148. package/modules/admin/dist/static/css/chunk-656b.9c828b00.css.gz +0 -0
  149. package/modules/admin/dist/static/css/chunk-7291.13514e45.css +0 -0
  150. package/modules/admin/dist/static/css/chunk-7291.13514e45.css.gz +0 -0
  151. package/modules/admin/dist/static/css/chunk-7f29.9c828b00.css +0 -1
  152. package/modules/admin/dist/static/css/chunk-7f29.9c828b00.css.gz +0 -0
  153. package/modules/admin/dist/static/css/chunk-9a95.c647a2ef.css +0 -1
  154. package/modules/admin/dist/static/css/chunk-9a95.c647a2ef.css.gz +0 -0
  155. package/modules/admin/dist/static/css/chunk-b423.5f239333.css +0 -0
  156. package/modules/admin/dist/static/css/chunk-b423.5f239333.css.gz +0 -0
  157. package/modules/admin/dist/static/css/chunk-bd5f.aefa49d7.css +0 -1
  158. package/modules/admin/dist/static/css/chunk-bd5f.aefa49d7.css.gz +0 -0
  159. package/modules/admin/dist/static/css/chunk-e374.025d58bb.css +0 -1
  160. package/modules/admin/dist/static/css/chunk-e374.025d58bb.css.gz +0 -0
  161. package/modules/admin/dist/static/css/chunk-elementUI.3d004d9f.css +0 -1
  162. package/modules/admin/dist/static/css/chunk-elementUI.3d004d9f.css.gz +0 -0
  163. package/modules/admin/dist/static/css/chunk-f075.3a895a1e.css +0 -1
  164. package/modules/admin/dist/static/css/chunk-f075.3a895a1e.css.gz +0 -0
  165. package/modules/admin/dist/static/css/chunk-libs.327ad89e.css +0 -14
  166. package/modules/admin/dist/static/css/chunk-libs.327ad89e.css.gz +0 -0
  167. package/modules/admin/dist/static/fonts/element-icons.6f0a763.ttf +0 -0
  168. package/modules/admin/dist/static/img/404.a57b6f3.png +0 -0
  169. package/modules/admin/dist/static/js/app.e9461593.js +0 -1
  170. package/modules/admin/dist/static/js/app.e9461593.js.gz +0 -0
  171. package/modules/admin/dist/static/js/chunk-09d8.561880e0.js +0 -2
  172. package/modules/admin/dist/static/js/chunk-09d8.561880e0.js.LICENSE.txt +0 -13
  173. package/modules/admin/dist/static/js/chunk-09d8.561880e0.js.LICENSE.txt.gz +0 -0
  174. package/modules/admin/dist/static/js/chunk-09d8.561880e0.js.gz +0 -0
  175. package/modules/admin/dist/static/js/chunk-5061.83e6ccfa.js +0 -1
  176. package/modules/admin/dist/static/js/chunk-5061.83e6ccfa.js.gz +0 -0
  177. package/modules/admin/dist/static/js/chunk-5b97.ac360086.js +0 -1
  178. package/modules/admin/dist/static/js/chunk-5b97.ac360086.js.gz +0 -0
  179. package/modules/admin/dist/static/js/chunk-5e17.a2b69611.js +0 -1
  180. package/modules/admin/dist/static/js/chunk-5e17.a2b69611.js.gz +0 -0
  181. package/modules/admin/dist/static/js/chunk-621e.ccf42393.js +0 -1
  182. package/modules/admin/dist/static/js/chunk-621e.ccf42393.js.gz +0 -0
  183. package/modules/admin/dist/static/js/chunk-656b.9d5b03c0.js +0 -1
  184. package/modules/admin/dist/static/js/chunk-656b.9d5b03c0.js.gz +0 -0
  185. package/modules/admin/dist/static/js/chunk-7291.590524e9.js +0 -1
  186. package/modules/admin/dist/static/js/chunk-7291.590524e9.js.gz +0 -0
  187. package/modules/admin/dist/static/js/chunk-7f29.6ffc142e.js +0 -1
  188. package/modules/admin/dist/static/js/chunk-7f29.6ffc142e.js.gz +0 -0
  189. package/modules/admin/dist/static/js/chunk-9a95.bdd76583.js +0 -1
  190. package/modules/admin/dist/static/js/chunk-9a95.bdd76583.js.gz +0 -0
  191. package/modules/admin/dist/static/js/chunk-b423.387c504c.js +0 -1
  192. package/modules/admin/dist/static/js/chunk-b423.387c504c.js.gz +0 -0
  193. package/modules/admin/dist/static/js/chunk-bd5f.e9509f10.js +0 -1
  194. package/modules/admin/dist/static/js/chunk-bd5f.e9509f10.js.gz +0 -0
  195. package/modules/admin/dist/static/js/chunk-e374.7c87a0dd.js +0 -1
  196. package/modules/admin/dist/static/js/chunk-e374.7c87a0dd.js.gz +0 -0
  197. package/modules/admin/dist/static/js/chunk-e7c3.e5df8ceb.js +0 -1
  198. package/modules/admin/dist/static/js/chunk-e7c3.e5df8ceb.js.gz +0 -0
  199. package/modules/admin/dist/static/js/chunk-elementUI.b0c99c08.js +0 -1
  200. package/modules/admin/dist/static/js/chunk-elementUI.b0c99c08.js.gz +0 -0
  201. package/modules/admin/dist/static/js/chunk-f075.315ceec1.js +0 -1
  202. package/modules/admin/dist/static/js/chunk-f075.315ceec1.js.gz +0 -0
  203. package/modules/admin/dist/static/js/chunk-libs.06c38828.js +0 -2
  204. package/modules/admin/dist/static/js/chunk-libs.06c38828.js.LICENSE.txt +0 -126
  205. package/modules/admin/dist/static/js/chunk-libs.06c38828.js.LICENSE.txt.gz +0 -0
  206. package/modules/admin/dist/static/js/chunk-libs.06c38828.js.gz +0 -0
@@ -1,423 +1,431 @@
1
- const request = require('supertest')
2
- const chai = require('chai')
3
- const expect = chai.expect
4
- const testutils = require('./testutils')
5
- const { app, api } = testutils
6
-
7
- describe('basic collections', function () {
8
- it('insert collection', async function() {
9
- const testdocColl = {
10
- _id: 'testdoc',
11
- schema: {
12
- type: 'object',
13
- additionalProperties: false,
14
- properties: {
15
- _id: {
16
- type: 'string'
17
- },
18
- arr: {
19
- type: 'array',
20
- items: {
21
- type: 'string'
22
- }
23
- },
24
- title: {
25
- type: 'string'
26
- },
27
- data: {
28
- type: 'object',
29
- additionalProperties: true,
30
- properties: {}
31
- },
32
- meta: {
33
- type: 'object',
34
- propertyOrder: 2000,
35
- properties: {
36
- created: {
37
- type: 'string'
38
- },
39
- updated: {
40
- type: 'string'
41
- }
42
- }
43
- }
44
- },
45
- required: [
46
- 'title'
47
- ]
48
- },
49
- admin: { columns: ['_id', 'title'] },
50
- storage: 'memory',
51
- documentsHaveOwners: true,
52
- }
53
-
54
- const token = await testutils.getUserWithPermissions(api, 'collection: create')
55
- const res = await request(app)
56
- .post('/collection')
57
- .set('x-access-token', token)
58
- .send(testdocColl)
59
- .expect(200)
60
- expect(res.body.status).to.equal('OK')
61
- })
62
-
63
- it('create without id', async function () {
64
- const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
65
- const res = await request(app)
66
- .post('/testdoc')
67
- .set('x-access-token', token)
68
- .send({
69
- title: 'doc1'
70
- })
71
- .expect(200)
72
- expect(res.body.status).to.equal('OK')
73
- })
74
-
75
- it('create with a specific id', async function () {
76
- const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
77
- await request(app)
78
- .post('/testdoc')
79
- .set('x-access-token', token)
80
- .send({
81
- _id: 'test123',
82
- title: 'doc1'
83
- })
84
- .expect(200)
85
- .expect({
86
- id: 'test123',
87
- status: 'OK'
88
- })
89
-
90
- const owner = (await api.db.testdoc.get('test123')).meta.owner
91
- expect(owner).to.not.be.undefined
92
- })
93
-
94
- it('fail to create without permission', async function () {
95
- await request(app)
96
- .post('/testdoc')
97
- .send({
98
- title: 'doc1'
99
- })
100
- .expect({
101
- error: 'You do not have permission to perform this action.'
102
- })
103
- .expect(401)
104
- })
105
-
106
- it('fail to create with invalid field', async function () {
107
- const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
108
- await request(app)
109
- .post('/testdoc')
110
- .set('x-access-token', token)
111
- .send({
112
- title: 'doc1',
113
- bad: 'test'
114
- })
115
- .expect(400)
116
- })
117
-
118
- it('fail to create with missing required field', async function () {
119
- const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
120
- await request(app)
121
- .post('/testdoc')
122
- .set('x-access-token', token)
123
- .send({})
124
- .expect(400)
125
- })
126
-
127
- it('fail to read a schema without permission', async function () {
128
- const token = await testutils.getUserWithPermissions(api, 'blah')
129
- await request(app)
130
- .get('/testdoc/schema')
131
- .set('x-access-token', token)
132
- .expect(401)
133
- })
134
-
135
- it('read a schema', async function () {
136
- const token = await testutils.getUserWithPermissions(api, 'schemas: view')
137
- const res = await request(app)
138
- .get('/testdoc/schema')
139
- .set('x-access-token', token)
140
- .expect(200)
141
- expect(res.body.type).to.equal('object')
142
- expect(res.body).to.have.property('properties')
143
- expect(res.body.properties.meta.properties).to.have.property('created')
144
-
145
- const token2 = await testutils.getUserWithPermissions(api, ['testdoc: view', 'collection: view relevant'])
146
- await request(app)
147
- .get('/collection/testdoc')
148
- .set('x-access-token', token2)
149
- .expect(200)
150
- })
151
-
152
- it('fail to read a specific doc without permission', async function () {
153
- const token = await testutils.getUserWithPermissions(api)
154
- await request(app)
155
- .get('/testdoc/test123')
156
- .set('x-access-token', token)
157
- .expect(401)
158
- })
159
-
160
- it('fail to read paged without permission', async function () {
161
- const token = await testutils.getUserWithPermissions(api)
162
- await request(app)
163
- .get('/testdoc/?page=1')
164
- .set('x-access-token', token)
165
- .expect(401)
166
- })
167
-
168
- it('read a specific doc', async function () {
169
- const token = await testutils.getUserWithPermissions(api, 'testdoc: view')
170
- const res = await request(app)
171
- .get('/testdoc/test123')
172
- .set('x-access-token', token)
173
- .expect(200)
174
- expect(res.body._id).to.equal('test123')
175
- expect(res.body.title).to.equal('doc1')
176
- })
177
-
178
- it('fail to read without permission', async function () {
179
- await request(app)
180
- .get('/testdoc/test123')
181
- .expect({
182
- error: 'You do not have permission to perform this action.'
183
- })
184
- .expect(401)
185
- })
186
-
187
- it('caching is configurable for each collection', async function () {
188
- const token = await testutils.getUserWithPermissions(api, ['testdoc: view', 'collection: edit'])
189
- const res = await request(app)
190
- .get('/testdoc/test123')
191
- .set('x-access-token', token)
192
- .expect(200)
193
- expect(res.headers['cache-control']).to.equal('no-cache, no-store, must-revalidate')
194
-
195
- await request(app)
196
- .post('/collection/testdoc/update')
197
- .set('x-access-token', token)
198
- .send({ $set: { allowHTTPCaching: true }})
199
- .expect(200)
200
-
201
- const res2 = await request(app)
202
- .get('/testdoc/test123')
203
- .set('x-access-token', token)
204
- .expect(200)
205
- expect(res2.headers).to.not.have.property('cache-control')
206
-
207
- await request(app)
208
- .post('/collection/testdoc/update')
209
- .set('x-access-token', token)
210
- .send({ $unset: { allowHTTPCaching: 1 }})
211
- .expect(200)
212
- })
213
-
214
- it('edit a document adding new field', async function () {
215
- const updatedDoc = {
216
- title: 'doc1-updated',
217
- new_field: 'cool'
218
- }
219
- const token = await testutils.getUserWithPermissions(api, ['testdoc: edit', 'collection: view', 'collection: edit', 'collection: delete', 'collection: create'])
220
- await request(app)
221
- .put('/testdoc/test123')
222
- .set('x-access-token', token)
223
- .send(updatedDoc)
224
- .expect(400)
225
-
226
- const { body } = await request(app)
227
- .get('/collection/testdoc')
228
- .set('x-access-token', token)
229
- .expect(200)
230
- body.schema.properties.new_field = { type: 'string' }
231
-
232
- // Add new_field to schema
233
- await request(app)
234
- .put('/collection/testdoc')
235
- .set('x-access-token', token)
236
- .send(testutils.clone(body))
237
- .expect(200)
238
-
239
- // The new doc should now be considered valid
240
- await request(app)
241
- .put('/testdoc/test123')
242
- .set('x-access-token', token)
243
- .send(updatedDoc)
244
- .expect(200)
245
-
246
- delete body.schema.properties.new_field
247
-
248
- // Delete the collection
249
- await request(app)
250
- .delete('/collection/testdoc')
251
- .set('x-access-token', token)
252
-
253
- // Should get 404 when inserting
254
- await request(app)
255
- .put('/testdoc/test123')
256
- .set('x-access-token', token)
257
- .send(updatedDoc)
258
- .expect(404)
259
-
260
- // Restore old schema
261
- await request(app)
262
- .post('/collection')
263
- .set('x-access-token', token)
264
- .send(testutils.clone(body))
265
- .expect(200)
266
- })
267
-
268
- it('edit a document', async function () {
269
- const token = await testutils.getUserWithPermissions(api, 'testdoc: edit')
270
- await request(app)
271
- .put('/testdoc/test123')
272
- .set('x-access-token', token)
273
- .send({
274
- title: 'doc1-updated',
275
- data: {
276
- field: 'value'
277
- }
278
- })
279
- .expect(200)
280
- .expect({
281
- id: 'test123',
282
- status: 'OK'
283
- })
284
-
285
- const owner = (await api.db.testdoc.get('test123')).meta.owner
286
- expect(owner).to.not.be.undefined
287
- })
288
-
289
- it('update document by id', async function () {
290
- const token = await testutils.getUserWithPermissions(api, 'testdoc: edit')
291
- const res = await request(app)
292
- .post('/testdoc/test123/update')
293
- .set('x-access-token', token)
294
- .send({
295
- $set: {
296
- title: 'cool'
297
- },
298
- $unset: {
299
- data: 1
300
- }
301
- })
302
- .expect(200)
303
- expect(res.body.title).to.equal('cool')
304
- expect(res.body.data).to.equal(undefined)
305
-
306
- const owner = (await api.db.testdoc.get('test123')).meta.owner
307
- expect(owner).to.not.be.undefined
308
- })
309
-
310
- it('fail to edit a document without permission', async function () {
311
- await request(app)
312
- .put('/testdoc/test123')
313
- .send({
314
- title: 'doc1-updated',
315
- data: {
316
- field: 'value'
317
- }
318
- })
319
- .expect(401)
320
- })
321
-
322
- it('fail to delete a document without permission', async function () {
323
- await request(app)
324
- .delete('/testdoc/test123')
325
- .expect(401)
326
- })
327
-
328
- it('delete a document', async function () {
329
- const token = await testutils.getUserWithPermissions(api, 'testdoc: delete')
330
- await request(app)
331
- .delete('/testdoc/test123')
332
- .set('x-access-token', token)
333
- .expect(200)
334
- .expect({
335
- status: 'OK'
336
- })
337
- })
338
-
339
- it('delete a document with own permission', async function () {
340
- const token = await testutils.getUserWithPermissions(api, ['testdoc: edit', 'testdoc: delete own'])
341
-
342
- const updatedDoc = {
343
- title: 'doc1-updated',
344
- }
345
- await request(app)
346
- .put('/testdoc/test123')
347
- .set('x-access-token', token)
348
- .send(updatedDoc)
349
- .expect(200)
350
-
351
- await request(app)
352
- .delete('/testdoc/test123')
353
- .set('x-access-token', token)
354
- .expect(200)
355
- .expect({
356
- status: 'OK'
357
- })
358
- })
359
-
360
- it('fail to delete a non-existent document', async function () {
361
- const token = await testutils.getUserWithPermissions(api, 'testdoc: delete')
362
- await request(app)
363
- .delete('/testdoc/test123')
364
- .set('x-access-token', token)
365
- .expect(404)
366
- .expect({
367
- error: 'document not found'
368
- })
369
- })
370
-
371
- it('creating new collection updates Admin role', async function () {
372
- const token = await testutils.getUserWithPermissions(api, ['collection: create', 'collection: delete'])
373
- await request(app)
374
- .post('/collection')
375
- .set('x-access-token', token)
376
- .send({
377
- _id: 'newcoll',
378
- storage: 'memory',
379
- documentsHaveOwners: false,
380
- schema: {}
381
- })
382
- .expect(200)
383
-
384
- let admin = await api.db.role.get('Admin')
385
- expect(admin.permissions).to.have.property('newcoll: create')
386
- expect(admin.permissions).to.not.have.property('newcoll: edit own')
387
-
388
- await request(app)
389
- .delete('/collection/newcoll')
390
- .set('x-access-token', token)
391
- .expect(200)
392
-
393
- admin = await api.db.role.get('Admin')
394
- expect(admin.permissions).to.not.have.property('newcoll: create')
395
- })
396
-
397
- it('creating new collection updates Admin role (with owners)', async function () {
398
- const token = await testutils.getUserWithPermissions(api, ['collection: create', 'collection: delete'])
399
- await request(app)
400
- .post('/collection')
401
- .set('x-access-token', token)
402
- .send({
403
- _id: 'newcoll',
404
- storage: 'memory',
405
- documentsHaveOwners: true,
406
- schema: {}
407
- })
408
- .expect(200)
409
-
410
- let admin = await api.db.role.get('Admin')
411
- expect(admin.permissions).to.have.property('newcoll: create')
412
- expect(admin.permissions).to.have.property('newcoll: edit own')
413
-
414
- await request(app)
415
- .delete('/collection/newcoll')
416
- .set('x-access-token', token)
417
- .expect(200)
418
-
419
- admin = await api.db.role.get('Admin')
420
- expect(admin.permissions).to.not.have.property('newcoll: create')
421
- expect(admin.permissions).to.not.have.property('newcoll: edit own')
422
- })
423
- })
1
+ const request = require('supertest')
2
+ const chai = require('chai')
3
+ const expect = chai.expect
4
+ const testutils = require('./testutils')
5
+ const { app, api } = testutils
6
+
7
+ describe('basic collections', function () {
8
+ it('insert collection', async function() {
9
+ const testdocColl = {
10
+ _id: 'testdoc',
11
+ schema: {
12
+ type: 'object',
13
+ additionalProperties: false,
14
+ properties: {
15
+ _id: {
16
+ type: 'string'
17
+ },
18
+ arr: {
19
+ type: 'array',
20
+ items: {
21
+ type: 'string'
22
+ }
23
+ },
24
+ title: {
25
+ type: 'string'
26
+ },
27
+ data: {
28
+ type: 'object',
29
+ additionalProperties: true,
30
+ properties: {}
31
+ },
32
+ meta: {
33
+ type: 'object',
34
+ propertyOrder: 2000,
35
+ properties: {
36
+ created: {
37
+ type: 'string'
38
+ },
39
+ updated: {
40
+ type: 'string'
41
+ }
42
+ }
43
+ }
44
+ },
45
+ required: [
46
+ 'title'
47
+ ]
48
+ },
49
+ admin: { columns: ['_id', 'title'] },
50
+ storage: 'memory',
51
+ documentsHaveOwners: true,
52
+ }
53
+
54
+ const token = await testutils.getUserWithPermissions(api, 'collection: create')
55
+ const res = await request(app)
56
+ .post('/collection')
57
+ .set('x-access-token', token)
58
+ .send(testdocColl)
59
+ .expect(200)
60
+ expect(res.body.status).to.equal('OK')
61
+ })
62
+
63
+ it('create without id', async function () {
64
+ const token = await testutils.getUserWithPermissions(api, ['testdoc: create', 'testdoc: delete'])
65
+ const res = await request(app)
66
+ .post('/testdoc')
67
+ .set('x-access-token', token)
68
+ .send({
69
+ title: 'doc1'
70
+ })
71
+ .expect(200)
72
+ expect(res.body.status).to.equal('OK')
73
+
74
+ await request(app)
75
+ .delete('/testdoc/' + res.body.id)
76
+ .set('x-access-token', token)
77
+ .expect(200)
78
+ .expect({
79
+ status: 'OK'
80
+ })
81
+ })
82
+
83
+ it('create with a specific id', async function () {
84
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
85
+ await request(app)
86
+ .post('/testdoc')
87
+ .set('x-access-token', token)
88
+ .send({
89
+ _id: 'test123',
90
+ title: 'doc1'
91
+ })
92
+ .expect(200)
93
+ .expect({
94
+ id: 'test123',
95
+ status: 'OK'
96
+ })
97
+
98
+ const owner = (await api.db.testdoc.get('test123')).meta.owner
99
+ expect(owner).to.not.be.undefined
100
+ })
101
+
102
+ it('fail to create without permission', async function () {
103
+ await request(app)
104
+ .post('/testdoc')
105
+ .send({
106
+ title: 'doc1'
107
+ })
108
+ .expect({
109
+ error: 'You do not have permission to perform this action.'
110
+ })
111
+ .expect(401)
112
+ })
113
+
114
+ it('fail to create with invalid field', async function () {
115
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
116
+ await request(app)
117
+ .post('/testdoc')
118
+ .set('x-access-token', token)
119
+ .send({
120
+ title: 'doc1',
121
+ bad: 'test'
122
+ })
123
+ .expect(400)
124
+ })
125
+
126
+ it('fail to create with missing required field', async function () {
127
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: create')
128
+ await request(app)
129
+ .post('/testdoc')
130
+ .set('x-access-token', token)
131
+ .send({})
132
+ .expect(400)
133
+ })
134
+
135
+ it('fail to read a schema without permission', async function () {
136
+ const token = await testutils.getUserWithPermissions(api, 'blah')
137
+ await request(app)
138
+ .get('/testdoc/schema')
139
+ .set('x-access-token', token)
140
+ .expect(401)
141
+ })
142
+
143
+ it('read a schema', async function () {
144
+ const token = await testutils.getUserWithPermissions(api, 'schemas: view')
145
+ const res = await request(app)
146
+ .get('/testdoc/schema')
147
+ .set('x-access-token', token)
148
+ .expect(200)
149
+ expect(res.body.type).to.equal('object')
150
+ expect(res.body).to.have.property('properties')
151
+ expect(res.body.properties.meta.properties).to.have.property('created')
152
+
153
+ const token2 = await testutils.getUserWithPermissions(api, ['testdoc: view', 'collection: view relevant'])
154
+ await request(app)
155
+ .get('/collection/testdoc')
156
+ .set('x-access-token', token2)
157
+ .expect(200)
158
+ })
159
+
160
+ it('fail to read a specific doc without permission', async function () {
161
+ const token = await testutils.getUserWithPermissions(api)
162
+ await request(app)
163
+ .get('/testdoc/test123')
164
+ .set('x-access-token', token)
165
+ .expect(401)
166
+ })
167
+
168
+ it('fail to read paged without permission', async function () {
169
+ const token = await testutils.getUserWithPermissions(api)
170
+ await request(app)
171
+ .get('/testdoc/?page=1')
172
+ .set('x-access-token', token)
173
+ .expect(401)
174
+ })
175
+
176
+ it('read a specific doc', async function () {
177
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: view')
178
+ const res = await request(app)
179
+ .get('/testdoc/test123')
180
+ .set('x-access-token', token)
181
+ .expect(200)
182
+ expect(res.body._id).to.equal('test123')
183
+ expect(res.body.title).to.equal('doc1')
184
+ })
185
+
186
+ it('fail to read without permission', async function () {
187
+ await request(app)
188
+ .get('/testdoc/test123')
189
+ .expect({
190
+ error: 'You do not have permission to perform this action.'
191
+ })
192
+ .expect(401)
193
+ })
194
+
195
+ it('caching is configurable for each collection', async function () {
196
+ const token = await testutils.getUserWithPermissions(api, ['testdoc: view', 'collection: edit'])
197
+ const res = await request(app)
198
+ .get('/testdoc/test123')
199
+ .set('x-access-token', token)
200
+ .expect(200)
201
+ expect(res.headers['cache-control']).to.equal('no-cache, no-store, must-revalidate')
202
+
203
+ await request(app)
204
+ .post('/collection/testdoc/update')
205
+ .set('x-access-token', token)
206
+ .send({ $set: { allowHTTPCaching: true }})
207
+ .expect(200)
208
+
209
+ const res2 = await request(app)
210
+ .get('/testdoc/test123')
211
+ .set('x-access-token', token)
212
+ .expect(200)
213
+ expect(res2.headers).to.not.have.property('cache-control')
214
+
215
+ await request(app)
216
+ .post('/collection/testdoc/update')
217
+ .set('x-access-token', token)
218
+ .send({ $unset: { allowHTTPCaching: 1 }})
219
+ .expect(200)
220
+ })
221
+
222
+ it('edit a document adding new field', async function () {
223
+ const updatedDoc = {
224
+ title: 'doc1-updated',
225
+ new_field: 'cool'
226
+ }
227
+ const token = await testutils.getUserWithPermissions(api, ['testdoc: edit', 'collection: view', 'collection: edit', 'collection: delete', 'collection: create'])
228
+ await request(app)
229
+ .put('/testdoc/test123')
230
+ .set('x-access-token', token)
231
+ .send(updatedDoc)
232
+ .expect(400)
233
+
234
+ const { body } = await request(app)
235
+ .get('/collection/testdoc')
236
+ .set('x-access-token', token)
237
+ .expect(200)
238
+ body.schema.properties.new_field = { type: 'string' }
239
+
240
+ // Add new_field to schema
241
+ await request(app)
242
+ .put('/collection/testdoc')
243
+ .set('x-access-token', token)
244
+ .send(testutils.clone(body))
245
+ .expect(200)
246
+
247
+ // The new doc should now be considered valid
248
+ await request(app)
249
+ .put('/testdoc/test123')
250
+ .set('x-access-token', token)
251
+ .send(updatedDoc)
252
+ .expect(200)
253
+
254
+ delete body.schema.properties.new_field
255
+
256
+ // Delete the collection
257
+ await request(app)
258
+ .delete('/collection/testdoc')
259
+ .set('x-access-token', token)
260
+
261
+ // Should get 404 when inserting
262
+ await request(app)
263
+ .put('/testdoc/test123')
264
+ .set('x-access-token', token)
265
+ .send(updatedDoc)
266
+ .expect(404)
267
+
268
+ // Restore old schema
269
+ await request(app)
270
+ .post('/collection')
271
+ .set('x-access-token', token)
272
+ .send(testutils.clone(body))
273
+ .expect(200)
274
+ })
275
+
276
+ it('edit a document', async function () {
277
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: edit')
278
+ await request(app)
279
+ .put('/testdoc/test123')
280
+ .set('x-access-token', token)
281
+ .send({
282
+ title: 'doc1-updated',
283
+ data: {
284
+ field: 'value'
285
+ }
286
+ })
287
+ .expect(200)
288
+ .expect({
289
+ id: 'test123',
290
+ status: 'OK'
291
+ })
292
+
293
+ const owner = (await api.db.testdoc.get('test123')).meta.owner
294
+ expect(owner).to.not.be.undefined
295
+ })
296
+
297
+ it('update document by id', async function () {
298
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: edit')
299
+ const res = await request(app)
300
+ .post('/testdoc/test123/update')
301
+ .set('x-access-token', token)
302
+ .send({
303
+ $set: {
304
+ title: 'cool'
305
+ },
306
+ $unset: {
307
+ data: 1
308
+ }
309
+ })
310
+ .expect(200)
311
+ expect(res.body.title).to.equal('cool')
312
+ expect(res.body.data).to.equal(undefined)
313
+
314
+ const owner = (await api.db.testdoc.get('test123')).meta.owner
315
+ expect(owner).to.not.be.undefined
316
+ })
317
+
318
+ it('fail to edit a document without permission', async function () {
319
+ await request(app)
320
+ .put('/testdoc/test123')
321
+ .send({
322
+ title: 'doc1-updated',
323
+ data: {
324
+ field: 'value'
325
+ }
326
+ })
327
+ .expect(401)
328
+ })
329
+
330
+ it('fail to delete a document without permission', async function () {
331
+ await request(app)
332
+ .delete('/testdoc/test123')
333
+ .expect(401)
334
+ })
335
+
336
+ it('delete a document', async function () {
337
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: delete')
338
+ await request(app)
339
+ .delete('/testdoc/test123')
340
+ .set('x-access-token', token)
341
+ .expect(200)
342
+ .expect({
343
+ status: 'OK'
344
+ })
345
+ })
346
+
347
+ it('delete a document with own permission', async function () {
348
+ const token = await testutils.getUserWithPermissions(api, ['testdoc: edit', 'testdoc: delete own'])
349
+
350
+ const updatedDoc = {
351
+ title: 'doc1-updated',
352
+ }
353
+ await request(app)
354
+ .put('/testdoc/test123')
355
+ .set('x-access-token', token)
356
+ .send(updatedDoc)
357
+ .expect(200)
358
+
359
+ await request(app)
360
+ .delete('/testdoc/test123')
361
+ .set('x-access-token', token)
362
+ .expect(200)
363
+ .expect({
364
+ status: 'OK'
365
+ })
366
+ })
367
+
368
+ it('fail to delete a non-existent document', async function () {
369
+ const token = await testutils.getUserWithPermissions(api, 'testdoc: delete')
370
+ await request(app)
371
+ .delete('/testdoc/test123')
372
+ .set('x-access-token', token)
373
+ .expect(404)
374
+ .expect({
375
+ error: 'document not found'
376
+ })
377
+ })
378
+
379
+ it('creating new collection updates Admin role', async function () {
380
+ const token = await testutils.getUserWithPermissions(api, ['collection: create', 'collection: delete'])
381
+ await request(app)
382
+ .post('/collection')
383
+ .set('x-access-token', token)
384
+ .send({
385
+ _id: 'newcoll',
386
+ storage: 'memory',
387
+ documentsHaveOwners: false,
388
+ schema: {}
389
+ })
390
+ .expect(200)
391
+
392
+ let admin = await api.db.role.get('Admin')
393
+ expect(admin.permissions).to.have.property('newcoll: create')
394
+ expect(admin.permissions).to.not.have.property('newcoll: edit own')
395
+
396
+ await request(app)
397
+ .delete('/collection/newcoll')
398
+ .set('x-access-token', token)
399
+ .expect(200)
400
+
401
+ admin = await api.db.role.get('Admin')
402
+ expect(admin.permissions).to.not.have.property('newcoll: create')
403
+ })
404
+
405
+ it('creating new collection updates Admin role (with owners)', async function () {
406
+ const token = await testutils.getUserWithPermissions(api, ['collection: create', 'collection: delete'])
407
+ await request(app)
408
+ .post('/collection')
409
+ .set('x-access-token', token)
410
+ .send({
411
+ _id: 'newcoll',
412
+ storage: 'memory',
413
+ documentsHaveOwners: true,
414
+ schema: {}
415
+ })
416
+ .expect(200)
417
+
418
+ let admin = await api.db.role.get('Admin')
419
+ expect(admin.permissions).to.have.property('newcoll: create')
420
+ expect(admin.permissions).to.have.property('newcoll: edit own')
421
+
422
+ await request(app)
423
+ .delete('/collection/newcoll')
424
+ .set('x-access-token', token)
425
+ .expect(200)
426
+
427
+ admin = await api.db.role.get('Admin')
428
+ expect(admin.permissions).to.not.have.property('newcoll: create')
429
+ expect(admin.permissions).to.not.have.property('newcoll: edit own')
430
+ })
431
+ })