remove old test file

This commit is contained in:
Thomas Kriechbaumer 2017-05-26 17:04:04 +02:00
parent 9f58b19032
commit 47b6d1823e

View File

@ -1,43 +0,0 @@
import io
from kaitaistruct import KaitaiStream
from mitmproxy.contrib.kaitaistruct import tls_client_hello
def test_parse_chrome():
"""
Test if we properly parse a ClientHello sent by Chrome 54.
"""
data = bytes.fromhex(
"03033b70638d2523e1cba15f8364868295305e9c52aceabda4b5147210abc783e6e1000022c02bc02fc02cc030"
"cca9cca8cc14cc13c009c013c00ac014009c009d002f0035000a0100006cff0100010000000010000e00000b65"
"78616d706c652e636f6d0017000000230000000d00120010060106030501050304010403020102030005000501"
"00000000001200000010000e000c02683208687474702f312e3175500000000b00020100000a00080006001d00"
"170018"
)
c = tls_client_hello.TlsClientHello(KaitaiStream(io.BytesIO(data)))
assert c.version.major == 3
assert c.version.minor == 3
alpn = [a for a in c.extensions.extensions if a.type == 16]
assert len(alpn) == 1
assert alpn[0].body.alpn_protocols[0].name == b"h2"
assert alpn[0].body.alpn_protocols[1].name == b"http/1.1"
sni = [a for a in c.extensions.extensions if a.type == 0]
assert len(sni) == 1
assert sni[0].body.server_names[0].name_type == 0
assert sni[0].body.server_names[0].host_name == b"example.com"
def test_parse_no_extensions():
data = bytes.fromhex(
"03015658a756ab2c2bff55f636814deac086b7ca56b65058c7893ffc6074f5245f70205658a75475103a152637"
"78e1bb6d22e8bbd5b6b0a3a59760ad354e91ba20d353001a0035002f000a000500040009000300060008006000"
"61006200640100"
)
c = tls_client_hello.TlsClientHello(KaitaiStream(io.BytesIO(data)))
assert c.version.major == 3
assert c.version.minor == 1
assert c.extensions == []