README 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. BIND10 system testing with Lettuce
  2. or: to BDD or not to BDD
  3. In this directory, we define a set of behavioral tests for BIND 10. Currently,
  4. these tests are specific for BIND10, but we are keeping in mind that RFC-related
  5. tests could be separated, so that we can test other systems as well.
  6. Prerequisites:
  7. - BIND 10 must be compiled or installed
  8. - dig
  9. - lettuce (http://lettuce.it)
  10. To install lettuce, if you have the python pip installation tool, simply do
  11. pip install lettuce
  12. See http://lettuce.it/intro/install.html
  13. Most systems have the pip tool in a separate package; on Debian-based systems
  14. it is called python-pip. On FreeBSD the port is devel/py-pip.
  15. Running the tests
  16. -----------------
  17. At this moment, we have a fixed port for local tests in our setups, port 47806.
  18. This port must be free. (TODO: can we make this run-time discovered?).
  19. Port 47805 is used for cmdctl, and must also be available.
  20. (note, we will need to extend this to a range, or if possible, we will need to
  21. do some on-the-fly available port finding)
  22. You can run the lettuce tests with the provided run_lettuce.sh script.
  23. By default it will use the build tree, but you can use an installed version
  24. of bind10 by passing -I as the first argument of run_lettuce.sh
  25. The tool 'dig' must be in the default search path of your environment. If
  26. you specified -I, so must the main bind10 program, as well as bindctl.
  27. Due to the default way lettuce prints its output, it is advisable to run it
  28. in a terminal that is wide than the default. If you see a lot of lines twice
  29. in different colors, the terminal is not wide enough.
  30. If you just want to run one specific feature test, use
  31. run_lettuce.sh [-I] features/<feature file>
  32. To run a specific scenario from a feature, use
  33. run_lettuce.sh [-I] features/<feature file> -s <scenario number>
  34. We have set up the tests to assume that lettuce is run from this directory,
  35. so even if you specify a specific feature file, you should do it from this
  36. directory.
  37. What to do when a test fails
  38. ----------------------------
  39. First of all, look at the error it printed and see what step it occurred in.
  40. If written well, the output should explain most of what went wrong.
  41. The stacktrace that is printed is *not* of bind10, but of the testing
  42. framework; this helps in finding more information about what exactly the test
  43. tried to achieve when it failed (as well as help debug the tests themselves).
  44. Furthermore, if any scenario fails, the output from long-running processes
  45. will be stored in the directory output/. The name of the files will be
  46. <Feature name>-<Scenario name>-<Process name>.stdout and
  47. <Feature name>-<Scenario name>-<Process name>.stderr
  48. Where spaces and other non-standard characters are replaced by an underscore.
  49. The process name is either the standard name for said process (e.g. 'bind10'),
  50. or the name given to it by the test ('when i run bind10 as <name>').
  51. These files *will* be overwritten or deleted if the same scenarios are run
  52. again, so if you want to inspect them after a failed test, either do so
  53. immediately or move the files.
  54. Adding and extending tests
  55. --------------------------
  56. If you want to add tests, it is advisable to first go through the examples to
  57. see what is possible, and read the documentation on http://www.lettuce.it
  58. There is also a README.tutorial file here.
  59. We have a couple of conventions to keep things manageable.
  60. Configuration files go into the configurations/ directory.
  61. Data files go into the data/ directory.
  62. Step definition go into the features/terrain/ directory (the name terrain is
  63. chosen for the same reason Lettuce chose terrain.py, this is the place the
  64. tests 'live' in).
  65. Feature definitions go directly into the features/ directory.
  66. These directories are currently not divided further; we may want to consider
  67. this as the set grows. Due to a (current?) limitation of Lettuce, for
  68. feature files this is currently not possible; the python files containing
  69. steps and terrain must be below or at the same level of the feature files.
  70. Long-running processes should be started through the world.RunningProcesses
  71. instance. If you want to add a process (e.g. bind9), create start, stop and
  72. control steps in terrain/<base_name>_control.py, and let it use the
  73. RunningProcesses API (defined in terrain.py). See bind10_control.py for an
  74. example.
  75. For sending queries and checking the results, steps have been defined in
  76. terrain/querying.py. These use dig and store the results split up into text
  77. strings. This is intentionally not parsed through our own library (as that way
  78. we might run into a 'symmetric bug'). If you need something more advanced from
  79. query results, define it here.
  80. Some very general steps are defined in terrain/steps.py.
  81. Initialization code, cleanup code, and helper classes are defined in
  82. terrain/terrain.py.
  83. To find the right steps, case insensitive matching is used. Parameters taken
  84. from the steps are case-sensitive though. So a step defined as
  85. 'do foo with value (bar)' will be matched when using
  86. 'Do Foo with value xyz', but xyz will be taken as given.
  87. If you need to add steps that are very particular to one test, create a new
  88. file with a name relevant for that test in terrain. We may want to consider
  89. creating a specific subdirectory for these, but at this moment it is unclear
  90. whether we need to.
  91. We should try to keep steps as general as possible, while not making them to
  92. complex and error-prone.