mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
uncomment broken tests
- uncomment broken tests - skipped for now, a patch may require extensive work to come
This commit is contained in:
parent
da9cbd847e
commit
67bf0c7223
1 changed files with 13 additions and 14 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue