update golangci-lint action to v3, golangci-lint to v1.48.0 (#3499)

* run gofmt -s -w

* stop using the deprecated io/ioutil package

* update golangci-lint action to v3, golangci-lint to v1.48.0
This commit is contained in:
Marten Seemann 2022-08-10 18:50:48 +02:00 committed by GitHub
parent 7ebe1430ef
commit 498475fa60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 39 additions and 37 deletions

View file

@ -25,7 +25,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: golangci-lint - uses: actions/setup-go@v2
uses: golangci/golangci-lint-action@v2
with: with:
version: v1.45.2 go-version: "1.19.x"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.48.0

View file

@ -7,7 +7,6 @@ import (
"flag" "flag"
"fmt" "fmt"
"io" "io"
"io/ioutil"
"log" "log"
"mime/multipart" "mime/multipart"
"net/http" "net/http"
@ -93,7 +92,7 @@ func setupHandler(www string) http.Handler {
}) })
mux.HandleFunc("/demo/echo", func(w http.ResponseWriter, r *http.Request) { mux.HandleFunc("/demo/echo", func(w http.ResponseWriter, r *http.Request) {
body, err := ioutil.ReadAll(r.Body) body, err := io.ReadAll(r.Body)
if err != nil { if err != nil {
fmt.Printf("error reading body while handling /echo: %s\n", err.Error()) fmt.Printf("error reading body while handling /echo: %s\n", err.Error())
} }

View file

@ -25,6 +25,7 @@ func toEncLevel(v uint8) protocol.EncryptionLevel {
} }
// Fuzz fuzzes the QUIC frames. // Fuzz fuzzes the QUIC frames.
//
//go:generate go run ./cmd/corpus.go //go:generate go run ./cmd/corpus.go
func Fuzz(data []byte) int { func Fuzz(data []byte) int {
if len(data) < PrefixLen { if len(data) < PrefixLen {

View file

@ -7,7 +7,7 @@ import (
"crypto/x509" "crypto/x509"
"errors" "errors"
"fmt" "fmt"
"io/ioutil" "io"
"log" "log"
"math" "math"
mrand "math/rand" mrand "math/rand"
@ -249,6 +249,7 @@ const (
) )
// Fuzz fuzzes the TLS 1.3 handshake used by QUIC. // Fuzz fuzzes the TLS 1.3 handshake used by QUIC.
//
//go:generate go run ./cmd/corpus.go //go:generate go run ./cmd/corpus.go
func Fuzz(data []byte) int { func Fuzz(data []byte) int {
if len(data) < PrefixLen { if len(data) < PrefixLen {
@ -353,10 +354,10 @@ func runHandshake(runConfig [confLen]byte, messageConfig uint8, clientConf *tls.
serverConf.NextProtos = []string{alpnWrong, alpn} serverConf.NextProtos = []string{alpnWrong, alpn}
} }
if helper.NthBit(runConfig[3], 6) { if helper.NthBit(runConfig[3], 6) {
serverConf.KeyLogWriter = ioutil.Discard serverConf.KeyLogWriter = io.Discard
} }
if helper.NthBit(runConfig[3], 7) { if helper.NthBit(runConfig[3], 7) {
clientConf.KeyLogWriter = ioutil.Discard clientConf.KeyLogWriter = io.Discard
} }
clientTP := getTransportParameters(runConfig[4] & 0x3) clientTP := getTransportParameters(runConfig[4] & 0x3)
if helper.NthBit(runConfig[4], 3) { if helper.NthBit(runConfig[4], 3) {

View file

@ -14,6 +14,7 @@ const version = protocol.VersionTLS
const PrefixLen = 1 const PrefixLen = 1
// Fuzz fuzzes the QUIC header. // Fuzz fuzzes the QUIC header.
//
//go:generate go run ./cmd/corpus.go //go:generate go run ./cmd/corpus.go
func Fuzz(data []byte) int { func Fuzz(data []byte) int {
if len(data) < PrefixLen { if len(data) < PrefixLen {

View file

@ -8,7 +8,6 @@ import (
"crypto/x509" "crypto/x509"
"crypto/x509/pkix" "crypto/x509/pkix"
"encoding/hex" "encoding/hex"
"io/ioutil"
"math/big" "math/big"
"os" "os"
"path/filepath" "path/filepath"
@ -33,7 +32,7 @@ func WriteCorpusFile(path string, data []byte) error {
} }
} }
hash := sha1.Sum(data) hash := sha1.Sum(data)
return ioutil.WriteFile(filepath.Join(path, hex.EncodeToString(hash[:])), data, 0o644) return os.WriteFile(filepath.Join(path, hex.EncodeToString(hash[:])), data, 0o644)
} }
// WriteCorpusFileWithPrefix writes data to a corpus file in directory path. // WriteCorpusFileWithPrefix writes data to a corpus file in directory path.

View file

@ -2,7 +2,6 @@ package helper
import ( import (
"fmt" "fmt"
"io/ioutil"
"os" "os"
"path/filepath" "path/filepath"
@ -15,7 +14,7 @@ var _ = Describe("exporting", func() {
BeforeEach(func() { BeforeEach(func() {
var err error var err error
dir, err = ioutil.TempDir("", "fuzzing-helper") dir, err = os.MkdirTemp("", "fuzzing-helper")
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
fmt.Fprintf(GinkgoWriter, "Created temporary directory %s", dir) fmt.Fprintf(GinkgoWriter, "Created temporary directory %s", dir)
}) })
@ -32,7 +31,7 @@ var _ = Describe("exporting", func() {
Expect(WriteCorpusFile(dir, []byte("lorem ipsum"))).To(Succeed()) Expect(WriteCorpusFile(dir, []byte("lorem ipsum"))).To(Succeed())
path := filepath.Join(dir, expectedShaSum) path := filepath.Join(dir, expectedShaSum)
Expect(path).To(BeARegularFile()) Expect(path).To(BeARegularFile())
b, err := ioutil.ReadFile(path) b, err := os.ReadFile(path)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(string(b)).To(Equal(data)) Expect(string(b)).To(Equal(data))
}) })
@ -45,7 +44,7 @@ var _ = Describe("exporting", func() {
Expect(WriteCorpusFileWithPrefix(dir, []byte("lorem ipsum"), prefixLen)).To(Succeed()) Expect(WriteCorpusFileWithPrefix(dir, []byte("lorem ipsum"), prefixLen)).To(Succeed())
path := filepath.Join(dir, expectedShaSum) path := filepath.Join(dir, expectedShaSum)
Expect(path).To(BeARegularFile()) Expect(path).To(BeARegularFile())
b, err := ioutil.ReadFile(path) b, err := os.ReadFile(path)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(b[:prefixLen]).To(Equal(make([]byte, prefixLen))) Expect(b[:prefixLen]).To(Equal(make([]byte, prefixLen)))
Expect(string(b[prefixLen:])).To(Equal(data)) Expect(string(b[prefixLen:])).To(Equal(data))

View file

@ -13,6 +13,7 @@ import (
const PrefixLen = 1 const PrefixLen = 1
// Fuzz fuzzes the QUIC transport parameters. // Fuzz fuzzes the QUIC transport parameters.
//
//go:generate go run ./cmd/corpus.go //go:generate go run ./cmd/corpus.go
func Fuzz(data []byte) int { func Fuzz(data []byte) int {
if len(data) <= PrefixLen { if len(data) <= PrefixLen {

View file

@ -8,7 +8,6 @@ import (
"errors" "errors"
"fmt" "fmt"
"io" "io"
"io/ioutil"
"net/http" "net/http"
"time" "time"
@ -990,7 +989,7 @@ var _ = Describe("Client", func() {
rsp, err := client.RoundTripOpt(req, RoundTripOpt{}) rsp, err := client.RoundTripOpt(req, RoundTripOpt{})
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
data, err := ioutil.ReadAll(rsp.Body) data, err := io.ReadAll(rsp.Body)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(rsp.ContentLength).To(BeEquivalentTo(-1)) Expect(rsp.ContentLength).To(BeEquivalentTo(-1))
Expect(string(data)).To(Equal("gzipped response")) Expect(string(data)).To(Equal("gzipped response"))
@ -1013,7 +1012,7 @@ var _ = Describe("Client", func() {
rsp, err := client.RoundTripOpt(req, RoundTripOpt{}) rsp, err := client.RoundTripOpt(req, RoundTripOpt{})
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
data, err := ioutil.ReadAll(rsp.Body) data, err := io.ReadAll(rsp.Body)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(string(data)).To(Equal("not gzipped")) Expect(string(data)).To(Equal("not gzipped"))
Expect(rsp.Header.Get("Content-Encoding")).To(BeEmpty()) Expect(rsp.Header.Get("Content-Encoding")).To(BeEmpty())

View file

@ -5,7 +5,6 @@ import (
"errors" "errors"
"fmt" "fmt"
"io" "io"
"io/ioutil"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/quicvarint" "github.com/lucas-clemente/quic-go/quicvarint"
@ -65,7 +64,7 @@ func parseNextFrame(r io.Reader, unknownFrameHandler unknownFrameHandlerFunc) (f
case 0xd: // MAX_PUSH_ID case 0xd: // MAX_PUSH_ID
} }
// skip over unknown frames // skip over unknown frames
if _, err := io.CopyN(ioutil.Discard, qr, int64(l)); err != nil { if _, err := io.CopyN(io.Discard, qr, int64(l)); err != nil {
return nil, err return nil, err
} }
} }

View file

@ -233,8 +233,8 @@ func authorityAddr(scheme string, authority string) (addr string) {
// validPseudoPath reports whether v is a valid :path pseudo-header // validPseudoPath reports whether v is a valid :path pseudo-header
// value. It must be either: // value. It must be either:
// //
// *) a non-empty string starting with '/' // *) a non-empty string starting with '/'
// *) the string '*', for OPTIONS requests. // *) the string '*', for OPTIONS requests.
// //
// For now this is only used a quick check for deciding when to clean // For now this is only used a quick check for deciding when to clean
// up Opaque URLs before sending requests from the Transport. // up Opaque URLs before sending requests from the Transport.

View file

@ -637,7 +637,8 @@ var ErrNoAltSvcPort = errors.New("no port can be announced, specify it explicitl
// If no listener's Addr().String() returns an address with a valid port, Server.Addr will be used // If no listener's Addr().String() returns an address with a valid port, Server.Addr will be used
// to extract the port, if specified. // to extract the port, if specified.
// For example, a server launched using ListenAndServe on an address with port 443 would set: // For example, a server launched using ListenAndServe on an address with port 443 would set:
// Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000 //
// Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
func (s *Server) SetQuicHeaders(hdr http.Header) error { func (s *Server) SetQuicHeaders(hdr http.Header) error {
s.mutex.RLock() s.mutex.RLock()
defer s.mutex.RUnlock() defer s.mutex.RUnlock()

View file

@ -6,7 +6,6 @@ import (
"context" "context"
"fmt" "fmt"
"io" "io"
"io/ioutil"
mrand "math/rand" mrand "math/rand"
"net" "net"
"time" "time"
@ -90,7 +89,7 @@ var _ = Describe("Handshake tests", func() {
return nil return nil
} }
fmt.Fprintf(GinkgoWriter, "%s qlog tracing connection %x\n", p, connectionID) fmt.Fprintf(GinkgoWriter, "%s qlog tracing connection %x\n", p, connectionID)
return utils.NewBufferedWriteCloser(bufio.NewWriter(&bytes.Buffer{}), ioutil.NopCloser(nil)) return utils.NewBufferedWriteCloser(bufio.NewWriter(&bytes.Buffer{}), io.NopCloser(nil))
})) }))
} }
if enableCustomTracer { if enableCustomTracer {

View file

@ -13,6 +13,7 @@ import (
) )
// on the CIs, the timing is a lot less precise, so scale every duration by this factor // on the CIs, the timing is a lot less precise, so scale every duration by this factor
//
//nolint:unparam //nolint:unparam
func scaleDuration(t time.Duration) time.Duration { func scaleDuration(t time.Duration) time.Duration {
scaleFactor := 1 scaleFactor := 1

View file

@ -3,7 +3,7 @@ package testdata
import ( import (
"crypto/tls" "crypto/tls"
"crypto/x509" "crypto/x509"
"io/ioutil" "os"
"path" "path"
"runtime" "runtime"
) )
@ -38,7 +38,7 @@ func GetTLSConfig() *tls.Config {
// AddRootCA adds the root CA certificate to a cert pool // AddRootCA adds the root CA certificate to a cert pool
func AddRootCA(certPool *x509.CertPool) { func AddRootCA(certPool *x509.CertPool) {
caCertPath := path.Join(certPath, "ca.pem") caCertPath := path.Join(certPath, "ca.pem")
caCertRaw, err := ioutil.ReadFile(caCertPath) caCertRaw, err := os.ReadFile(caCertPath)
if err != nil { if err != nil {
panic(err) panic(err)
} }

View file

@ -2,7 +2,7 @@ package testdata
import ( import (
"crypto/tls" "crypto/tls"
"io/ioutil" "io"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"
@ -24,7 +24,7 @@ var _ = Describe("certificates", func() {
conn, err := tls.Dial("tcp", "localhost:4433", &tls.Config{RootCAs: GetRootCA()}) conn, err := tls.Dial("tcp", "localhost:4433", &tls.Config{RootCAs: GetRootCA()})
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
data, err := ioutil.ReadAll(conn) data, err := io.ReadAll(conn)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(string(data)).To(Equal("foobar")) Expect(string(data)).To(Equal("foobar"))
}) })

View file

@ -4,7 +4,7 @@ import (
"context" "context"
"crypto/tls" "crypto/tls"
"errors" "errors"
"io/ioutil" "io"
"log" "log"
"net" "net"
"net/http" "net/http"
@ -118,7 +118,7 @@ func (c *client) doRequest(req *http.Request) (*http.Response, error) {
ProtoMajor: 0, ProtoMajor: 0,
ProtoMinor: 9, ProtoMinor: 9,
Request: req, Request: req,
Body: ioutil.NopCloser(str), Body: io.NopCloser(str),
} }
return rsp, nil return rsp, nil
} }

View file

@ -3,7 +3,7 @@ package http09
import ( import (
"crypto/tls" "crypto/tls"
"fmt" "fmt"
"io/ioutil" "io"
"net" "net"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
@ -62,7 +62,7 @@ var _ = Describe("HTTP 0.9 integration tests", func() {
) )
rsp, err := rt.RoundTrip(req) rsp, err := rt.RoundTrip(req)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
data, err := ioutil.ReadAll(rsp.Body) data, err := io.ReadAll(rsp.Body)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(data).To(Equal([]byte("Hello World!"))) Expect(data).To(Equal([]byte("Hello World!")))
}) })
@ -83,7 +83,7 @@ var _ = Describe("HTTP 0.9 integration tests", func() {
) )
rsp, err := rt.RoundTrip(req) rsp, err := rt.RoundTrip(req)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
data, err := ioutil.ReadAll(rsp.Body) data, err := io.ReadAll(rsp.Body)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(data).To(Equal([]byte("done"))) Expect(data).To(Equal([]byte("done")))
}) })

View file

@ -4,7 +4,6 @@ import (
"context" "context"
"errors" "errors"
"io" "io"
"io/ioutil"
"log" "log"
"net" "net"
"net/http" "net/http"
@ -102,7 +101,7 @@ func (s *Server) handleConn(conn quic.Connection) {
} }
func (s *Server) handleStream(str quic.Stream) error { func (s *Server) handleStream(str quic.Stream) error {
reqBytes, err := ioutil.ReadAll(str) reqBytes, err := io.ReadAll(str)
if err != nil { if err != nil {
return err return err
} }

View file

@ -1,7 +1,7 @@
package quic package quic
import ( import (
"io/ioutil" "io"
"log" "log"
"sync" "sync"
"testing" "testing"
@ -26,7 +26,7 @@ var _ = BeforeEach(func() {
}) })
var _ = BeforeSuite(func() { var _ = BeforeSuite(func() {
log.SetOutput(ioutil.Discard) log.SetOutput(io.Discard)
}) })
var _ = AfterEach(func() { var _ = AfterEach(func() {