mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-01 00:33:05 +08:00
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package eval_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "src.elv.sh/pkg/eval"
|
|
"src.elv.sh/pkg/testutil"
|
|
|
|
"src.elv.sh/pkg/eval/vals"
|
|
"src.elv.sh/pkg/eval/vars"
|
|
"src.elv.sh/pkg/parse"
|
|
)
|
|
|
|
func TestPurelyEvalCompound(t *testing.T) {
|
|
home := testutil.InTempHome(t)
|
|
|
|
var tests = []struct {
|
|
code string
|
|
upto int
|
|
wantValue string
|
|
wantBad bool
|
|
}{
|
|
{code: "foobar", wantValue: "foobar"},
|
|
{code: "'foobar'", wantValue: "foobar"},
|
|
{code: "foo'bar'", wantValue: "foobar"},
|
|
{code: "$x", wantValue: "bar"},
|
|
{code: "foo$x", wantValue: "foobar"},
|
|
{code: "foo$x", upto: 3, wantValue: "foo"},
|
|
{code: "~", wantValue: home},
|
|
{code: "~/foo", wantValue: home + "/foo"},
|
|
{code: "$ns:x", wantValue: "foo"},
|
|
|
|
{code: "$bad", wantBad: true},
|
|
{code: "$ns:bad", wantBad: true},
|
|
|
|
{code: "[abc]", wantBad: true},
|
|
{code: "$y", wantBad: true},
|
|
{code: "a[0]", wantBad: true},
|
|
{code: "$@x", wantBad: true},
|
|
}
|
|
|
|
ev := NewEvaler()
|
|
ev.ExtendGlobal(BuildNs().
|
|
AddVar("x", vars.NewReadOnly("bar")).
|
|
AddVar("y", vars.NewReadOnly(vals.MakeList())).
|
|
AddNs("ns", BuildNs().AddVar("x", vars.NewReadOnly("foo"))))
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.code, func(t *testing.T) {
|
|
n := &parse.Compound{}
|
|
err := parse.ParseAs(
|
|
parse.Source{Name: "[test]", Code: test.code}, n, parse.Config{})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
upto := test.upto
|
|
if upto == 0 {
|
|
upto = -1
|
|
}
|
|
value, ok := ev.PurelyEvalPartialCompound(n, upto)
|
|
|
|
if value != test.wantValue {
|
|
t.Errorf("got value %q, want %q", value, test.wantValue)
|
|
}
|
|
if ok != !test.wantBad {
|
|
t.Errorf("got ok %v, want %v", ok, !test.wantBad)
|
|
}
|
|
})
|
|
}
|
|
}
|