mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
41 lines
968 B
Go
41 lines
968 B
Go
package eval_test
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
|
|
. "src.elv.sh/pkg/eval"
|
|
"src.elv.sh/pkg/parse"
|
|
"src.elv.sh/pkg/prog"
|
|
"src.elv.sh/pkg/testutil"
|
|
)
|
|
|
|
func TestDeprecatedBuiltin(t *testing.T) {
|
|
testCompileTimeDeprecation(t, "float64", `the "float64" command is deprecated`, 19)
|
|
|
|
// Deprecations of other builtins are implemented in the same way, so we
|
|
// don't test them repeatedly
|
|
}
|
|
|
|
func testCompileTimeDeprecation(t *testing.T, code, wantWarning string, level int) {
|
|
t.Helper()
|
|
testutil.Set(t, &prog.DeprecationLevel, level)
|
|
|
|
ev := NewEvaler()
|
|
errOutput := new(bytes.Buffer)
|
|
|
|
parseErr, compileErr := ev.Check(parse.Source{Code: code}, errOutput)
|
|
if parseErr != nil {
|
|
t.Errorf("got parse err %v", parseErr)
|
|
}
|
|
if compileErr != nil {
|
|
t.Errorf("got compile err %v", compileErr)
|
|
}
|
|
|
|
warning := errOutput.String()
|
|
if !strings.Contains(warning, wantWarning) {
|
|
t.Errorf("got warning %q, want warning containing %q", warning, wantWarning)
|
|
}
|
|
}
|