mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: add support for -expect-version to bogo_shim_test
The existing implementation of bogo_shim_test does not support tests that use the expect-version flag. This change adds support for this flag. Updates #51434. Change-Id: Ie23fdb06d15ec0593ca58f28144e83f93ef7f200 Reviewed-on: https://go-review.googlesource.com/c/go/+/592635 Auto-Submit: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
parent
a2c0ebe2c2
commit
f1ed02fbf2
1 changed files with 6 additions and 3 deletions
|
@ -33,8 +33,9 @@ var (
|
|||
|
||||
trustCert = flag.String("trust-cert", "", "")
|
||||
|
||||
minVersion = flag.Int("min-version", VersionSSL30, "")
|
||||
maxVersion = flag.Int("max-version", VersionTLS13, "")
|
||||
minVersion = flag.Int("min-version", VersionSSL30, "")
|
||||
maxVersion = flag.Int("max-version", VersionTLS13, "")
|
||||
expectVersion = flag.Int("expect-version", 0, "")
|
||||
|
||||
noTLS13 = flag.Bool("no-tls13", false, "")
|
||||
|
||||
|
@ -252,7 +253,9 @@ func bogoShim() {
|
|||
if *expectALPN != "" && cs.NegotiatedProtocol != *expectALPN {
|
||||
log.Fatalf("unexpected protocol negotiated: want %q, got %q", *expectALPN, cs.NegotiatedProtocol)
|
||||
}
|
||||
|
||||
if *expectVersion != 0 && cs.Version != uint16(*expectVersion) {
|
||||
log.Fatalf("expected ssl version %q, got %q", uint16(*expectVersion), cs.Version)
|
||||
}
|
||||
if *expectECHAccepted && !cs.ECHAccepted {
|
||||
log.Fatal("expected ECH to be accepted, but connection state shows it was not")
|
||||
} else if i == 0 && *onInitialExpectECHAccepted && !cs.ECHAccepted {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue