uri-records.toml 1.6 KB

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