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
|
/*jshint esversion: 6 */
"use strict";
const test = require('tape');
const beautify = require('js-beautify').js_beautify;
const VM = require("../src/lvm.js");
const getState = require("./tests.js").getState;
test('__index, __newindex: with actual table', function (t) {
let luaCode = `
local t = {yo=1}
return t.yo, t.lo
`, L;
t.plan(3);
t.comment("Running following code: \n" + luaCode);
t.doesNotThrow(function () {
L = getState(luaCode);
VM.luaV_execute(L);
}, "Program executed without errors");
t.strictEqual(
L.stack[L.top - 1].value,
null,
"Program output is correct"
);
t.strictEqual(
L.stack[L.top - 2].value,
1,
"Program output is correct"
);
});
test('__index: with non table', function (t) {
let luaCode = `
local t = "a string"
return t.yo
`, L;
t.plan(2);
t.comment("Running following code: \n" + luaCode);
t.doesNotThrow(function () {
L = getState(luaCode);
}, "Bytecode parsed without errors");
t.throws(function () {
VM.luaV_execute(L);
}, "Program executed with expected error");
});
test('__newindex: with non table', function (t) {
let luaCode = `
local t = "a string"
t.yo = "hello"
`, L;
t.plan(2);
t.comment("Running following code: \n" + luaCode);
t.doesNotThrow(function () {
L = getState(luaCode);
}, "Bytecode parsed without errors");
t.throws(function () {
VM.luaV_execute(L);
}, "Program executed with expected error");
});
|