2018-07-20 20:27:15 -07:00
|
|
|
#!/usr/bin/env nomsu -V2.5.4.3
|
2018-01-26 20:20:12 -08:00
|
|
|
#..
|
2018-06-14 23:25:05 -07:00
|
|
|
Tests for the stuff defined in core/operators.nom
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core"
|
2018-07-20 20:27:15 -07:00
|
|
|
|
|
|
|
set {%x:10, %y:20}
|
2018-07-18 01:27:56 -07:00
|
|
|
assume ((%x == 10) and (%y == 20)) or barf "mutli-assignment failed."
|
2018-07-20 20:27:15 -07:00
|
|
|
set {%x:%y, %y:%x}
|
2018-07-18 01:27:56 -07:00
|
|
|
assume ((%y == 10) and (%x == 20)) or barf "swapping vars failed."
|
|
|
|
% = [..]
|
|
|
|
%x < %y, %x <= %y, %x > %y, %x >= %y, %x == %y, %x is %y, %x != %y, %x isn't %y
|
|
|
|
%x is not %y
|
2018-01-26 20:20:12 -08:00
|
|
|
|
|
|
|
assume ({} is {}) or barf "Equality check failed."
|
2018-07-18 01:27:56 -07:00
|
|
|
assume (({} 's id) is not ({} 's id)) or barf "Identity check failed."
|
2018-07-20 20:27:15 -07:00
|
|
|
set {%foozle:"outer", %y:"outer"}
|
2018-07-18 01:27:56 -07:00
|
|
|
action [set global x local y]:
|
|
|
|
external %foozle = "inner"
|
|
|
|
%y = "inner"
|
2018-01-26 20:20:12 -08:00
|
|
|
|
|
|
|
set global x local y
|
2018-07-18 01:27:56 -07:00
|
|
|
assume ((%foozle == "inner") and (%y == "outer")) or barf "external failed."
|
2018-07-20 20:27:15 -07:00
|
|
|
set {%foozle:"outer", %y:"outer"}
|
2018-07-18 01:27:56 -07:00
|
|
|
action [set global x local y] (..)
|
|
|
|
with external [%foozle]:
|
|
|
|
%foozle = "inner"
|
|
|
|
%y = "inner"
|
2018-01-26 20:20:12 -08:00
|
|
|
|
|
|
|
set global x local y
|
2018-07-20 20:27:15 -07:00
|
|
|
assume ((%foozle == "inner") and (%y == "outer")) or barf ".."
|
|
|
|
'with external' failed.
|
|
|
|
|
|
|
|
set {%x:1, %y:2}
|
|
|
|
with {%z:nil, %x:999}:
|
2018-07-18 01:27:56 -07:00
|
|
|
%z = 999
|
|
|
|
assume (%z == 999) or barf "'with' failed."
|
|
|
|
assume (%x == 999) or barf "'with' assignment failed."
|
2018-01-26 20:20:12 -08:00
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
assume (%x == 1) or barf "'with' scoping failed"
|
|
|
|
assume (%z == (nil)) or barf "'with' scoping failed"
|
2018-07-20 20:27:15 -07:00
|
|
|
assume ((1 + 2 * 3 - 4 / 2 ^ 2) == 6) or barf ".."
|
|
|
|
math expressions not working properly
|
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
assume ((5 wrapped around 2) == 1) or barf "mod not working"
|
2018-01-26 20:20:12 -08:00
|
|
|
assume (1 <= 2 < 3) or barf "chained operator fail."
|
2018-07-18 01:27:56 -07:00
|
|
|
%value = -999
|
|
|
|
action [flipflop]:
|
|
|
|
external %value = (- %value)
|
2018-01-26 20:20:12 -08:00
|
|
|
return %value
|
2018-07-18 01:27:56 -07:00
|
|
|
|
2018-07-20 20:27:15 -07:00
|
|
|
assume (not (1 < (flipflop) < 1)) or barf ".."
|
|
|
|
3-way inequality evaluated middle term twice
|
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
assume (((yes) and (yes)) == (yes))
|
|
|
|
action [barfer] (barf "short circuiting failed")
|
|
|
|
assume (((no) and (barfer)) == (no))
|
2018-01-26 20:20:12 -08:00
|
|
|
assume ((no) or (yes))
|
|
|
|
assume ((yes) or (barfer))
|
|
|
|
|
2018-06-18 15:44:29 -07:00
|
|
|
# Disabled because luajit doesn't have bitops
|
|
|
|
assume ((1 OR 2) = 3)
|
|
|
|
assume ((3 XOR 2) = 1)
|
|
|
|
assume ((3 AND 2) = 2)
|
|
|
|
assume ((NOT (NOT 6)) = 6)
|
|
|
|
assume ((1<<1) = 2)
|
|
|
|
assume ((2>>1) = 1)
|
|
|
|
assume ((2>>>1) = 1)
|
2018-01-26 20:20:12 -08:00
|
|
|
#.. Ugh, Lua is stupid when it comes to bitwise arithmetic on negative numbers, so I'm
|
|
|
|
skipping the tests for those.
|
2018-07-18 01:27:56 -07:00
|
|
|
assume ((- 5) == -5)
|
|
|
|
assume ((not (yes)) == (no))
|
|
|
|
%x = 1
|
|
|
|
%x += 1
|
|
|
|
assume (%x == 2) or barf "+<- failed"
|
|
|
|
%x *= 2
|
|
|
|
assume (%x == 4) or barf "*<- failed"
|
2018-01-26 20:20:12 -08:00
|
|
|
wrap %x around 3
|
2018-07-18 01:27:56 -07:00
|
|
|
assume (%x == 1) or barf "wrap around failed"
|
2018-07-22 15:01:05 -07:00
|
|
|
say "Operator test passed."
|