Skip to content

Commit a92e93c

Browse files
committed
Cosmetic fixes
- satisfy updated golangci-lint - simplify code - simplify func signatures - enhance documentation a bit Signed-off-by: apostasie <[email protected]>
1 parent 2db9105 commit a92e93c

20 files changed

+209
-100
lines changed

mod/tigron/.golangci.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@ linters:
2525
files:
2626
- $all
2727
allow:
28+
2829
- $gostd
2930
- github.com/containerd/nerdctl/mod/tigron
3031
- github.com/creack/pty
31-
- github.com/rs/zerolog
32-
- github.com/rs/zerolog/log
33-
- go.uber.org/goleak
34-
- golang.org/x/sync/errgroup
32+
- golang.org/x/sync
3533
- golang.org/x/term
36-
- gotest.tools
34+
- gotest.tools/v3
3735
staticcheck:
3836
checks:
3937
- all

mod/tigron/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ install-dev-tools:
181181
##########################
182182
test-unit:
183183
$(call title, $@)
184-
@EXPERIMENTAL_HIGHK_FD=true go test $(VERBOSE_FLAG) $(MAKEFILE_DIR)/...
184+
@go test $(VERBOSE_FLAG) $(MAKEFILE_DIR)/...
185185
$(call footer, $@)
186186

187187
test-unit-bench:
@@ -191,7 +191,7 @@ test-unit-bench:
191191

192192
test-unit-race:
193193
$(call title, $@)
194-
@EXPERIMENTAL_HIGHK_FD=true go test $(VERBOSE_FLAG) $(MAKEFILE_DIR)/... -race
194+
@CGO_ENABLED=1 go test $(VERBOSE_FLAG) $(MAKEFILE_DIR)/... -race
195195
$(call footer, $@)
196196

197197
.PHONY: \

mod/tigron/expect/comparators.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
// All can be used as a parameter for expected.Output to group a set of comparators.
3131
func All(comparators ...test.Comparator) test.Comparator {
3232
//nolint:thelper
33-
return func(stdout string, info string, t *testing.T) {
33+
return func(stdout, info string, t *testing.T) {
3434
t.Helper()
3535

3636
for _, comparator := range comparators {
@@ -43,17 +43,18 @@ func All(comparators ...test.Comparator) test.Comparator {
4343
// is found contained in the output.
4444
func Contains(compare string) test.Comparator {
4545
//nolint:thelper
46-
return func(stdout string, info string, t *testing.T) {
46+
return func(stdout, info string, t *testing.T) {
4747
t.Helper()
4848
assert.Check(t, strings.Contains(stdout, compare),
4949
fmt.Sprintf("Output does not contain: %q", compare)+info)
5050
}
5151
}
5252

53-
// DoesNotContain is to be used for expected.Output to ensure a comparison string is NOT found in the output.
53+
// DoesNotContain is to be used for expected.Output to ensure a comparison string is NOT found in
54+
// the output.
5455
func DoesNotContain(compare string) test.Comparator {
5556
//nolint:thelper
56-
return func(stdout string, info string, t *testing.T) {
57+
return func(stdout, info string, t *testing.T) {
5758
t.Helper()
5859
assert.Check(t, !strings.Contains(stdout, compare),
5960
fmt.Sprintf("Output does contain: %q", compare)+info)
@@ -63,7 +64,7 @@ func DoesNotContain(compare string) test.Comparator {
6364
// Equals is to be used for expected.Output to ensure it is exactly the output.
6465
func Equals(compare string) test.Comparator {
6566
//nolint:thelper
66-
return func(stdout string, info string, t *testing.T) {
67+
return func(stdout, info string, t *testing.T) {
6768
t.Helper()
6869
assert.Equal(t, compare, stdout, info)
6970
}
@@ -73,7 +74,7 @@ func Equals(compare string) test.Comparator {
7374
// Provisional - expected use, but have not seen it so far.
7475
func Match(reg *regexp.Regexp) test.Comparator {
7576
//nolint:thelper
76-
return func(stdout string, info string, t *testing.T) {
77+
return func(stdout, info string, t *testing.T) {
7778
t.Helper()
7879
assert.Check(t, reg.MatchString(stdout), "Output does not match: "+reg.String(), info)
7980
}

mod/tigron/expect/consts.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@
1717
package expect
1818

1919
const (
20-
ExitCodeSuccess = 0
20+
// ExitCodeSuccess will ensure that the command effectively ran returned with exit code zero.
21+
ExitCodeSuccess = 0
22+
// ExitCodeGenericFail will verify that the command ran and exited with a non-zero error code.
23+
// This does NOT include timeouts, cancellation, or signals.
2124
ExitCodeGenericFail = -1
22-
ExitCodeNoCheck = -2
23-
ExitCodeTimeout = -3
25+
// ExitCodeNoCheck does not enforce any check at all on the function.
26+
ExitCodeNoCheck = -2
27+
// ExitCodeTimeout verifies that the command was cancelled on timeout.
28+
ExitCodeTimeout = -3
2429
)

mod/tigron/expect/doc.go

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
Copyright The containerd Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
// Package expect provides a set of simple concrete test.Comparator implementations to use by tests
18+
// on stdout, along with exit code expectations.
19+
package expect

mod/tigron/require/doc.go

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
Copyright The containerd Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
// Package require provides a set of concrete test.Requirements to express the need for a specific
18+
// architecture, OS, or binary, along with Not() and All() which allow Requirements composition.
19+
package require

mod/tigron/require/requirement.go

+17-20
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
"github.com/containerd/nerdctl/mod/tigron/test"
2525
)
2626

27+
// Binary requires a certain binary to be present in the PATH.
2728
func Binary(name string) *test.Requirement {
2829
return &test.Requirement{
2930
Check: func(_ test.Data, _ test.Helpers) (bool, string) {
@@ -39,45 +40,40 @@ func Binary(name string) *test.Requirement {
3940
}
4041
}
4142

43+
// OS requires a specific operating system (matched against runtime.GOOS).
4244
func OS(os string) *test.Requirement {
4345
return &test.Requirement{
4446
Check: func(_ test.Data, _ test.Helpers) (bool, string) {
45-
mess := fmt.Sprintf("current operating system is %q", runtime.GOOS)
46-
ret := true
47-
if runtime.GOOS != os {
48-
ret = false
49-
}
50-
51-
return ret, mess
47+
return runtime.GOOS == os, fmt.Sprintf("current operating system is %q", runtime.GOOS)
5248
},
5349
}
5450
}
5551

52+
// Arch requires a specific CPU architecture (matched against runtime.GOARCH).
5653
func Arch(arch string) *test.Requirement {
5754
return &test.Requirement{
5855
Check: func(_ test.Data, _ test.Helpers) (bool, string) {
59-
mess := fmt.Sprintf("current architecture is %q", runtime.GOARCH)
60-
ret := true
61-
if runtime.GOARCH != arch {
62-
ret = false
63-
}
64-
65-
return ret, mess
56+
return runtime.GOARCH == arch, fmt.Sprintf("current architecture is %q", runtime.GOARCH)
6657
},
6758
}
6859
}
6960

7061
//nolint:gochecknoglobals
7162
var (
72-
Amd64 = Arch("amd64")
73-
Arm64 = Arch("arm64")
63+
// Amd64 requires an intel x86_64 CPU.
64+
Amd64 = Arch("amd64")
65+
// Arm64 requires an ARM CPU.
66+
Arm64 = Arch("arm64")
67+
// Windows requires the OS to be Windows.
7468
Windows = OS("windows")
75-
Linux = OS("linux")
76-
Darwin = OS("darwin")
69+
// Linux requires the OS to be Linux.
70+
Linux = OS("linux")
71+
// Darwin requires the OS to be macOS.
72+
Darwin = OS("darwin")
7773
)
7874

79-
// NOTE: Not will always ignore any setup and cleanup inside the wrapped requirement.
80-
75+
// Not will negate another requirement
76+
// Note that it will always *ignore* any setup and cleanup inside the wrapped requirement.
8177
func Not(requirement *test.Requirement) *test.Requirement {
8278
return &test.Requirement{
8379
Check: func(data test.Data, helpers test.Helpers) (bool, string) {
@@ -88,6 +84,7 @@ func Not(requirement *test.Requirement) *test.Requirement {
8884
}
8985
}
9086

87+
// All combines several other requirements together.
9188
func All(requirements ...*test.Requirement) *test.Requirement {
9289
return &test.Requirement{
9390
Check: func(data test.Data, helpers test.Helpers) (bool, string) {

mod/tigron/test/case.go

+15-8
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,23 @@ import (
2323
"gotest.tools/v3/assert"
2424
)
2525

26-
// Case describes an entire test-case, including data, setup and cleanup routines, command and expectations.
26+
// Case describes an entire test-case, including data, setup and cleanup routines, command and
27+
// expectations.
2728
type Case struct {
28-
// Description contains a human-readable short desc, used as a seed for the identifier and as a title for the test
29+
// Description contains a human-readable short desc, used as a seed for the identifier and as a
30+
// title for the test.
2931
Description string
30-
// NoParallel disables parallel execution if set to true
32+
// NoParallel disables parallel execution if set to true.
3133
// This obviously implies that all tests run in parallel, by default. This is a design choice.
3234
NoParallel bool
33-
// Env contains a map of environment variables to use as a base for all commands run in Setup, Command and Cleanup
34-
// Note that the environment is inherited by subtests
35+
// Env contains a map of environment variables to use as a base for all commands run in Setup,
36+
// Command and Cleanup.
37+
// Note that the environment is inherited by subtests.
3538
Env map[string]string
36-
// Data contains test specific data, accessible to all operations, also inherited by subtests
39+
// Data contains test specific data, accessible to all operations, also inherited by subtests.
3740
Data Data
3841
// Config contains specific information meaningful to the binary being tested.
39-
// It is also inherited by subtests
42+
// It is also inherited by subtests.
4043
Config Config
4144

4245
// Requirement
@@ -73,7 +76,11 @@ func (test *Case) Run(t *testing.T) {
7376

7477
// Attach testing.T
7578
test.t = subT
76-
assert.Assert(test.t, test.Description != "" || test.parent == nil, "A test description cannot be empty")
79+
assert.Assert(
80+
test.t,
81+
test.Description != "" || test.parent == nil,
82+
"A test description cannot be empty",
83+
)
7784
assert.Assert(test.t, test.Command == nil || test.Expected != nil,
7885
"Expectations for a test command cannot be nil. You may want to use Setup instead.")
7986

mod/tigron/test/command.go

+14-6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
limitations under the License.
1515
*/
1616

17+
//nolint:revive
1718
package test
1819

1920
import (
@@ -34,7 +35,8 @@ import (
3435
"github.com/containerd/nerdctl/mod/tigron/test/internal/pty"
3536
)
3637

37-
// CustomizableCommand is an interface meant for people who want to heavily customize the base command
38+
// CustomizableCommand is an interface meant for people who want to heavily customize the base
39+
// command
3840
// of their test case.
3941
type CustomizableCommand interface {
4042
TestableCommand
@@ -52,8 +54,9 @@ type CustomizableCommand interface {
5254
// WithConfig allows passing custom config properties from the test to the base command
5355
withConfig(config Config)
5456
withT(t *testing.T)
55-
// Clear does a clone, but will clear binary and arguments, but retain the env, or any other custom properties
56-
// Gotcha: if GenericCommand is embedded with a custom Run and an overridden clear to return the embedding type
57+
// Clear does a clone, but will clear binary and arguments, but retain the env, or any other
58+
// custom properties Gotcha: if GenericCommand is embedded with a custom Run and an overridden
59+
// clear to return the embedding type
5760
// the result will be the embedding command, no longer the GenericCommand
5861
clear() TestableCommand
5962

@@ -127,12 +130,13 @@ func (gc *GenericCommand) Run(expect *Expected) {
127130
env []string
128131
tty *os.File
129132
psty *os.File
133+
stdout string
130134
)
131135

132136
output := &bytes.Buffer{}
133-
stdout := ""
134137
copyGroup := &errgroup.Group{}
135138

139+
//nolint:nestif
136140
if !gc.async {
137141
iCmdCmd := gc.boot()
138142

@@ -158,6 +162,7 @@ func (gc *GenericCommand) Run(expect *Expected) {
158162
gc.t.Log("start command failed")
159163
gc.t.Log(gc.result.ExitCode)
160164
gc.t.Log(gc.result.Error)
165+
161166
return gc.result.Error
162167
}
163168

@@ -166,6 +171,7 @@ func (gc *GenericCommand) Run(expect *Expected) {
166171
if err != nil {
167172
gc.t.Log("writing to the pty failed")
168173
gc.t.Log(err)
174+
169175
return err
170176
}
171177
}
@@ -205,7 +211,8 @@ func (gc *GenericCommand) Run(expect *Expected) {
205211
// ExitCode goes first
206212
switch expect.ExitCode {
207213
case internal.ExitCodeNoCheck:
208-
// ExitCodeNoCheck means we do not care at all about exit code. It can be a failure, a success, or a timeout.
214+
// ExitCodeNoCheck means we do not care at all about exit code. It can be a failure, a
215+
// success, or a timeout.
209216
case internal.ExitCodeGenericFail:
210217
// ExitCodeGenericFail means we expect an error (excluding timeout).
211218
assert.Assert(gc.t, result.ExitCode != 0,
@@ -367,7 +374,8 @@ func (gc *GenericCommand) boot() icmd.Cmd {
367374
}
368375
}
369376

370-
// Ensure the subprocess gets executed in a temporary directory unless explicitly instructed otherwise
377+
// Ensure the subprocess gets executed in a temporary directory unless explicitly instructed
378+
// otherwise
371379
iCmdCmd.Dir = gc.workingDir
372380

373381
if gc.stdin != nil {

mod/tigron/test/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func WithConfig(key ConfigKey, value ConfigValue) Config {
2929
// Contains the implementation of the Config interface
3030

3131
//nolint:ireturn
32-
func configureConfig(cfg Config, parent Config) Config {
32+
func configureConfig(cfg, parent Config) Config {
3333
if cfg == nil {
3434
cfg = &config{
3535
config: make(map[ConfigKey]ConfigValue),

mod/tigron/test/data.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const (
3131
// WithData returns a data object with a certain key value set.
3232
//
3333
//nolint:ireturn
34-
func WithData(key string, value string) Data {
34+
func WithData(key, value string) Data {
3535
dat := &data{}
3636
dat.Set(key, value)
3737

@@ -41,7 +41,7 @@ func WithData(key string, value string) Data {
4141
// Contains the implementation of the Data interface
4242

4343
//nolint:ireturn
44-
func configureData(t *testing.T, seedData Data, parent Data) Data {
44+
func configureData(t *testing.T, seedData, parent Data) Data {
4545
t.Helper()
4646

4747
if seedData == nil {
@@ -78,7 +78,7 @@ func (dt *data) Get(key string) string {
7878
}
7979

8080
//nolint:ireturn
81-
func (dt *data) Set(key string, value string) Data {
81+
func (dt *data) Set(key, value string) Data {
8282
if dt.labels == nil {
8383
dt.labels = map[string]string{}
8484
}

mod/tigron/test/doc.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
Copyright The containerd Authors.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
// Package test is the main entrypoint for Tigron.
18+
package test

0 commit comments

Comments
 (0)