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

27 lines
773 B
OCaml
Raw Permalink Normal View History

2023-06-05 20:38:10 +02:00
open Dnstoy
2023-06-05 19:57:20 +02:00
let () =
2023-06-05 20:38:10 +02:00
let data : Types.dns_header =
2023-06-05 19:57:20 +02:00
{ id = 0x1314
; flags = 0
; num_questions = 1
; num_answers = 0
; num_authorities = 0
; num_additionals = 0
}
in
2023-06-05 20:46:02 +02:00
(* Header *)
2023-06-05 19:57:20 +02:00
assert (
"\\x13\\x14\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00"
2023-06-05 20:38:10 +02:00
= Utils.get_bytecode (Query.header_to_bytes data));
2023-06-05 20:46:02 +02:00
(* Dns name *)
let dns_name = Query.encode_dns_name "google.com" in
assert ("\\x06google\\x03com\\x00" = Utils.get_bytecode dns_name);
2023-06-05 21:44:44 +02:00
assert (6 = Char.code (Bytes.get dns_name 0));
(* Query *)
let type_A = 1 in
assert (
"\\x15\\xB3\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x07example\\x03com\\x00\\x00\\x01\\x00\\x01"
= Utils.get_bytecode (Query.build ~id:(Some 5555) "example.com" type_A))
2023-06-05 19:57:20 +02:00
;;