aboutsummaryrefslogtreecommitdiff
path: root/test/test-suite/attrib.test.js
blob: bb07e6287afd54b8efb4cdc84bcd27a66897e579 (plain)
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
"use strict";

const lua = require('../../src/lua.js');
const lauxlib = require('../../src/lauxlib.js');
const lualib = require('../../src/lualib.js');
const {to_luastring} = require("../../src/fengaricore.js");

test("[test-suite] attrib: testing require", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");

    let luaCode = `
        assert(require"string" == string)
        assert(require"math" == math)
        assert(require"table" == table)
        assert(require"io" == io)
        assert(require"os" == os)
        assert(require"coroutine" == coroutine)

        assert(type(package.path) == "string")
        assert(type(package.jspath) == "string")
        assert(type(package.loaded) == "table")
        assert(type(package.preload) == "table")

        assert(type(package.config) == "string")
        -- print("package config: "..string.gsub(package.config, "\\n", "|"))

        do
          -- create a path with 'max' templates,
          -- each with 1-10 repetitions of '?'
          local max = _soft and 100 or 2000
          local t = {}
          for i = 1,max do t[i] = string.rep("?", i%10 + 1) end
          t[#t + 1] = ";"    -- empty template
          local path = table.concat(t, ";")
          -- use that path in a search
          local s, err = package.searchpath("xuxu", path)
          -- search fails; check that message has an occurence of
          -- '??????????' with ? replaced by xuxu and at least 'max' lines
          assert(not s and
                 string.find(err, string.rep("xuxu", 10)) and
                 #string.gsub(err, "[^\\n]", "") >= max)
          -- path with one very long template
          local path = string.rep("?", max)
          local s, err = package.searchpath("xuxu", path)
          assert(not s and string.find(err, string.rep('xuxu', max)))
        end

        do
          local oldpath = package.path
          package.path = {}
          local s, err = pcall(require, "no-such-file")
          assert(not s and string.find(err, "package.path"))
          package.path = oldpath
        end
    `;
    lualib.luaL_openlibs(L);
    if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) === lua.LUA_ERRSYNTAX)
        throw new SyntaxError(lua.lua_tojsstring(L, -1));
    lua.lua_call(L, 0, 0);
});


// TODO: when io.write etc.
test.skip("[test-suite] attrib: system specific tests for 'require'", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");
});


test("[test-suite] attrib: testing assignments, logical operators, and constructors", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");

    let luaCode = `
        local res, res2 = 27

        a, b = 1, 2+3
        assert(a==1 and b==5)
        a={}
        function f() return 10, 11, 12 end
        a.x, b, a[1] = 1, 2, f()
        assert(a.x==1 and b==2 and a[1]==10)
        a[f()], b, a[f()+3] = f(), a, 'x'
        assert(a[10] == 10 and b == a and a[13] == 'x')

        do
          local f = function (n) local x = {}; for i=1,n do x[i]=i end;
                                 return table.unpack(x) end;
          local a,b,c
          a,b = 0, f(1)
          assert(a == 0 and b == 1)
          A,b = 0, f(1)
          assert(A == 0 and b == 1)
          a,b,c = 0,5,f(4)
          assert(a==0 and b==5 and c==1)
          a,b,c = 0,5,f(0)
          assert(a==0 and b==5 and c==nil)
        end

        a, b, c, d = 1 and nil, 1 or nil, (1 and (nil or 1)), 6
        assert(not a and b and c and d==6)

        d = 20
        a, b, c, d = f()
        assert(a==10 and b==11 and c==12 and d==nil)
        a,b = f(), 1, 2, 3, f()
        assert(a==10 and b==1)

        assert(a<b == false and a>b == true)
        assert((10 and 2) == 2)
        assert((10 or 2) == 10)
        assert((10 or assert(nil)) == 10)
        assert(not (nil and assert(nil)))
        assert((nil or "alo") == "alo")
        assert((nil and 10) == nil)
        assert((false and 10) == false)
        assert((true or 10) == true)
        assert((false or 10) == 10)
        assert(false ~= nil)
        assert(nil ~= false)
        assert(not nil == true)
        assert(not not nil == false)
        assert(not not 1 == true)
        assert(not not a == true)
        assert(not not (6 or nil) == true)
        assert(not not (nil and 56) == false)
        assert(not not (nil and true) == false)
        assert(not 10 == false)
        assert(not {} == false)
        assert(not 0.5 == false)
        assert(not "x" == false)

        assert({} ~= {})

        a = {}
        a[true] = 20
        a[false] = 10
        assert(a[1<2] == 20 and a[1>2] == 10)

        function f(a) return a end

        local a = {}
        for i=3000,-3000,-1 do a[i + 0.0] = i; end
        a[10e30] = "alo"; a[true] = 10; a[false] = 20
        assert(a[10e30] == 'alo' and a[not 1] == 20 and a[10<20] == 10)
        for i=3000,-3000,-1 do assert(a[i] == i); end
        a[print] = assert
        a[f] = print
        a[a] = a
        assert(a[a][a][a][a][print] == assert)
        a[print](a[a[f]] == a[print])
        assert(not pcall(function () local a = {}; a[nil] = 10 end))
        assert(not pcall(function () local a = {[nil] = 10} end))
        assert(a[nil] == nil)
        a = nil

        a = {10,9,8,7,6,5,4,3,2; [-3]='a', [f]=print, a='a', b='ab'}
        a, a.x, a.y = a, a[-3]
        assert(a[1]==10 and a[-3]==a.a and a[f]==print and a.x=='a' and not a.y)
        a[1], f(a)[2], b, c = {['alo']=assert}, 10, a[1], a[f], 6, 10, 23, f(a), 2
        a[1].alo(a[2]==10 and b==10 and c==print)
    `;
    lualib.luaL_openlibs(L);
    if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) === lua.LUA_ERRSYNTAX)
        throw new SyntaxError(lua.lua_tojsstring(L, -1));
    lua.lua_call(L, 0, 0);
});


test("[test-suite] attrib: test of large float/integer indices ", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");

    let luaCode = `
        a = {}
        a[true] = 20
        a[false] = 10
        assert(a[1<2] == 20 and a[1>2] == 10)

        function f(a) return a end

        local a = {}
        for i=3000,-3000,-1 do a[i + 0.0] = i; end
        a[10e30] = "alo"; a[true] = 10; a[false] = 20
        assert(a[10e30] == 'alo' and a[not 1] == 20 and a[10<20] == 10)
        for i=3000,-3000,-1 do assert(a[i] == i); end
        a[print] = assert
        a[f] = print
        a[a] = a
        assert(a[a][a][a][a][print] == assert)
        a[print](a[a[f]] == a[print])
        assert(not pcall(function () local a = {}; a[nil] = 10 end))
        assert(not pcall(function () local a = {[nil] = 10} end))
        assert(a[nil] == nil)
        a = nil

        a = {10,9,8,7,6,5,4,3,2; [-3]='a', [f]=print, a='a', b='ab'}
        a, a.x, a.y = a, a[-3]
        assert(a[1]==10 and a[-3]==a.a and a[f]==print and a.x=='a' and not a.y)
        a[1], f(a)[2], b, c = {['alo']=assert}, 10, a[1], a[f], 6, 10, 23, f(a), 2
        a[1].alo(a[2]==10 and b==10 and c==print)

        -- compute maximum integer where all bits fit in a float
        local maxint = math.maxinteger

        while maxint - 1.0 == maxint - 0.0 do   -- trim (if needed) to fit in a float
          maxint = maxint // 2
        end

        maxintF = maxint + 0.0   -- float version

        assert(math.type(maxintF) == "float" and maxintF >= 2.0^14)

        -- floats and integers must index the same places
        a[maxintF] = 10; a[maxintF - 1.0] = 11;
        a[-maxintF] = 12; a[-maxintF + 1.0] = 13;

        assert(a[maxint] == 10 and a[maxint - 1] == 11 and
               a[-maxint] == 12 and a[-maxint + 1] == 13)

        a[maxint] = 20
        a[-maxint] = 22

        assert(a[maxintF] == 20 and a[maxintF - 1.0] == 11 and
               a[-maxintF] == 22 and a[-maxintF + 1.0] == 13)
    `;
    lualib.luaL_openlibs(L);
    if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) === lua.LUA_ERRSYNTAX)
        throw new SyntaxError(lua.lua_tojsstring(L, -1));
    lua.lua_call(L, 0, 0);
});


test("[test-suite] attrib: test conflicts in multiple assignment", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");

    let luaCode = `
        do
          local a,i,j,b
          a = {'a', 'b'}; i=1; j=2; b=a
          i, a[i], a, j, a[j], a[i+j] = j, i, i, b, j, i
          assert(i == 2 and b[1] == 1 and a == 1 and j == b and b[2] == 2 and
                 b[3] == 1)
        end
    `;
    lualib.luaL_openlibs(L);
    if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) === lua.LUA_ERRSYNTAX)
        throw new SyntaxError(lua.lua_tojsstring(L, -1));
    lua.lua_call(L, 0, 0);
});


test("[test-suite] attrib: repeat test with upvalues", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");

    let luaCode = `
        do
          local a,i,j,b
          a = {'a', 'b'}; i=1; j=2; b=a
          local function foo ()
            i, a[i], a, j, a[j], a[i+j] = j, i, i, b, j, i
          end
          foo()
          assert(i == 2 and b[1] == 1 and a == 1 and j == b and b[2] == 2 and
                 b[3] == 1)
          local t = {}
          (function (a) t[a], a = 10, 20  end)(1);
          assert(t[1] == 10)
        end
    `;
    lualib.luaL_openlibs(L);
    if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) === lua.LUA_ERRSYNTAX)
        throw new SyntaxError(lua.lua_tojsstring(L, -1));
    lua.lua_call(L, 0, 0);
});


test("[test-suite] attrib: bug in 5.2 beta", () => {
    let L = lauxlib.luaL_newstate();
    if (!L) throw Error("failed to create lua state");

    let luaCode = `
        local function foo ()
          local a
          return function ()
            local b
            a, b = 3, 14    -- local and upvalue have same index
            return a, b
          end
        end

        local a, b = foo()()
        assert(a == 3 and b == 14)
    `;
    lualib.luaL_openlibs(L);
    if (lauxlib.luaL_loadstring(L, to_luastring(luaCode)) === lua.LUA_ERRSYNTAX)
        throw new SyntaxError(lua.lua_tojsstring(L, -1));
    lua.lua_call(L, 0, 0);
});