mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-06 08:18:16 -05:00
71 lines
2.6 KiB
TypeScript
71 lines
2.6 KiB
TypeScript
/// <reference path="../../../__typings__/index.d.ts"/>
|
|
import { createFetchFromRegistry } from '@pnpm/fetch'
|
|
import nock from 'nock'
|
|
|
|
test('fetchFromRegistry', async () => {
|
|
const fetchFromRegistry = createFetchFromRegistry({})
|
|
const res = await fetchFromRegistry('https://registry.npmjs.org/is-positive')
|
|
const metadata = await res.json() as any // eslint-disable-line
|
|
expect(metadata.name).toEqual('is-positive')
|
|
expect(metadata.versions['1.0.0'].scripts).not.toBeTruthy()
|
|
})
|
|
|
|
test('fetchFromRegistry fullMetadata', async () => {
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
const res = await fetchFromRegistry('https://registry.npmjs.org/is-positive')
|
|
const metadata = await res.json() as any // eslint-disable-line
|
|
expect(metadata.name).toEqual('is-positive')
|
|
expect(metadata.versions['1.0.0'].scripts).toBeTruthy()
|
|
})
|
|
|
|
test('authorization headers are removed before redirection if the target is on a different host', async () => {
|
|
nock('http://registry.pnpm.io/', {
|
|
reqheaders: { authorization: 'Bearer 123' },
|
|
})
|
|
.get('/is-positive')
|
|
.reply(302, '', { location: 'http://registry.other.org/is-positive' })
|
|
nock('http://registry.other.org/', { badheaders: ['authorization'] })
|
|
.get('/is-positive')
|
|
.reply(200, { ok: true })
|
|
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
const res = await fetchFromRegistry(
|
|
'http://registry.pnpm.io/is-positive',
|
|
{ authHeaderValue: 'Bearer 123' }
|
|
)
|
|
|
|
expect(await res.json()).toStrictEqual({ ok: true })
|
|
expect(nock.isDone()).toBeTruthy()
|
|
})
|
|
|
|
test('authorization headers are not removed before redirection if the target is on the same host', async () => {
|
|
nock('http://registry.pnpm.io/', {
|
|
reqheaders: { authorization: 'Bearer 123' },
|
|
})
|
|
.get('/is-positive')
|
|
.reply(302, '', { location: 'http://registry.pnpm.io/is-positive-new' })
|
|
nock('http://registry.pnpm.io/', {
|
|
reqheaders: { authorization: 'Bearer 123' },
|
|
})
|
|
.get('/is-positive-new')
|
|
.reply(200, { ok: true })
|
|
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
const res = await fetchFromRegistry(
|
|
'http://registry.pnpm.io/is-positive',
|
|
{ authHeaderValue: 'Bearer 123' }
|
|
)
|
|
|
|
expect(await res.json()).toStrictEqual({ ok: true })
|
|
expect(nock.isDone()).toBeTruthy()
|
|
})
|
|
|
|
test('switch to the correct agent for requests on redirect from http: to https:', async () => {
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
|
|
// We can test this on any endpoint that redirects from http: to https:
|
|
const { status } = await fetchFromRegistry('http://pnpm.io/pnpm.js')
|
|
|
|
expect(status).toEqual(200)
|
|
})
|