-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworldtides_test.ts
148 lines (137 loc) · 3.36 KB
/
worldtides_test.ts
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
import { Worldtides } from './worldtides.ts'
import {
assert,
assertEquals,
} from "https://deno.land/std@v0.57.0/testing/asserts.ts"
const apikey = Deno.env.get('apikey')
if (!apikey) {
throw new Error('missing api key')
}
const worldtides = new Worldtides({
key: apikey
})
export async function test(name: string, fn: () => void | Promise<void>) {
async function wrapped() {
if (existsSync(afterFile)) {
Deno.removeSync(afterFile)
}
try {
await fn();
if (existsSync(afterFile)) {
const decoder = new TextDecoder('utf-8')
const data = Deno.readFileSync(afterFile)
console.log(decoder.decode(data))
}
} finally {
if (existsSync(afterFile)) {
Deno.removeSync(afterFile)
}
}
}
Deno.test({ name, fn: wrapped })
}
test("server is created", async () => {
const { default: app } = await import('./app_test.ts')
assert(app, 'is not created')
})
test("simple server setup test", async () => {
const { default: app } = await import('./app_test.ts')
app.listen({ port: 8000})
const response = await fetch(
'http://localhost:8000',
{
method: 'POST',
body: JSON.stringify({
type: 'json'
}),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
}
)
const result = await response.json()
app.close()
assertEquals(result.test, 'json')
assertEquals(result.before, true)
})
test("urlenconded request", async () => {
const { default: app } = await import('./app_test.ts')
app.listen({ port: 8000})
const response = await fetch(
'http://localhost:8000',
{
method: 'POST',
body: 'type=urlencoded',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
)
const result = await response.json()
app.close()
assertEquals(result.test, 'urlencoded')
})
test("test request", async () => {
const { default: app } = await import('./app_test.ts')
app.listen({ port: 8000})
const response = await fetch(
'http://localhost:8000',
{
method: 'POST',
body: 'text',
headers: {
'Content-Type': 'text/plain'
}
}
)
const result = await response.json()
app.close()
assertEquals(result.test, 'text')
})
test("request with error", async () => {
const { default: app } = await import('./app_test.ts')
app.listen({ port: 8000})
const response = await fetch(
'http://localhost:8000',
{
method: 'POST',
body: JSON.stringify({
type: 'error'
}),
headers: {
'Content-Type': 'application/json'
}
}
)
const result = await response.text()
app.close()
assertEquals(result, 'error')
})
test("redirect", async () => {
const { default: app } = await import('./app_test.ts')
app.listen({ port: 8000})
const response = await fetch(
'http://localhost:8000',
{
method: 'POST',
body: JSON.stringify({
type: 'redirect'
}),
headers: {
'Content-Type': 'application/json'
},
redirect: 'manual'
}
)
app.close()
assertEquals(response.type, 'opaqueredirect')
})
test("application closes", async () => {
const { default: app } = await import('./app_test.ts')
app.listen({ port: 8000})
await app.close()
if (app.server) {
assert((await app.server?.[Symbol.asyncIterator]().next()).done)
}
})