123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860 |
- /*
- * 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
- }
- // 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
- }
- }
|