def test_altsvc_frame_without_origin_serializes_properly(self): f = AltSvcFrame(0) f.host = b'google.com' f.port = 80 f.protocol_id = b'h2' f.max_age = 29 s = f.serialize() assert s == self.payload_without_origin
def test_altsvc_frame_with_origin_serializes_properly(self): f = AltSvcFrame(0) f.host = b'google.com' f.port = 80 f.protocol_id = b'h2' f.max_age = 29 f.origin = Origin(scheme=b'https', host=b'yahoo.com', port=8080) s = f.serialize() assert s == self.payload_with_origin