expr_test.go 4.4 KB
Newer Older
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
package expr

import "testing"

func TestIntArithmetic(t *testing.T) {
	cases := []struct {
		expr     string
		expected int64
	}{
		{"+10", 10},
		{"-10", -10},
		{"3 + 4 + 5 + 6 * 7 + 8", 62},
		{"3 + 4 + (5 + 6) * 7 + 8", 92},
		{"3 + 4 + (5 + 6) * 7 / 11 + 8", 22},
		{"3 + 4 + -5 * 6 / 7 % 8", 3},
		{"10 - 5", 5},
	}

	for _, c := range cases {
		expr, e := Compile(c.expr)
		if e != nil {
			t.Errorf("failed to compile expression '%s': %s", c.expr, e.Error())
		}
		if res := expr.Eval(nil); res.(int64) != c.expected {
			t.Errorf("result for expression '%s' is %v, but expected is %v", c.expr, res, c.expected)
		}
	}
}

func TestFloatArithmetic(t *testing.T) {
	cases := []struct {
		expr     string
		expected float64
	}{
		{"+10.5", 10.5},
		{"-10.5", -10.5},
		{"3.1 + 4.2 + 5 + 6 * 7 + 8", 62.3},
		{"3.1 + 4.2 + (5 + 6) * 7 + 8.3", 92.6},
		{"3.1 + 4.2 + (5.1 + 5.9) * 7 / 11 + 8", 22.3},
		{"3.3 + 4.2 - 4.0 * 7.5 / 3", -2.5},
		{"3.3 + 4.2 - 4 * 7.0 / 2", -6.5},
		{"3.5/2.0", 1.75},
		{"3.5/2", 1.75},
		{"7 / 3.5", 2},
		{"3.5 % 2.0", 1.5},
		{"3.5 % 2", 1.5},
		{"7 % 2.5", 2},
		{"7.3 - 2", 5.3},
		{"7 - 2.3", 4.7},
		{"1 + 1.5", 2.5},
	}

	for _, c := range cases {
		expr, e := Compile(c.expr)
		if e != nil {
			t.Errorf("failed to compile expression '%s': %s", c.expr, e.Error())
		}
		if res := expr.Eval(nil); res.(float64) != c.expected {
			t.Errorf("result for expression '%s' is %v, but expected is %v", c.expr, res, c.expected)
		}
	}
}

func TestVariable(t *testing.T) {
	variables := map[string]interface{}{
		"a": int64(6),
		"b": int64(7),
	}
	env := func(key string) interface{} {
		return variables[key]
	}

	cases := []struct {
		expr     string
		expected int64
	}{
		{"3 + 4 + (+5) + a * b + 8", 62},
		{"3 + 4 + (5 + a) * b + 8", 92},
		{"3 + 4 + (5 + a) * b / 11 + 8", 22},
	}

	for _, c := range cases {
		expr, e := Compile(c.expr)
		if e != nil {
			t.Errorf("failed to compile expression '%s': %s", c.expr, e.Error())
		}
		if res := expr.Eval(env); res.(int64) != c.expected {
			t.Errorf("result for expression '%s' is %v, but expected is %v", c.expr, res, c.expected)
		}
	}
}

func TestFunction(t *testing.T) {
	variables := map[string]interface{}{
		"a": int64(6),
		"b": 7.0,
	}

	env := func(key string) interface{} {
		return variables[key]
	}

	cases := []struct {
		expr     string
		expected float64
	}{
		{"sum(3, 4,  5, a * b, 8)", 62},
		{"sum(3, 4, (5 + a) * b, 8)", 92},
		{"sum(3, 4, (5 + a) * b / 11, 8)", 22},
	}

	for _, c := range cases {
		expr, e := Compile(c.expr)
		if e != nil {
			t.Errorf("failed to compile expression '%s': %s", c.expr, e.Error())
		}
		if res := expr.Eval(env); res.(float64) != c.expected {
			t.Errorf("result for expression '%s' is %v, but expected is %v", c.expr, res, c.expected)
		}
	}
}

func TestLogical(t *testing.T) {
	cases := []struct {
		expr     string
		expected bool
	}{
		{"true", true},
		{"false", false},
		{"true == true", true},
		{"true == false", false},
		{"true != true", false},
		{"true != false", true},
		{"5 > 3", true},
		{"5 < 3", false},
		{"5.2 > 3", true},
		{"5.2 < 3", false},
		{"5 > 3.1", true},
		{"5 < 3.1", false},
		{"5.1 > 3.3", true},
		{"5.1 < 3.3", false},
		{"5 >= 3", true},
		{"5 <= 3", false},
		{"5.2 >= 3", true},
		{"5.2 <= 3", false},
		{"5 >= 3.1", true},
		{"5 <= 3.1", false},
		{"5.1 >= 3.3", true},
		{"5.1 <= 3.3", false},
		{"5 != 3", true},
		{"5.2 != 3.2", true},
		{"5.2 != 3", true},
		{"5 != 3.2", true},
		{"5 == 3", false},
		{"5.2 == 3.2", false},
		{"5.2 == 3", false},
		{"5 == 3.2", false},
		{"!(5 > 3)", false},
		{"5>3 && 3>1", true},
		{"5<3 || 3<1", false},
		{"4<=4 || 3<1", true},
		{"4<4 || 3>=1", true},
	}

	for _, c := range cases {
		expr, e := Compile(c.expr)
		if e != nil {
			t.Errorf("failed to compile expression '%s': %s", c.expr, e.Error())
		}
		if res := expr.Eval(nil); res.(bool) != c.expected {
			t.Errorf("result for expression '%s' is %v, but expected is %v", c.expr, res, c.expected)
		}
	}
}

func TestBitwise(t *testing.T) {
	cases := []struct {
		expr     string
		expected int64
	}{
		{"0x0C & 0x04", 0x04},
		{"0x08 | 0x04", 0x0C},
		{"0x0C ^ 0x04", 0x08},
		{"0x01 << 2", 0x04},
		{"0x04 >> 2", 0x01},
		{"~0x04", ^0x04},
	}

	for _, c := range cases {
		expr, e := Compile(c.expr)
		if e != nil {
			t.Errorf("failed to compile expression '%s': %s", c.expr, e.Error())
		}
		if res := expr.Eval(nil); res.(int64) != c.expected {
			t.Errorf("result for expression '%s' is 0x%X, but expected is 0x%X", c.expr, res, c.expected)
		}
	}
}