mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
change tests such that they are covered by coverage reports
This commit is contained in:
parent
c4c7b78288
commit
3963e7eb03
12 changed files with 57 additions and 72 deletions
|
@ -1,15 +1,14 @@
|
||||||
package congestion_test
|
package congestion
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/congestion"
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("Bandwidth", func() {
|
var _ = Describe("Bandwidth", func() {
|
||||||
It("converts from time delta", func() {
|
It("converts from time delta", func() {
|
||||||
Expect(congestion.BandwidthFromDelta(1, time.Millisecond)).To(Equal(1000 * congestion.BytesPerSecond))
|
Expect(BandwidthFromDelta(1, time.Millisecond)).To(Equal(1000 * BytesPerSecond))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
package congestion_test
|
package congestion
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/congestion"
|
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
@ -11,7 +10,6 @@ import (
|
||||||
|
|
||||||
const initialCongestionWindowPackets protocol.PacketNumber = 10
|
const initialCongestionWindowPackets protocol.PacketNumber = 10
|
||||||
const defaultWindowTCP = protocol.ByteCount(initialCongestionWindowPackets) * protocol.DefaultTCPMSS
|
const defaultWindowTCP = protocol.ByteCount(initialCongestionWindowPackets) * protocol.DefaultTCPMSS
|
||||||
const renoBeta float32 = 0.7 // Reno backoff factor.
|
|
||||||
|
|
||||||
type mockClock time.Time
|
type mockClock time.Time
|
||||||
|
|
||||||
|
@ -25,12 +23,12 @@ func (c *mockClock) Advance(d time.Duration) {
|
||||||
|
|
||||||
var _ = Describe("Cubic Sender", func() {
|
var _ = Describe("Cubic Sender", func() {
|
||||||
var (
|
var (
|
||||||
sender congestion.SendAlgorithmWithDebugInfo
|
sender SendAlgorithmWithDebugInfo
|
||||||
clock mockClock
|
clock mockClock
|
||||||
bytesInFlight protocol.ByteCount
|
bytesInFlight protocol.ByteCount
|
||||||
packetNumber protocol.PacketNumber
|
packetNumber protocol.PacketNumber
|
||||||
ackedPacketNumber protocol.PacketNumber
|
ackedPacketNumber protocol.PacketNumber
|
||||||
rttStats *congestion.RTTStats
|
rttStats *RTTStats
|
||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
|
@ -38,8 +36,8 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
packetNumber = 1
|
packetNumber = 1
|
||||||
ackedPacketNumber = 0
|
ackedPacketNumber = 0
|
||||||
clock = mockClock{}
|
clock = mockClock{}
|
||||||
rttStats = congestion.NewRTTStats()
|
rttStats = NewRTTStats()
|
||||||
sender = congestion.NewCubicSender(&clock, rttStats, true /*reno*/, initialCongestionWindowPackets, protocol.MaxCongestionWindow)
|
sender = NewCubicSender(&clock, rttStats, true /*reno*/, initialCongestionWindowPackets, protocol.MaxCongestionWindow)
|
||||||
})
|
})
|
||||||
|
|
||||||
SendAvailableSendWindowLen := func(packetLength protocol.ByteCount) int {
|
SendAvailableSendWindowLen := func(packetLength protocol.ByteCount) int {
|
||||||
|
@ -59,11 +57,11 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
// Normal is that TCP acks every other segment.
|
// Normal is that TCP acks every other segment.
|
||||||
AckNPacketsLen := func(n int, packetLength protocol.ByteCount) {
|
AckNPacketsLen := func(n int, packetLength protocol.ByteCount) {
|
||||||
rttStats.UpdateRTT(60*time.Millisecond, 0, clock.Now())
|
rttStats.UpdateRTT(60*time.Millisecond, 0, clock.Now())
|
||||||
var ackedPackets congestion.PacketVector
|
var ackedPackets PacketVector
|
||||||
var lostPackets congestion.PacketVector
|
var lostPackets PacketVector
|
||||||
for i := 0; i < n; i++ {
|
for i := 0; i < n; i++ {
|
||||||
ackedPacketNumber++
|
ackedPacketNumber++
|
||||||
ackedPackets = append(ackedPackets, congestion.PacketInfo{Number: ackedPacketNumber, Length: packetLength})
|
ackedPackets = append(ackedPackets, PacketInfo{Number: ackedPacketNumber, Length: packetLength})
|
||||||
}
|
}
|
||||||
sender.OnCongestionEvent(true, bytesInFlight, ackedPackets, lostPackets)
|
sender.OnCongestionEvent(true, bytesInFlight, ackedPackets, lostPackets)
|
||||||
bytesInFlight -= protocol.ByteCount(n) * packetLength
|
bytesInFlight -= protocol.ByteCount(n) * packetLength
|
||||||
|
@ -71,11 +69,11 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
}
|
}
|
||||||
|
|
||||||
LoseNPacketsLen := func(n int, packetLength protocol.ByteCount) {
|
LoseNPacketsLen := func(n int, packetLength protocol.ByteCount) {
|
||||||
var ackedPackets congestion.PacketVector
|
var ackedPackets PacketVector
|
||||||
var lostPackets congestion.PacketVector
|
var lostPackets PacketVector
|
||||||
for i := 0; i < n; i++ {
|
for i := 0; i < n; i++ {
|
||||||
ackedPacketNumber++
|
ackedPacketNumber++
|
||||||
lostPackets = append(lostPackets, congestion.PacketInfo{Number: ackedPacketNumber, Length: packetLength})
|
lostPackets = append(lostPackets, PacketInfo{Number: ackedPacketNumber, Length: packetLength})
|
||||||
}
|
}
|
||||||
sender.OnCongestionEvent(false, bytesInFlight, ackedPackets, lostPackets)
|
sender.OnCongestionEvent(false, bytesInFlight, ackedPackets, lostPackets)
|
||||||
bytesInFlight -= protocol.ByteCount(n) * packetLength
|
bytesInFlight -= protocol.ByteCount(n) * packetLength
|
||||||
|
@ -83,8 +81,8 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
|
|
||||||
// Does not increment acked_packet_number_.
|
// Does not increment acked_packet_number_.
|
||||||
LosePacket := func(number protocol.PacketNumber) {
|
LosePacket := func(number protocol.PacketNumber) {
|
||||||
var ackedPackets congestion.PacketVector
|
var ackedPackets PacketVector
|
||||||
var lostPackets congestion.PacketVector = congestion.PacketVector([]congestion.PacketInfo{
|
var lostPackets PacketVector = PacketVector([]PacketInfo{
|
||||||
{Number: number, Length: protocol.DefaultTCPMSS},
|
{Number: number, Length: protocol.DefaultTCPMSS},
|
||||||
})
|
})
|
||||||
sender.OnCongestionEvent(false, bytesInFlight, ackedPackets, lostPackets)
|
sender.OnCongestionEvent(false, bytesInFlight, ackedPackets, lostPackets)
|
||||||
|
@ -143,7 +141,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
}
|
}
|
||||||
cwnd := sender.GetCongestionWindow()
|
cwnd := sender.GetCongestionWindow()
|
||||||
Expect(cwnd).To(Equal(defaultWindowTCP + protocol.DefaultTCPMSS*2*kNumberOfAcks))
|
Expect(cwnd).To(Equal(defaultWindowTCP + protocol.DefaultTCPMSS*2*kNumberOfAcks))
|
||||||
Expect(sender.BandwidthEstimate()).To(Equal(congestion.BandwidthFromDelta(cwnd, rttStats.SmoothedRTT())))
|
Expect(sender.BandwidthEstimate()).To(Equal(BandwidthFromDelta(cwnd, rttStats.SmoothedRTT())))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("slow start packet loss", func() {
|
It("slow start packet loss", func() {
|
||||||
|
@ -422,7 +420,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
|
|
||||||
Expect(rttStats.SmoothedRTT()).To(BeNumerically("~", kRttMs, time.Millisecond))
|
Expect(rttStats.SmoothedRTT()).To(BeNumerically("~", kRttMs, time.Millisecond))
|
||||||
Expect(sender.RetransmissionDelay()).To(BeNumerically("~", expected_delay, time.Millisecond))
|
Expect(sender.RetransmissionDelay()).To(BeNumerically("~", expected_delay, time.Millisecond))
|
||||||
Expect(sender.BandwidthEstimate() / congestion.BytesPerSecond).To(Equal(congestion.Bandwidth(
|
Expect(sender.BandwidthEstimate() / BytesPerSecond).To(Equal(Bandwidth(
|
||||||
sender.GetCongestionWindow() * protocol.ByteCount(time.Second) / protocol.ByteCount(rttStats.SmoothedRTT()),
|
sender.GetCongestionWindow() * protocol.ByteCount(time.Second) / protocol.ByteCount(rttStats.SmoothedRTT()),
|
||||||
)))
|
)))
|
||||||
})
|
})
|
||||||
|
@ -430,7 +428,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
It("slow start max send window", func() {
|
It("slow start max send window", func() {
|
||||||
const kMaxCongestionWindowTCP = 50
|
const kMaxCongestionWindowTCP = 50
|
||||||
const kNumberOfAcks = 100
|
const kNumberOfAcks = 100
|
||||||
sender = congestion.NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindowTCP)
|
sender = NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindowTCP)
|
||||||
|
|
||||||
for i := 0; i < kNumberOfAcks; i++ {
|
for i := 0; i < kNumberOfAcks; i++ {
|
||||||
// Send our full send window.
|
// Send our full send window.
|
||||||
|
@ -444,7 +442,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
It("tcp reno max congestion window", func() {
|
It("tcp reno max congestion window", func() {
|
||||||
const kMaxCongestionWindowTCP = 50
|
const kMaxCongestionWindowTCP = 50
|
||||||
const kNumberOfAcks = 1000
|
const kNumberOfAcks = 1000
|
||||||
sender = congestion.NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindowTCP)
|
sender = NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindowTCP)
|
||||||
|
|
||||||
SendAvailableSendWindow()
|
SendAvailableSendWindow()
|
||||||
AckNPackets(2)
|
AckNPackets(2)
|
||||||
|
@ -466,7 +464,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
// Set to 10000 to compensate for small cubic alpha.
|
// Set to 10000 to compensate for small cubic alpha.
|
||||||
const kNumberOfAcks = 10000
|
const kNumberOfAcks = 10000
|
||||||
|
|
||||||
sender = congestion.NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindowTCP)
|
sender = NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindowTCP)
|
||||||
|
|
||||||
SendAvailableSendWindow()
|
SendAvailableSendWindow()
|
||||||
AckNPackets(2)
|
AckNPackets(2)
|
||||||
|
@ -486,7 +484,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
It("tcp cubic reset epoch on quiescence", func() {
|
It("tcp cubic reset epoch on quiescence", func() {
|
||||||
const kMaxCongestionWindow = 50
|
const kMaxCongestionWindow = 50
|
||||||
const kMaxCongestionWindowBytes = kMaxCongestionWindow * protocol.DefaultTCPMSS
|
const kMaxCongestionWindowBytes = kMaxCongestionWindow * protocol.DefaultTCPMSS
|
||||||
sender = congestion.NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindow)
|
sender = NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindow)
|
||||||
|
|
||||||
num_sent := SendAvailableSendWindow()
|
num_sent := SendAvailableSendWindow()
|
||||||
|
|
||||||
|
@ -526,7 +524,7 @@ var _ = Describe("Cubic Sender", func() {
|
||||||
It("tcp cubic shifted epoch on quiescence", func() {
|
It("tcp cubic shifted epoch on quiescence", func() {
|
||||||
const kMaxCongestionWindow = 50
|
const kMaxCongestionWindow = 50
|
||||||
const kMaxCongestionWindowBytes = kMaxCongestionWindow * protocol.DefaultTCPMSS
|
const kMaxCongestionWindowBytes = kMaxCongestionWindow * protocol.DefaultTCPMSS
|
||||||
sender = congestion.NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindow)
|
sender = NewCubicSender(&clock, rttStats, false, initialCongestionWindowPackets, kMaxCongestionWindow)
|
||||||
|
|
||||||
num_sent := SendAvailableSendWindow()
|
num_sent := SendAvailableSendWindow()
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
package congestion_test
|
package congestion
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/congestion"
|
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
@ -17,12 +16,12 @@ const kNConnectionAlpha float32 = 3 * float32(kNumConnections) * float32(kNumCon
|
||||||
var _ = Describe("Cubic", func() {
|
var _ = Describe("Cubic", func() {
|
||||||
var (
|
var (
|
||||||
clock mockClock
|
clock mockClock
|
||||||
cubic *congestion.Cubic
|
cubic *Cubic
|
||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
clock = mockClock{}
|
clock = mockClock{}
|
||||||
cubic = congestion.NewCubic(&clock)
|
cubic = NewCubic(&clock)
|
||||||
})
|
})
|
||||||
|
|
||||||
It("works above origin", func() {
|
It("works above origin", func() {
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
package congestion_test
|
package congestion
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/congestion"
|
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
@ -11,11 +10,11 @@ import (
|
||||||
|
|
||||||
var _ = Describe("Hybrid slow start", func() {
|
var _ = Describe("Hybrid slow start", func() {
|
||||||
var (
|
var (
|
||||||
slowStart congestion.HybridSlowStart
|
slowStart HybridSlowStart
|
||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
slowStart = congestion.HybridSlowStart{}
|
slowStart = HybridSlowStart{}
|
||||||
})
|
})
|
||||||
|
|
||||||
It("works in a simple case", func() {
|
It("works in a simple case", func() {
|
||||||
|
|
|
@ -1,21 +1,20 @@
|
||||||
package congestion_test
|
package congestion
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/congestion"
|
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
"github.com/lucas-clemente/quic-go/protocol"
|
||||||
"github.com/lucas-clemente/quic-go/utils"
|
"github.com/lucas-clemente/quic-go/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("PRR sender", func() {
|
var _ = Describe("PRR sender", func() {
|
||||||
var (
|
var (
|
||||||
prr congestion.PrrSender
|
prr PrrSender
|
||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
prr = congestion.PrrSender{}
|
prr = PrrSender{}
|
||||||
})
|
})
|
||||||
|
|
||||||
It("single loss results in send on every other ack", func() {
|
It("single loss results in send on every other ack", func() {
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
package congestion_test
|
package congestion
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/congestion"
|
|
||||||
"github.com/lucas-clemente/quic-go/utils"
|
"github.com/lucas-clemente/quic-go/utils"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
@ -11,11 +10,11 @@ import (
|
||||||
|
|
||||||
var _ = Describe("RTT stats", func() {
|
var _ = Describe("RTT stats", func() {
|
||||||
var (
|
var (
|
||||||
rttStats *congestion.RTTStats
|
rttStats *RTTStats
|
||||||
)
|
)
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
rttStats = congestion.NewRTTStats()
|
rttStats = NewRTTStats()
|
||||||
})
|
})
|
||||||
|
|
||||||
It("DefaultsBeforeUpdate", func() {
|
It("DefaultsBeforeUpdate", func() {
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
package protocol_test
|
package protocol
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
|
|
||||||
. "github.com/lucas-clemente/quic-go/protocol"
|
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package protocol_test
|
package protocol
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
|
|
|
@ -1,33 +1,31 @@
|
||||||
package protocol_test
|
package protocol
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/lucas-clemente/quic-go/protocol"
|
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("Version", func() {
|
var _ = Describe("Version", func() {
|
||||||
It("converts tags to numbers", func() {
|
It("converts tags to numbers", func() {
|
||||||
Expect(protocol.VersionTagToNumber('Q' + '1'<<8 + '2'<<16 + '3'<<24)).To(Equal(protocol.VersionNumber(123)))
|
Expect(VersionTagToNumber('Q' + '1'<<8 + '2'<<16 + '3'<<24)).To(Equal(VersionNumber(123)))
|
||||||
Expect(protocol.VersionTagToNumber('Q' + '0'<<8 + '3'<<16 + '0'<<24)).To(Equal(protocol.Version30))
|
Expect(VersionTagToNumber('Q' + '0'<<8 + '3'<<16 + '0'<<24)).To(Equal(Version30))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("converts number to tag", func() {
|
It("converts number to tag", func() {
|
||||||
Expect(protocol.VersionNumberToTag(protocol.VersionNumber(123))).To(Equal(uint32('Q' + '1'<<8 + '2'<<16 + '3'<<24)))
|
Expect(VersionNumberToTag(VersionNumber(123))).To(Equal(uint32('Q' + '1'<<8 + '2'<<16 + '3'<<24)))
|
||||||
Expect(protocol.VersionNumberToTag(protocol.Version30)).To(Equal(uint32('Q' + '0'<<8 + '3'<<16 + '0'<<24)))
|
Expect(VersionNumberToTag(Version30)).To(Equal(uint32('Q' + '0'<<8 + '3'<<16 + '0'<<24)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("has proper tag list", func() {
|
It("has proper tag list", func() {
|
||||||
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q030Q031Q032Q033")))
|
Expect(SupportedVersionsAsTags).To(Equal([]byte("Q030Q031Q032Q033")))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("has proper version list", func() {
|
It("has proper version list", func() {
|
||||||
Expect(protocol.SupportedVersionsAsString).To(Equal("33,32,31,30"))
|
Expect(SupportedVersionsAsString).To(Equal("33,32,31,30"))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("recognizes supported versions", func() {
|
It("recognizes supported versions", func() {
|
||||||
Expect(protocol.IsSupportedVersion(0)).To(BeFalse())
|
Expect(IsSupportedVersion(0)).To(BeFalse())
|
||||||
Expect(protocol.IsSupportedVersion(protocol.SupportedVersions[0])).To(BeTrue())
|
Expect(IsSupportedVersion(SupportedVersions[0])).To(BeTrue())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package qerr_test
|
package qerr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"go/ast"
|
"go/ast"
|
||||||
|
@ -7,8 +7,6 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/qerr"
|
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
@ -28,8 +26,8 @@ var _ = Describe("error codes", func() {
|
||||||
valString := c.(*ast.ValueSpec).Values[0].(*ast.BasicLit).Value
|
valString := c.(*ast.ValueSpec).Values[0].(*ast.BasicLit).Value
|
||||||
val, err := strconv.Atoi(valString)
|
val, err := strconv.Atoi(valString)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
Expect(err).NotTo(HaveOccurred())
|
||||||
Expect(qerr.ErrorCode(val).String()).To(Equal(name))
|
Expect(ErrorCode(val).String()).To(Equal(name))
|
||||||
}
|
}
|
||||||
Expect(qerr.ErrorCode(0).String()).To(Equal("ErrorCode(0)"))
|
Expect(ErrorCode(0).String()).To(Equal("ErrorCode(0)"))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package qerr_test
|
package qerr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
package qerr_test
|
package qerr
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/qerr"
|
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
)
|
)
|
||||||
|
@ -12,31 +10,31 @@ import (
|
||||||
var _ = Describe("Quic error", func() {
|
var _ = Describe("Quic error", func() {
|
||||||
Context("QuicError", func() {
|
Context("QuicError", func() {
|
||||||
It("has a string representation", func() {
|
It("has a string representation", func() {
|
||||||
err := qerr.Error(qerr.DecryptionFailure, "foobar")
|
err := Error(DecryptionFailure, "foobar")
|
||||||
Expect(err.Error()).To(Equal("DecryptionFailure: foobar"))
|
Expect(err.Error()).To(Equal("DecryptionFailure: foobar"))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("ErrorCode", func() {
|
Context("ErrorCode", func() {
|
||||||
It("works as error", func() {
|
It("works as error", func() {
|
||||||
var err error = qerr.DecryptionFailure
|
var err error = DecryptionFailure
|
||||||
Expect(err).To(MatchError("DecryptionFailure"))
|
Expect(err).To(MatchError("DecryptionFailure"))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("ToQuicError", func() {
|
Context("ToQuicError", func() {
|
||||||
It("leaves QuicError unchanged", func() {
|
It("leaves QuicError unchanged", func() {
|
||||||
err := qerr.Error(qerr.DecryptionFailure, "foo")
|
err := Error(DecryptionFailure, "foo")
|
||||||
Expect(qerr.ToQuicError(err)).To(Equal(err))
|
Expect(ToQuicError(err)).To(Equal(err))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("wraps ErrorCode properly", func() {
|
It("wraps ErrorCode properly", func() {
|
||||||
var err error = qerr.DecryptionFailure
|
var err error = DecryptionFailure
|
||||||
Expect(qerr.ToQuicError(err)).To(Equal(qerr.Error(qerr.DecryptionFailure, "")))
|
Expect(ToQuicError(err)).To(Equal(Error(DecryptionFailure, "")))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("changes default errors to InternalError", func() {
|
It("changes default errors to InternalError", func() {
|
||||||
Expect(qerr.ToQuicError(io.EOF)).To(Equal(qerr.Error(qerr.InternalError, "EOF")))
|
Expect(ToQuicError(io.EOF)).To(Equal(Error(InternalError, "EOF")))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue