FILEFORMAT 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. The file format of the test suite is a very simple and extendable format. All
  2. data for a single test case resides in a single ASCII file. Labels mark the
  3. beginning and the end of all sections. Each label must be written in its own
  4. line and is resembling XML/HTML.
  5. Each file is split up in three main sections: reply, client and verify. The
  6. reply section is used for the server to know what to send as a reply for the
  7. requests curl sends, the client section defines how the client should behave
  8. while the verify section defines how to verify that the data stored after a
  9. command has been run ended up correctly.
  10. Each main section has a number of available subsections that can be
  11. specified, that will be checked/used if specified. This document includes all
  12. the subsections currently supported.
  13. <reply>
  14. <data [nocheck=1]>
  15. data to sent to the client on its request and later verified that it arrived
  16. safely. Set the nocheck=1 to prevent the test script to verify the arrival
  17. of this data.
  18. If the data contains 'swsclose' *anywhere* within the start and end tag, and
  19. this is a HTTP test, then the connection will be closed by the server after
  20. this response is sent. If not, the connection will be kept persistant.
  21. </data>
  22. <dataNUM>
  23. Send back this contents instead of the <data> one. The num is set by:
  24. A) The test number in the request line is >10000 and this is the remainder
  25. of [test case number]%10000.
  26. B) The request was HTTP and included digest details, which adds 1000 to NUM
  27. C) If a HTTP request is NTLM type-1, it adds 1001 to num
  28. D) If a HTTP request is NTLM type-3, it adds 1002 to num
  29. </dateNUM>
  30. <datacheck [nonewline=yes]>
  31. if the data is sent but this is what should be checked afterwards. If
  32. 'nonewline' is set, we will cut off the trailing newline of this given data
  33. before comparing with the one actually received by the client
  34. </datacheck>
  35. <size>
  36. number to return on a ftp SIZE command (set to -1 to make this command fail)
  37. </size>
  38. <mdtm>
  39. what to send back if the client sends a (FTP) MDTM command, set to -1 to
  40. have it return that the file doesn't exist
  41. </mdtm>
  42. <cmd>
  43. special purpose server-command to control its behavior *before* the
  44. reply is sent
  45. </cmd>
  46. <postcmd>
  47. special purpose server-command to control its behavior *after* the
  48. reply is sent
  49. </postcmd>
  50. </reply>
  51. <client>
  52. <server>
  53. protocols as in 'http' 'ftp' etc. Give only one per line. Used for test cases
  54. 500+ (at this point) to specify which servers the test case requires. In the
  55. future all test cases should use this. Makes us independent of the test
  56. case number.
  57. </server>
  58. <features>
  59. A list of features that must be present in the client/library for this test
  60. to be able to run. Features testable here are:
  61. SSL
  62. netrc_debug
  63. large_file
  64. </features>
  65. <killserver>
  66. Using the same syntax as in <server> but when mentioned here these servers
  67. are explicitly KILLED when this test case is completed. Only use this if there
  68. is no other alternatives. Using this of course requires subsequent tests to
  69. restart servers.
  70. </killserver>
  71. <tool>
  72. Name of tool to use instead of "curl". This tool must be built and exist
  73. in the libtest/ directory.
  74. </tool>
  75. <name>
  76. test case description
  77. </name>
  78. <setenv>
  79. variable1=contents1
  80. variable2=contents2
  81. Set the given environment variables to the specified value before the actual
  82. command is run, they are clear again after the command has been run.
  83. </setenv>
  84. <command [option=no-output]>
  85. command line to run, there's a bunch of %variables that get replaced
  86. accordingly.
  87. Note that the URL that gets passed to the server actually controls what data
  88. that is returned. The last slash in the URL must be followed by a number. That
  89. number (N) will be used by the test-server to load test case N and return the
  90. data that is defined within the <reply><data></data></reply> section.
  91. If a CONNECT is used to the server (to emulate HTTPS etc over proxy), the port
  92. number given in the CONNECT request will be used to identify which test that
  93. is being run, if the proxy host name is said to start with 'test'.
  94. Set 'option=no-output' to prevent the test script to slap on the --output
  95. argument that directs the output to a file. The --output is also not added if
  96. the client/stdout section is used.
  97. Available substitute variables include:
  98. %HOSTIP - IP address of the host running this test
  99. %HOSTPORT - Port number of the HTTP server
  100. %HTTPSPORT - Port number of the HTTPS server
  101. %FTPPORT - Port number of the FTP server
  102. %FTPSPORT - Port number of the FTPS server
  103. %SRCDIR - Full path to the source dir
  104. %PWD - Current directory
  105. </command>
  106. <file name="log/filename">
  107. this creates the named file with this content before the test case is run
  108. which is useful if the test case needs a file to act on.
  109. </file>
  110. <stdin>
  111. Pass this given data on stdin to the tool.
  112. </stdin>
  113. </client>
  114. <verify>
  115. <errorcode>
  116. numerical error code curl is supposed to return
  117. </errorcode>
  118. <strip>
  119. One regex per line that is removed from the protocol dumps before the
  120. comparison is made. This is very useful to remove dependencies on dynamicly
  121. changing protocol data such as port numbers or user-agent strings.
  122. </strip>
  123. <protocol [nonewline=yes]>
  124. the protocol dump curl should transmit, if 'nonewline' is set, we will cut
  125. off the trailing newline of this given data before comparing with the one
  126. actually sent by the client
  127. </protocol>
  128. <stdout>
  129. This verfies that this data was passed to stdout.
  130. </stdout>
  131. <file name="log/filename">
  132. the file's contents must be identical to this
  133. </file>
  134. <upload>
  135. the contents of the upload data curl should have sent
  136. </upload>
  137. </verify>