README.asciidoc 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. CONSOLE" and "COPY AS CURL" in the documentation and are automatically tested
  6. by the command `gradle :docs:check`. To test just the docs from a single page,
  7. use e.g. `./gradlew :docs:integTestRunner --tests "*rollover*"`.
  8. NOTE: If you have an elasticsearch-extra folder alongside your elasticsearch
  9. folder, you must temporarily rename it when you are testing 6.3 or later branches.
  10. By default each `// CONSOLE` snippet runs as its own isolated test. You can
  11. manipulate the test execution in the following ways:
  12. * `// TEST`: Explicitly marks a snippet as a test. Snippets marked this way
  13. are tests even if they don't have `// CONSOLE` but usually `// TEST` is used
  14. for its modifiers:
  15. * `// TEST[s/foo/bar/]`: Replace `foo` with `bar` in the generated test. This
  16. should be used sparingly because it makes the snippet "lie". Sometimes,
  17. though, you can use it to make the snippet more clear. Keep in mind that
  18. if there are multiple substitutions then they are applied in the order that
  19. they are defined.
  20. * `// TEST[catch:foo]`: Used to expect errors in the requests. Replace `foo`
  21. with `request` to expect a 400 error, for example. If the snippet contains
  22. multiple requests then only the last request will expect the error.
  23. * `// TEST[continued]`: Continue the test started in the last snippet. Between
  24. tests the nodes are cleaned: indexes are removed, etc. This prevents that
  25. from happening between snippets because the two snippets are a single test.
  26. This is most useful when you have text and snippets that work together to
  27. tell the story of some use case because it merges the snippets (and thus the
  28. use case) into one big test.
  29. * `// TEST[skip:reason]`: Skip this test. Replace `reason` with the actual
  30. reason to skip the test. Snippets without `// TEST` or `// CONSOLE` aren't
  31. considered tests anyway but this is useful for explicitly documenting the
  32. reason why the test shouldn't be run.
  33. * `// TEST[setup:name]`: Run some setup code before running the snippet. This
  34. is useful for creating and populating indexes used in the snippet. The setup
  35. code is defined in `docs/build.gradle`. See `// TESTSETUP` below for a
  36. similar feature.
  37. * `// TEST[warning:some warning]`: Expect the response to include a `Warning`
  38. header. If the response doesn't include a `Warning` header with the exact
  39. text then the test fails. If the response includes `Warning` headers that
  40. aren't expected then the test fails.
  41. * `// TESTRESPONSE`: Matches this snippet against the body of the response of
  42. the last test. If the response is JSON then order is ignored. If you add
  43. `// TEST[continued]` to the snippet after `// TESTRESPONSE` it will continue
  44. in the same test, allowing you to interleave requests with responses to check.
  45. * `// TESTRESPONSE[s/foo/bar/]`: Substitutions. See `// TEST[s/foo/bar]` for
  46. how it works. These are much more common than `// TEST[s/foo/bar]` because
  47. they are useful for eliding portions of the response that are not pertinent
  48. to the documentation.
  49. * One interesting difference here is that you often want to match against
  50. the response from Elasticsearch. To do that you can reference the "body" of
  51. the response like this: `// TESTRESPONSE[s/"took": 25/"took": $body.took/]`.
  52. Note the `$body` string. This says "I don't expect that 25 number in the
  53. response, just match against what is in the response." Instead of writing
  54. the path into the response after `$body` you can write `$_path` which
  55. "figures out" the path. This is especially useful for making sweeping
  56. assertions like "I made up all the numbers in this example, don't compare
  57. them" which looks like `// TESTRESPONSE[s/\d+/$body.$_path/]`.
  58. * You can't use `// TESTRESPONSE` immediately after `// TESTSETUP`. Instead,
  59. consider using `// TEST[continued]` or rearrange your snippets.
  60. * `// TESTRESPONSE[non_json]`: Add substitutions for testing responses in a
  61. format other than JSON. Use this after all other substitutions so it doesn't
  62. make other substitutions difficult.
  63. * `// TESTRESPONSE[skip:reason]`: Skip the assertions specified by this
  64. response.
  65. * `// TESTSETUP`: Marks this snippet as the "setup" for all other snippets in
  66. this file. This is a somewhat natural way of structuring documentation. You
  67. say "this is the data we use to explain this feature" then you add the
  68. snippet that you mark `// TESTSETUP` and then every snippet will turn into
  69. a test that runs the setup snippet first. See the "painless" docs for a file
  70. that puts this to good use. This is fairly similar to `// TEST[setup:name]`
  71. but rather than the setup defined in `docs/build.gradle` the setup is defined
  72. right in the documentation file. In general, we should prefer `// TESTSETUP`
  73. over `// TEST[setup:name]` because it makes it more clear what steps have to
  74. be taken before the examples will work. Tip: `// TESTSETUP` can only be used
  75. on the first snippet of a document.
  76. * `// NOTCONSOLE`: Marks this snippet as neither `// CONSOLE` nor
  77. `// TESTRESPONSE`, excluding it from the list of unconverted snippets. We
  78. should only use this for snippets that *are* JSON but are *not* responses or
  79. requests.
  80. In addition to the standard CONSOLE syntax these snippets can contain blocks
  81. of yaml surrounded by markers like this:
  82. ```
  83. startyaml
  84. - compare_analyzers: {index: thai_example, first: thai, second: rebuilt_thai}
  85. endyaml
  86. ```
  87. This allows slightly more expressive testing of the snippets. Since that syntax
  88. is not supported by CONSOLE the usual way to incorporate it is with a
  89. `// TEST[s//]` marker like this:
  90. ```
  91. // TEST[s/\n$/\nstartyaml\n - compare_analyzers: {index: thai_example, first: thai, second: rebuilt_thai}\nendyaml\n/]
  92. ```
  93. Any place you can use json you can use elements like `$body.path.to.thing`
  94. which is replaced on the fly with the contents of the thing at `path.to.thing`
  95. in the last response.