1
2
3
4
5 package gccgoimporter
6
7 import (
8 "bytes"
9 "go/types"
10 "strings"
11 "testing"
12 "text/scanner"
13 )
14
15 var typeParserTests = []struct {
16 id, typ, want, underlying, methods string
17 }{
18 {id: "foo", typ: "<type -1>", want: "int8"},
19 {id: "foo", typ: "<type 1 *<type -19>>", want: "*error"},
20 {id: "foo", typ: "<type 1 *any>", want: "unsafe.Pointer"},
21 {id: "foo", typ: "<type 1 \"Bar\" <type 2 *<type 1>>>", want: "foo.Bar", underlying: "*foo.Bar"},
22 {id: "foo", typ: "<type 1 \"bar.Foo\" \"bar\" <type -1>\nfunc (? <type 1>) M ();\n>", want: "bar.Foo", underlying: "int8", methods: "func (bar.Foo).M()"},
23 {id: "foo", typ: "<type 1 \".bar.foo\" \"bar\" <type -1>>", want: "bar.foo", underlying: "int8"},
24 {id: "foo", typ: "<type 1 []<type -1>>", want: "[]int8"},
25 {id: "foo", typ: "<type 1 [42]<type -1>>", want: "[42]int8"},
26 {id: "foo", typ: "<type 1 map [<type -1>] <type -2>>", want: "map[int8]int16"},
27 {id: "foo", typ: "<type 1 chan <type -1>>", want: "chan int8"},
28 {id: "foo", typ: "<type 1 chan <- <type -1>>", want: "<-chan int8"},
29 {id: "foo", typ: "<type 1 chan -< <type -1>>", want: "chan<- int8"},
30 {id: "foo", typ: "<type 1 struct { I8 <type -1>; I16 <type -2> \"i16\"; }>", want: "struct{I8 int8; I16 int16 \"i16\"}"},
31 {id: "foo", typ: "<type 1 interface { Foo (a <type -1>, b <type -2>) <type -1>; Bar (? <type -2>, ? ...<type -1>) (? <type -2>, ? <type -1>); Baz (); }>", want: "interface{Bar(int16, ...int8) (int16, int8); Baz(); Foo(a int8, b int16) int8}"},
32 {id: "foo", typ: "<type 1 (? <type -1>) <type -2>>", want: "func(int8) int16"},
33 }
34
35 func TestTypeParser(t *testing.T) {
36 for _, test := range typeParserTests {
37 var p parser
38 p.init("test.gox", strings.NewReader(test.typ), make(map[string]*types.Package))
39 p.version = "v2"
40 p.pkgname = test.id
41 p.pkgpath = test.id
42 p.maybeCreatePackage()
43 typ := p.parseType(p.pkg)
44
45 if p.tok != scanner.EOF {
46 t.Errorf("expected full parse, stopped at %q", p.lit)
47 }
48
49
50 if ityp, _ := typ.(*types.Interface); ityp != nil {
51 ityp.Complete()
52 }
53
54 got := typ.String()
55 if got != test.want {
56 t.Errorf("got type %q, expected %q", got, test.want)
57 }
58
59 if test.underlying != "" {
60 underlying := typ.Underlying().String()
61 if underlying != test.underlying {
62 t.Errorf("got underlying type %q, expected %q", underlying, test.underlying)
63 }
64 }
65
66 if test.methods != "" {
67 nt := typ.(*types.Named)
68 var buf bytes.Buffer
69 for i := 0; i != nt.NumMethods(); i++ {
70 buf.WriteString(nt.Method(i).String())
71 }
72 methods := buf.String()
73 if methods != test.methods {
74 t.Errorf("got methods %q, expected %q", methods, test.methods)
75 }
76 }
77 }
78 }
79
View as plain text