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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
|
// Copyright 2017 The Bazel Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package starlark_test
import (
"bytes"
"errors"
"fmt"
"math"
"os/exec"
"path/filepath"
"reflect"
"sort"
"strings"
"testing"
"go.starlark.net/internal/chunkedfile"
"go.starlark.net/lib/json"
starlarkmath "go.starlark.net/lib/math"
"go.starlark.net/lib/proto"
"go.starlark.net/lib/time"
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"go.starlark.net/starlarktest"
"go.starlark.net/syntax"
"google.golang.org/protobuf/reflect/protoregistry"
_ "google.golang.org/protobuf/types/descriptorpb" // example descriptor needed for lib/proto tests
)
// A test may enable non-standard options by containing (e.g.) "option:recursion".
func getOptions(src string) *syntax.FileOptions {
return &syntax.FileOptions{
Set: option(src, "set"),
While: option(src, "while"),
TopLevelControl: option(src, "toplevelcontrol"),
GlobalReassign: option(src, "globalreassign"),
LoadBindsGlobally: option(src, "loadbindsglobally"),
Recursion: option(src, "recursion"),
}
}
func option(chunk, name string) bool {
return strings.Contains(chunk, "option:"+name)
}
func TestEvalExpr(t *testing.T) {
// This is mostly redundant with the new *.star tests.
// TODO(adonovan): move checks into *.star files and
// reduce this to a mere unit test of starlark.Eval.
thread := new(starlark.Thread)
for _, test := range []struct{ src, want string }{
{`123`, `123`},
{`-1`, `-1`},
{`"a"+"b"`, `"ab"`},
{`1+2`, `3`},
// lists
{`[]`, `[]`},
{`[1]`, `[1]`},
{`[1,]`, `[1]`},
{`[1, 2]`, `[1, 2]`},
{`[2 * x for x in [1, 2, 3]]`, `[2, 4, 6]`},
{`[2 * x for x in [1, 2, 3] if x > 1]`, `[4, 6]`},
{`[(x, y) for x in [1, 2] for y in [3, 4]]`,
`[(1, 3), (1, 4), (2, 3), (2, 4)]`},
{`[(x, y) for x in [1, 2] if x == 2 for y in [3, 4]]`,
`[(2, 3), (2, 4)]`},
// tuples
{`()`, `()`},
{`(1)`, `1`},
{`(1,)`, `(1,)`},
{`(1, 2)`, `(1, 2)`},
{`(1, 2, 3, 4, 5)`, `(1, 2, 3, 4, 5)`},
{`1, 2`, `(1, 2)`},
// dicts
{`{}`, `{}`},
{`{"a": 1}`, `{"a": 1}`},
{`{"a": 1,}`, `{"a": 1}`},
// conditional
{`1 if 3 > 2 else 0`, `1`},
{`1 if "foo" else 0`, `1`},
{`1 if "" else 0`, `0`},
// indexing
{`["a", "b"][0]`, `"a"`},
{`["a", "b"][1]`, `"b"`},
{`("a", "b")[0]`, `"a"`},
{`("a", "b")[1]`, `"b"`},
{`"aΩb"[0]`, `"a"`},
{`"aΩb"[1]`, `"\xce"`},
{`"aΩb"[3]`, `"b"`},
{`{"a": 1}["a"]`, `1`},
{`{"a": 1}["b"]`, `key "b" not in dict`},
{`{}[[]]`, `unhashable type: list`},
{`{"a": 1}[[]]`, `unhashable type: list`},
{`[x for x in range(3)]`, "[0, 1, 2]"},
} {
var got string
if v, err := starlark.Eval(thread, "<expr>", test.src, nil); err != nil {
got = err.Error()
} else {
got = v.String()
}
if got != test.want {
t.Errorf("eval %s = %s, want %s", test.src, got, test.want)
}
}
}
func TestExecFile(t *testing.T) {
testdata := starlarktest.DataFile("starlark", ".")
thread := &starlark.Thread{Load: load}
starlarktest.SetReporter(thread, t)
proto.SetPool(thread, protoregistry.GlobalFiles)
for _, file := range []string{
"testdata/assign.star",
"testdata/bool.star",
"testdata/builtins.star",
"testdata/bytes.star",
"testdata/control.star",
"testdata/dict.star",
"testdata/float.star",
"testdata/function.star",
"testdata/int.star",
"testdata/json.star",
"testdata/list.star",
"testdata/math.star",
"testdata/misc.star",
"testdata/proto.star",
"testdata/set.star",
"testdata/string.star",
"testdata/time.star",
"testdata/tuple.star",
"testdata/recursion.star",
"testdata/module.star",
"testdata/while.star",
} {
filename := filepath.Join(testdata, file)
for _, chunk := range chunkedfile.Read(filename, t) {
predeclared := starlark.StringDict{
"hasfields": starlark.NewBuiltin("hasfields", newHasFields),
"fibonacci": fib{},
"struct": starlark.NewBuiltin("struct", starlarkstruct.Make),
}
opts := getOptions(chunk.Source)
_, err := starlark.ExecFileOptions(opts, thread, filename, chunk.Source, predeclared)
switch err := err.(type) {
case *starlark.EvalError:
found := false
for i := range err.CallStack {
posn := err.CallStack.At(i).Pos
if posn.Filename() == filename {
chunk.GotError(int(posn.Line), err.Error())
found = true
break
}
}
if !found {
t.Error(err.Backtrace())
}
case nil:
// success
default:
t.Errorf("\n%s", err)
}
chunk.Done()
}
}
}
// A fib is an iterable value representing the infinite Fibonacci sequence.
type fib struct{}
func (t fib) Freeze() {}
func (t fib) String() string { return "fib" }
func (t fib) Type() string { return "fib" }
func (t fib) Truth() starlark.Bool { return true }
func (t fib) Hash() (uint32, error) { return 0, fmt.Errorf("fib is unhashable") }
func (t fib) Iterate() starlark.Iterator { return &fibIterator{0, 1} }
type fibIterator struct{ x, y int }
func (it *fibIterator) Next(p *starlark.Value) bool {
*p = starlark.MakeInt(it.x)
it.x, it.y = it.y, it.x+it.y
return true
}
func (it *fibIterator) Done() {}
// load implements the 'load' operation as used in the evaluator tests.
func load(thread *starlark.Thread, module string) (starlark.StringDict, error) {
if module == "assert.star" {
return starlarktest.LoadAssertModule()
}
if module == "json.star" {
return starlark.StringDict{"json": json.Module}, nil
}
if module == "time.star" {
return starlark.StringDict{"time": time.Module}, nil
}
if module == "math.star" {
return starlark.StringDict{"math": starlarkmath.Module}, nil
}
if module == "proto.star" {
return starlark.StringDict{"proto": proto.Module}, nil
}
// TODO(adonovan): test load() using this execution path.
filename := filepath.Join(filepath.Dir(thread.CallFrame(0).Pos.Filename()), module)
return starlark.ExecFile(thread, filename, nil, nil)
}
func newHasFields(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error) {
if len(args)+len(kwargs) > 0 {
return nil, fmt.Errorf("%s: unexpected arguments", b.Name())
}
return &hasfields{attrs: make(map[string]starlark.Value)}, nil
}
// hasfields is a test-only implementation of HasAttrs.
// It permits any field to be set.
// Clients will likely want to provide their own implementation,
// so we don't have any public implementation.
type hasfields struct {
attrs starlark.StringDict
frozen bool
}
var (
_ starlark.HasAttrs = (*hasfields)(nil)
_ starlark.HasBinary = (*hasfields)(nil)
)
func (hf *hasfields) String() string { return "hasfields" }
func (hf *hasfields) Type() string { return "hasfields" }
func (hf *hasfields) Truth() starlark.Bool { return true }
func (hf *hasfields) Hash() (uint32, error) { return 42, nil }
func (hf *hasfields) Freeze() {
if !hf.frozen {
hf.frozen = true
for _, v := range hf.attrs {
v.Freeze()
}
}
}
func (hf *hasfields) Attr(name string) (starlark.Value, error) { return hf.attrs[name], nil }
func (hf *hasfields) SetField(name string, val starlark.Value) error {
if hf.frozen {
return fmt.Errorf("cannot set field on a frozen hasfields")
}
if strings.HasPrefix(name, "no") { // for testing
return starlark.NoSuchAttrError(fmt.Sprintf("no .%s field", name))
}
hf.attrs[name] = val
return nil
}
func (hf *hasfields) AttrNames() []string {
names := make([]string, 0, len(hf.attrs))
for key := range hf.attrs {
names = append(names, key)
}
sort.Strings(names)
return names
}
func (hf *hasfields) Binary(op syntax.Token, y starlark.Value, side starlark.Side) (starlark.Value, error) {
// This method exists so we can exercise 'list += x'
// where x is not Iterable but defines list+x.
if op == syntax.PLUS {
if _, ok := y.(*starlark.List); ok {
return starlark.MakeInt(42), nil // list+hasfields is 42
}
}
return nil, nil
}
func TestParameterPassing(t *testing.T) {
const filename = "parameters.go"
const src = `
def a():
return
def b(a, b):
return a, b
def c(a, b=42):
return a, b
def d(*args):
return args
def e(**kwargs):
return kwargs
def f(a, b=42, *args, **kwargs):
return a, b, args, kwargs
def g(a, b=42, *args, c=123, **kwargs):
return a, b, args, c, kwargs
def h(a, b=42, *, c=123, **kwargs):
return a, b, c, kwargs
def i(a, b=42, *, c, d=123, e, **kwargs):
return a, b, c, d, e, kwargs
def j(a, b=42, *args, c, d=123, e, **kwargs):
return a, b, args, c, d, e, kwargs
`
thread := new(starlark.Thread)
globals, err := starlark.ExecFile(thread, filename, src, nil)
if err != nil {
t.Fatal(err)
}
// All errors are dynamic; see resolver for static errors.
for _, test := range []struct{ src, want string }{
// a()
{`a()`, `None`},
{`a(1)`, `function a accepts no arguments (1 given)`},
// b(a, b)
{`b()`, `function b missing 2 arguments (a, b)`},
{`b(1)`, `function b missing 1 argument (b)`},
{`b(a=1)`, `function b missing 1 argument (b)`},
{`b(b=1)`, `function b missing 1 argument (a)`},
{`b(1, 2)`, `(1, 2)`},
{`b`, `<function b>`}, // asserts that b's parameter b was treated as a local variable
{`b(1, 2, 3)`, `function b accepts 2 positional arguments (3 given)`},
{`b(1, b=2)`, `(1, 2)`},
{`b(1, a=2)`, `function b got multiple values for parameter "a"`},
{`b(1, x=2)`, `function b got an unexpected keyword argument "x"`},
{`b(a=1, b=2)`, `(1, 2)`},
{`b(b=1, a=2)`, `(2, 1)`},
{`b(b=1, a=2, x=1)`, `function b got an unexpected keyword argument "x"`},
{`b(x=1, b=1, a=2)`, `function b got an unexpected keyword argument "x"`},
// c(a, b=42)
{`c()`, `function c missing 1 argument (a)`},
{`c(1)`, `(1, 42)`},
{`c(1, 2)`, `(1, 2)`},
{`c(1, 2, 3)`, `function c accepts at most 2 positional arguments (3 given)`},
{`c(1, b=2)`, `(1, 2)`},
{`c(1, a=2)`, `function c got multiple values for parameter "a"`},
{`c(a=1, b=2)`, `(1, 2)`},
{`c(b=1, a=2)`, `(2, 1)`},
// d(*args)
{`d()`, `()`},
{`d(1)`, `(1,)`},
{`d(1, 2)`, `(1, 2)`},
{`d(1, 2, k=3)`, `function d got an unexpected keyword argument "k"`},
{`d(args=[])`, `function d got an unexpected keyword argument "args"`},
// e(**kwargs)
{`e()`, `{}`},
{`e(1)`, `function e accepts 0 positional arguments (1 given)`},
{`e(k=1)`, `{"k": 1}`},
{`e(kwargs={})`, `{"kwargs": {}}`},
// f(a, b=42, *args, **kwargs)
{`f()`, `function f missing 1 argument (a)`},
{`f(0)`, `(0, 42, (), {})`},
{`f(0)`, `(0, 42, (), {})`},
{`f(0, 1)`, `(0, 1, (), {})`},
{`f(0, 1, 2)`, `(0, 1, (2,), {})`},
{`f(0, 1, 2, 3)`, `(0, 1, (2, 3), {})`},
{`f(a=0)`, `(0, 42, (), {})`},
{`f(0, b=1)`, `(0, 1, (), {})`},
{`f(0, a=1)`, `function f got multiple values for parameter "a"`},
{`f(0, b=1, c=2)`, `(0, 1, (), {"c": 2})`},
// g(a, b=42, *args, c=123, **kwargs)
{`g()`, `function g missing 1 argument (a)`},
{`g(0)`, `(0, 42, (), 123, {})`},
{`g(0, 1)`, `(0, 1, (), 123, {})`},
{`g(0, 1, 2)`, `(0, 1, (2,), 123, {})`},
{`g(0, 1, 2, 3)`, `(0, 1, (2, 3), 123, {})`},
{`g(a=0)`, `(0, 42, (), 123, {})`},
{`g(0, b=1)`, `(0, 1, (), 123, {})`},
{`g(0, a=1)`, `function g got multiple values for parameter "a"`},
{`g(0, b=1, c=2, d=3)`, `(0, 1, (), 2, {"d": 3})`},
// h(a, b=42, *, c=123, **kwargs)
{`h()`, `function h missing 1 argument (a)`},
{`h(0)`, `(0, 42, 123, {})`},
{`h(0, 1)`, `(0, 1, 123, {})`},
{`h(0, 1, 2)`, `function h accepts at most 2 positional arguments (3 given)`},
{`h(a=0)`, `(0, 42, 123, {})`},
{`h(0, b=1)`, `(0, 1, 123, {})`},
{`h(0, a=1)`, `function h got multiple values for parameter "a"`},
{`h(0, b=1, c=2)`, `(0, 1, 2, {})`},
{`h(0, b=1, d=2)`, `(0, 1, 123, {"d": 2})`},
{`h(0, b=1, c=2, d=3)`, `(0, 1, 2, {"d": 3})`},
// i(a, b=42, *, c, d=123, e, **kwargs)
{`i()`, `function i missing 3 arguments (a, c, e)`},
{`i(0)`, `function i missing 2 arguments (c, e)`},
{`i(0, 1)`, `function i missing 2 arguments (c, e)`},
{`i(0, 1, 2)`, `function i accepts at most 2 positional arguments (3 given)`},
{`i(0, 1, e=2)`, `function i missing 1 argument (c)`},
{`i(0, 1, 2, 3)`, `function i accepts at most 2 positional arguments (4 given)`},
{`i(a=0)`, `function i missing 2 arguments (c, e)`},
{`i(0, b=1)`, `function i missing 2 arguments (c, e)`},
{`i(0, a=1)`, `function i got multiple values for parameter "a"`},
{`i(0, b=1, c=2)`, `function i missing 1 argument (e)`},
{`i(0, b=1, d=2)`, `function i missing 2 arguments (c, e)`},
{`i(0, b=1, c=2, d=3)`, `function i missing 1 argument (e)`},
{`i(0, b=1, c=2, d=3, e=4)`, `(0, 1, 2, 3, 4, {})`},
{`i(0, 1, b=1, c=2, d=3, e=4)`, `function i got multiple values for parameter "b"`},
// j(a, b=42, *args, c, d=123, e, **kwargs)
{`j()`, `function j missing 3 arguments (a, c, e)`},
{`j(0)`, `function j missing 2 arguments (c, e)`},
{`j(0, 1)`, `function j missing 2 arguments (c, e)`},
{`j(0, 1, 2)`, `function j missing 2 arguments (c, e)`},
{`j(0, 1, e=2)`, `function j missing 1 argument (c)`},
{`j(0, 1, 2, 3)`, `function j missing 2 arguments (c, e)`},
{`j(a=0)`, `function j missing 2 arguments (c, e)`},
{`j(0, b=1)`, `function j missing 2 arguments (c, e)`},
{`j(0, a=1)`, `function j got multiple values for parameter "a"`},
{`j(0, b=1, c=2)`, `function j missing 1 argument (e)`},
{`j(0, b=1, d=2)`, `function j missing 2 arguments (c, e)`},
{`j(0, b=1, c=2, d=3)`, `function j missing 1 argument (e)`},
{`j(0, b=1, c=2, d=3, e=4)`, `(0, 1, (), 2, 3, 4, {})`},
{`j(0, 1, b=1, c=2, d=3, e=4)`, `function j got multiple values for parameter "b"`},
{`j(0, 1, 2, c=3, e=4)`, `(0, 1, (2,), 3, 123, 4, {})`},
} {
var got string
if v, err := starlark.Eval(thread, "<expr>", test.src, globals); err != nil {
got = err.Error()
} else {
got = v.String()
}
if got != test.want {
t.Errorf("eval %s = %s, want %s", test.src, got, test.want)
}
}
}
// TestPrint ensures that the Starlark print function calls
// Thread.Print, if provided.
func TestPrint(t *testing.T) {
const src = `
print("hello")
def f(): print("hello", "world", sep=", ")
f()
`
buf := new(bytes.Buffer)
print := func(thread *starlark.Thread, msg string) {
caller := thread.CallFrame(1)
fmt.Fprintf(buf, "%s: %s: %s\n", caller.Pos, caller.Name, msg)
}
thread := &starlark.Thread{Print: print}
if _, err := starlark.ExecFile(thread, "foo.star", src, nil); err != nil {
t.Fatal(err)
}
want := "foo.star:2:6: <toplevel>: hello\n" +
"foo.star:3:15: f: hello, world\n"
if got := buf.String(); got != want {
t.Errorf("output was %s, want %s", got, want)
}
}
func reportEvalError(tb testing.TB, err error) {
if err, ok := err.(*starlark.EvalError); ok {
tb.Fatal(err.Backtrace())
}
tb.Fatal(err)
}
// TestInt exercises the Int.Int64 and Int.Uint64 methods.
// If we can move their logic into math/big, delete this test.
func TestInt(t *testing.T) {
one := starlark.MakeInt(1)
for _, test := range []struct {
i starlark.Int
wantInt64 string
wantUint64 string
}{
{starlark.MakeInt64(math.MinInt64).Sub(one), "error", "error"},
{starlark.MakeInt64(math.MinInt64), "-9223372036854775808", "error"},
{starlark.MakeInt64(-1), "-1", "error"},
{starlark.MakeInt64(0), "0", "0"},
{starlark.MakeInt64(1), "1", "1"},
{starlark.MakeInt64(math.MaxInt64), "9223372036854775807", "9223372036854775807"},
{starlark.MakeUint64(math.MaxUint64), "error", "18446744073709551615"},
{starlark.MakeUint64(math.MaxUint64).Add(one), "error", "error"},
} {
gotInt64, gotUint64 := "error", "error"
if i, ok := test.i.Int64(); ok {
gotInt64 = fmt.Sprint(i)
}
if u, ok := test.i.Uint64(); ok {
gotUint64 = fmt.Sprint(u)
}
if gotInt64 != test.wantInt64 {
t.Errorf("(%s).Int64() = %s, want %s", test.i, gotInt64, test.wantInt64)
}
if gotUint64 != test.wantUint64 {
t.Errorf("(%s).Uint64() = %s, want %s", test.i, gotUint64, test.wantUint64)
}
}
}
func backtrace(t *testing.T, err error) string {
switch err := err.(type) {
case *starlark.EvalError:
return err.Backtrace()
case nil:
t.Fatalf("ExecFile succeeded unexpectedly")
default:
t.Fatalf("ExecFile failed with %v, wanted *EvalError", err)
}
panic("unreachable")
}
func TestBacktrace(t *testing.T) {
// This test ensures continuity of the stack of active Starlark
// functions, including propagation through built-ins such as 'min'.
const src = `
def f(x): return 1//x
def g(x): return f(x)
def h(): return min([1, 2, 0], key=g)
def i(): return h()
i()
`
thread := new(starlark.Thread)
_, err := starlark.ExecFile(thread, "crash.star", src, nil)
const want = `Traceback (most recent call last):
crash.star:6:2: in <toplevel>
crash.star:5:18: in i
crash.star:4:20: in h
<builtin>: in min
crash.star:3:19: in g
crash.star:2:19: in f
Error: floored division by zero`
if got := backtrace(t, err); got != want {
t.Errorf("error was %s, want %s", got, want)
}
// Additionally, ensure that errors originating in
// Starlark and/or Go each have an accurate frame.
// The topmost frame, if built-in, is not shown,
// but the name of the built-in function is shown
// as "Error in fn: ...".
//
// This program fails in Starlark (f) if x==0,
// or in Go (string.join) if x is non-zero.
const src2 = `
def f(): ''.join([1//i])
f()
`
for i, want := range []string{
0: `Traceback (most recent call last):
crash.star:3:2: in <toplevel>
crash.star:2:20: in f
Error: floored division by zero`,
1: `Traceback (most recent call last):
crash.star:3:2: in <toplevel>
crash.star:2:17: in f
Error in join: join: in list, want string, got int`,
} {
globals := starlark.StringDict{"i": starlark.MakeInt(i)}
_, err := starlark.ExecFile(thread, "crash.star", src2, globals)
if got := backtrace(t, err); got != want {
t.Errorf("error was %s, want %s", got, want)
}
}
}
func TestLoadBacktrace(t *testing.T) {
// This test ensures that load() does NOT preserve stack traces,
// but that API callers can get them with Unwrap().
// For discussion, see:
// https://github.com/google/starlark-go/pull/244
const src = `
load('crash.star', 'x')
`
const loadedSrc = `
def f(x):
return 1 // x
f(0)
`
thread := new(starlark.Thread)
thread.Load = func(t *starlark.Thread, module string) (starlark.StringDict, error) {
return starlark.ExecFile(new(starlark.Thread), module, loadedSrc, nil)
}
_, err := starlark.ExecFile(thread, "root.star", src, nil)
const want = `Traceback (most recent call last):
root.star:2:1: in <toplevel>
Error: cannot load crash.star: floored division by zero`
if got := backtrace(t, err); got != want {
t.Errorf("error was %s, want %s", got, want)
}
unwrapEvalError := func(err error) *starlark.EvalError {
var result *starlark.EvalError
for {
if evalErr, ok := err.(*starlark.EvalError); ok {
result = evalErr
}
err = errors.Unwrap(err)
if err == nil {
break
}
}
return result
}
unwrappedErr := unwrapEvalError(err)
const wantUnwrapped = `Traceback (most recent call last):
crash.star:5:2: in <toplevel>
crash.star:3:12: in f
Error: floored division by zero`
if got := backtrace(t, unwrappedErr); got != wantUnwrapped {
t.Errorf("error was %s, want %s", got, wantUnwrapped)
}
}
// TestRepeatedExec parses and resolves a file syntax tree once then
// executes it repeatedly with different values of its predeclared variables.
func TestRepeatedExec(t *testing.T) {
predeclared := starlark.StringDict{"x": starlark.None}
_, prog, err := starlark.SourceProgram("repeat.star", "y = 2 * x", predeclared.Has)
if err != nil {
t.Fatal(err)
}
for _, test := range []struct {
x, want starlark.Value
}{
{x: starlark.MakeInt(42), want: starlark.MakeInt(84)},
{x: starlark.String("mur"), want: starlark.String("murmur")},
{x: starlark.Tuple{starlark.None}, want: starlark.Tuple{starlark.None, starlark.None}},
} {
predeclared["x"] = test.x // update the values in dictionary
thread := new(starlark.Thread)
if globals, err := prog.Init(thread, predeclared); err != nil {
t.Errorf("x=%v: %v", test.x, err) // exec error
} else if eq, err := starlark.Equal(globals["y"], test.want); err != nil {
t.Errorf("x=%v: %v", test.x, err) // comparison error
} else if !eq {
t.Errorf("x=%v: got y=%v, want %v", test.x, globals["y"], test.want)
}
}
}
// TestEmptyFilePosition ensures that even Programs
// from empty files have a valid position.
func TestEmptyPosition(t *testing.T) {
var predeclared starlark.StringDict
for _, content := range []string{"", "empty = False"} {
_, prog, err := starlark.SourceProgram("hello.star", content, predeclared.Has)
if err != nil {
t.Fatal(err)
}
if got, want := prog.Filename(), "hello.star"; got != want {
t.Errorf("Program.Filename() = %q, want %q", got, want)
}
}
}
// TestUnpackUserDefined tests that user-defined
// implementations of starlark.Value may be unpacked.
func TestUnpackUserDefined(t *testing.T) {
// success
want := new(hasfields)
var x *hasfields
if err := starlark.UnpackArgs("unpack", starlark.Tuple{want}, nil, "x", &x); err != nil {
t.Errorf("UnpackArgs failed: %v", err)
}
if x != want {
t.Errorf("for x, got %v, want %v", x, want)
}
// failure
err := starlark.UnpackArgs("unpack", starlark.Tuple{starlark.MakeInt(42)}, nil, "x", &x)
if want := "unpack: for parameter x: got int, want hasfields"; fmt.Sprint(err) != want {
t.Errorf("unpack args error = %q, want %q", err, want)
}
}
type optionalStringUnpacker struct {
str string
isSet bool
}
func (o *optionalStringUnpacker) Unpack(v starlark.Value) error {
s, ok := starlark.AsString(v)
if !ok {
return fmt.Errorf("got %s, want string", v.Type())
}
o.str = s
o.isSet = ok
return nil
}
func TestUnpackCustomUnpacker(t *testing.T) {
a := optionalStringUnpacker{}
wantA := optionalStringUnpacker{str: "a", isSet: true}
b := optionalStringUnpacker{str: "b"}
wantB := optionalStringUnpacker{str: "b"}
// Success
if err := starlark.UnpackArgs("unpack", starlark.Tuple{starlark.String("a")}, nil, "a?", &a, "b?", &b); err != nil {
t.Errorf("UnpackArgs failed: %v", err)
}
if a != wantA {
t.Errorf("for a, got %v, want %v", a, wantA)
}
if b != wantB {
t.Errorf("for b, got %v, want %v", b, wantB)
}
// failure
err := starlark.UnpackArgs("unpack", starlark.Tuple{starlark.MakeInt(42)}, nil, "a", &a)
if want := "unpack: for parameter a: got int, want string"; fmt.Sprint(err) != want {
t.Errorf("unpack args error = %q, want %q", err, want)
}
}
func TestUnpackNoneCoalescing(t *testing.T) {
a := optionalStringUnpacker{str: "a"}
wantA := optionalStringUnpacker{str: "a", isSet: false}
b := optionalStringUnpacker{str: "b"}
wantB := optionalStringUnpacker{str: "b", isSet: false}
// Success
args := starlark.Tuple{starlark.None}
kwargs := []starlark.Tuple{starlark.Tuple{starlark.String("b"), starlark.None}}
if err := starlark.UnpackArgs("unpack", args, kwargs, "a??", &a, "b??", &a); err != nil {
t.Errorf("UnpackArgs failed: %v", err)
}
if a != wantA {
t.Errorf("for a, got %v, want %v", a, wantA)
}
if b != wantB {
t.Errorf("for b, got %v, want %v", b, wantB)
}
// failure
err := starlark.UnpackArgs("unpack", starlark.Tuple{starlark.MakeInt(42)}, nil, "a??", &a)
if want := "unpack: for parameter a: got int, want string"; fmt.Sprint(err) != want {
t.Errorf("unpack args error = %q, want %q", err, want)
}
err = starlark.UnpackArgs("unpack", nil, []starlark.Tuple{
starlark.Tuple{starlark.String("a"), starlark.None},
starlark.Tuple{starlark.String("a"), starlark.None},
}, "a??", &a)
if want := "unpack: got multiple values for keyword argument \"a\""; fmt.Sprint(err) != want {
t.Errorf("unpack args error = %q, want %q", err, want)
}
}
func TestUnpackRequiredAfterOptional(t *testing.T) {
// Assert 'c' is implicitly optional
var a, b, c string
args := starlark.Tuple{starlark.String("a")}
if err := starlark.UnpackArgs("unpack", args, nil, "a", &a, "b?", &b, "c", &c); err != nil {
t.Errorf("UnpackArgs failed: %v", err)
}
}
func TestAsInt(t *testing.T) {
for _, test := range []struct {
val starlark.Value
ptr interface{}
want string
}{
{starlark.MakeInt(42), new(int32), "42"},
{starlark.MakeInt(-1), new(int32), "-1"},
// Use Lsh not 1<<40 as the latter exceeds int if GOARCH=386.
{starlark.MakeInt(1).Lsh(40), new(int32), "1099511627776 out of range (want value in signed 32-bit range)"},
{starlark.MakeInt(-1).Lsh(40), new(int32), "-1099511627776 out of range (want value in signed 32-bit range)"},
{starlark.MakeInt(42), new(uint16), "42"},
{starlark.MakeInt(0xffff), new(uint16), "65535"},
{starlark.MakeInt(0x10000), new(uint16), "65536 out of range (want value in unsigned 16-bit range)"},
{starlark.MakeInt(-1), new(uint16), "-1 out of range (want value in unsigned 16-bit range)"},
} {
var got string
if err := starlark.AsInt(test.val, test.ptr); err != nil {
got = err.Error()
} else {
got = fmt.Sprint(reflect.ValueOf(test.ptr).Elem().Interface())
}
if got != test.want {
t.Errorf("AsInt(%s, %T): got %q, want %q", test.val, test.ptr, got, test.want)
}
}
}
func TestDocstring(t *testing.T) {
globals, _ := starlark.ExecFile(&starlark.Thread{}, "doc.star", `
def somefunc():
"somefunc doc"
return 0
`, nil)
if globals["somefunc"].(*starlark.Function).Doc() != "somefunc doc" {
t.Fatal("docstring not found")
}
}
func TestFrameLocals(t *testing.T) {
// trace prints a nice stack trace including argument
// values of calls to Starlark functions.
trace := func(thread *starlark.Thread) string {
buf := new(bytes.Buffer)
for i := 0; i < thread.CallStackDepth(); i++ {
fr := thread.DebugFrame(i)
fmt.Fprintf(buf, "%s(", fr.Callable().Name())
if fn, ok := fr.Callable().(*starlark.Function); ok {
for i := 0; i < fn.NumParams(); i++ {
if i > 0 {
buf.WriteString(", ")
}
name, _ := fn.Param(i)
_, v := fr.Local(i)
fmt.Fprintf(buf, "%s=%s", name, v)
}
} else {
buf.WriteString("...") // a built-in function
}
buf.WriteString(")\n")
}
return buf.String()
}
var got string
builtin := func(thread *starlark.Thread, _ *starlark.Builtin, _ starlark.Tuple, _ []starlark.Tuple) (starlark.Value, error) {
got = trace(thread)
return starlark.None, nil
}
predeclared := starlark.StringDict{
"builtin": starlark.NewBuiltin("builtin", builtin),
}
_, err := starlark.ExecFile(&starlark.Thread{}, "foo.star", `
def f(x, y): builtin()
def g(z): f(z, z*z)
g(7)
`, predeclared)
if err != nil {
t.Errorf("ExecFile failed: %v", err)
}
var want = `
builtin(...)
f(x=7, y=49)
g(z=7)
<toplevel>()
`[1:]
if got != want {
t.Errorf("got <<%s>>, want <<%s>>", got, want)
}
}
type badType string
func (b *badType) String() string { return "badType" }
func (b *badType) Type() string { return "badType:" + string(*b) } // panics if b==nil
func (b *badType) Truth() starlark.Bool { return true }
func (b *badType) Hash() (uint32, error) { return 0, nil }
func (b *badType) Freeze() {}
var _ starlark.Value = new(badType)
// TestUnpackErrorBadType verifies that the Unpack functions fail
// gracefully when a parameter's default value's Type method panics.
func TestUnpackErrorBadType(t *testing.T) {
for _, test := range []struct {
x *badType
want string
}{
{new(badType), "got NoneType, want badType"}, // Starlark type name
{nil, "got NoneType, want *starlark_test.badType"}, // Go type name
} {
err := starlark.UnpackArgs("f", starlark.Tuple{starlark.None}, nil, "x", &test.x)
if err == nil {
t.Errorf("UnpackArgs succeeded unexpectedly")
continue
}
if !strings.Contains(err.Error(), test.want) {
t.Errorf("UnpackArgs error %q does not contain %q", err, test.want)
}
}
}
// Regression test for github.com/google/starlark-go/issues/233.
func TestREPLChunk(t *testing.T) {
thread := new(starlark.Thread)
globals := make(starlark.StringDict)
exec := func(src string) {
f, err := syntax.Parse("<repl>", src, 0)
if err != nil {
t.Fatal(err)
}
if err := starlark.ExecREPLChunk(f, thread, globals); err != nil {
t.Fatal(err)
}
}
exec("x = 0; y = 0")
if got, want := fmt.Sprintf("%v %v", globals["x"], globals["y"]), "0 0"; got != want {
t.Fatalf("chunk1: got %s, want %s", got, want)
}
exec("x += 1; y = y + 1")
if got, want := fmt.Sprintf("%v %v", globals["x"], globals["y"]), "1 1"; got != want {
t.Fatalf("chunk2: got %s, want %s", got, want)
}
}
func TestCancel(t *testing.T) {
// A thread cancelled before it begins executes no code.
{
thread := new(starlark.Thread)
thread.Cancel("nope")
_, err := starlark.ExecFile(thread, "precancel.star", `x = 1//0`, nil)
if fmt.Sprint(err) != "Starlark computation cancelled: nope" {
t.Errorf("execution returned error %q, want cancellation", err)
}
// cancellation is sticky
_, err = starlark.ExecFile(thread, "precancel.star", `x = 1//0`, nil)
if fmt.Sprint(err) != "Starlark computation cancelled: nope" {
t.Errorf("execution returned error %q, want cancellation", err)
}
}
// A thread cancelled during a built-in executes no more code.
{
thread := new(starlark.Thread)
predeclared := starlark.StringDict{
"stopit": starlark.NewBuiltin("stopit", func(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error) {
thread.Cancel(fmt.Sprint(args[0]))
return starlark.None, nil
}),
}
_, err := starlark.ExecFile(thread, "stopit.star", `msg = 'nope'; stopit(msg); x = 1//0`, predeclared)
if fmt.Sprint(err) != `Starlark computation cancelled: "nope"` {
t.Errorf("execution returned error %q, want cancellation", err)
}
}
}
func TestExecutionSteps(t *testing.T) {
// A Thread records the number of computation steps.
thread := new(starlark.Thread)
countSteps := func(n int) (uint64, error) {
predeclared := starlark.StringDict{"n": starlark.MakeInt(n)}
steps0 := thread.ExecutionSteps()
_, err := starlark.ExecFile(thread, "steps.star", `squares = [x*x for x in range(n)]`, predeclared)
return thread.ExecutionSteps() - steps0, err
}
steps100, err := countSteps(1000)
if err != nil {
t.Errorf("execution failed: %v", err)
}
steps10000, err := countSteps(100000)
if err != nil {
t.Errorf("execution failed: %v", err)
}
if ratio := float64(steps10000) / float64(steps100); ratio < 99 || ratio > 101 {
t.Errorf("computation steps did not increase linearly: f(100)=%d, f(10000)=%d, ratio=%g, want ~100", steps100, steps10000, ratio)
}
// Exceeding the step limit causes cancellation.
thread.SetMaxExecutionSteps(1000)
_, err = countSteps(1000)
if fmt.Sprint(err) != "Starlark computation cancelled: too many steps" {
t.Errorf("execution returned error %q, want cancellation", err)
}
thread.Steps = 0
thread.Uncancel()
_, err = countSteps(1)
if err != nil {
t.Errorf("execution returned error %q, want nil", err)
}
}
// TestDeps fails if the interpreter proper (not the REPL, etc) sprouts new external dependencies.
// We may expand the list of permitted dependencies, but should do so deliberately, not casually.
func TestDeps(t *testing.T) {
cmd := exec.Command("go", "list", "-deps")
out, err := cmd.Output()
if err != nil {
t.Skipf("'go list' failed: %s", err)
}
for _, pkg := range strings.Split(string(out), "\n") {
// Does pkg have form "domain.name/dir"?
slash := strings.IndexByte(pkg, '/')
dot := strings.IndexByte(pkg, '.')
if 0 < dot && dot < slash {
if strings.HasPrefix(pkg, "go.starlark.net/") ||
strings.HasPrefix(pkg, "golang.org/x/sys/") {
continue // permitted dependencies
}
t.Errorf("new interpreter dependency: %s", pkg)
}
}
}
// TestPanicSafety ensures that a panic from an application-defined
// built-in may traverse the interpreter safely; see issue #411.
func TestPanicSafety(t *testing.T) {
predeclared := starlark.StringDict{
"panic": starlark.NewBuiltin("panic", func(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error) {
panic(args[0])
}),
"list": starlark.NewList([]starlark.Value{starlark.MakeInt(0)}),
}
// This program is executed twice, using the same Thread,
// and panics both times, with values 1 and 2, while
// main is on the stack and a for-loop is active.
//
// It mutates list, a predeclared variable.
// This operation would fail if the previous
// for-loop failed to close its iterator during the panic.
//
// It also calls main a second time without recursion enabled.
// This operation would fail if the previous
// call failed to pop main from the stack during the panic.
const src = `
list[0] += 1
def main():
for x in list:
panic(x)
main()
`
thread := new(starlark.Thread)
for _, i := range []int{1, 2} {
// Use a func to limit the scope of recover.
func() {
defer func() {
if got := fmt.Sprint(recover()); got != fmt.Sprint(i) {
t.Fatalf("recover: got %v, want %v", got, i)
}
}()
v, err := starlark.ExecFile(thread, "panic.star", src, predeclared)
if err != nil {
t.Fatalf("ExecFile returned error %q, expected panic", err)
} else {
t.Fatalf("ExecFile returned %v, expected panic", v)
}
}()
}
}
func TestDebugFrame(t *testing.T) {
predeclared := starlark.StringDict{
"env": starlark.NewBuiltin("env", func(thread *starlark.Thread, b *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error) {
if thread.CallStackDepth() < 2 {
return nil, fmt.Errorf("env must not be called directly")
}
fr := thread.DebugFrame(1) // parent
fn, ok := fr.Callable().(*starlark.Function)
if !ok {
return nil, fmt.Errorf("env must be called from a Starlark function")
}
dict := starlark.NewDict(0)
for i := 0; i < fr.NumLocals(); i++ {
bind, val := fr.Local(i)
if val == nil {
continue
}
dict.SetKey(starlark.String(bind.Name), val) // ignore error
}
for i := 0; i < fn.NumFreeVars(); i++ {
bind, val := fn.FreeVar(i)
dict.SetKey(starlark.String(bind.Name), val) // ignore error
}
dict.Freeze()
return dict, nil
}),
}
const src = `
e = [None]
def f(p):
outer = 3
def g(q):
inner = outer + 1
e[0] = env() # {"q": 2, "inner": 4, "outer": 3}
inner2 = None # not defined at call to env()
g(2)
f(1)
`
thread := new(starlark.Thread)
m, err := starlark.ExecFile(thread, "env.star", src, predeclared)
if err != nil {
t.Fatalf("ExecFile returned error %q, expected panic", err)
}
got := m["e"].(*starlark.List).Index(0).String()
want := `{"q": 2, "inner": 4, "outer": 3}`
if got != want {
t.Errorf("env() returned %s, want %s", got, want)
}
}
func TestUnpackArgsOptionalInference(t *testing.T) {
// success
kwargs := []starlark.Tuple{
{starlark.String("x"), starlark.MakeInt(1)},
{starlark.String("y"), starlark.MakeInt(2)},
}
var x, y, z int
if err := starlark.UnpackArgs("unpack", nil, kwargs,
"x", &x, "y?", &y, "z", &z); err != nil {
t.Errorf("UnpackArgs failed: %v", err)
}
got := fmt.Sprintf("x=%d y=%d z=%d", x, y, z)
want := "x=1 y=2 z=0"
if got != want {
t.Errorf("got %s, want %s", got, want)
}
// success
args := starlark.Tuple{starlark.MakeInt(1), starlark.MakeInt(2)}
x = 0
y = 0
z = 0
if err := starlark.UnpackArgs("unpack", args, nil,
"x", &x, "y?", &y, "z", &z); err != nil {
t.Errorf("UnpackArgs failed: %v", err)
}
got = fmt.Sprintf("x=%d y=%d z=%d", x, y, z)
want = "x=1 y=2 z=0"
if got != want {
t.Errorf("got %s, want %s", got, want)
}
}
|