uncomment broken tests

- uncomment broken tests
- skipped for now, a patch may require extensive work to come
This commit is contained in:
Gaukas Wang 2022-10-17 15:08:26 -06:00
parent da9cbd847e
commit 67bf0c7223
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -53,24 +53,23 @@ func TestUTLSMarshalNoOp(t *testing.T) {
}
}
// TODO: the following tests needs to be fixed as crypto/tls has changed the behavior due to upgrade
// func TestUTLSHandshakeClientParrotGolang(t *testing.T) {
// hello := &helloID{HelloGolang}
func TestUTLSHandshakeClientParrotGolang(t *testing.T) {
hello := &helloID{HelloGolang}
// // TODO: All subtests here are failing due to mismatch
t.Skip("Skipping golang parroting tests until adjusting for new fingerprints")
// testUTLSHandshakeClientECDHE_ECDSA_WITH_CHACHA20_POLY1305(t, hello)
// testUTLSHandshakeClientECDHE_RSA_WITH_CHACHA20_POLY1305(t, hello)
testUTLSHandshakeClientECDHE_ECDSA_WITH_CHACHA20_POLY1305(t, hello)
testUTLSHandshakeClientECDHE_RSA_WITH_CHACHA20_POLY1305(t, hello)
// testUTLSHandshakeClientECDHE_RSA_AES128_GCM_SHA256(t, hello)
// testUTLSHandshakeClientECDHE_ECDSA_AES128_GCM_SHA256(t, hello)
// testUTLSHandshakeClientECDHE_RSA_AES256_CBC_SHA(t, hello)
// testUTLSHandshakeClientECDHE_ECDSA_AES256_CBC_SHA(t, hello)
// testUTLSHandshakeClientECDHE_RSA_AES128_CBC_SHA(t, hello)
// testUTLSHandshakeClientECDHE_ECDSA_AES128_CBC_SHA(t, hello)
testUTLSHandshakeClientECDHE_RSA_AES128_GCM_SHA256(t, hello)
testUTLSHandshakeClientECDHE_ECDSA_AES128_GCM_SHA256(t, hello)
testUTLSHandshakeClientECDHE_RSA_AES256_CBC_SHA(t, hello)
testUTLSHandshakeClientECDHE_ECDSA_AES256_CBC_SHA(t, hello)
testUTLSHandshakeClientECDHE_RSA_AES128_CBC_SHA(t, hello)
testUTLSHandshakeClientECDHE_ECDSA_AES128_CBC_SHA(t, hello)
// testUTLSHandshakeClientRSA_AES128_GCM_SHA256(t, hello)
// }
testUTLSHandshakeClientRSA_AES128_GCM_SHA256(t, hello)
}
func TestUTLSHandshakeClientParrotChrome_70(t *testing.T) {
hello := &helloID{HelloChrome_70}