aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/mod_test.txt
blob: 8f2da2f2a5b59593dcfb7c555b8baf1cd054c008 (plain)
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
env GO111MODULE=on
[short] skip

# TODO(bcmills): Convert the 'go test' calls below to 'go list -test' once 'go
# list' is more sensitive to package loading errors.

# A test in the module's root package should work.
cd a/
cp go.mod.empty go.mod
go list -test
! stderr error

cp go.mod.empty go.mod
go list -deps
! stdout ^testing$

# list all should include test dependencies, like testing
cp go.mod.empty go.mod
go list all
stdout ^testing$
stdout ^rsc.io/quote$
stdout ^rsc.io/testonly$

# list -deps -tests should also include testing
# but not deps of tests of deps (rsc.io/testonly).
go list -deps -test
stdout ^testing$
stdout ^rsc.io/quote$
! stdout ^rsc.io/testonly$

# list -test all should succeed
cp go.mod.empty go.mod
go list -test all
stdout '^testing'

cp go.mod.empty go.mod
go list -test
! stderr error

# A test with the "_test" suffix in the module root should also work.
cd ../b/
go list -test
! stderr error

# A test with the "_test" suffix of a *package* with a "_test" suffix should
# even work (not that you should ever do that).
cd ../c_test
go list -test
! stderr error

cd ../d_test
go list -test
! stderr error

cd ../e
go list -test
! stderr error

-- a/go.mod.empty --
module example.com/user/a

-- a/a.go --
package a

-- a/a_test.go --
package a

import "testing"
import _ "rsc.io/quote"

func Test(t *testing.T) {}

-- b/go.mod --
module example.com/user/b

-- b/b.go --
package b

-- b/b_test.go --
package b_test

import "testing"

func Test(t *testing.T) {}

-- c_test/go.mod --
module example.com/c_test

-- c_test/umm.go --
// Package c_test is the non-test package for its import path!
package c_test

-- c_test/c_test_test.go --
package c_test_test

import "testing"

func Test(t *testing.T) {}

-- d_test/go.mod --
// Package d is an ordinary package in a deceptively-named directory.
module example.com/d

-- d_test/d.go --
package d

-- d_test/d_test.go --
package d_test

import "testing"

func Test(t *testing.T) {}

-- e/go.mod --
module example.com/e_test

-- e/wat.go --
// Package e_test is the non-test package for its import path,
// in a deceptively-named directory!
package e_test

-- e/e_test.go --
package e_test_test

import "testing"

func Test(t *testing.T) {}