Skip to content

Commit e17e7b6

Browse files
enable http body close linter (#2479)
1 parent aeb2426 commit e17e7b6

File tree

9 files changed

+42
-3
lines changed

9 files changed

+42
-3
lines changed

.golangci.yml

+19-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ linters:
1515
- unused
1616
- varcheck
1717
- gocritic
18+
- bodyclose
19+
# - gosec
1820
# - forcetypeassert
1921

2022
linters-settings:
@@ -92,7 +94,19 @@ issues:
9294
- staticcheck
9395
text: "SA(1019|1029|5011)"
9496
# Exclude some linters from running on tests files.
95-
- path: _test\.go
97+
- path: test\.go
98+
linters:
99+
- gosec
100+
- unused
101+
- deadcode
102+
- gocritic
103+
- path: hack\.go
104+
linters:
105+
- gosec
106+
- unused
107+
- deadcode
108+
- gocritic
109+
- path: cmd/devp2p
96110
linters:
97111
- gosec
98112
- unused
@@ -102,3 +116,7 @@ issues:
102116
linters:
103117
- gosec
104118
- gocritic
119+
- path: p2p/simulations
120+
linters:
121+
- gosec
122+
- gocritic

cmd/rpctest/rpctest/utils.go

+1
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ func print(client *http.Client, url, request string) {
561561
fmt.Printf("Could not print: %v\n", err)
562562
return
563563
}
564+
defer r.Body.Close()
564565
if r.StatusCode != 200 {
565566
fmt.Printf("Status %s", r.Status)
566567
return

metrics/librato/client.go

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ func (c *LibratoClient) PostMetrics(batch Batch) (err error) {
9090
if resp, err = http.DefaultClient.Do(req); err != nil {
9191
return
9292
}
93+
defer resp.Body.Close()
9394

9495
if resp.StatusCode != http.StatusOK {
9596
var body []byte

node/node_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,7 @@ func TestRegisterHandler_Successful(t *testing.T) {
447447

448448
// check response
449449
resp := doHTTPRequest(t, httpReq)
450+
defer resp.Body.Close()
450451
buf := make([]byte, 7)
451452
_, err = io.ReadFull(resp.Body, buf)
452453
if err != nil {
@@ -607,12 +608,14 @@ func (test rpcPrefixTest) check(t *testing.T, node *Node) {
607608
if resp.StatusCode != 200 {
608609
t.Errorf("Error: %s: bad status code %d, want 200", path, resp.StatusCode)
609610
}
611+
resp.Body.Close()
610612
}
611613
for _, path := range test.wantNoHTTP {
612614
resp := rpcRequest(t, httpBase+path)
613615
if resp.StatusCode != 404 {
614616
t.Errorf("Error: %s: bad status code %d, want 404", path, resp.StatusCode)
615617
}
618+
resp.Body.Close()
616619
}
617620
for _, path := range test.wantWS {
618621
err := wsRequest(t, wsBase+path, "")

node/rpcstack_test.go

+6
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ func TestCorsHandler(t *testing.T) {
4141
url := "http://" + srv.listenAddr()
4242

4343
resp := rpcRequest(t, url, "origin", "test.com")
44+
defer resp.Body.Close()
4445
assert.Equal(t, "test.com", resp.Header.Get("Access-Control-Allow-Origin"))
4546

4647
resp2 := rpcRequest(t, url, "origin", "bad")
48+
defer resp2.Body.Close()
4749
assert.Equal(t, "", resp2.Header.Get("Access-Control-Allow-Origin"))
4850
}
4951

@@ -54,9 +56,11 @@ func TestVhosts(t *testing.T) {
5456
url := "http://" + srv.listenAddr()
5557

5658
resp := rpcRequest(t, url, "host", "test")
59+
defer resp.Body.Close()
5760
assert.Equal(t, resp.StatusCode, http.StatusOK)
5861

5962
resp2 := rpcRequest(t, url, "host", "bad")
63+
defer resp2.Body.Close()
6064
assert.Equal(t, resp2.StatusCode, http.StatusForbidden)
6165
}
6266

@@ -269,6 +273,7 @@ func wsRequest(t *testing.T, url, browserOrigin string) error {
269273
if browserOrigin != "" {
270274
headers.Set("Origin", browserOrigin)
271275
}
276+
//nolint
272277
conn, _, err := websocket.DefaultDialer.Dial(url, headers)
273278
if conn != nil {
274279
conn.Close()
@@ -293,6 +298,7 @@ func testCustomRequest(t *testing.T, srv *httpServer, method string) bool {
293298
if err != nil {
294299
return false
295300
}
301+
defer resp.Body.Close()
296302
respBody, err := ioutil.ReadAll(resp.Body)
297303
assert.NoError(t, err)
298304

p2p/simulations/adapters/exec.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ func (n *ExecNode) NodeInfo() *p2p.NodeInfo {
331331
// ServeRPC serves RPC requests over the given connection by dialling the
332332
// node's WebSocket address and joining the two connections
333333
func (n *ExecNode) ServeRPC(clientConn *websocket.Conn) error {
334+
//nolint
334335
conn, _, err := websocket.DefaultDialer.Dial(n.wsAddr, nil)
335336
if err != nil {
336337
return err
@@ -438,9 +439,12 @@ func execP2PNode() {
438439

439440
// Send status to the host.
440441
statusJSON, _ := json.Marshal(status)
441-
if _, err := http.Post(statusURL, "application/json", bytes.NewReader(statusJSON)); err != nil {
442+
r, err := http.Post(statusURL, "application/json", bytes.NewReader(statusJSON))
443+
if err != nil {
442444
log.Crit("Can't post startup info", "url", statusURL, "err", err)
443445
}
446+
r.Body.Close()
447+
444448
if stackErr != nil {
445449
os.Exit(1)
446450
}

p2p/simulations/mocker_test.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ func TestMocker(t *testing.T) {
125125
if err != nil {
126126
t.Fatalf("Could not start mocker: %s", err)
127127
}
128+
defer resp.Body.Close()
129+
128130
if resp.StatusCode != 200 {
129131
t.Fatalf("Invalid Status Code received for starting mocker, expected 200, got %d", resp.StatusCode)
130132
}
@@ -146,15 +148,17 @@ func TestMocker(t *testing.T) {
146148
if err != nil {
147149
t.Fatalf("Could not stop mocker: %s", err)
148150
}
151+
defer resp.Body.Close()
149152
if resp.StatusCode != 200 {
150153
t.Fatalf("Invalid Status Code received for stopping mocker, expected 200, got %d", resp.StatusCode)
151154
}
152155

153156
//reset the network
154-
_, err = http.Post(s.URL+"/reset", "", nil)
157+
r, err := http.Post(s.URL+"/reset", "", nil)
155158
if err != nil {
156159
t.Fatalf("Could not reset network: %s", err)
157160
}
161+
r.Body.Close()
158162

159163
//now the number of nodes in the network should be zero
160164
nodesInfo, err = client.GetNodes()

rpc/http_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ func confirmHTTPRequestYieldsStatusCode(t *testing.T, method, contentType, body
9292
if err != nil {
9393
t.Fatalf("request failed: %v", err)
9494
}
95+
defer resp.Body.Close()
9596
confirmStatusCode(t, resp.StatusCode, expectedStatusCode)
9697
}
9798

rpc/websocket.go

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ func DialWebsocketWithDialer(ctx context.Context, endpoint, origin string, diale
189189
return nil, err
190190
}
191191
return newClient(ctx, func(ctx context.Context) (ServerCodec, error) {
192+
//nolint
192193
conn, resp, err := dialer.DialContext(ctx, endpoint, header)
193194
if err != nil {
194195
hErr := wsHandshakeError{err: err}

0 commit comments

Comments
 (0)