1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045 |
- /*
- * ECAL
- *
- * Copyright 2020 Matthias Ladkau. All rights reserved.
- *
- * This Source Code Form is subject to the terms of the MIT
- * License, If a copy of the MIT License was not distributed with this
- * file, You can obtain one at https://opensource.org/licenses/MIT.
- */
- package interpreter
- import (
- "testing"
- "devt.de/krotik/ecal/scope"
- )
- func TestGuardStatements(t *testing.T) {
- // Test normal if
- vs := scope.NewScope(scope.GlobalScope)
- _, err := UnitTestEvalAndAST(
- `
- a := 1
- if a == 1 {
- b := 1
- a := a + 1
- }
- `, vs,
- `
- statements
- :=
- identifier: a
- number: 1
- if
- guard
- ==
- identifier: a
- number: 1
- statements
- :=
- identifier: b
- number: 1
- :=
- identifier: a
- plus
- identifier: a
- number: 1
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- a (float64) : 2
- block: if (Line:3 Pos:1) {
- b (float64) : 1
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- // Test elif
- vs = scope.NewScope(scope.GlobalScope)
- _, err = UnitTestEvalAndAST(
- `
- a := 2
- if a == 1 {
- a := a + 1
- } elif a == 2 {
- a := a + 2
- }
- `, vs, `
- statements
- :=
- identifier: a
- number: 2
- if
- guard
- ==
- identifier: a
- number: 1
- statements
- :=
- identifier: a
- plus
- identifier: a
- number: 1
- guard
- ==
- identifier: a
- number: 2
- statements
- :=
- identifier: a
- plus
- identifier: a
- number: 2
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- a (float64) : 4
- block: if (Line:3 Pos:5) {
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- // Test else
- vs = scope.NewScope(scope.GlobalScope)
- _, err = UnitTestEvalAndAST(
- `
- a := 3
- if a == 1 {
- a := a + 1
- } elif a == 2 {
- a := a + 2
- } else {
- a := 99
- }
- `, vs, `
- statements
- :=
- identifier: a
- number: 3
- if
- guard
- ==
- identifier: a
- number: 1
- statements
- :=
- identifier: a
- plus
- identifier: a
- number: 1
- guard
- ==
- identifier: a
- number: 2
- statements
- :=
- identifier: a
- plus
- identifier: a
- number: 2
- guard
- true
- statements
- :=
- identifier: a
- number: 99
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- a (float64) : 99
- block: if (Line:3 Pos:5) {
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- }
- func TestLoopStatements(t *testing.T) {
- vs := scope.NewScope(scope.GlobalScope)
- buf := addLogFunction(vs)
- _, err := UnitTestEvalAndAST(
- `
- a := 10
- for a > 0 {
- testlog("Info: ", "-> ", a)
- a := a - 1
- }
- `, vs,
- `
- statements
- :=
- identifier: a
- number: 10
- loop
- guard
- >
- identifier: a
- number: 0
- statements
- identifier: testlog
- funccall
- string: 'Info: '
- string: '-> '
- identifier: a
- :=
- identifier: a
- minus
- identifier: a
- number: 1
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- a (float64) : 0
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:4 Pos:1) {
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info: -> 10
- Info: -> 9
- Info: -> 8
- Info: -> 7
- Info: -> 6
- Info: -> 5
- Info: -> 4
- Info: -> 3
- Info: -> 2
- Info: -> 1`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- for a in range(2, 10, 1) {
- testlog("Info", "->", a)
- }
- `, vs,
- `
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 2
- number: 10
- number: 1
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:2 Pos:5) {
- a (float64) : 10
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info->2
- Info->3
- Info->4
- Info->5
- Info->6
- Info->7
- Info->8
- Info->9
- Info->10`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- for a in range(10, 3, -3) {
- testlog("Info", "->", a)
- }
- `, vs,
- `
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 10
- number: 3
- minus
- number: 3
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:2 Pos:1) {
- a (float64) : 4
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info->10
- Info->7
- Info->4`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- // Test nested loops
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- for a in range(10, 3, -3) {
- for b in range(1, 3, 1) {
- testlog("Info", "->", a, b)
- }
- }
- `, vs,
- `
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 10
- number: 3
- minus
- number: 3
- statements
- loop
- in
- identifier: b
- identifier: range
- funccall
- number: 1
- number: 3
- number: 1
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- identifier: b
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:2 Pos:1) {
- a (float64) : 4
- block: loop (Line:3 Pos:3) {
- b (float64) : 3
- }
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info->10 1
- Info->10 2
- Info->10 3
- Info->7 1
- Info->7 2
- Info->7 3
- Info->4 1
- Info->4 2
- Info->4 3`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- // Break statement
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- for a in range(1, 10, 1) {
- testlog("Info", "->", a)
- if a == 3 {
- break
- }
- }`, vs,
- `
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 1
- number: 10
- number: 1
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- if
- guard
- ==
- identifier: a
- number: 3
- statements
- break
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:2 Pos:1) {
- a (float64) : 3
- block: if (Line:4 Pos:3) {
- }
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info->1
- Info->2
- Info->3`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- // Continue statement
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- for a in range(1, 10, 1) {
- if a > 3 and a < 6 {
- continue
- }
- testlog("Info", "->", a)
- }`, vs,
- `
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 1
- number: 10
- number: 1
- statements
- if
- guard
- and
- >
- identifier: a
- number: 3
- <
- identifier: a
- number: 6
- statements
- continue
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:2 Pos:1) {
- a (float64) : 10
- block: if (Line:3 Pos:3) {
- }
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info->1
- Info->2
- Info->3
- Info->6
- Info->7
- Info->8
- Info->9
- Info->10`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- // Loop over lists
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- for a in [1,2] {
- for b in [1,2,3,"Hans", 4] {
- testlog("Info", "->", a, "-", b)
- }
- }
- `, vs,
- `
- loop
- in
- identifier: a
- list
- number: 1
- number: 2
- statements
- loop
- in
- identifier: b
- list
- number: 1
- number: 2
- number: 3
- string: 'Hans'
- number: 4
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- string: '-'
- identifier: b
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:2 Pos:1) {
- a (float64) : 2
- block: loop (Line:3 Pos:3) {
- b (float64) : 4
- }
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info->1-1
- Info->1-2
- Info->1-3
- Info->1-Hans
- Info->1-4
- Info->2-1
- Info->2-2
- Info->2-3
- Info->2-Hans
- Info->2-4`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- l := [1,2,3,4]
- for a in range(0, 3, 1) {
- testlog("Info", "-a>", a, "-", l[a])
- }
- for a in range(0, 3, 1) {
- testlog("Info", "-b>", a, "-", l[-a])
- }
- testlog("Info", "xxx>", l[-1])
- `, vs,
- `
- statements
- :=
- identifier: l
- list
- number: 1
- number: 2
- number: 3
- number: 4
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 0
- number: 3
- number: 1
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '-a>'
- identifier: a
- string: '-'
- identifier: l
- compaccess
- identifier: a
- loop
- in
- identifier: a
- identifier: range
- funccall
- number: 0
- number: 3
- number: 1
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '-b>'
- identifier: a
- string: '-'
- identifier: l
- compaccess
- minus
- identifier: a
- identifier: testlog
- funccall
- string: 'Info'
- string: 'xxx>'
- identifier: l
- compaccess
- minus
- number: 1
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if vs.String() != `
- GlobalScope {
- l ([]interface {}) : [1,2,3,4]
- testlog (*interpreter.TestLogger) : TestLogger
- block: loop (Line:3 Pos:1) {
- a (float64) : 3
- }
- block: loop (Line:6 Pos:1) {
- a (float64) : 3
- }
- }`[1:] {
- t.Error("Unexpected result: ", vs)
- return
- }
- if res := buf.String(); res != `
- Info-a>0-1
- Info-a>1-2
- Info-a>2-3
- Info-a>3-4
- Info-b>0-1
- Info-b>1-4
- Info-b>2-3
- Info-b>3-2
- Infoxxx>4`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- // Loop over a map
- vs = scope.NewScope(scope.GlobalScope)
- buf = addLogFunction(vs)
- _, err = UnitTestEvalAndAST(
- `
- x := { "c": 0, "a":2, "b":4}
- for [a, b] in x {
- testlog("Info", "->", a, "-", b)
- }
- `, vs,
- `
- statements
- :=
- identifier: x
- map
- kvp
- string: 'c'
- number: 0
- kvp
- string: 'a'
- number: 2
- kvp
- string: 'b'
- number: 4
- loop
- in
- list
- identifier: a
- identifier: b
- identifier: x
- statements
- identifier: testlog
- funccall
- string: 'Info'
- string: '->'
- identifier: a
- string: '-'
- identifier: b
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if res := buf.String(); res != `
- Info->a-2
- Info->b-4
- Info->c-0`[1:] {
- t.Error("Unexpected result: ", res)
- return
- }
- _, err = UnitTestEval(
- `
- x := { "c": 0, "a":2, "b":4}
- for [1, b] in x {
- testlog("Info", "->", a, "-", b)
- }
- `, vs)
- if err == nil || err.Error() != "ECAL error in ECALTestRuntime: Invalid construct (Must have a list of simple variables on the left side of the In expression) (Line:3 Pos:1)" {
- t.Error("Unexpected result:", err)
- return
- }
- // Test continue
- _, err = UnitTestEval(`
- for [a] in [1,2,3] {
- continue
- [a, b] := "Hans"
- }
- `[1:], vs)
- if err != nil {
- t.Error("Unexpected result:", err)
- return
- }
- _, err = UnitTestEval(`
- a := 1
- for a < 10 {
- a := a + 1
- continue
- [a,b] := "Hans"
- }
- `[1:], vs)
- if err != nil {
- t.Error("Unexpected result:", err)
- return
- }
- // Test single value
- _, err = UnitTestEval(`
- for a in 1 {
- continue
- [a,b] := "Hans"
- }
- `[1:], vs)
- if err != nil {
- t.Error("Unexpected result:", err)
- return
- }
- _, err = UnitTestEval(`
- for a[t] in 1 {
- continue
- [a,b] := "Hans"
- }
- `[1:], vs)
- if err == nil || err.Error() != "ECAL error in ECALTestRuntime: Invalid construct (Must have a simple variable on the left side of the In expression) (Line:1 Pos:1)" {
- t.Error("Unexpected result:", err)
- return
- }
- _, err = UnitTestEval(`
- for [a, b] in [[1,2],[3,4],3] {
- }
- `[1:], vs)
- if err == nil || err.Error() != "ECAL error in ECALTestRuntime: Runtime error (Result for loop variable is not a list (value is 3)) (Line:1 Pos:1)" {
- t.Error("Unexpected result:", err)
- return
- }
- _, err = UnitTestEval(`
- for [a, b] in [[1,2],[3,4],[5,6,7]] {
- }
- `[1:], vs)
- if err == nil || err.Error() != "ECAL error in ECALTestRuntime: Runtime error (Assigned number of variables is different to number of values (2 variables vs 3 values)) (Line:1 Pos:1)" {
- t.Error("Unexpected result:", err)
- return
- }
- }
- func TestTryStatements(t *testing.T) {
- vs := scope.NewScope(scope.GlobalScope)
- _, err := UnitTestEvalAndAST(
- `
- try {
- debug("Raising custom error")
- raise("test 12", null, [1,2,3])
- } except "test 12" as e {
- error("Something happened: ", e)
- } finally {
- log("Cleanup")
- }
- `, vs,
- `
- try
- statements
- identifier: debug
- funccall
- string: 'Raising custom error'
- identifier: raise
- funccall
- string: 'test 12'
- null
- list
- number: 1
- number: 2
- number: 3
- except
- string: 'test 12'
- as
- identifier: e
- statements
- identifier: error
- funccall
- string: 'Something happened: '
- identifier: e
- finally
- statements
- identifier: log
- funccall
- string: 'Cleanup'
- `[1:])
- if err != nil {
- t.Error(err)
- return
- }
- if testlogger.String() != `
- debug: Raising custom error
- error: Something happened: {
- "data": [
- 1,
- 2,
- 3
- ],
- "detail": "",
- "error": "ECAL error in ECALTestRuntime: test 12 () (Line:4 Pos:5)",
- "line": 4,
- "pos": 5,
- "source": "ECALTestRuntime",
- "trace": [
- "raise(\"test 12\", null, [1, 2, 3]) (ECALEvalTest:4)"
- ],
- "type": "test 12"
- }
- Cleanup`[1:] {
- t.Error("Unexpected result:", testlogger.String())
- return
- }
- _, err = UnitTestEval(
- `
- try {
- debug("Raising custom error")
- raise("test 13", null, [1,2,3])
- } except "test 12" as e {
- error("Something happened: ", e)
- } except e {
- error("Something else happened: ", e)
- try {
- x := 1 + a
- } except e {
- log("Runtime error: ", e)
- }
- } finally {
- log("Cleanup")
- }
- `, vs)
- if err != nil {
- t.Error(err)
- return
- }
- if testlogger.String() != `
- debug: Raising custom error
- error: Something else happened: {
- "data": [
- 1,
- 2,
- 3
- ],
- "detail": "",
- "error": "ECAL error in ECALTestRuntime: test 13 () (Line:4 Pos:5)",
- "line": 4,
- "pos": 5,
- "source": "ECALTestRuntime",
- "trace": [
- "raise(\"test 13\", null, [1, 2, 3]) (ECALEvalTest:4)"
- ],
- "type": "test 13"
- }
- Runtime error: {
- "detail": "a=NULL",
- "error": "ECAL error in ECALTestRuntime: Operand is not a number (a=NULL) (Line:11 Pos:12)",
- "line": 11,
- "pos": 12,
- "source": "ECALTestRuntime",
- "trace": [],
- "type": "Operand is not a number"
- }
- Cleanup`[1:] {
- t.Error("Unexpected result:", testlogger.String())
- return
- }
- _, err = UnitTestEval(
- `
- try {
- x := 1 + "a"
- } except {
- error("This did not work")
- }
- `, vs)
- if err != nil {
- t.Error(err)
- return
- }
- if testlogger.String() != `
- error: This did not work`[1:] {
- t.Error("Unexpected result:", testlogger.String())
- return
- }
- }
|