add the scopelint linter

This commit is contained in:
Marten Seemann 2019-09-13 13:04:10 +07:00
parent 0131dc7fa9
commit c8aed2861f
3 changed files with 5 additions and 4 deletions

View file

@ -17,6 +17,7 @@ linters:
- ineffassign - ineffassign
- misspell - misspell
- prealloc - prealloc
- scopelint
- staticcheck - staticcheck
- structcheck - structcheck
- unconvert - unconvert

View file

@ -161,7 +161,7 @@ var _ = Describe("Handshake drop tests", func() {
app := a app := a
Context(app.name, func() { Context(app.name, func() {
It(fmt.Sprintf("establishes a connection when the first packet is lost in %s direction", d), func() { It(fmt.Sprintf("establishes a connection when the first packet is lost in %s direction", direction), func() {
var incoming, outgoing int32 var incoming, outgoing int32
startListenerAndProxy(func(d quicproxy.Direction, _ []byte) bool { startListenerAndProxy(func(d quicproxy.Direction, _ []byte) bool {
var p int32 var p int32
@ -176,7 +176,7 @@ var _ = Describe("Handshake drop tests", func() {
app.run(version) app.run(version)
}) })
It(fmt.Sprintf("establishes a connection when the second packet is lost in %s direction", d), func() { It(fmt.Sprintf("establishes a connection when the second packet is lost in %s direction", direction), func() {
var incoming, outgoing int32 var incoming, outgoing int32
startListenerAndProxy(func(d quicproxy.Direction, _ []byte) bool { startListenerAndProxy(func(d quicproxy.Direction, _ []byte) bool {
var p int32 var p int32
@ -191,7 +191,7 @@ var _ = Describe("Handshake drop tests", func() {
app.run(version) app.run(version)
}) })
It(fmt.Sprintf("establishes a connection when 1/5 of the packets are lost in %s direction", d), func() { It(fmt.Sprintf("establishes a connection when 1/5 of the packets are lost in %s direction", direction), func() {
startListenerAndProxy(func(d quicproxy.Direction, _ []byte) bool { startListenerAndProxy(func(d quicproxy.Direction, _ []byte) bool {
return d.Is(direction) && stochasticDropper(5) return d.Is(direction) && stochasticDropper(5)
}, version) }, version)

View file

@ -109,7 +109,7 @@ var _ = Describe("MITM test", func() {
payloadLen := mrand.Int31n(100) payloadLen := mrand.Int31n(100)
replyHdr.Length = protocol.ByteCount(mrand.Int31n(payloadLen + 1)) replyHdr.Length = protocol.ByteCount(mrand.Int31n(payloadLen + 1))
buf := &bytes.Buffer{} buf := &bytes.Buffer{}
Expect(replyHdr.Write(buf, v)).To(Succeed()) Expect(replyHdr.Write(buf, version)).To(Succeed())
b := make([]byte, payloadLen) b := make([]byte, payloadLen)
mrand.Read(b) mrand.Read(b)
buf.Write(b) buf.Write(b)