-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: cover import of a *.node file with a policy manifest
Cover import of a *.node file with a policy manifest. Add invalid integrity test case. PR-URL: #27903 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
Showing
3 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include <node_api.h> | ||
#include "../../js-native-api/common.h" | ||
#include <string.h> | ||
|
||
static napi_value Method(napi_env env, napi_callback_info info) { | ||
napi_value world; | ||
const char* str = "world"; | ||
size_t str_len = strlen(str); | ||
NAPI_CALL(env, napi_create_string_utf8(env, str, str_len, &world)); | ||
return world; | ||
} | ||
|
||
NAPI_MODULE_INIT() { | ||
napi_property_descriptor desc = DECLARE_NAPI_PROPERTY("hello", Method); | ||
NAPI_CALL(env, napi_define_properties(env, exports, 1, &desc)); | ||
return exports; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"targets": [ | ||
{ | ||
"target_name": "binding", | ||
"sources": [ "binding.c" ] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
'use strict'; | ||
const common = require('../../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
const assert = require('assert'); | ||
const tmpdir = require('../../common/tmpdir'); | ||
const { spawnSync } = require('child_process'); | ||
const crypto = require('crypto'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const { pathToFileURL } = require('url'); | ||
|
||
tmpdir.refresh(); | ||
|
||
function hash(algo, body) { | ||
const h = crypto.createHash(algo); | ||
h.update(body); | ||
return h.digest('base64'); | ||
} | ||
|
||
const policyFilepath = path.join(tmpdir.path, 'policy'); | ||
|
||
const depFilepath = require.resolve(`./build/${common.buildType}/binding.node`); | ||
const depURL = pathToFileURL(depFilepath); | ||
|
||
const tmpdirURL = pathToFileURL(tmpdir.path); | ||
if (!tmpdirURL.pathname.endsWith('/')) { | ||
tmpdirURL.pathname += '/'; | ||
} | ||
|
||
const depBody = fs.readFileSync(depURL); | ||
function writePolicy(...resources) { | ||
const manifest = { resources: {} }; | ||
for (const { url, integrity } of resources) { | ||
manifest.resources[url] = { integrity }; | ||
} | ||
fs.writeFileSync(policyFilepath, JSON.stringify(manifest, null, 2)); | ||
} | ||
|
||
|
||
function test(shouldFail, resources) { | ||
writePolicy(...resources); | ||
const { status, stdout, stderr } = spawnSync(process.execPath, [ | ||
'--experimental-policy', | ||
policyFilepath, | ||
depFilepath | ||
]); | ||
|
||
console.log(stdout.toString(), stderr.toString()); | ||
if (shouldFail) { | ||
assert.notStrictEqual(status, 0); | ||
} else { | ||
assert.strictEqual(status, 0); | ||
} | ||
} | ||
|
||
test(false, [{ | ||
url: depURL, | ||
integrity: `sha256-${hash('sha256', depBody)}` | ||
}]); | ||
test(true, [{ | ||
url: depURL, | ||
integrity: `sha256akjsalkjdlaskjdk-${hash('sha256', depBody)}` | ||
}]); |