**Motivations:** - Ensure all application directories have systemd services enabled at boot - Complete service installation for api-relay, filigrane-api, and clamav-api - Fix dependencies and import issues preventing clamav-api from starting **Root causes:** - Three services (api-relay, filigrane-api, clamav-api) had service files but were not installed in systemd - api-clamav had incorrect node-clamav version (0.12.1) that doesn't exist - api-clamav dependencies were not installed (node_modules missing) - ES module import syntax incompatible with CommonJS node-clamav package **Correctifs:** - Installed api-relay.service, filigrane-api.service, and clamav-api.service in /etc/systemd/system/ - Enabled all three services for automatic startup at boot - Updated api-clamav/package.json: changed node-clamav version from ^0.12.1 to ^1.0.11 - Installed npm dependencies for api-clamav - Fixed ES module import in api-clamav/src/routes/scan.js to use CommonJS-compatible syntax **Evolutions:** - All 7 application services now have systemd services enabled at boot - Complete service coverage: anchorage-api, faucet-api, signet-dashboard, userwallet, api-relay, filigrane-api, clamav-api - All services verified active and listening on their respective ports **Pages affectées:** - api-clamav/package.json - api-clamav/src/routes/scan.js - api-clamav/node_modules/ (new) - api-clamav/package-lock.json (new) - /etc/systemd/system/api-relay.service (new) - /etc/systemd/system/filigrane-api.service (new) - /etc/systemd/system/clamav-api.service (new)
69 lines
2.3 KiB
JavaScript
69 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
var test = require('tape');
|
|
|
|
var getProto = require('../');
|
|
|
|
test('getProto', function (t) {
|
|
t.equal(typeof getProto, 'function', 'is a function');
|
|
|
|
t.test('can get', { skip: !getProto }, function (st) {
|
|
if (getProto) { // TS doesn't understand tape's skip
|
|
var proto = { b: 2 };
|
|
st.equal(getProto(proto), Object.prototype, 'proto: returns the [[Prototype]]');
|
|
|
|
st.test('nullish value', function (s2t) {
|
|
// @ts-expect-error
|
|
s2t['throws'](function () { return getProto(undefined); }, TypeError, 'undefined is not an object');
|
|
// @ts-expect-error
|
|
s2t['throws'](function () { return getProto(null); }, TypeError, 'null is not an object');
|
|
s2t.end();
|
|
});
|
|
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(true); }, 'throws for true');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(false); }, 'throws for false');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(42); }, 'throws for 42');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(NaN); }, 'throws for NaN');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(0); }, 'throws for +0');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(-0); }, 'throws for -0');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(Infinity); }, 'throws for ∞');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(-Infinity); }, 'throws for -∞');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto(''); }, 'throws for empty string');
|
|
// @ts-expect-error
|
|
st['throws'](function () { getProto('foo'); }, 'throws for non-empty string');
|
|
st.equal(getProto(/a/g), RegExp.prototype);
|
|
st.equal(getProto(new Date()), Date.prototype);
|
|
st.equal(getProto(function () {}), Function.prototype);
|
|
st.equal(getProto([]), Array.prototype);
|
|
st.equal(getProto({}), Object.prototype);
|
|
|
|
var nullObject = { __proto__: null };
|
|
if ('toString' in nullObject) {
|
|
st.comment('no null objects in this engine');
|
|
st.equal(getProto(nullObject), Object.prototype, '"null" object has Object.prototype as [[Prototype]]');
|
|
} else {
|
|
st.equal(getProto(nullObject), null, 'null object has null [[Prototype]]');
|
|
}
|
|
}
|
|
|
|
st.end();
|
|
});
|
|
|
|
t.test('can not get', { skip: !!getProto }, function (st) {
|
|
st.equal(getProto, null);
|
|
|
|
st.end();
|
|
});
|
|
|
|
t.end();
|
|
});
|