deno.land / x / alosaur@v1.1.1 / e2e / static.test.ts

static.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
import { assertEquals } from "../src/deps_test.ts";import { killServer, startServer } from "./test.utils.ts";const { test } = Deno;
/** * Test cases */test({ name: "[http] static server, requests to index.html", async fn(t): Promise<void> { const process = await startServer("./examples/static/app.ts"); const baseUrl = "http://localhost:8000";
try { await t.step("/", async () => { const response = await fetch(baseUrl); const text = await response.text();
assertEquals(response.status, 404); });
await t.step("/www/index.html", async () => { const response = await fetch(baseUrl + "/www/index.html"); const text = await response.text();
assertEquals(response.status, 200); assertEquals(text, StaticIndexHtmlText); }); } finally { killServer(process); } },});
const StaticIndexHtmlText = `<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <link rel="stylesheet" href="index.css"></link></head><body> <h1>Hey!</h1></body></html>`;
alosaur

Version Info

Tagged at
2 months ago