-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathinterface.test.js
More file actions
146 lines (120 loc) · 5.3 KB
/
interface.test.js
File metadata and controls
146 lines (120 loc) · 5.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
* @license
* MusicBlocks v3.4.1
* Copyright (C) 2025 Justin Charles
*
* 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://www.gnu.org/licenses/>.
*/
const JSInterface = require("../interface");
JSInterface._methodArgConstraints = {};
describe("JSInterface", () => {
describe("isClampBlock", () => {
it("should return true for a known clamp block", () => {
expect(JSInterface.isClampBlock("newnote")).toBe(true);
});
it("should return false for an unknown block", () => {
expect(JSInterface.isClampBlock("nonexistent")).toBe(false);
});
});
describe("isSetter", () => {
it("should return true for a valid setter block", () => {
expect(JSInterface.isSetter("pickup")).toBe(true);
});
it("should return false for a block that is not a setter", () => {
expect(JSInterface.isSetter("newnote")).toBe(false);
});
});
describe("isGetter", () => {
it("should return true for a valid getter block", () => {
expect(JSInterface.isGetter("mynotevalue")).toBe(true);
});
it("should return true for heap getters", () => {
expect(JSInterface.isGetter("heapLength")).toBe(true);
});
it("should return false for a block that is not a getter", () => {
expect(JSInterface.isGetter("pickup")).toBe(false);
});
});
describe("isMethod", () => {
it("should return true for a valid method block", () => {
expect(JSInterface.isMethod("newnote")).toBe(true);
});
it("should return true for heap methods", () => {
expect(JSInterface.isMethod("emptyHeap")).toBe(true);
});
it("should return true for heap push method", () => {
expect(JSInterface.isMethod("push")).toBe(true);
});
it("should return false for a block that is not a method", () => {
expect(JSInterface.isMethod("pickup")).toBe(false);
});
});
describe("methodReturns", () => {
it("should return true for a method that has a return value", () => {
expect(JSInterface.methodReturns("getDict")).toBe(true);
});
it("should return false for a method that does not have a return value", () => {
expect(JSInterface.methodReturns("newnote")).toBe(false);
});
});
describe("getSetterName", () => {
it("should return the correct setter name when available", () => {
expect(JSInterface.getSetterName("pickup")).toBe("PICKUP");
});
it("should return null when no setter exists for the given block", () => {
expect(JSInterface.getSetterName("newnote")).toBeNull();
});
});
describe("getGetterName", () => {
it("should return the correct getter name when available", () => {
expect(JSInterface.getGetterName("mynotevalue")).toBe("NOTEVALUE");
});
it("should return the correct heap getter name when available", () => {
expect(JSInterface.getGetterName("heapLength")).toBe("HEAPLENGTH");
});
it("should return null when no getter exists for the given block", () => {
expect(JSInterface.getGetterName("pickup")).toBeNull();
});
});
describe("getMethodName", () => {
it("should return the correct method name when available", () => {
expect(JSInterface.getMethodName("newnote")).toBe("playNote");
});
it("should return the correct heap method name when available", () => {
expect(JSInterface.getMethodName("emptyHeap")).toBe("emptyHeap");
});
it("should return the correct heap push method name when available", () => {
expect(JSInterface.getMethodName("push")).toBe("push");
});
it("should return null when no method exists for the given block", () => {
expect(JSInterface.getMethodName("pickup")).toBeNull();
});
});
describe("rearrangeMethodArgs", () => {
it("should rearrange the arguments for methods present in the lookup", () => {
const args = [1, 2, 3];
expect(JSInterface.rearrangeMethodArgs("setDict", args)).toEqual([2, 3, 1]);
});
it("should return the original args if no rearrangement is required", () => {
const args = [1, 2, 3];
expect(JSInterface.rearrangeMethodArgs("nonExistingMethod", args)).toEqual(args);
});
});
describe("validateArgs", () => {
it("should return the original args when no constraints are defined for the method", () => {
const args = [1, 2, 3];
expect(JSInterface.validateArgs("nonExistingMethod", args)).toEqual(args);
});
});
});