mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
implement a more intuitive address validation API
This commit is contained in:
parent
556a6e2f99
commit
f2fa98c0dd
14 changed files with 352 additions and 437 deletions
|
@ -35,16 +35,13 @@ var _ = Describe("Token Generator", func() {
|
|||
})
|
||||
|
||||
It("accepts a valid token", func() {
|
||||
ip := net.IPv4(192, 168, 0, 1)
|
||||
tokenEnc, err := tokenGen.NewRetryToken(
|
||||
&net.UDPAddr{IP: ip, Port: 1337},
|
||||
nil,
|
||||
nil,
|
||||
)
|
||||
addr := &net.UDPAddr{IP: net.IPv4(192, 168, 0, 1), Port: 1337}
|
||||
tokenEnc, err := tokenGen.NewRetryToken(addr, nil, nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
token, err := tokenGen.DecodeToken(tokenEnc)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(token.RemoteAddr).To(Equal("192.168.0.1"))
|
||||
Expect(token.ValidateRemoteAddr(addr)).To(BeTrue())
|
||||
Expect(token.ValidateRemoteAddr(&net.UDPAddr{IP: net.IPv4(192, 168, 0, 2), Port: 1337})).To(BeFalse())
|
||||
Expect(token.SentTime).To(BeTemporally("~", time.Now(), 100*time.Millisecond))
|
||||
Expect(token.OriginalDestConnectionID.Len()).To(BeZero())
|
||||
Expect(token.RetrySrcConnectionID.Len()).To(BeZero())
|
||||
|
@ -110,7 +107,7 @@ var _ = Describe("Token Generator", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
token, err := tokenGen.DecodeToken(tokenEnc)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(token.RemoteAddr).To(Equal(ip.String()))
|
||||
Expect(token.ValidateRemoteAddr(raddr)).To(BeTrue())
|
||||
Expect(token.SentTime).To(BeTemporally("~", time.Now(), 100*time.Millisecond))
|
||||
}
|
||||
})
|
||||
|
@ -121,7 +118,8 @@ var _ = Describe("Token Generator", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
token, err := tokenGen.DecodeToken(tokenEnc)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(token.RemoteAddr).To(Equal("192.168.13.37:1337"))
|
||||
Expect(token.ValidateRemoteAddr(raddr)).To(BeTrue())
|
||||
Expect(token.ValidateRemoteAddr(&net.TCPAddr{IP: net.IPv4(192, 168, 13, 37), Port: 1338})).To(BeFalse())
|
||||
Expect(token.SentTime).To(BeTemporally("~", time.Now(), 100*time.Millisecond))
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue