mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-09 08:26:27 -04:00
Instead of creating a separate fetch function for the resolvers and fetchers, use a single one. Also, use a single getCredentials function. close #2652 PR #2655
77 lines
2.6 KiB
TypeScript
77 lines
2.6 KiB
TypeScript
///<reference path="../../../typings/index.d.ts"/>
|
|
import { createFetchFromRegistry } from '@pnpm/fetch'
|
|
import nock = require('nock')
|
|
import test = require('tape')
|
|
|
|
test('fetchFromRegistry', async t => {
|
|
const fetchFromRegistry = createFetchFromRegistry({})
|
|
const res = await fetchFromRegistry('https://registry.npmjs.org/is-positive')
|
|
const metadata = await res.json()
|
|
t.equal(metadata.name, 'is-positive')
|
|
t.notOk(metadata.versions['1.0.0'].scripts)
|
|
t.end()
|
|
})
|
|
|
|
test('fetchFromRegistry fullMetadata', async t => {
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
const res = await fetchFromRegistry('https://registry.npmjs.org/is-positive')
|
|
const metadata = await res.json()
|
|
t.equal(metadata.name, 'is-positive')
|
|
t.ok(metadata.versions['1.0.0'].scripts)
|
|
t.end()
|
|
})
|
|
|
|
test('authorization headers are removed before redirection if the target is on a different host', async (t) => {
|
|
nock('http://registry.pnpm.js.org/', {
|
|
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.js.org/is-positive',
|
|
{ authHeaderValue: 'Bearer 123' }
|
|
)
|
|
|
|
t.deepEqual(await res.json(), { ok: true })
|
|
t.ok(nock.isDone())
|
|
t.end()
|
|
})
|
|
|
|
test('authorization headers are not removed before redirection if the target is on the same host', async (t) => {
|
|
nock('http://registry.pnpm.js.org/', {
|
|
reqheaders: { authorization: 'Bearer 123' },
|
|
})
|
|
.get('/is-positive')
|
|
.reply(302, '', { location: 'http://registry.pnpm.js.org/is-positive-new' })
|
|
nock('http://registry.pnpm.js.org/', {
|
|
reqheaders: { authorization: 'Bearer 123' },
|
|
})
|
|
.get('/is-positive-new')
|
|
.reply(200, { ok: true })
|
|
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
const res = await fetchFromRegistry(
|
|
'http://registry.pnpm.js.org/is-positive',
|
|
{ authHeaderValue: 'Bearer 123' }
|
|
)
|
|
|
|
t.deepEqual(await res.json(), { ok: true })
|
|
t.ok(nock.isDone())
|
|
t.end()
|
|
})
|
|
|
|
test('switch to the correct agent for requests on redirect from http: to https:', async (t) => {
|
|
const fetchFromRegistry = createFetchFromRegistry({ fullMetadata: true })
|
|
|
|
// We can test this on any endpoint that redirects from http: to https:
|
|
const { status } = await fetchFromRegistry('http://pnpm.js.org/css/main.css')
|
|
|
|
t.equal(status, 200)
|
|
t.end()
|
|
})
|