Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: show more information during publish dry-run #4726

Merged
merged 3 commits into from Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 17 additions & 12 deletions lib/commands/publish.js
Expand Up @@ -102,19 +102,24 @@ class Publish extends BaseCommand {
logTar(pkgContents, { unicode })
}

if (!dryRun) {
const resolved = npa.resolve(manifest.name, manifest.version)
const registry = npmFetch.pickRegistry(resolved, opts)
const creds = this.npm.config.getCredentialsByURI(registry)
const outputRegistry = replaceInfo(registry)
if (!creds.token && !creds.username) {
throw Object.assign(
new Error(`This command requires you to be logged in to ${outputRegistry}`), {
code: 'ENEEDAUTH',
}
)
const resolved = npa.resolve(manifest.name, manifest.version)
const registry = npmFetch.pickRegistry(resolved, opts)
const creds = this.npm.config.getCredentialsByURI(registry)
const noCreds = !creds.token && !creds.username
const outputRegistry = replaceInfo(registry)

if (noCreds) {
const msg = `This command requires you to be logged in to ${outputRegistry}`
if (dryRun) {
log.warn('', `${msg} (dry-run)`)
} else {
throw Object.assign(new Error(msg), { code: 'ENEEDAUTH' })
}
log.notice('', `Publishing to ${outputRegistry}`)
}

log.notice('', `Publishing to ${outputRegistry}${dryRun ? ' (dry-run)' : ''}`)

if (!dryRun) {
await otplease(opts, opts => libpub(manifest, tarballData, opts))
}

Expand Down
39 changes: 25 additions & 14 deletions test/lib/commands/publish.js
Expand Up @@ -163,9 +163,9 @@ t.test('if loglevel=info and json, should not output package contents', async t

t.test(
/* eslint-disable-next-line max-len */
'if loglevel=silent and dry-run, should not output package contents or publish or validate credentials, should log tarball contents',
'if loglevel=silent and dry-run, should not output package contents or publish, should log tarball contents',
async t => {
t.plan(1)
t.plan(2)

const testDir = t.testdir({
'package.json': JSON.stringify(
Expand Down Expand Up @@ -199,8 +199,9 @@ t.test(
throw new Error('should not output in dry run mode')
},
}, t)
npm.config.getCredentialsByURI = () => {
throw new Error('should not call getCredentialsByURI in dry run')
npm.config.getCredentialsByURI = uri => {
t.same(uri, npm.config.get('registry'), 'gets credentials for expected registry')
return { token: 'some.registry.token' }
}

const publish = new Publish(npm)
Expand All @@ -213,7 +214,7 @@ t.test(
/* eslint-disable-next-line max-len */
'if loglevel=info and dry-run, should not publish, should log package contents and log tarball contents',
async t => {
t.plan(2)
t.plan(3)

const testDir = t.testdir({
'package.json': JSON.stringify(
Expand All @@ -226,6 +227,18 @@ t.test(
),
})

const npm = mockNpm({
config: { 'dry-run': true, loglevel: 'info' },
output: () => {
t.pass('output fn is called')
},
}, t)
const registry = npm.config.get('registry')
npm.config.getCredentialsByURI = uri => {
t.same(uri, registry, 'gets credentials for expected registry')
return { /* no token will call log.warn */ }
}

const Publish = t.mock('../../../lib/commands/publish.js', {
'../../../lib/utils/tar.js': {
getContents: () => ({
Expand All @@ -234,22 +247,20 @@ t.test(
logTar: () => {
t.pass('logTar is called')
},
'proc-log': {
warn (_, msg) {
t.match(msg,
`This command requires you to be logged in to ${registry} (dry-run)`)
},
},
},
libnpmpublish: {
publish: () => {
throw new Error('should not call libnpmpublish in dry run')
},
},
})
const npm = mockNpm({
config: { 'dry-run': true, loglevel: 'info' },
output: () => {
t.pass('output fn is called')
},
}, t)
npm.config.getCredentialsByURI = () => {
throw new Error('should not call getCredentialsByURI in dry run')
}

const publish = new Publish(npm)

await publish.exec([testDir])
Expand Down