Rebecca Stambler | 9277847 | 2021-01-05 23:05:35 -0500 | [diff] [blame] | 1 | // Copyright 2016 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Alan Donovan | 5e7fa1c | 2016-10-24 17:33:01 -0400 | [diff] [blame] | 5 | package gccgoexportdata_test |
| 6 | |
| 7 | import ( |
| 8 | "go/types" |
| 9 | "os" |
| 10 | "testing" |
| 11 | |
| 12 | "golang.org/x/tools/go/gccgoexportdata" |
| 13 | ) |
| 14 | |
| 15 | // Test ensures this package can read gccgo export data from the |
Alan Donovan | 5061f92 | 2016-11-09 12:56:38 -0500 | [diff] [blame] | 16 | // .go_export from a standalone ELF file or such a file in an archive |
| 17 | // library. |
| 18 | // |
| 19 | // The testdata/{short,long}.a ELF archive files were produced by: |
| 20 | // |
Russ Cox | d5f48fc | 2022-04-11 23:03:04 -0400 | [diff] [blame] | 21 | // $ echo 'package foo; func F()' > foo.go |
| 22 | // $ gccgo -c -fgo-pkgpath blah foo.go |
| 23 | // $ objcopy -j .go_export foo.o foo.gox |
| 24 | // $ ar q short.a foo.gox |
| 25 | // $ objcopy -j .go_export foo.o name-longer-than-16-bytes.gox |
| 26 | // $ ar q long.a name-longer-than-16-bytes.gox |
Alan Donovan | 5061f92 | 2016-11-09 12:56:38 -0500 | [diff] [blame] | 27 | // |
| 28 | // The file long.a contains an archive string table. |
| 29 | // |
| 30 | // The errors.gox file (an ELF object file) comes from the toolchain's |
| 31 | // standard library. |
Alan Donovan | 5e7fa1c | 2016-10-24 17:33:01 -0400 | [diff] [blame] | 32 | func Test(t *testing.T) { |
Alan Donovan | 5061f92 | 2016-11-09 12:56:38 -0500 | [diff] [blame] | 33 | for _, test := range []struct { |
| 34 | filename, path, member, wantType string |
| 35 | }{ |
| 36 | {"testdata/errors.gox", "errors", "New", "func(text string) error"}, |
| 37 | {"testdata/short.a", "short", "F", "func()"}, |
| 38 | {"testdata/long.a", "long", "F", "func()"}, |
| 39 | } { |
| 40 | t.Logf("filename = %s", test.filename) |
| 41 | f, err := os.Open(test.filename) |
| 42 | if err != nil { |
| 43 | t.Error(err) |
| 44 | continue |
| 45 | } |
| 46 | defer f.Close() |
| 47 | r, err := gccgoexportdata.NewReader(f) |
| 48 | if err != nil { |
| 49 | t.Error(err) |
| 50 | continue |
| 51 | } |
Alan Donovan | 5e7fa1c | 2016-10-24 17:33:01 -0400 | [diff] [blame] | 52 | |
Alan Donovan | 5061f92 | 2016-11-09 12:56:38 -0500 | [diff] [blame] | 53 | imports := make(map[string]*types.Package) |
| 54 | pkg, err := gccgoexportdata.Read(r, nil, imports, test.path) |
| 55 | if err != nil { |
| 56 | t.Error(err) |
| 57 | continue |
| 58 | } |
Alan Donovan | 5e7fa1c | 2016-10-24 17:33:01 -0400 | [diff] [blame] | 59 | |
Alan Donovan | 5061f92 | 2016-11-09 12:56:38 -0500 | [diff] [blame] | 60 | // Check type of designated package member. |
| 61 | obj := pkg.Scope().Lookup(test.member) |
| 62 | if obj == nil { |
| 63 | t.Errorf("%s.%s not found", test.path, test.member) |
| 64 | continue |
| 65 | } |
| 66 | if obj.Type().String() != test.wantType { |
| 67 | t.Errorf("%s.%s.Type = %s, want %s", |
| 68 | test.path, test.member, obj.Type(), test.wantType) |
| 69 | } |
Alan Donovan | 5e7fa1c | 2016-10-24 17:33:01 -0400 | [diff] [blame] | 70 | } |
| 71 | } |