forked from phcode-dev/staging.phcode.dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExtensionInterface-test.js
More file actions
63 lines (57 loc) · 2.69 KB
/
ExtensionInterface-test.js
File metadata and controls
63 lines (57 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* GNU AGPL-3.0 License
*
* Copyright (c) 2021 - present core.ai . All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
*
*/
/*global describe, it, expect, awaitsFor */
define(function (require, exports, module) {
const ExtensionInterface = require("utils/ExtensionInterface"),
INTERFACE_OBJ = {
"hello": "world"
};
describe("Extension Interface tests", function () {
it("should return a registered interface", function () {
const INTERFACE_1 = "int1";
ExtensionInterface.registerExtensionInterface(INTERFACE_1, INTERFACE_OBJ);
expect(ExtensionInterface.isExistsExtensionInterface(INTERFACE_1)).toEqual(true);
});
it("should raise event on extension registration", async function () {
const INTERFACE_1 = "int1";
let notified = false, interfaceObjNotified = null;
ExtensionInterface.on(ExtensionInterface.EVENT_EXTENSION_INTERFACE_REGISTERED, (event, name, intrfaceObj)=>{
notified = name;
interfaceObjNotified = intrfaceObj;
});
ExtensionInterface.registerExtensionInterface(INTERFACE_1, INTERFACE_OBJ);
expect(ExtensionInterface.isExistsExtensionInterface(INTERFACE_1)).toEqual(true);
await awaitsFor(function () {
return notified === INTERFACE_1 && interfaceObjNotified === INTERFACE_OBJ;
}, "extension interface registration notification", 100);
});
it("should await and get the extension interface", async function () {
const INTERFACE_2 = "int2";
let extensionInterface = null;
ExtensionInterface.waitAndGetExtensionInterface(INTERFACE_2).then((interfaceObj)=>{
extensionInterface = interfaceObj;
});
ExtensionInterface.registerExtensionInterface(INTERFACE_2, INTERFACE_OBJ);
await awaitsFor(function () {
return extensionInterface === INTERFACE_OBJ;
}, "awaiting extension interface", 100);
});
});
});