-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathldp.test.js
More file actions
409 lines (332 loc) · 11.6 KB
/
ldp.test.js
File metadata and controls
409 lines (332 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/**
* LDP (Linked Data Platform) CRUD tests
*/
import { describe, it, before, after, beforeEach } from 'node:test';
import assert from 'node:assert';
import {
startTestServer,
stopTestServer,
request,
createTestPod,
assertStatus,
assertHeader,
assertHeaderContains
} from './helpers.js';
describe('LDP CRUD Operations', () => {
let baseUrl;
before(async () => {
const result = await startTestServer();
baseUrl = result.baseUrl;
await createTestPod('ldptest');
});
after(async () => {
await stopTestServer();
});
describe('GET', () => {
it('should return 404 for non-existent resource', async () => {
// Must use /public/ path for unauthenticated access
const res = await request('/ldptest/public/nonexistent.json');
assertStatus(res, 404);
});
it('should return container listing for empty container', async () => {
const res = await request('/ldptest/public/');
assertStatus(res, 200);
assertHeaderContains(res, 'Link', 'Container');
});
it('should return resource content', async () => {
// Create resource first (authenticated)
await request('/ldptest/public/test.json', {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ hello: 'world' }),
auth: 'ldptest'
});
const res = await request('/ldptest/public/test.json');
assertStatus(res, 200);
const data = await res.json();
assert.strictEqual(data.hello, 'world');
});
it('should return ETag header', async () => {
await request('/ldptest/public/etag-test.txt', {
method: 'PUT',
body: 'test content',
auth: 'ldptest'
});
const res = await request('/ldptest/public/etag-test.txt');
assertStatus(res, 200);
assertHeader(res, 'ETag');
});
});
describe('HEAD', () => {
it('should return headers without body', async () => {
await request('/ldptest/public/head-test.txt', {
method: 'PUT',
body: 'test content',
auth: 'ldptest'
});
const res = await request('/ldptest/public/head-test.txt', {
method: 'HEAD'
});
assertStatus(res, 200);
assertHeader(res, 'Content-Type');
assertHeader(res, 'ETag');
const body = await res.text();
assert.strictEqual(body, '');
});
it('should return 404 for non-existent', async () => {
const res = await request('/ldptest/public/no-such-file.txt', {
method: 'HEAD'
});
assertStatus(res, 404);
});
});
describe('PUT', () => {
it('should create new resource', async () => {
const res = await request('/ldptest/public/new-resource.json', {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ created: true }),
auth: 'ldptest'
});
assertStatus(res, 201);
assertHeader(res, 'Location');
});
it('should update existing resource', async () => {
// Create
await request('/ldptest/public/update-me.txt', {
method: 'PUT',
body: 'original',
auth: 'ldptest'
});
// Update
const res = await request('/ldptest/public/update-me.txt', {
method: 'PUT',
body: 'updated',
auth: 'ldptest'
});
assertStatus(res, 204);
// Verify
const verify = await request('/ldptest/public/update-me.txt');
const content = await verify.text();
assert.strictEqual(content, 'updated');
});
it('should create parent containers', async () => {
const res = await request('/ldptest/public/nested/deep/file.txt', {
method: 'PUT',
body: 'nested content',
auth: 'ldptest'
});
assertStatus(res, 201);
// Verify parent exists
const parent = await request('/ldptest/public/nested/deep/');
assertStatus(parent, 200);
});
it('should create container with PUT to path ending in slash', async () => {
// Solid spec: PUT to path with trailing / creates container
const res = await request('/ldptest/public/new-container/', {
method: 'PUT',
auth: 'ldptest'
});
assertStatus(res, 201);
// Verify it's a container
const verify = await request('/ldptest/public/new-container/');
assertHeaderContains(verify, 'Link', 'Container');
});
it('should PUT HTML to container with index.html routing to index document', async () => {
// Create container with an index.html inside
await request('/ldptest/public/board/', { method: 'PUT', auth: 'ldptest' });
await request('/ldptest/public/board/index.html', {
method: 'PUT',
headers: { 'Content-Type': 'text/html' },
body: '<html><body>original</body></html>',
auth: 'ldptest'
});
// PUT to container URL with text/html should route to index.html
const res = await request('/ldptest/public/board/', {
method: 'PUT',
headers: { 'Content-Type': 'text/html' },
body: '<html><body>updated</body></html>',
auth: 'ldptest'
});
assertStatus(res, 204);
// Verify index.html was updated
const verify = await request('/ldptest/public/board/index.html');
const content = await verify.text();
assert.ok(content.includes('updated'), 'index.html should contain updated content');
});
it('should still 409 on PUT to container without index.html', async () => {
// Create an empty container
await request('/ldptest/public/empty-dir/', { method: 'PUT', auth: 'ldptest' });
// PUT text/html to container without index.html should still 409
const res = await request('/ldptest/public/empty-dir/', {
method: 'PUT',
headers: { 'Content-Type': 'text/html' },
body: '<html><body>test</body></html>',
auth: 'ldptest'
});
assertStatus(res, 409);
});
});
describe('POST', () => {
it('should create resource in container', async () => {
const res = await request('/ldptest/public/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Slug': 'posted-resource'
},
body: JSON.stringify({ posted: true }),
auth: 'ldptest'
});
assertStatus(res, 201);
assertHeader(res, 'Location');
// Verify created
const location = res.headers.get('Location');
const verify = await request(location);
assertStatus(verify, 200);
});
it('should use Slug header for filename', async () => {
const res = await request('/ldptest/public/', {
method: 'POST',
headers: {
'Content-Type': 'text/plain',
'Slug': 'my-custom-name.txt'
},
body: 'slug test',
auth: 'ldptest'
});
const location = res.headers.get('Location');
assert.ok(location.includes('my-custom-name'), 'Should use slug in filename');
});
it('should create container with Link header', async () => {
const res = await request('/ldptest/public/', {
method: 'POST',
headers: {
'Slug': 'new-container',
'Link': '<http://www.w3.org/ns/ldp#BasicContainer>; rel="type"'
},
auth: 'ldptest'
});
assertStatus(res, 201);
const location = res.headers.get('Location');
assert.ok(location.endsWith('/'), 'Container location should end with /');
// Verify it's a container
const verify = await request(location);
assertHeaderContains(verify, 'Link', 'Container');
});
it('should reject POST to non-container', async () => {
await request('/ldptest/public/file-not-container.txt', {
method: 'PUT',
body: 'just a file',
auth: 'ldptest'
});
const res = await request('/ldptest/public/file-not-container.txt', {
method: 'POST',
body: 'trying to post',
auth: 'ldptest'
});
assertStatus(res, 405);
});
});
describe('DELETE', () => {
it('should delete resource', async () => {
await request('/ldptest/public/to-delete.txt', {
method: 'PUT',
body: 'delete me',
auth: 'ldptest'
});
const res = await request('/ldptest/public/to-delete.txt', {
method: 'DELETE',
auth: 'ldptest'
});
assertStatus(res, 204);
// Verify deleted
const verify = await request('/ldptest/public/to-delete.txt');
assertStatus(verify, 404);
});
it('should return 404 for non-existent', async () => {
const res = await request('/ldptest/public/never-existed.txt', {
method: 'DELETE',
auth: 'ldptest'
});
assertStatus(res, 404);
});
it('should delete container', async () => {
// Create container
await request('/ldptest/public/', {
method: 'POST',
headers: {
'Slug': 'container-to-delete',
'Link': '<http://www.w3.org/ns/ldp#BasicContainer>; rel="type"'
},
auth: 'ldptest'
});
const res = await request('/ldptest/public/container-to-delete/', {
method: 'DELETE',
auth: 'ldptest'
});
assertStatus(res, 204);
});
});
describe('OPTIONS', () => {
it('should return allowed methods', async () => {
const res = await request('/ldptest/public/', {
method: 'OPTIONS'
});
assertStatus(res, 204);
const allow = assertHeader(res, 'Allow');
assert.ok(allow.includes('GET'), 'Should allow GET');
assert.ok(allow.includes('POST'), 'Should allow POST');
});
it('should return CORS headers', async () => {
const res = await request('/ldptest/public/', {
method: 'OPTIONS',
headers: { 'Origin': 'https://app.example.com' }
});
assertHeader(res, 'Access-Control-Allow-Origin');
assertHeader(res, 'Access-Control-Allow-Methods');
});
});
describe('LDP Headers', () => {
it('should return Link type header for resource', async () => {
await request('/ldptest/public/resource-link.txt', {
method: 'PUT',
body: 'test',
auth: 'ldptest'
});
const res = await request('/ldptest/public/resource-link.txt');
assertHeaderContains(res, 'Link', 'ldp#Resource');
});
it('should return Link type headers for container', async () => {
const res = await request('/ldptest/public/');
const link = res.headers.get('Link');
assert.ok(link.includes('ldp#Resource'), 'Should be LDP Resource');
assert.ok(link.includes('ldp#Container'), 'Should be LDP Container');
});
it('should return WAC-Allow header', async () => {
const res = await request('/ldptest/public/');
assertHeader(res, 'WAC-Allow');
});
it('should return Accept-Post for containers', async () => {
const res = await request('/ldptest/public/');
assertHeader(res, 'Accept-Post');
});
it('should return acl Link header for resource', async () => {
await request('/ldptest/public/acl-test.txt', {
method: 'PUT',
body: 'test',
auth: 'ldptest'
});
const res = await request('/ldptest/public/acl-test.txt');
const link = res.headers.get('Link');
assert.ok(link.includes('rel="acl"'), 'Should have acl link relation');
assert.ok(link.includes('acl-test.txt.acl'), 'ACL should be resource.acl');
});
it('should return acl Link header for container', async () => {
const res = await request('/ldptest/public/');
const link = res.headers.get('Link');
assert.ok(link.includes('rel="acl"'), 'Should have acl link relation');
assert.ok(link.includes('.acl'), 'Should link to .acl');
});
});
});