Skip to content

Commit 6cac9ad

Browse files
committed
remove unnecessary import aliases
1 parent d15e106 commit 6cac9ad

File tree

7 files changed

+41
-34
lines changed

7 files changed

+41
-34
lines changed

pkg/cli/root.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
package cli
22

33
import (
4+
"os"
5+
46
"github.com/mattfenwick/cyclonus/pkg/utils"
57
"github.com/pkg/errors"
6-
log "github.com/sirupsen/logrus"
8+
"github.com/sirupsen/logrus"
79
"github.com/spf13/cobra"
8-
"os"
910
)
1011

1112
func RunRootCommand() {
1213
command := SetupRootCommand()
1314
if err := errors.Wrapf(command.Execute(), "run root command"); err != nil {
14-
log.Fatalf("unable to run root command: %+v", err)
15+
logrus.Fatalf("unable to run root command: %+v", err)
1516
os.Exit(1)
1617
}
1718
}

pkg/connectivity/printer.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ package connectivity
22

33
import (
44
"fmt"
5-
"github.com/mattfenwick/collections/pkg/slice"
6-
log "github.com/sirupsen/logrus"
7-
"golang.org/x/exp/maps"
85
"math"
96
"strings"
107

8+
"github.com/mattfenwick/collections/pkg/slice"
9+
"github.com/sirupsen/logrus"
10+
"golang.org/x/exp/maps"
11+
1112
"github.com/mattfenwick/cyclonus/pkg/generator"
1213
"github.com/mattfenwick/cyclonus/pkg/utils"
1314
"github.com/olekukonko/tablewriter"
@@ -37,7 +38,7 @@ func (t *Printer) PrintSummary() {
3738
fmt.Printf("Tag results:\n%s\n", t.printMarkdownFeatureTable(summary.TagPrimaryCounts, summary.TagCounts))
3839

3940
if err := PrintJUnitResults(t.JunitResultsFile, t.Results, t.IgnoreLoopback); err != nil {
40-
log.Errorf("unable to dump JUnit test results: %+v", err)
41+
logrus.Errorf("unable to dump JUnit test results: %+v", err)
4142
}
4243
}
4344

pkg/kube/ipaddress_tests.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ package kube
22

33
import (
44
"fmt"
5+
"net"
6+
57
. "github.com/onsi/ginkgo/v2"
68
. "github.com/onsi/gomega"
7-
log "github.com/sirupsen/logrus"
9+
"github.com/sirupsen/logrus"
810
v1 "k8s.io/api/networking/v1"
9-
"net"
1011
)
1112

1213
type ipCidrTestCase struct {
@@ -41,7 +42,7 @@ func RunIPAddressTests() {
4142
},
4243
}
4344
for _, c := range testCases {
44-
log.Infof("looking at %+v", c)
45+
logrus.Infof("looking at %+v", c)
4546
isInCidr, err := IsIPInCIDR(c.IP, c.CIDR)
4647
Expect(err).To(BeNil())
4748
Expect(isInCidr).To(Equal(c.IsMember))
@@ -83,7 +84,7 @@ func RunIPAddressTests() {
8384
}
8485

8586
for _, c := range testCases {
86-
log.Infof("looking at %+v", c)
87+
logrus.Infof("looking at %+v", c)
8788
isInCidr, err := IsIPInCIDR(c.IP, c.CIDR)
8889
Expect(err).To(BeNil())
8990
Expect(isInCidr).To(Equal(c.IsMember))
@@ -143,7 +144,7 @@ func RunIPAddressTests() {
143144
},
144145
}
145146
for _, c := range testCases {
146-
log.Infof("looking at %+v", c)
147+
logrus.Infof("looking at %+v", c)
147148
isMatch, err := IsIPAddressMatchForIPBlock(c.IP, c.IPBlock)
148149
Expect(err).To(BeNil())
149150
Expect(isMatch).To(Equal(c.IsMatch))
@@ -182,7 +183,7 @@ func RunIPAddressTests() {
182183
},
183184
}
184185
for _, c := range testCases {
185-
log.Infof("looking at %+v", c)
186+
logrus.Infof("looking at %+v", c)
186187

187188
isMatchWithoutExcept, err := IsIPAddressMatchForIPBlock(c.IP, &v1.IPBlock{
188189
CIDR: c.IPBlock.CIDR,

pkg/kube/kubernetes.go

+11-10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ package kube
33
import (
44
"bytes"
55
"context"
6+
67
"github.com/pkg/errors"
7-
log "github.com/sirupsen/logrus"
8+
"github.com/sirupsen/logrus"
89
v1 "k8s.io/api/core/v1"
910
networkingv1 "k8s.io/api/networking/v1"
1011
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -22,7 +23,7 @@ type Kubernetes struct {
2223
}
2324

2425
func NewKubernetesForContext(context string) (*Kubernetes, error) {
25-
log.Debugf("instantiating k8s Clientset for context %s", context)
26+
logrus.Debugf("instantiating k8s Clientset for context %s", context)
2627
kubeConfig, err := clientcmd.NewNonInteractiveDeferredLoadingClientConfig(
2728
clientcmd.NewDefaultClientConfigLoadingRules(),
2829
&clientcmd.ConfigOverrides{CurrentContext: context}).ClientConfig()
@@ -70,13 +71,13 @@ func (k *Kubernetes) CreateNamespace(ns *v1.Namespace) (*v1.Namespace, error) {
7071
}
7172

7273
func (k *Kubernetes) DeleteAllNetworkPoliciesInNamespace(ns string) error {
73-
log.Debugf("deleting all network policies in namespace %s", ns)
74+
logrus.Debugf("deleting all network policies in namespace %s", ns)
7475
netpols, err := k.ClientSet.NetworkingV1().NetworkPolicies(ns).List(context.TODO(), metav1.ListOptions{})
7576
if err != nil {
7677
return errors.Wrapf(err, "unable to list network policies in ns %s", ns)
7778
}
7879
for _, np := range netpols.Items {
79-
log.Debugf("deleting network policy %s/%s", ns, np.Name)
80+
logrus.Debugf("deleting network policy %s/%s", ns, np.Name)
8081
err = k.DeleteNetworkPolicy(np.Namespace, np.Name)
8182
if err != nil {
8283
return err
@@ -99,13 +100,13 @@ func (k *Kubernetes) GetNetworkPoliciesInNamespace(namespace string) ([]networki
99100
}
100101

101102
func (k *Kubernetes) UpdateNetworkPolicy(policy *networkingv1.NetworkPolicy) (*networkingv1.NetworkPolicy, error) {
102-
log.Debugf("updating network policy %s/%s", policy.Namespace, policy.Name)
103+
logrus.Debugf("updating network policy %s/%s", policy.Namespace, policy.Name)
103104
np, err := k.ClientSet.NetworkingV1().NetworkPolicies(policy.Namespace).Update(context.TODO(), policy, metav1.UpdateOptions{})
104105
return np, errors.Wrapf(err, "unable to update network policy %s/%s", policy.Namespace, policy.Name)
105106
}
106107

107108
func (k *Kubernetes) CreateNetworkPolicy(policy *networkingv1.NetworkPolicy) (*networkingv1.NetworkPolicy, error) {
108-
log.Debugf("creating network policy %s/%s", policy.Namespace, policy.Name)
109+
logrus.Debugf("creating network policy %s/%s", policy.Namespace, policy.Name)
109110

110111
createdPolicy, err := k.ClientSet.NetworkingV1().NetworkPolicies(policy.Namespace).Create(context.TODO(), policy, metav1.CreateOptions{})
111112
return createdPolicy, errors.Wrapf(err, "unable to create network policy %s/%s", policy.Namespace, policy.Name)
@@ -118,7 +119,7 @@ func (k *Kubernetes) GetService(namespace string, name string) (*v1.Service, err
118119

119120
func (k *Kubernetes) CreateService(svc *v1.Service) (*v1.Service, error) {
120121
ns := svc.Namespace
121-
log.Debugf("creating service %s/%s", ns, svc.Name)
122+
logrus.Debugf("creating service %s/%s", ns, svc.Name)
122123
createdService, err := k.ClientSet.CoreV1().Services(ns).Create(context.TODO(), svc, metav1.CreateOptions{})
123124
if err != nil {
124125
return nil, errors.Wrapf(err, "unable to create service %s/%s", ns, svc.Name)
@@ -127,7 +128,7 @@ func (k *Kubernetes) CreateService(svc *v1.Service) (*v1.Service, error) {
127128
}
128129

129130
func (k *Kubernetes) DeleteService(namespace string, name string) error {
130-
log.Debugf("deleting service %s/%s", namespace, name)
131+
logrus.Debugf("deleting service %s/%s", namespace, name)
131132
err := k.ClientSet.CoreV1().Services(namespace).Delete(context.TODO(), name, metav1.DeleteOptions{})
132133
return errors.Wrapf(err, "unable to delete service %s/%s", namespace, name)
133134
}
@@ -165,14 +166,14 @@ func (k *Kubernetes) SetPodLabels(namespace string, podName string, labels map[s
165166

166167
func (k *Kubernetes) CreatePod(pod *v1.Pod) (*v1.Pod, error) {
167168
ns := pod.Namespace
168-
log.Debugf("creating pod %s/%s", ns, pod.Name)
169+
logrus.Debugf("creating pod %s/%s", ns, pod.Name)
169170

170171
createdPod, err := k.ClientSet.CoreV1().Pods(ns).Create(context.TODO(), pod, metav1.CreateOptions{})
171172
return createdPod, errors.Wrapf(err, "unable to create pod %s/%s", ns, pod.Name)
172173
}
173174

174175
func (k *Kubernetes) DeletePod(namespace string, podName string) error {
175-
log.Debugf("deleting pod %s/%s", namespace, podName)
176+
logrus.Debugf("deleting pod %s/%s", namespace, podName)
176177
err := k.ClientSet.CoreV1().Pods(namespace).Delete(context.TODO(), podName, metav1.DeleteOptions{})
177178
return errors.Wrapf(err, "unable to delete pod %s/%s", namespace, podName)
178179
}

pkg/utils/resty.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ package utils
33
import (
44
"encoding/json"
55
"fmt"
6+
67
"github.com/go-resty/resty/v2"
78
"github.com/pkg/errors"
8-
log "github.com/sirupsen/logrus"
9+
"github.com/sirupsen/logrus"
910
)
1011

1112
func IssueRequest(restyClient *resty.Client, verb string, path string, body interface{}, result interface{}) (string, error) {
@@ -16,15 +17,15 @@ func IssueRequest(restyClient *resty.Client, verb string, path string, body inte
1617
if err != nil {
1718
return "", errors.Wrapf(err, "unable to marshal json")
1819
}
19-
log.Tracef("request body: %s", string(reqBody))
20+
logrus.Tracef("request body: %s", string(reqBody))
2021
request = request.SetBody(body)
2122
}
2223
if result != nil {
2324
request = request.SetResult(result)
2425
}
2526

2627
urlPath := fmt.Sprintf("%s/%s", restyClient.HostURL, path)
27-
log.Debugf("issuing %s to %s", verb, urlPath)
28+
logrus.Debugf("issuing %s to %s", verb, urlPath)
2829

2930
var resp *resty.Response
3031
switch verb {
@@ -44,8 +45,8 @@ func IssueRequest(restyClient *resty.Client, verb string, path string, body inte
4445
}
4546

4647
respBody, statusCode := resp.String(), resp.StatusCode()
47-
log.Debugf("response code %d from %s to %s", statusCode, verb, urlPath)
48-
log.Tracef("response body: %s", respBody)
48+
logrus.Debugf("response code %d from %s to %s", statusCode, verb, urlPath)
49+
logrus.Tracef("response body: %s", respBody)
4950

5051
if !resp.IsSuccess() {
5152
return respBody, errors.Errorf("bad status code for %s to path %s: %d, response %s", verb, path, statusCode, respBody)

pkg/worker/cli.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ package worker
22

33
import (
44
"fmt"
5+
"os"
6+
57
"github.com/mattfenwick/cyclonus/pkg/utils"
68
"github.com/pkg/errors"
7-
log "github.com/sirupsen/logrus"
9+
"github.com/sirupsen/logrus"
810
"github.com/spf13/cobra"
9-
"os"
1011
)
1112

1213
func Run() {
1314
command := SetupRootCommand()
1415
if err := errors.Wrapf(command.Execute(), "run root command"); err != nil {
15-
log.Fatalf("unable to run root command: %+v", err)
16+
logrus.Fatalf("unable to run root command: %+v", err)
1617
os.Exit(1)
1718
}
1819
}

pkg/worker/client.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ package worker
22

33
import (
44
"encoding/json"
5+
56
"github.com/mattfenwick/cyclonus/pkg/kube"
67
"github.com/pkg/errors"
7-
log "github.com/sirupsen/logrus"
8+
"github.com/sirupsen/logrus"
89
)
910

1011
type Client struct {
@@ -17,9 +18,9 @@ func (c *Client) Batch(b *Batch) ([]*Result, error) {
1718
return nil, errors.Wrapf(err, "unable to marshal json")
1819
}
1920
command := []string{"/worker", "--jobs", string(bytes)}
20-
log.Infof("issuing %s worker command with %d requests", b.Key(), len(b.Requests))
21+
logrus.Infof("issuing %s worker command with %d requests", b.Key(), len(b.Requests))
2122
stdout, stderr, commandErr, err := c.Kubernetes.ExecuteRemoteCommand(b.Namespace, b.Pod, b.Container, command)
22-
log.Tracef("%s worker stdout:\n%s\nworker stderr:\n%s\n", b.Key(), stdout, stderr)
23+
logrus.Tracef("%s worker stdout:\n%s\nworker stderr:\n%s\n", b.Key(), stdout, stderr)
2324

2425
if err != nil {
2526
return nil, err

0 commit comments

Comments
 (0)