opt-records.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # OPT record successes
  2. [[cmd]]
  3. name = "Running with ‘opt.example’ prints the correct OPT record"
  4. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 A opt.example --edns=show"
  5. stdout = { file = "outputs/opt.example.ansitxt" }
  6. stderr = { empty = true }
  7. status = 0
  8. tags = [ "opt", "madns" ]
  9. [[cmd]]
  10. name = "Running with ‘do-flag.opt.example’ prints the correct OPT record"
  11. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 A do-flag.opt.example --edns=show"
  12. stdout = { file = "outputs/do-flag.opt.example.ansitxt" }
  13. stderr = { empty = true }
  14. status = 0
  15. tags = [ "opt", "madns" ]
  16. [[cmd]]
  17. name = "Running with ‘other-flags.opt.example’ prints the correct OPT record"
  18. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 A other-flags.opt.example --edns=show"
  19. stdout = { file = "outputs/other-flags.opt.example.ansitxt" }
  20. stderr = { empty = true }
  21. status = 0
  22. tags = [ "opt", "madns" ]
  23. [[cmd]]
  24. name = "Running with ‘named.opt.invalid’ prints the correct OPT record"
  25. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 A named.opt.invalid --edns=show"
  26. stdout = { file = "outputs/named.opt.invalid.ansitxt" }
  27. stderr = { empty = true }
  28. status = 0
  29. tags = [ "opt", "madns" ]
  30. # OPT record invalid packets
  31. [[cmd]]
  32. name = "Running with ‘incomplete.opt.invalid’ displays a record length error"
  33. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 A incomplete.opt.invalid"
  34. stdout = { empty = true }
  35. stderr = { string = "Error [protocol]: Malformed packet: insufficient data" }
  36. status = 1
  37. tags = [ "opt", "madns" ]