Skip to content

Commit d440342

Browse files
committed
policy: fix message for invalid manifest specifier
Add test for invalid manifest specifier and fix the error message which is missing a space ("singletrailing" instead of "single trailing").
1 parent 80e94db commit d440342

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

lib/internal/policy/manifest.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,8 @@ class DependencyMapperInstance {
136136
if (!target) {
137137
throw new ERR_MANIFEST_INVALID_SPECIFIER(
138138
this.href,
139-
target +
140-
', pattern needs to have a single' +
141-
'trailing "*" in target');
139+
`${target}, pattern needs to have a single trailing "*" in target`
140+
);
142141
}
143142
const prefix = target[1];
144143
const suffix = target[2];
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"resources": {
3+
"./fhqwhgads.js": {
4+
"dependencies": {
5+
"**": true
6+
}
7+
}
8+
}
9+
}

test/parallel/test-policy-manifest.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
common.requireNoPackageJSONAbove();
5+
6+
const assert = require('assert');
7+
const { spawnSync } = require('child_process');
8+
const fixtures = require('../common/fixtures.js');
9+
10+
const policyFilepath = fixtures.path('policy-manifest', 'invalid.json');
11+
12+
const result = spawnSync(process.execPath, [
13+
'--experimental-policy',
14+
policyFilepath,
15+
'./fhqwhgads.js',
16+
]);
17+
18+
assert.notStrictEqual(result.status, 0);
19+
const stderr = result.stderr.toString();
20+
assert.match(stderr, /ERR_MANIFEST_INVALID_SPECIFIER/);
21+
assert.match(stderr, /pattern needs to have a single trailing "\*"/);

0 commit comments

Comments
 (0)