@@ -6,7 +6,7 @@ const Arborist = require('@npmcli/arborist')
6
6
const path = require ( 'node:path' )
7
7
const fs = require ( 'node:fs' )
8
8
9
- const pkg = 'test-package'
9
+ const pkg = '@npmcli/ test-package'
10
10
const token = 'test-auth-token'
11
11
const auth = { '//registry.npmjs.org/:_authToken' : token }
12
12
const alternateRegistry = 'https://other.registry.npmjs.org'
@@ -238,8 +238,7 @@ t.test('throws when invalid tag when not url encodable', async t => {
238
238
await t . rejects (
239
239
npm . exec ( 'publish' , [ ] ) ,
240
240
{
241
- /* eslint-disable-next-line max-len */
242
- message : 'Invalid tag name "@test" of package "test-package@@test": Tags may not have any characters that encodeURIComponent encodes.' ,
241
+ message : `Invalid tag name "@test" of package "${ pkg } @@test": Tags may not have any characters that encodeURIComponent encodes.` ,
243
242
}
244
243
)
245
244
} )
@@ -857,15 +856,16 @@ t.test('prerelease dist tag', (t) => {
857
856
t . end ( )
858
857
} )
859
858
860
- t . test ( 'latest dist tag' , ( t ) => {
861
- const init = ( version ) => ( {
859
+ t . test ( 'semver highest dist tag' , async t => {
860
+ const init = ( { version, pkgExtra = { } } ) => ( {
862
861
config : {
863
862
loglevel : 'silent' ,
864
863
...auth ,
865
864
} ,
866
865
prefixDir : {
867
866
'package.json' : JSON . stringify ( {
868
867
...pkgJson ,
868
+ ...pkgExtra ,
869
869
version,
870
870
} , null , 2 ) ,
871
871
} ,
@@ -879,46 +879,57 @@ t.test('latest dist tag', (t) => {
879
879
{ version : '105.0.0-pre' } ,
880
880
]
881
881
882
- t . test ( 'PREVENTS publish when latest version is HIGHER than publishing version' , async t => {
882
+ await t . test ( 'PREVENTS publish when highest version is HIGHER than publishing version' , async t => {
883
883
const version = '99.0.0'
884
- const { npm, registry } = await loadNpmWithRegistry ( t , init ( version ) )
884
+ const { npm, registry } = await loadNpmWithRegistry ( t , init ( { version } ) )
885
885
registry . publish ( pkg , { noPut : true , packuments } )
886
886
await t . rejects ( async ( ) => {
887
887
await npm . exec ( 'publish' , [ ] )
888
- /* eslint-disable-next-line max-len */
889
888
} , new Error ( 'Cannot implicitly apply the "latest" tag because published version 100.0.0 is higher than the new version 99.0.0. You must specify a tag using --tag.' ) )
890
889
} )
891
890
892
- t . test ( 'ALLOWS publish when latest is HIGHER than publishing version and flag' , async t => {
891
+ await t . test ( 'ALLOWS publish when highest is HIGHER than publishing version and flag' , async t => {
893
892
const version = '99.0.0'
894
893
const { npm, registry } = await loadNpmWithRegistry ( t , {
895
- ...init ( version ) ,
894
+ ...init ( { version } ) ,
896
895
argv : [ '--tag' , 'latest' ] ,
897
896
} )
898
897
registry . publish ( pkg , { packuments } )
899
898
await npm . exec ( 'publish' , [ ] )
900
899
} )
901
900
902
- t . test ( 'ALLOWS publish when latest versions are LOWER than publishing version' , async t => {
901
+ await t . test ( 'ALLOWS publish when highest versions are LOWER than publishing version' , async t => {
903
902
const version = '101.0.0'
904
- const { npm, registry } = await loadNpmWithRegistry ( t , init ( version ) )
903
+ const { npm, registry } = await loadNpmWithRegistry ( t , init ( { version } ) )
905
904
registry . publish ( pkg , { packuments } )
906
905
await npm . exec ( 'publish' , [ ] )
907
906
} )
908
907
909
- t . test ( 'ALLOWS publish when packument has empty versions (for coverage)' , async t => {
908
+ await t . test ( 'ALLOWS publish when packument has empty versions (for coverage)' , async t => {
910
909
const version = '1.0.0'
911
- const { npm, registry } = await loadNpmWithRegistry ( t , init ( version ) )
910
+ const { npm, registry } = await loadNpmWithRegistry ( t , init ( { version } ) )
912
911
registry . publish ( pkg , { manifest : { versions : { } } } )
913
912
await npm . exec ( 'publish' , [ ] )
914
913
} )
915
914
916
- t . test ( 'ALLOWS publish when packument has empty manifest (for coverage)' , async t => {
915
+ await t . test ( 'ALLOWS publish when packument has empty manifest (for coverage)' , async t => {
917
916
const version = '1.0.0'
918
- const { npm, registry } = await loadNpmWithRegistry ( t , init ( version ) )
917
+ const { npm, registry } = await loadNpmWithRegistry ( t , init ( { version } ) )
919
918
registry . publish ( pkg , { manifest : { } } )
920
919
await npm . exec ( 'publish' , [ ] )
921
920
} )
922
921
923
- t . end ( )
922
+ await t . test ( 'ALLOWS publish when highest version is HIGHER than publishing version with publishConfig' , async t => {
923
+ const version = '99.0.0'
924
+ const { npm, registry } = await loadNpmWithRegistry ( t , init ( {
925
+ version,
926
+ pkgExtra : {
927
+ publishConfig : {
928
+ tag : 'next' ,
929
+ } ,
930
+ } ,
931
+ } ) )
932
+ registry . publish ( pkg , { packuments } )
933
+ await npm . exec ( 'publish' , [ ] )
934
+ } )
924
935
} )
0 commit comments