mirror of
https://github.com/MontFerret/ferret.git
synced 2025-07-15 01:25:00 +02:00
Next (#214)
* Renamed DOCUMENT to PAGE * Added PageLoadParams * Added PageLoadParams * Renamed LoadPageParams -> PageLoadParams * Added support for context.Done() (#201) * Bug/#189 operators precedence (#202) * Fixed math operators precedence * Fixed logical operators precedence * Fixed array operator * Added support for parentheses to enforce a different operator evaluation order * Feature/#200 drivers (#209) * Added new interfaces * Renamed dynamic to cdp driver * Renamed drivers * Added ELEMENT_EXISTS function (#210) * Renamed back PAGE to DOCUMENT (#211) * Added Getter and Setter interfaces
This commit is contained in:
65
pkg/compiler/compiler_precedence_test.go
Normal file
65
pkg/compiler/compiler_precedence_test.go
Normal file
@ -0,0 +1,65 @@
|
||||
package compiler_test
|
||||
|
||||
import (
|
||||
"context"
|
||||
"github.com/MontFerret/ferret/pkg/compiler"
|
||||
"testing"
|
||||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
)
|
||||
|
||||
func TestPrecedence(t *testing.T) {
|
||||
Convey("Math operators", t, func() {
|
||||
Convey("2 + 2 * 2", func() {
|
||||
c := compiler.New()
|
||||
|
||||
p := c.MustCompile(`RETURN 2 + 2 * 2`)
|
||||
|
||||
out := p.MustRun(context.Background())
|
||||
|
||||
So(string(out), ShouldEqual, "6")
|
||||
})
|
||||
|
||||
Convey("2 * 2 + 2", func() {
|
||||
c := compiler.New()
|
||||
|
||||
p := c.MustCompile(`RETURN 2 * 2 + 2`)
|
||||
|
||||
out := p.MustRun(context.Background())
|
||||
|
||||
So(string(out), ShouldEqual, "6")
|
||||
})
|
||||
|
||||
Convey("2 * (2 + 2)", func() {
|
||||
c := compiler.New()
|
||||
|
||||
p := c.MustCompile(`RETURN 2 * (2 + 2)`)
|
||||
|
||||
out := p.MustRun(context.Background())
|
||||
|
||||
So(string(out), ShouldEqual, "8")
|
||||
})
|
||||
})
|
||||
|
||||
Convey("Logical", t, func() {
|
||||
Convey("TRUE OR TRUE AND FALSE", func() {
|
||||
c := compiler.New()
|
||||
|
||||
p := c.MustCompile(`RETURN TRUE OR TRUE AND FALSE`)
|
||||
|
||||
out := p.MustRun(context.Background())
|
||||
|
||||
So(string(out), ShouldEqual, "true")
|
||||
})
|
||||
|
||||
Convey("FALSE AND TRUE OR TRUE", func() {
|
||||
c := compiler.New()
|
||||
|
||||
p := c.MustCompile(`RETURN FALSE AND TRUE OR TRUE`)
|
||||
|
||||
out := p.MustRun(context.Background())
|
||||
|
||||
So(string(out), ShouldEqual, "true")
|
||||
})
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user