Skip to content

Commit 3826fcd

Browse files
committed
Add initial test-redirects.js script.
Not sure we need to keep this around...but I suppose it could be handy all the same.
1 parent f967ef4 commit 3826fcd

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

test-redirects.js

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
import assert from 'node:assert/strict';
2+
3+
const baseUri = 'https://convert-htaccess-to-cf-files.json-ld-org.pages.dev';
4+
5+
(async () => {
6+
// test json-ld media type
7+
const url = `${baseUri}/contexts/event.jsonld`;
8+
const resp = await fetch(url);
9+
assert(resp.headers.get('Content-Type') === 'application/ld+json',
10+
`Content-Type for ${url} should be application/ld+json.`);
11+
})();
12+
13+
(async () => {
14+
// test that /playground-dev redirects to /playground
15+
const url = `${baseUri}/playground-dev`;
16+
const resp = await fetch(url, {redirect: 'manual'});
17+
assert(resp.status === 302,
18+
`Should be a 302 redirect.`);
19+
const location = resp.headers.get('Location');
20+
assert(location === '/playground',
21+
`Old /playground-dev should redirect to /playground`);
22+
})();
23+
24+
(async () => {
25+
// test json-ld media type on URLs without extensions
26+
const urls = [
27+
`${baseUri}/contexts/event`,
28+
`${baseUri}/contexts/person`,
29+
`${baseUri}/contexts/place`,
30+
`${baseUri}/contexts/recipe`,
31+
];
32+
Promise.all(urls.map(async (url) => {
33+
const resp = await fetch(url, {redirect: 'manual'});
34+
const contentType = resp.headers.get('Content-Type');
35+
assert(contentType === 'application/ld+json',
36+
`Content-Type for ${url} should be application/ld+json; got ${contentType}.`);
37+
const cors = resp.headers.get('Access-Control-Allow-Origin');
38+
assert(cors === '"*"',
39+
`Header 'Access-Control-Allow-Origin' should be '*'; got ${cors}.`);
40+
}));
41+
})();
42+
43+
(async () => {
44+
// test json-ld media type
45+
const urls = [
46+
`${baseUri}/contexts/event`,
47+
`${baseUri}/contexts/person`,
48+
`${baseUri}/contexts/place`,
49+
`${baseUri}/contexts/recipe`,
50+
];
51+
Promise.all(urls.map(async (url) => {
52+
const resp = await fetch(url, {redirect: 'manual'});
53+
const contentType = resp.headers.get('Content-Type');
54+
assert(contentType === 'application/ld+json',
55+
`Content-Type for ${url} should be application/ld+json; got ${contentType}.`);
56+
const cors = resp.headers.get('Access-Control-Allow-Origin');
57+
assert(cors === '"*"',
58+
`Header 'Access-Control-Allow-Origin' should be '*'; got ${cors}.`);
59+
}));
60+
})();
61+
62+
(async () => {
63+
// test media type for `*.jldte`
64+
const url = `${baseUri}/test-suite/tests/remote-doc-0003-in.jldt`;
65+
const resp = await fetch(url);
66+
const contentType = resp.headers.get('Content-Type');
67+
assert(contentType === 'application/jldTest+json',
68+
`Content-Type for ${url} should be application/jldTest+json; got ${contentType}.`);
69+
})();
70+
71+
(async () => {
72+
// test media type for `*.jldte`
73+
const url = `${baseUri}/test-suite/tests/remote-doc-0004-in.jldte`;
74+
const resp = await fetch(url);
75+
const contentType = resp.headers.get('Content-Type');
76+
assert(contentType === 'application/jldTest',
77+
`Content-Type for ${url} should be application/jldTest; got ${contentType}.`);
78+
})();

0 commit comments

Comments
 (0)