README.asciidoc 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. The Elasticsearch docs are in AsciiDoc format and can be built using the
  2. Elasticsearch documentation build process.
  3. See: https://github.com/elastic/docs
  4. Snippets marked with `// CONSOLE` are automatically annotated with "VIEW IN
  5. SENSE" in the documentation and are automatically tested by the command
  6. `gradle :docs:check`. To test just the docs from a single page, use e.g.
  7. `gradle :docs:check -Dtests.method=*rollover*`.
  8. By default `// CONSOLE` snippet runs as its own isolated
  9. test. You can manipulate the test execution in the following ways:
  10. * `// TEST`: Explicitly marks a snippet as a test. Snippets marked this way
  11. are tests even if they don't have `// CONSOLE`.
  12. * `// TEST[s/foo/bar/]`: Replace `foo` with `bar` in the test. This should be
  13. used sparingly because it makes the test "lie". Sometimes, though, you can use
  14. it to make the tests more clear.
  15. * `// TEST[catch:foo]`: Used to expect errors in the requests. Replace `foo`
  16. with `request` to expect a 400 error, for example. If the snippet contains
  17. multiple requests then only the last request will expect the error.
  18. * `// TEST[continued]`: Continue the test started in the last snippet. Between
  19. tests the nodes are cleaned: indexes are removed, etc. This will prevent that.
  20. This is really useful when you have text and snippets that work together to
  21. tell the story of some use case because it merges the snippets (and thus the
  22. use case) into one big test.
  23. * `// TEST[skip:reason]`: Skip this test. Replace `reason` with the actual
  24. reason to skip the test. Snippets without `// TEST` or `// CONSOLE` aren't
  25. considered tests anyway but this is useful for explicitly documenting the
  26. reason why the test shouldn't be run.
  27. * `// TEST[setup:name]`: Run some setup code before running the snippet. This
  28. is useful for creating and populating indexes used in the snippet. The setup
  29. code is defined in `docs/build.gradle`.
  30. * `// TEST[warning:some warning]`: Expect the response to include a `Warning`
  31. header. If the response doesn't include a `Warning` header with the exact
  32. text then the test fails. If the response includes `Warning` headers that
  33. aren't expected then the test fails.
  34. * `// TESTRESPONSE`: Matches this snippet against the body of the response of
  35. the last test. If the response is JSON then order is ignored. With
  36. `// TEST[continued]` you can make tests that contain multiple command snippets
  37. and multiple response snippets.
  38. * `// TESTRESPONSE[s/foo/bar/]`: Substitutions. See `// TEST[s/foo/bar]`.
  39. * `// TESTRESPONSE[_cat]`: Add substitutions for testing `_cat` responses. Use
  40. this after all other substitutions so it doesn't make other substitutions
  41. difficult.
  42. * `// TESTSETUP`: Marks this snippet as the "setup" for all other snippets in
  43. this file. This is a somewhat natural way of structuring documentation. You
  44. say "this is the data we use to explain this feature" then you add the
  45. snippet that you mark `// TESTSETUP` and then every snippet will turn into
  46. a test that runs the setup snippet first. See the "painless" docs for a file
  47. that puts this to good use. This is fairly similar to `// TEST[setup:name]`
  48. but rather than the setup defined in `docs/build.gradle` the setup is defined
  49. right in the documentation file.
  50. Any place you can use json you can use elements like `$body.path.to.thing`
  51. which is replaced on the fly with the contents of the thing at `path.to.thing`
  52. in the last response.