loc-records.toml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # LOC record successes
  2. [[cmd]]
  3. name = "Running with ‘loc.example’ prints the correct LOC record"
  4. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC loc.example"
  5. stdout = { file = "outputs/loc.example.ansitxt" }
  6. stderr = { empty = true }
  7. status = 0
  8. tags = [ "loc", "madns" ]
  9. # LOC record out-of-range positions
  10. [[cmd]]
  11. name = "Running with ‘far-negative-longitude.loc.invalid’ displays a record with an out-of-range field"
  12. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC far-negative-longitude.loc.invalid"
  13. stdout = { file = "outputs/far-negative-longitude.loc.invalid.ansitxt" }
  14. stderr = { empty = true }
  15. status = 0
  16. tags = [ "loc", "madns" ]
  17. [[cmd]]
  18. name = "Running with ‘far-positive-longitude.loc.invalid’ displays a record length error"
  19. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC far-positive-longitude.loc.invalid"
  20. stdout = { file = "outputs/far-positive-longitude.loc.invalid.ansitxt" }
  21. stderr = { empty = true }
  22. status = 0
  23. tags = [ "loc", "madns" ]
  24. [[cmd]]
  25. name = "Running with ‘far-negative-latitude.loc.invalid’ displays a record length error"
  26. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC far-negative-latitude.loc.invalid"
  27. stdout = { file = "outputs/far-negative-latitude.loc.invalid.ansitxt" }
  28. stderr = { empty = true }
  29. status = 0
  30. tags = [ "loc", "madns" ]
  31. [[cmd]]
  32. name = "Running with ‘far-positive-latitude.loc.invalid’ displays a record length error"
  33. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC far-positive-latitude.loc.invalid"
  34. stdout = { file = "outputs/far-positive-latitude.loc.invalid.ansitxt" }
  35. stderr = { empty = true }
  36. status = 0
  37. tags = [ "loc", "madns" ]
  38. # LOC record version 1
  39. [[cmd]]
  40. name = "Running with ‘v1-conform.loc.invalid’ displays a version error"
  41. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC v1-conform.loc.invalid"
  42. stdout = { empty = true }
  43. stderr = { string = "Error [protocol]: Malformed packet: record specifies version 1, expected up to 0" }
  44. status = 1
  45. tags = [ "loc", "madns" ]
  46. [[cmd]]
  47. name = "Running with ‘v1-nonconform.loc.invalid’ displays a version error"
  48. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC v1-nonconform.loc.invalid"
  49. stdout = { empty = true }
  50. stderr = { string = "Error [protocol]: Malformed packet: record specifies version 1, expected up to 0" }
  51. status = 1
  52. tags = [ "loc", "madns" ]
  53. [[cmd]]
  54. name = "Running with ‘v1-empty.loc.invalid’ displays a version error"
  55. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC v1-empty.loc.invalid"
  56. stdout = { empty = true }
  57. stderr = { string = "Error [protocol]: Malformed packet: record specifies version 1, expected up to 0" }
  58. status = 1
  59. tags = [ "loc", "madns" ]
  60. # LOC record invalid packets
  61. [[cmd]]
  62. name = "Running with ‘empty.loc.invalid’ displays a record length error"
  63. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC empty.loc.invalid"
  64. stdout = { empty = true }
  65. stderr = { string = "Error [protocol]: Malformed packet: insufficient data" }
  66. status = 1
  67. tags = [ "loc", "madns" ]
  68. [[cmd]]
  69. name = "Running with ‘incomplete.loc.invalid’ displays a record length error"
  70. shell = "dog --colour=always --tcp @madns.binarystar.systems:5301 LOC incomplete.loc.invalid"
  71. stdout = { empty = true }
  72. stderr = { string = "Error [protocol]: Malformed packet: insufficient data" }
  73. status = 1
  74. tags = [ "loc", "madns" ]