forked from netlify/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- convert file to ESM - replace ava with vitest - replace got with node-fetch - rename and move file Related to: netlify#5698
- Loading branch information
Showing
2 changed files
with
158 additions
and
145 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
import { Buffer } from 'buffer' | ||
import path from 'path' | ||
import { fileURLToPath } from 'url' | ||
|
||
import fetch from 'node-fetch' | ||
import { afterAll, beforeAll, describe, test } from 'vitest' | ||
|
||
import { clientIP, originalIP } from '../../lib/local-ip.cjs' | ||
import { startDevServer } from '../utils/dev-server.cjs' | ||
|
||
// eslint-disable-next-line no-underscore-dangle | ||
const __dirname = path.dirname(fileURLToPath(import.meta.url)) | ||
|
||
const context = {} | ||
|
||
beforeAll(async () => { | ||
const server = await startDevServer({ cwd: path.join(__dirname, '__fixtures__/eleventy-site') }) | ||
|
||
context.server = server | ||
}) | ||
|
||
afterAll(async () => { | ||
const { server } = context | ||
await server.close() | ||
}) | ||
|
||
describe('eleventy', () => { | ||
test('homepage', async (t) => { | ||
const { url } = context.server | ||
const response = await fetch(`${url}/`).then((res) => res.text()) | ||
|
||
t.expect(response.includes('Eleventy Site')).toBe(true) | ||
}) | ||
|
||
test('redirect test', async (t) => { | ||
const { url } = context.server | ||
const response = await fetch(`${url}/something`, { | ||
redirect: 'manual', | ||
}) | ||
const { headers, status } = response | ||
|
||
t.expect(status).toBe(301) | ||
t.expect(headers.get('location').endsWith('/otherthing')).toBe(true) | ||
t.expect(await response.text()).toEqual('Redirecting to /otherthing') | ||
}) | ||
|
||
// TODO: un-skip this once https://github.com/netlify/cli/issues/1242 is fixed | ||
test.skip('normal rewrite', async (t) => { | ||
const { url } = context.server | ||
const response = await fetch(`${url}/doesnt-exist`) | ||
const { headers, status } = response | ||
const body = await response.text() | ||
|
||
t.expect(status).toBe(200) | ||
t.expect(headers.get('content-type').startsWith('text/html')).toBe(true) | ||
t.expect(body.includes('Eleventy Site')).toBe(true) | ||
}) | ||
|
||
test('force rewrite', async (t) => { | ||
const { url } = context.server | ||
const response = await fetch(`${url}/force`) | ||
const { headers, status } = response | ||
const body = await response.text() | ||
|
||
t.expect(status).toBe(200) | ||
t.expect(headers.get('content-type').startsWith('text/html')).toBe(true) | ||
t.expect(body.includes('<h1>Test content</h1>')).toBe(true) | ||
}) | ||
|
||
test('functions rewrite echo without body', async (t) => { | ||
const { host, port, url } = context.server | ||
const response = await fetch(`${url}/api/echo?ding=dong`).then((res) => res.json()) | ||
const { 'x-nf-request-id': requestID, ...headers } = response.headers | ||
|
||
t.expect(response.body).toBe(undefined) | ||
t.expect(headers).toStrictEqual({ | ||
accept: '*/*', | ||
'accept-encoding': 'gzip,deflate', | ||
'client-ip': clientIP, | ||
connection: 'close', | ||
host: `${host}:${port}`, | ||
'user-agent': 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)', | ||
'x-forwarded-for': originalIP, | ||
'x-nf-account-id': '', | ||
'x-nf-client-connection-ip': clientIP, | ||
'x-nf-geo': Buffer.from( | ||
'{"city":"San Francisco","country":{"code":"US","name":"United States"},"subdivision":{"code":"CA","name":"California"},"longitude":0,"latitude":0,"timezone":"UTC"}', | ||
).toString('base64'), | ||
}) | ||
t.expect(requestID.length).toBe(26) | ||
t.expect(response.httpMethod).toEqual('GET') | ||
t.expect(response.isBase64Encoded).toBe(true) | ||
t.expect(response.path).toEqual('/api/echo') | ||
t.expect(response.queryStringParameters).toStrictEqual({ ding: 'dong' }) | ||
}) | ||
|
||
test('functions rewrite echo with body', async (t) => { | ||
const { host, port, url } = context.server | ||
const response = await fetch(`${url}/api/echo?ding=dong`, { | ||
method: 'POST', | ||
headers: { | ||
'content-type': 'application/x-www-form-urlencoded', | ||
}, | ||
body: 'some=thing', | ||
}).then((res) => res.json()) | ||
const { 'x-nf-request-id': requestID, ...headers } = response.headers | ||
|
||
t.expect(response.body).toEqual('some=thing') | ||
t.expect(headers).toStrictEqual({ | ||
accept: '*/*', | ||
'accept-encoding': 'gzip,deflate', | ||
'client-ip': clientIP, | ||
connection: 'close', | ||
host: `${host}:${port}`, | ||
'content-type': 'application/x-www-form-urlencoded', | ||
'content-length': '10', | ||
'user-agent': 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)', | ||
'x-forwarded-for': originalIP, | ||
'x-nf-account-id': '', | ||
'x-nf-client-connection-ip': clientIP, | ||
'x-nf-geo': Buffer.from( | ||
'{"city":"San Francisco","country":{"code":"US","name":"United States"},"subdivision":{"code":"CA","name":"California"},"longitude":0,"latitude":0,"timezone":"UTC"}', | ||
).toString('base64'), | ||
}) | ||
t.expect(requestID.length).toBe(26) | ||
t.expect(response.httpMethod).toEqual('POST') | ||
t.expect(response.isBase64Encoded).toBe(false) | ||
t.expect(response.path).toEqual('/api/echo') | ||
t.expect(response.queryStringParameters).toStrictEqual({ ding: 'dong' }) | ||
}) | ||
|
||
test('functions echo with multiple query params', async (t) => { | ||
const { host, port, url } = context.server | ||
const response = await fetch(`${url}/.netlify/functions/echo?category=a&category=b`).then((res) => res.json()) | ||
const { 'x-nf-request-id': requestID, ...headers } = response.headers | ||
|
||
t.expect(headers).toStrictEqual({ | ||
accept: '*/*', | ||
'accept-encoding': 'gzip,deflate', | ||
'client-ip': clientIP, | ||
connection: 'close', | ||
host: `${host}:${port}`, | ||
'user-agent': 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)', | ||
'x-forwarded-for': originalIP, | ||
'x-nf-account-id': '', | ||
'x-nf-client-connection-ip': clientIP, | ||
'x-nf-geo': Buffer.from( | ||
'{"city":"San Francisco","country":{"code":"US","name":"United States"},"subdivision":{"code":"CA","name":"California"},"longitude":0,"latitude":0,"timezone":"UTC"}', | ||
).toString('base64'), | ||
}) | ||
t.expect(requestID.length).toBe(26) | ||
t.expect(response.httpMethod).toEqual('GET') | ||
t.expect(response.isBase64Encoded).toBe(true) | ||
t.expect(response.path).toEqual('/.netlify/functions/echo') | ||
t.expect(response.queryStringParameters).toStrictEqual({ category: 'a, b' }) | ||
t.expect(response.multiValueQueryStringParameters).toStrictEqual({ category: ['a', 'b'] }) | ||
}) | ||
}) |