-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIngestLambdaFunction.test.js
84 lines (74 loc) · 2.56 KB
/
IngestLambdaFunction.test.js
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
test("tktk", async () => {});
// const { filenameFromSource } = require('../../../src/lambdas/ingest/index');
// test('extracts filenames from flat S3 objects', async () => {
// const filename = await filenameFromSource({
// Mode: 'AWS/S3',
// BucketName: 'myBucket',
// ObjectKey: 'foo.bar',
// });
// expect(filename).toEqual('foo.bar');
// });
// test('extracts filenames from deep S3 objects', async () => {
// const filename = await filenameFromSource({
// Mode: 'AWS/S3',
// BucketName: 'myBucket',
// ObjectKey: 'a/b/c/d/e/foo.bar',
// });
// expect(filename).toEqual('foo.bar');
// });
// test('extracts filenames from simple HTTP URLs', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com/foo.bar',
// });
// expect(filename).toEqual('foo.bar');
// });
// test('extracts filenames from HTTP URLs with query string', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com/foo.bar?baz=1',
// });
// expect(filename).toEqual('foo.bar');
// });
// test('extracts filenames from complex HTTP URLs', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com:8888/path/to/foo.bar?baz=1#boo',
// });
// expect(filename).toEqual('foo.bar');
// });
// test('extracts filenames with literal spaces', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com:8888/path/to/foo bar',
// });
// expect(filename).toEqual('foo bar');
// });
// test('extracts filenames with encoded spaces', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com:8888/path/to/foo%20bar',
// });
// expect(filename).toEqual('foo bar');
// });
// test('extracts filenames with literal plus signs', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com:8888/path/to/foo+bar',
// });
// expect(filename).toEqual('foo+bar');
// });
// test('extracts filenames with encoded plus signs', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com:8888/path/to/foo%2Bbar',
// });
// expect(filename).toEqual('foo+bar');
// });
// test('extracts filenames from root HTTP URLs', async () => {
// const filename = await filenameFromSource({
// Mode: 'HTTP',
// URL: 'http://example.com/',
// });
// expect(filename).toEqual('example.com');
// });