This repository has been archived on 2024-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
dns-toy/test/test.ml
2023-06-05 20:27:32 +02:00

17 lines
393 B
OCaml

open Dnstoy.Utils
let () =
let data =
{ id = 0x1314
; flags = 0
; num_questions = 1
; num_answers = 0
; num_authorities = 0
; num_additionals = 0
}
in
assert (
"\\x13\\x14\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00"
= get_bytecode (header_to_bytes data));
assert ("\\x06google\\x03com\\x00" = get_bytecode (encode_dns_name "google.com"))
;;