Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable errorlint and testifylint linters #2385

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
run:
go: '1.21'
timeout: 10m
issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gosec

linters-settings:
goimports:
Expand All @@ -10,20 +14,17 @@ linters-settings:

linters:
enable:
- gofmt
- bidichk
- errorlint
- gofumpt
- goimports
- gosec
- govet
- misspell
- bidichk
- testifylint
disable:
- errcheck

issues:
# Excluding configuration per-path, per-linter, per-text and per-source
exclude-rules:
# Exclude some linters from running on tests files.
- path: _test\.go
linters:
- gosec
run:
go: '1.20'
timeout: 10m
5 changes: 3 additions & 2 deletions apis/v1/deployment_strategy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func TestUnmarshalJSON(t *testing.T) {
Expand All @@ -28,7 +29,7 @@ func TestUnmarshalJSON(t *testing.T) {
t.Run(name, func(t *testing.T) {
ds := DeploymentStrategy("")
err := json.Unmarshal([]byte(tc.json), &ds)
assert.NoError(t, err)
require.NoError(t, err)
assert.Equal(t, tc.expected, ds)
})
}
Expand All @@ -48,7 +49,7 @@ func TestMarshalJSON(t *testing.T) {
for name, tc := range tcs {
t.Run(name, func(t *testing.T) {
data, err := json.Marshal(tc.strategy)
assert.NoError(t, err)
require.NoError(t, err)
assert.Equal(t, tc.expected, string(data))
})
}
Expand Down
9 changes: 5 additions & 4 deletions apis/v1/freeform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func TestFreeForm(t *testing.T) {
Expand All @@ -16,7 +17,7 @@ func TestFreeForm(t *testing.T) {
},
})
json, err := o.MarshalJSON()
assert.NoError(t, err)
require.NoError(t, err)
assert.NotNil(t, json)
assert.Equal(t, uiconfig, string(*o.json))
}
Expand All @@ -26,7 +27,7 @@ func TestFreeFormUnmarhalMarshal(t *testing.T) {
o := NewFreeForm(nil)
o.UnmarshalJSON([]byte(uiconfig))
json, err := o.MarshalJSON()
assert.NoError(t, err)
require.NoError(t, err)
assert.NotNil(t, json)
assert.Equal(t, uiconfig, string(*o.json))
}
Expand Down Expand Up @@ -66,9 +67,9 @@ func TestToMap(t *testing.T) {
f := NewFreeForm(test.m)
got, err := f.GetMap()
if test.err != "" {
assert.EqualError(t, err, test.err)
require.EqualError(t, err, test.err)
} else {
assert.NoError(t, err)
require.NoError(t, err)
assert.Equal(t, test.expected, got)
}
}
Expand Down
2 changes: 1 addition & 1 deletion apis/v1/jaeger_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func (j *Jaeger) ValidateUpdate(_ runtime.Object) (admission.Warnings, error) {
Name: j.Spec.Storage.Elasticsearch.Name,
}, es)
if errors.IsNotFound(err) {
return nil, fmt.Errorf("elasticsearch instance not found: %v", err)
return nil, fmt.Errorf("elasticsearch instance not found: %w", err)
}
}

Expand Down
7 changes: 4 additions & 3 deletions apis/v1/jaeger_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (

"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func TestDefault(t *testing.T) {
Expand Down Expand Up @@ -179,7 +180,7 @@ func TestDefault(t *testing.T) {
func TestValidateDelete(t *testing.T) {
warnings, err := new(Jaeger).ValidateDelete()
assert.Nil(t, warnings)
assert.Nil(t, err)
require.NoError(t, err)
}

func TestValidate(t *testing.T) {
Expand Down Expand Up @@ -279,10 +280,10 @@ func TestValidate(t *testing.T) {

warnings, err := test.current.ValidateCreate()
if test.err != "" {
assert.NotNil(t, err)
require.Error(t, err)
assert.Equal(t, test.err, err.Error())
} else {
assert.Nil(t, err)
require.NoError(t, err)
}
assert.Nil(t, warnings)
})
Expand Down
16 changes: 8 additions & 8 deletions apis/v1/options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func TestSimpleOption(t *testing.T) {

func TestNoOptions(t *testing.T) {
o := Options{}
assert.Len(t, o.ToArgs(), 0)
assert.Empty(t, o.ToArgs())
}

func TestNestedOption(t *testing.T) {
Expand All @@ -40,7 +40,7 @@ func TestMarshalling(t *testing.T) {
})

b, err := json.Marshal(o)
assert.NoError(t, err)
require.NoError(t, err)
s := string(b)
assert.Contains(t, s, `"es.password":"changeme"`)
assert.Contains(t, s, `"es.server-urls":"http://elasticsearch.default.svc:9200"`)
Expand Down Expand Up @@ -85,9 +85,9 @@ func TestUnmarshalToArgs(t *testing.T) {
opts := Options{}
err := opts.UnmarshalJSON([]byte(test.in))
if test.err != "" {
assert.EqualError(t, err, test.err)
require.EqualError(t, err, test.err)
} else {
assert.NoError(t, err)
require.NoError(t, err)
args := opts.ToArgs()
sort.SliceStable(args, func(i, j int) bool {
return args[i] < args[j]
Expand Down Expand Up @@ -129,15 +129,15 @@ func TestMarshallRaw(t *testing.T) {
o := NewOptions(nil)
o.json = &json
bytes, err := o.MarshalJSON()
assert.NoError(t, err)
require.NoError(t, err)
assert.Equal(t, bytes, json)
}

func TestMarshallEmpty(t *testing.T) {
o := NewOptions(nil)
json := []byte(`{}`)
bytes, err := o.MarshalJSON()
assert.NoError(t, err)
require.NoError(t, err)
assert.Equal(t, bytes, json)
}

Expand All @@ -151,7 +151,7 @@ func TestUpdate(t *testing.T) {
o.Map()["key"] = "new"

// verify
assert.Equal(t, o.opts["key"], "new")
assert.Equal(t, "new", o.opts["key"])
}

func TestStringMap(t *testing.T) {
Expand All @@ -170,7 +170,7 @@ func TestDeepCopy(t *testing.T) {
require.NoError(t, err)
copy := o1.opts.DeepCopy()

assert.Equal(t, copy, &(o1.opts))
assert.Equal(t, &(o1.opts), copy)
}

func TestRepetitiveArguments(t *testing.T) {
Expand Down
3 changes: 1 addition & 2 deletions controllers/appsv1/namespace_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package appsv1_test
import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
k8sconfig "sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/manager"
Expand All @@ -27,5 +26,5 @@ func TestNamespaceControllerRegisterWithManager(t *testing.T) {
err = reconciler.SetupWithManager(mgr)

// verify
assert.NoError(t, err)
require.NoError(t, err)
}
3 changes: 1 addition & 2 deletions controllers/jaegertracing/jaeger_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"k8s.io/apimachinery/pkg/types"
k8sconfig "sigs.k8s.io/controller-runtime/pkg/client/config"
Expand Down Expand Up @@ -52,5 +51,5 @@ func TestRegisterWithManager(t *testing.T) {
err = reconciler.SetupWithManager(mgr)

// verify
assert.NoError(t, err)
require.NoError(t, err)
}
2 changes: 1 addition & 1 deletion hack/install/install-golangci-lint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
VERSION="1.53.2"
VERSION="1.55.2"

echo "Installing golangci-lint"

Expand Down
6 changes: 3 additions & 3 deletions pkg/autoclean/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func TestCleanDeployments(t *testing.T) {
dep = inject.Sidecar(jaeger, dep)

// sanity check
require.Equal(t, 2, len(dep.Spec.Template.Spec.Containers))
require.Len(t, dep.Spec.Template.Spec.Containers, 2)

// prepare the list of existing objects
objs := []runtime.Object{dep}
Expand Down Expand Up @@ -121,10 +121,10 @@ func TestCleanDeployments(t *testing.T) {

// should the sidecar have been deleted?
if tt.deleted {
assert.Equal(t, 1, len(persisted.Spec.Template.Spec.Containers))
assert.Len(t, persisted.Spec.Template.Spec.Containers, 1)
assert.NotContains(t, persisted.Labels, inject.Label)
} else {
assert.Equal(t, 2, len(persisted.Spec.Template.Spec.Containers))
assert.Len(t, persisted.Spec.Template.Spec.Containers, 2)
assert.Contains(t, persisted.Labels, inject.Label)
}
})
Expand Down
2 changes: 1 addition & 1 deletion pkg/autodetect/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func AvailableAPIs(discovery discovery.DiscoveryInterface, groups map[string]boo
if err == nil {
apiLists = append(apiLists, groupAPIList)
} else {
errors = fmt.Errorf("%v; Error getting resources for server group %s: %v", errors, sg.Name, err)
errors = fmt.Errorf("%w; Error getting resources for server group %s: %w", errors, sg.Name, err)
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions pkg/clusterrolebinding/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestGetClusterRoleBinding(t *testing.T) {
assert.Len(t, crbs[0].Subjects, 1)
assert.Equal(t, account.OAuthProxyAccountNameFor(jaeger), crbs[0].Subjects[0].Name)
assert.Equal(t, "ServiceAccount", crbs[0].Subjects[0].Kind)
assert.Len(t, crbs[0].Subjects[0].Namespace, 0) // cluster roles aren't namespaced
assert.Empty(t, crbs[0].Subjects[0].Namespace) // cluster roles aren't namespaced
}

func TestIngressDisabled(t *testing.T) {
Expand All @@ -53,7 +53,7 @@ func TestIngressDisabled(t *testing.T) {
crbs := Get(jaeger)

// verify
assert.Len(t, crbs, 0)
assert.Empty(t, crbs)
}

func TestNotOAuthProxy(t *testing.T) {
Expand All @@ -70,7 +70,7 @@ func TestNotOAuthProxy(t *testing.T) {
crbs := Get(jaeger)

// verify
assert.Len(t, crbs, 0)
assert.Empty(t, crbs)
}

func TestAuthDelegatorNotAvailable(t *testing.T) {
Expand All @@ -90,5 +90,5 @@ func TestAuthDelegatorNotAvailable(t *testing.T) {
crbs := Get(jaeger)

// verify
assert.Len(t, crbs, 0)
assert.Empty(t, crbs)
}
3 changes: 2 additions & 1 deletion pkg/cmd/generate/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package generate

import (
"context"
"errors"
"fmt"
"io"
"os"
Expand Down Expand Up @@ -55,7 +56,7 @@ func createSpecFromYAML(filename string) (*v1.Jaeger, error) {

var spec v1.Jaeger
decoder := yaml.NewYAMLOrJSONDecoder(f, 8192)
if err := decoder.Decode(&spec); err != nil && err != io.EOF {
if err := decoder.Decode(&spec); err != nil && !errors.Is(err, io.EOF) {
return nil, err
}

Expand Down
8 changes: 4 additions & 4 deletions pkg/config/ca/ca_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ func TestUpdateWithoutCAs(t *testing.T) {
AddServiceCA(jaeger, &commonSpec)

// verify
assert.Len(t, commonSpec.Volumes, 0)
assert.Len(t, commonSpec.VolumeMounts, 0)
assert.Empty(t, commonSpec.Volumes)
assert.Empty(t, commonSpec.VolumeMounts)
}

func TestUpdateWithTrustedCA(t *testing.T) {
Expand Down Expand Up @@ -152,6 +152,6 @@ func TestUpdateWithExistingTrustedCA(t *testing.T) {
AddServiceCA(jaeger, &commonSpec)

// verify
assert.Len(t, commonSpec.Volumes, 0)
assert.Len(t, commonSpec.VolumeMounts, 0)
assert.Empty(t, commonSpec.Volumes)
assert.Empty(t, commonSpec.VolumeMounts)
}
6 changes: 3 additions & 3 deletions pkg/config/sampling/sampling_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ func TestUpdateWithSamplingConfigFileOption(t *testing.T) {
commonSpec := v1.JaegerCommonSpec{}

Update(jaeger, &commonSpec, &options)
assert.Len(t, commonSpec.Volumes, 0)
assert.Len(t, commonSpec.VolumeMounts, 0)
assert.Len(t, options, 0)
assert.Empty(t, commonSpec.Volumes)
assert.Empty(t, commonSpec.VolumeMounts)
assert.Empty(t, options)
}

func TestGetWithSamplingConfigFileOption(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/config/tls/tls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ func TestIgnoreDefaultTLSSecretWhenGrpcHostPortIsSet(t *testing.T) {
options = append(options, "--reporter.grpc.host-port=my.host-port.com")

Update(jaeger, &commonSpec, &options)
assert.Len(t, commonSpec.Volumes, 0)
assert.Len(t, commonSpec.VolumeMounts, 0)
assert.Empty(t, commonSpec.Volumes)
assert.Empty(t, commonSpec.VolumeMounts)
assert.Len(t, options, 1)
assert.Equal(t, "--reporter.grpc.host-port=my.host-port.com", options[0])
}
6 changes: 3 additions & 3 deletions pkg/config/ui/ui_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ func TestUpdateNoUIConfig(t *testing.T) {
options := []string{}

Update(jaeger, &commonSpec, &options)
assert.Len(t, commonSpec.Volumes, 0)
assert.Len(t, commonSpec.VolumeMounts, 0)
assert.Len(t, options, 0)
assert.Empty(t, commonSpec.Volumes)
assert.Empty(t, commonSpec.VolumeMounts)
assert.Empty(t, options)
}

func TestUpdateWithUIConfig(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/consolelink/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestUpdateHref(t *testing.T) {
}

link := Get(jaeger, &route)
assert.Equal(t, link.Spec.Href, "")
assert.Equal(t, "", link.Spec.Href)
route.Spec.Host = "namespace.somehostname"
newLinks := UpdateHref([]corev1.Route{route}, []consolev1.ConsoleLink{*link})
assert.Equal(t, fmt.Sprintf("https://%s", route.Spec.Host), newLinks[0].Spec.Href)
Expand Down
Loading
Loading