@bsb/tests 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/bin/bsb-tests.cjs +376 -0
- package/docs/index.md +101 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.js +24 -0
- package/lib/index.js.map +1 -0
- package/lib/mocks.d.ts +39 -0
- package/lib/mocks.js +191 -0
- package/lib/mocks.js.map +1 -0
- package/lib/plugins/config-default/index.d.ts +27 -0
- package/lib/plugins/config-default/index.js +172 -0
- package/lib/plugins/config-default/index.js.map +1 -0
- package/lib/plugins/events-default/index.d.ts +27 -0
- package/lib/plugins/events-default/index.js +143 -0
- package/lib/plugins/events-default/index.js.map +1 -0
- package/lib/plugins/logging-default/index.d.ts +27 -0
- package/lib/plugins/logging-default/index.js +390 -0
- package/lib/plugins/logging-default/index.js.map +1 -0
- package/lib/plugins/observable-default/index.d.ts +27 -0
- package/lib/plugins/observable-default/index.js +166 -0
- package/lib/plugins/observable-default/index.js.map +1 -0
- package/lib/runner/plugin-custom.d.ts +1 -0
- package/lib/runner/plugin-custom.js +119 -0
- package/lib/runner/plugin-custom.js.map +1 -0
- package/lib/runner/plugin-events.d.ts +1 -0
- package/lib/runner/plugin-events.js +37 -0
- package/lib/runner/plugin-events.js.map +1 -0
- package/lib/runner/plugin-observable.d.ts +1 -0
- package/lib/runner/plugin-observable.js +22 -0
- package/lib/runner/plugin-observable.js.map +1 -0
- package/lib/runner/setup.d.ts +1 -0
- package/lib/runner/setup.js +19 -0
- package/lib/runner/setup.js.map +1 -0
- package/lib/sb/plugins/events/broadcast.d.ts +30 -0
- package/lib/sb/plugins/events/broadcast.js +390 -0
- package/lib/sb/plugins/events/broadcast.js.map +1 -0
- package/lib/sb/plugins/events/emit.d.ts +30 -0
- package/lib/sb/plugins/events/emit.js +386 -0
- package/lib/sb/plugins/events/emit.js.map +1 -0
- package/lib/sb/plugins/events/emitAndReturn.d.ts +30 -0
- package/lib/sb/plugins/events/emitAndReturn.js +415 -0
- package/lib/sb/plugins/events/emitAndReturn.js.map +1 -0
- package/lib/sb/plugins/events/emitStreamAndReceiveStream.d.ts +30 -0
- package/lib/sb/plugins/events/emitStreamAndReceiveStream.js +331 -0
- package/lib/sb/plugins/events/emitStreamAndReceiveStream.js.map +1 -0
- package/lib/sb/plugins/events/index.d.ts +28 -0
- package/lib/sb/plugins/events/index.js +69 -0
- package/lib/sb/plugins/events/index.js.map +1 -0
- package/lib/sb/plugins/events/plugin.d.ts +0 -0
- package/lib/sb/plugins/events/plugin.js +2 -0
- package/lib/sb/plugins/events/plugin.js.map +1 -0
- package/lib/sb/plugins/observable/index.d.ts +28 -0
- package/lib/sb/plugins/observable/index.js +141 -0
- package/lib/sb/plugins/observable/index.js.map +1 -0
- package/lib/trace.d.ts +40 -0
- package/lib/trace.js +85 -0
- package/lib/trace.js.map +1 -0
- package/package.json +51 -0
package/lib/mocks.js
ADDED
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* BSB (Better-Service-Base) is an event-bus based microservice framework.
|
|
4
|
+
* Copyright (C) 2016 - 2025 BetterCorp (PTY) Ltd
|
|
5
|
+
*
|
|
6
|
+
* This program is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published
|
|
8
|
+
* by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Alternatively, you may obtain a commercial license for this program.
|
|
12
|
+
* The commercial license allows you to use the Program in a closed-source manner,
|
|
13
|
+
* including the right to create derivative works that are not subject to the terms
|
|
14
|
+
* of the AGPL.
|
|
15
|
+
*
|
|
16
|
+
* To obtain a commercial license, please contact the copyright holders at
|
|
17
|
+
* https://www.bettercorp.dev. The terms and conditions of the commercial license
|
|
18
|
+
* will be provided upon request.
|
|
19
|
+
*
|
|
20
|
+
* This program is distributed in the hope that it will be useful,
|
|
21
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
22
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
23
|
+
* GNU Affero General Public License for more details.
|
|
24
|
+
*
|
|
25
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
26
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
27
|
+
*/
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.generateNullLogging = exports.getEventsConstructorConfig = exports.getConfigConstructorConfig = exports.getLoggingConstructorConfig = exports.getObservableConstructorConfig = exports.newMetrics = exports.newSBObservable = exports.MockSBPlugins = exports.MockSBEvents = exports.MockSBConfig = exports.MockSBObservable = void 0;
|
|
30
|
+
const base_1 = require("@bsb/base");
|
|
31
|
+
const events_1 = require("events");
|
|
32
|
+
const MockSBObservable = () => {
|
|
33
|
+
const observableBus = new events_1.EventEmitter();
|
|
34
|
+
observableBus.on('error', (...args) => { }); // Prevent unhandled error events
|
|
35
|
+
return {
|
|
36
|
+
observableBus,
|
|
37
|
+
isReady: true,
|
|
38
|
+
// Logging methods - emit to bus
|
|
39
|
+
debug: (plugin, trace, message, meta) => {
|
|
40
|
+
observableBus.emit('debug', plugin, trace, message, meta);
|
|
41
|
+
},
|
|
42
|
+
info: (plugin, trace, message, meta) => {
|
|
43
|
+
observableBus.emit('info', plugin, trace, message, meta);
|
|
44
|
+
},
|
|
45
|
+
warn: (plugin, trace, message, meta) => {
|
|
46
|
+
observableBus.emit('warn', plugin, trace, message, meta);
|
|
47
|
+
},
|
|
48
|
+
error: (plugin, trace, message, meta) => {
|
|
49
|
+
observableBus.emit('error', plugin, trace, message, meta);
|
|
50
|
+
},
|
|
51
|
+
// Metrics methods - emit to bus
|
|
52
|
+
createCounter: (timestamp, pluginName, name, description, help, labels) => {
|
|
53
|
+
observableBus.emit('createCounter', timestamp, pluginName, name, description, help, labels);
|
|
54
|
+
},
|
|
55
|
+
incrementCounter: (timestamp, pluginName, name, value, labels) => {
|
|
56
|
+
observableBus.emit('incrementCounter', timestamp, pluginName, name, value, labels);
|
|
57
|
+
},
|
|
58
|
+
createGauge: (timestamp, pluginName, name, description, help, labels) => {
|
|
59
|
+
observableBus.emit('createGauge', timestamp, pluginName, name, description, help, labels);
|
|
60
|
+
},
|
|
61
|
+
setGauge: (timestamp, pluginName, name, value, labels) => {
|
|
62
|
+
observableBus.emit('setGauge', timestamp, pluginName, name, value, labels);
|
|
63
|
+
},
|
|
64
|
+
createHistogram: (timestamp, pluginName, name, description, help, boundaries, labels) => {
|
|
65
|
+
observableBus.emit('createHistogram', timestamp, pluginName, name, description, help, boundaries, labels);
|
|
66
|
+
},
|
|
67
|
+
observeHistogram: (timestamp, pluginName, name, value, labels) => {
|
|
68
|
+
observableBus.emit('observeHistogram', timestamp, pluginName, name, value, labels);
|
|
69
|
+
},
|
|
70
|
+
// Span methods - emit to bus
|
|
71
|
+
startSpan: (timestamp, appId, pluginName, traceId, parentSpanId, spanId, name, attributes) => {
|
|
72
|
+
observableBus.emit('spanStart', { t: traceId, s: spanId }, pluginName, name, attributes);
|
|
73
|
+
},
|
|
74
|
+
endSpan: (timestamp, appId, pluginName, traceId, spanId, attributes) => {
|
|
75
|
+
observableBus.emit('spanEnd', { t: traceId, s: spanId }, pluginName, attributes);
|
|
76
|
+
},
|
|
77
|
+
errorSpan: (timestamp, appId, pluginName, traceId, spanId, error, attributes) => {
|
|
78
|
+
observableBus.emit('spanError', { t: traceId, s: spanId }, pluginName, error, attributes);
|
|
79
|
+
},
|
|
80
|
+
// Lifecycle methods
|
|
81
|
+
setupObservablePlugins: async () => { },
|
|
82
|
+
init: async () => { },
|
|
83
|
+
run: async () => { },
|
|
84
|
+
dispose: async () => { },
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
exports.MockSBObservable = MockSBObservable;
|
|
88
|
+
const MockSBConfig = () => {
|
|
89
|
+
const SB = {
|
|
90
|
+
getObservablePlugins: async (obs) => ({}),
|
|
91
|
+
getEventsPlugins: async (obs) => ({}),
|
|
92
|
+
getServicePlugins: async (obs) => ({}),
|
|
93
|
+
getPluginConfig: async (obs, pluginType, name) => null,
|
|
94
|
+
getServicePluginDefinition: async (obs, pluginName) => ({ name: pluginName, enabled: true }),
|
|
95
|
+
dispose: () => { },
|
|
96
|
+
setConfigPlugin: async () => {
|
|
97
|
+
return SB;
|
|
98
|
+
},
|
|
99
|
+
init: async () => { },
|
|
100
|
+
};
|
|
101
|
+
return SB;
|
|
102
|
+
};
|
|
103
|
+
exports.MockSBConfig = MockSBConfig;
|
|
104
|
+
const MockSBEvents = () => {
|
|
105
|
+
return {
|
|
106
|
+
eventsBus: new events_1.EventEmitter(),
|
|
107
|
+
dispose: () => { },
|
|
108
|
+
init: async () => { },
|
|
109
|
+
run: async () => { },
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
exports.MockSBEvents = MockSBEvents;
|
|
113
|
+
const MockSBPlugins = () => {
|
|
114
|
+
return {
|
|
115
|
+
getPlugins: async () => ({}),
|
|
116
|
+
dispose: () => { },
|
|
117
|
+
init: async () => { },
|
|
118
|
+
run: async () => { },
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
exports.MockSBPlugins = MockSBPlugins;
|
|
122
|
+
const newSBObservable = async () => {
|
|
123
|
+
const observable = (0, exports.MockSBObservable)();
|
|
124
|
+
return observable;
|
|
125
|
+
};
|
|
126
|
+
exports.newSBObservable = newSBObservable;
|
|
127
|
+
const newMetrics = async () => {
|
|
128
|
+
const observable = await (0, exports.newSBObservable)();
|
|
129
|
+
return new base_1.ObservableBackend("development", "test-app", "test-plugin", observable);
|
|
130
|
+
};
|
|
131
|
+
exports.newMetrics = newMetrics;
|
|
132
|
+
const getObservableConstructorConfig = (mode = "development") => {
|
|
133
|
+
return {
|
|
134
|
+
appId: "test-app",
|
|
135
|
+
packageCwd: process.cwd(),
|
|
136
|
+
pluginCwd: process.cwd(),
|
|
137
|
+
cwd: process.cwd(),
|
|
138
|
+
mode: mode,
|
|
139
|
+
pluginName: "test-plugin",
|
|
140
|
+
pluginVersion: "0.0.0",
|
|
141
|
+
config: undefined,
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
exports.getObservableConstructorConfig = getObservableConstructorConfig;
|
|
145
|
+
const getLoggingConstructorConfig = (mode = "development") => {
|
|
146
|
+
return {
|
|
147
|
+
appId: "test-app",
|
|
148
|
+
packageCwd: process.cwd(),
|
|
149
|
+
pluginCwd: process.cwd(),
|
|
150
|
+
cwd: process.cwd(),
|
|
151
|
+
mode: mode,
|
|
152
|
+
pluginName: "logging-default",
|
|
153
|
+
pluginVersion: "0.0.0",
|
|
154
|
+
config: undefined,
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
exports.getLoggingConstructorConfig = getLoggingConstructorConfig;
|
|
158
|
+
const getConfigConstructorConfig = (config) => {
|
|
159
|
+
return {
|
|
160
|
+
appId: "test-app",
|
|
161
|
+
packageCwd: process.cwd(),
|
|
162
|
+
pluginCwd: process.cwd(),
|
|
163
|
+
cwd: process.cwd(),
|
|
164
|
+
mode: "development",
|
|
165
|
+
pluginName: "config-default",
|
|
166
|
+
pluginVersion: "0.0.0",
|
|
167
|
+
sbObservable: (0, exports.MockSBObservable)(),
|
|
168
|
+
config: config,
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
exports.getConfigConstructorConfig = getConfigConstructorConfig;
|
|
172
|
+
const getEventsConstructorConfig = async (config) => {
|
|
173
|
+
return {
|
|
174
|
+
appId: "test-app",
|
|
175
|
+
packageCwd: process.cwd(),
|
|
176
|
+
pluginCwd: process.cwd(),
|
|
177
|
+
cwd: process.cwd(),
|
|
178
|
+
mode: "development",
|
|
179
|
+
pluginName: "test-plugin",
|
|
180
|
+
pluginVersion: "0.0.0",
|
|
181
|
+
sbObservable: (0, exports.MockSBObservable)(),
|
|
182
|
+
config: config,
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
exports.getEventsConstructorConfig = getEventsConstructorConfig;
|
|
186
|
+
const generateNullLogging = () => {
|
|
187
|
+
const sbObservable = (0, exports.MockSBObservable)();
|
|
188
|
+
return new base_1.ObservableBackend("development", "test-app", "test-plugin", sbObservable);
|
|
189
|
+
};
|
|
190
|
+
exports.generateNullLogging = generateNullLogging;
|
|
191
|
+
//# sourceMappingURL=mocks.js.map
|
package/lib/mocks.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mocks.js","sourceRoot":"","sources":["../src/mocks.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BSB (Better-Service-Base) is an event-bus based microservice framework.
|
|
3
|
+
* Copyright (C) 2016 - 2025 BetterCorp (PTY) Ltd
|
|
4
|
+
*
|
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU Affero General Public License as published
|
|
7
|
+
* by the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
* (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* Alternatively, you may obtain a commercial license for this program.
|
|
11
|
+
* The commercial license allows you to use the Program in a closed-source manner,
|
|
12
|
+
* including the right to create derivative works that are not subject to the terms
|
|
13
|
+
* of the AGPL.
|
|
14
|
+
*
|
|
15
|
+
* To obtain a commercial license, please contact the copyright holders at
|
|
16
|
+
* https://www.bettercorp.dev. The terms and conditions of the commercial license
|
|
17
|
+
* will be provided upon request.
|
|
18
|
+
*
|
|
19
|
+
* This program is distributed in the hope that it will be useful,
|
|
20
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
22
|
+
* GNU Affero General Public License for more details.
|
|
23
|
+
*
|
|
24
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
25
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
26
|
+
*/
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* BSB (Better-Service-Base) is an event-bus based microservice framework.
|
|
4
|
+
* Copyright (C) 2016 - 2025 BetterCorp (PTY) Ltd
|
|
5
|
+
*
|
|
6
|
+
* This program is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published
|
|
8
|
+
* by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Alternatively, you may obtain a commercial license for this program.
|
|
12
|
+
* The commercial license allows you to use the Program in a closed-source manner,
|
|
13
|
+
* including the right to create derivative works that are not subject to the terms
|
|
14
|
+
* of the AGPL.
|
|
15
|
+
*
|
|
16
|
+
* To obtain a commercial license, please contact the copyright holders at
|
|
17
|
+
* https://www.bettercorp.dev. The terms and conditions of the commercial license
|
|
18
|
+
* will be provided upon request.
|
|
19
|
+
*
|
|
20
|
+
* This program is distributed in the hope that it will be useful,
|
|
21
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
22
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
23
|
+
* GNU Affero General Public License for more details.
|
|
24
|
+
*
|
|
25
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
26
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
27
|
+
*/
|
|
28
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
29
|
+
if (k2 === undefined) k2 = k;
|
|
30
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
31
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
32
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
33
|
+
}
|
|
34
|
+
Object.defineProperty(o, k2, desc);
|
|
35
|
+
}) : (function(o, m, k, k2) {
|
|
36
|
+
if (k2 === undefined) k2 = k;
|
|
37
|
+
o[k2] = m[k];
|
|
38
|
+
}));
|
|
39
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
40
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
41
|
+
}) : function(o, v) {
|
|
42
|
+
o["default"] = v;
|
|
43
|
+
});
|
|
44
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
45
|
+
var ownKeys = function(o) {
|
|
46
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
47
|
+
var ar = [];
|
|
48
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
49
|
+
return ar;
|
|
50
|
+
};
|
|
51
|
+
return ownKeys(o);
|
|
52
|
+
};
|
|
53
|
+
return function (mod) {
|
|
54
|
+
if (mod && mod.__esModule) return mod;
|
|
55
|
+
var result = {};
|
|
56
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
57
|
+
__setModuleDefault(result, mod);
|
|
58
|
+
return result;
|
|
59
|
+
};
|
|
60
|
+
})();
|
|
61
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
62
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
63
|
+
};
|
|
64
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65
|
+
const assert = __importStar(require("assert"));
|
|
66
|
+
const path_1 = __importDefault(require("path"));
|
|
67
|
+
const base_1 = require("@bsb/base");
|
|
68
|
+
const trace_1 = require("../../trace");
|
|
69
|
+
const mocks_1 = require("../../mocks");
|
|
70
|
+
const pluginModule = process.env.BSB_TEST_PLUGIN_MODULE;
|
|
71
|
+
if (!pluginModule) {
|
|
72
|
+
throw new Error("BSB_TEST_PLUGIN_MODULE is required for config-default tests");
|
|
73
|
+
}
|
|
74
|
+
const resolvedModule = path_1.default.resolve(pluginModule);
|
|
75
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
76
|
+
const mod = require(resolvedModule);
|
|
77
|
+
const Plugin = mod.Plugin || mod.default || mod;
|
|
78
|
+
const fixturePath = path_1.default.join(__dirname, "..", "..", "..", "fixtures", "sec-config.yaml");
|
|
79
|
+
describe("plugins/config-default", () => {
|
|
80
|
+
const obs = (0, trace_1.createTestObservable)();
|
|
81
|
+
it("should throw if config file is missing", () => {
|
|
82
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
83
|
+
BSB_PROFILE: "default",
|
|
84
|
+
BSB_CONFIG_FILE: "missing-config.yaml",
|
|
85
|
+
}));
|
|
86
|
+
assert.throws(() => plugin.init(obs));
|
|
87
|
+
});
|
|
88
|
+
it("should throw for unknown profile", () => {
|
|
89
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
90
|
+
BSB_PROFILE: "missing",
|
|
91
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
92
|
+
}));
|
|
93
|
+
assert.throws(() => plugin.init(obs));
|
|
94
|
+
});
|
|
95
|
+
it("should load config and expose enabled plugins", async () => {
|
|
96
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
97
|
+
BSB_PROFILE: "default",
|
|
98
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
99
|
+
}));
|
|
100
|
+
plugin.init(obs);
|
|
101
|
+
const observables = await plugin.getObservablePlugins();
|
|
102
|
+
assert.ok(observables["obs-enabled"]);
|
|
103
|
+
assert.ok(!observables["obs-disabled"]);
|
|
104
|
+
const events = await plugin.getEventsPlugins();
|
|
105
|
+
assert.ok(events["ev-enabled"]);
|
|
106
|
+
assert.ok(!events["ev-disabled"]);
|
|
107
|
+
const services = await plugin.getServicePlugins();
|
|
108
|
+
assert.ok(services["svc-enabled"]);
|
|
109
|
+
assert.ok(!services["svc-disabled"]);
|
|
110
|
+
});
|
|
111
|
+
it("should return plugin configs for correct types", async () => {
|
|
112
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
113
|
+
BSB_PROFILE: "default",
|
|
114
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
115
|
+
}));
|
|
116
|
+
plugin.init(obs);
|
|
117
|
+
const evConfig = await plugin.getPluginConfig(obs, base_1.PluginTypes.events, "ev-enabled");
|
|
118
|
+
assert.deepEqual(evConfig, { foo: "bar" });
|
|
119
|
+
const obsConfig = await plugin.getPluginConfig(obs, base_1.PluginTypes.observable, "obs-enabled");
|
|
120
|
+
assert.deepEqual(obsConfig, { level: "info" });
|
|
121
|
+
const svcConfig = await plugin.getPluginConfig(obs, base_1.PluginTypes.service, "svc-enabled");
|
|
122
|
+
assert.deepEqual(svcConfig, { hello: "world" });
|
|
123
|
+
const cfgConfig = await plugin.getPluginConfig(obs, base_1.PluginTypes.config, "config-default");
|
|
124
|
+
assert.strictEqual(cfgConfig, null);
|
|
125
|
+
});
|
|
126
|
+
it("should resolve service plugin definition", async () => {
|
|
127
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
128
|
+
BSB_PROFILE: "default",
|
|
129
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
130
|
+
}));
|
|
131
|
+
plugin.init(obs);
|
|
132
|
+
const def = await plugin.getServicePluginDefinition(obs, "service-default0");
|
|
133
|
+
assert.strictEqual(def.name, "svc-enabled");
|
|
134
|
+
assert.strictEqual(def.enabled, true);
|
|
135
|
+
});
|
|
136
|
+
it("should resolve disabled service plugin definition", async () => {
|
|
137
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
138
|
+
BSB_PROFILE: "default",
|
|
139
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
140
|
+
}));
|
|
141
|
+
plugin.init(obs);
|
|
142
|
+
const def = await plugin.getServicePluginDefinition(obs, "service-only-disabled");
|
|
143
|
+
assert.strictEqual(def.name, "svc-only-disabled");
|
|
144
|
+
assert.strictEqual(def.enabled, false);
|
|
145
|
+
});
|
|
146
|
+
it("should throw when service plugin missing", async () => {
|
|
147
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
148
|
+
BSB_PROFILE: "default",
|
|
149
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
150
|
+
}));
|
|
151
|
+
plugin.init(obs);
|
|
152
|
+
await assert.rejects(plugin.getServicePluginDefinition(obs, "missing-plugin"));
|
|
153
|
+
});
|
|
154
|
+
it("should list plugins", async () => {
|
|
155
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
156
|
+
BSB_PROFILE: "default",
|
|
157
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
158
|
+
}));
|
|
159
|
+
plugin.init(obs);
|
|
160
|
+
const plugins = await plugin.getPlugins();
|
|
161
|
+
assert.ok(plugins.find((p) => p.name === "svc-enabled"));
|
|
162
|
+
});
|
|
163
|
+
it("dispose should clear config", () => {
|
|
164
|
+
const plugin = new Plugin((0, mocks_1.getConfigConstructorConfig)({
|
|
165
|
+
BSB_PROFILE: "default",
|
|
166
|
+
BSB_CONFIG_FILE: fixturePath,
|
|
167
|
+
}));
|
|
168
|
+
plugin.init(obs);
|
|
169
|
+
plugin.dispose();
|
|
170
|
+
});
|
|
171
|
+
});
|
|
172
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/plugins/config-default/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BSB (Better-Service-Base) is an event-bus based microservice framework.
|
|
3
|
+
* Copyright (C) 2016 - 2025 BetterCorp (PTY) Ltd
|
|
4
|
+
*
|
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU Affero General Public License as published
|
|
7
|
+
* by the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
* (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* Alternatively, you may obtain a commercial license for this program.
|
|
11
|
+
* The commercial license allows you to use the Program in a closed-source manner,
|
|
12
|
+
* including the right to create derivative works that are not subject to the terms
|
|
13
|
+
* of the AGPL.
|
|
14
|
+
*
|
|
15
|
+
* To obtain a commercial license, please contact the copyright holders at
|
|
16
|
+
* https://www.bettercorp.dev. The terms and conditions of the commercial license
|
|
17
|
+
* will be provided upon request.
|
|
18
|
+
*
|
|
19
|
+
* This program is distributed in the hope that it will be useful,
|
|
20
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
22
|
+
* GNU Affero General Public License for more details.
|
|
23
|
+
*
|
|
24
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
25
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
26
|
+
*/
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* BSB (Better-Service-Base) is an event-bus based microservice framework.
|
|
4
|
+
* Copyright (C) 2016 - 2025 BetterCorp (PTY) Ltd
|
|
5
|
+
*
|
|
6
|
+
* This program is free software: you can redistribute it and/or modify
|
|
7
|
+
* it under the terms of the GNU Affero General Public License as published
|
|
8
|
+
* by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
* (at your option) any later version.
|
|
10
|
+
*
|
|
11
|
+
* Alternatively, you may obtain a commercial license for this program.
|
|
12
|
+
* The commercial license allows you to use the Program in a closed-source manner,
|
|
13
|
+
* including the right to create derivative works that are not subject to the terms
|
|
14
|
+
* of the AGPL.
|
|
15
|
+
*
|
|
16
|
+
* To obtain a commercial license, please contact the copyright holders at
|
|
17
|
+
* https://www.bettercorp.dev. The terms and conditions of the commercial license
|
|
18
|
+
* will be provided upon request.
|
|
19
|
+
*
|
|
20
|
+
* This program is distributed in the hope that it will be useful,
|
|
21
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
22
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
23
|
+
* GNU Affero General Public License for more details.
|
|
24
|
+
*
|
|
25
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
26
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
27
|
+
*/
|
|
28
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
29
|
+
if (k2 === undefined) k2 = k;
|
|
30
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
31
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
32
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
33
|
+
}
|
|
34
|
+
Object.defineProperty(o, k2, desc);
|
|
35
|
+
}) : (function(o, m, k, k2) {
|
|
36
|
+
if (k2 === undefined) k2 = k;
|
|
37
|
+
o[k2] = m[k];
|
|
38
|
+
}));
|
|
39
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
40
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
41
|
+
}) : function(o, v) {
|
|
42
|
+
o["default"] = v;
|
|
43
|
+
});
|
|
44
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
45
|
+
var ownKeys = function(o) {
|
|
46
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
47
|
+
var ar = [];
|
|
48
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
49
|
+
return ar;
|
|
50
|
+
};
|
|
51
|
+
return ownKeys(o);
|
|
52
|
+
};
|
|
53
|
+
return function (mod) {
|
|
54
|
+
if (mod && mod.__esModule) return mod;
|
|
55
|
+
var result = {};
|
|
56
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
57
|
+
__setModuleDefault(result, mod);
|
|
58
|
+
return result;
|
|
59
|
+
};
|
|
60
|
+
})();
|
|
61
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
62
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
63
|
+
};
|
|
64
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
65
|
+
const assert = __importStar(require("assert"));
|
|
66
|
+
const path_1 = __importDefault(require("path"));
|
|
67
|
+
const crypto_1 = require("crypto");
|
|
68
|
+
const index_1 = require("../../sb/plugins/events/index");
|
|
69
|
+
const trace_1 = require("../../trace");
|
|
70
|
+
const mocks_1 = require("../../mocks");
|
|
71
|
+
const pluginModule = process.env.BSB_TEST_PLUGIN_MODULE;
|
|
72
|
+
if (!pluginModule) {
|
|
73
|
+
throw new Error("BSB_TEST_PLUGIN_MODULE is required for events-default tests");
|
|
74
|
+
}
|
|
75
|
+
const resolvedModule = path_1.default.resolve(pluginModule);
|
|
76
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
77
|
+
const mod = require(resolvedModule);
|
|
78
|
+
const Plugin = mod.Plugin || mod.default || mod;
|
|
79
|
+
const pluginRoot = path_1.default.dirname(resolvedModule);
|
|
80
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
81
|
+
const emitDirect = require(path_1.default.join(pluginRoot, "events", "emit")).emit;
|
|
82
|
+
describe("plugins/events-default", () => {
|
|
83
|
+
describe("Events Emit", async () => {
|
|
84
|
+
const dummyObs = (0, trace_1.createTestObservable)();
|
|
85
|
+
it("_lastReceivedMessageIds should be empty on init", async () => {
|
|
86
|
+
const emit = new emitDirect((0, mocks_1.generateNullLogging)(), await (0, mocks_1.newMetrics)());
|
|
87
|
+
assert.equal(emit._lastReceivedMessageIds.length, 0);
|
|
88
|
+
});
|
|
89
|
+
it("_lastReceivedMessageIds should contain latest emit ID", async () => {
|
|
90
|
+
const emit = new emitDirect((0, mocks_1.generateNullLogging)(), await (0, mocks_1.newMetrics)());
|
|
91
|
+
await emit.onEvent(dummyObs, "b", "c", async () => { });
|
|
92
|
+
await emit.emitEvent(dummyObs, "b", "c", []);
|
|
93
|
+
assert.equal(emit._lastReceivedMessageIds.length, 1);
|
|
94
|
+
});
|
|
95
|
+
it("_lastReceivedMessageIds should call only once", async () => {
|
|
96
|
+
const emit = new emitDirect((0, mocks_1.generateNullLogging)(), await (0, mocks_1.newMetrics)());
|
|
97
|
+
const testID = (0, crypto_1.randomUUID)();
|
|
98
|
+
let called = 0;
|
|
99
|
+
await emit.onEvent(dummyObs, "b", "c", async () => {
|
|
100
|
+
called++;
|
|
101
|
+
});
|
|
102
|
+
emit.emit(`b-c`, dummyObs, {
|
|
103
|
+
msgID: testID,
|
|
104
|
+
data: [],
|
|
105
|
+
});
|
|
106
|
+
assert.equal(called, 1);
|
|
107
|
+
});
|
|
108
|
+
it("_lastReceivedMessageIds should call only once, per id", async () => {
|
|
109
|
+
const emit = new emitDirect((0, mocks_1.generateNullLogging)(), await (0, mocks_1.newMetrics)());
|
|
110
|
+
const testID1 = (0, crypto_1.randomUUID)();
|
|
111
|
+
const testID2 = (0, crypto_1.randomUUID)();
|
|
112
|
+
let called = 0;
|
|
113
|
+
await emit.onEvent(dummyObs, "b", "c", async () => {
|
|
114
|
+
called++;
|
|
115
|
+
});
|
|
116
|
+
emit.emit(`b-c`, dummyObs, {
|
|
117
|
+
msgID: testID1,
|
|
118
|
+
data: [],
|
|
119
|
+
});
|
|
120
|
+
emit.emit(`b-c`, dummyObs, {
|
|
121
|
+
msgID: testID2,
|
|
122
|
+
data: [],
|
|
123
|
+
});
|
|
124
|
+
assert.equal(called, 2);
|
|
125
|
+
});
|
|
126
|
+
it("_lastReceivedMessageIds should cycle ids > 50", async () => {
|
|
127
|
+
const emit = new emitDirect((0, mocks_1.generateNullLogging)(), await (0, mocks_1.newMetrics)());
|
|
128
|
+
const testIDs = "."
|
|
129
|
+
.repeat(100)
|
|
130
|
+
.split("")
|
|
131
|
+
.map(() => (0, crypto_1.randomUUID)());
|
|
132
|
+
await emit.onEvent(dummyObs, "b", "c", async () => { });
|
|
133
|
+
for (const emitID of testIDs)
|
|
134
|
+
emit.emit(`b-c`, dummyObs, {
|
|
135
|
+
msgID: emitID,
|
|
136
|
+
data: [],
|
|
137
|
+
});
|
|
138
|
+
assert.equal(emit._lastReceivedMessageIds.length, 51);
|
|
139
|
+
});
|
|
140
|
+
});
|
|
141
|
+
(0, index_1.RunEventsPluginTests)(Plugin);
|
|
142
|
+
});
|
|
143
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/plugins/events-default/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BSB (Better-Service-Base) is an event-bus based microservice framework.
|
|
3
|
+
* Copyright (C) 2016 - 2025 BetterCorp (PTY) Ltd
|
|
4
|
+
*
|
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU Affero General Public License as published
|
|
7
|
+
* by the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
* (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* Alternatively, you may obtain a commercial license for this program.
|
|
11
|
+
* The commercial license allows you to use the Program in a closed-source manner,
|
|
12
|
+
* including the right to create derivative works that are not subject to the terms
|
|
13
|
+
* of the AGPL.
|
|
14
|
+
*
|
|
15
|
+
* To obtain a commercial license, please contact the copyright holders at
|
|
16
|
+
* https://www.bettercorp.dev. The terms and conditions of the commercial license
|
|
17
|
+
* will be provided upon request.
|
|
18
|
+
*
|
|
19
|
+
* This program is distributed in the hope that it will be useful,
|
|
20
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
22
|
+
* GNU Affero General Public License for more details.
|
|
23
|
+
*
|
|
24
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
25
|
+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
26
|
+
*/
|
|
27
|
+
export {};
|