default.feature 801 B

123456789101112131415161718192021
  1. Feature: default bind10 config
  2. Tests for the default configuration of bind10.
  3. Scenario: Check that only the default components are running
  4. Given I have bind10 running with configuration default.config
  5. And wait for bind10 stderr message STATS_STARTING
  6. And wait for bind10 stderr message STATHTTPD_STARTED
  7. # These should be running
  8. bind10 module Boss should be running
  9. bind10 module Logging should be running
  10. bind10 module Stats should be running
  11. bind10 module StatsHttpd should be running
  12. # These should not be running
  13. bind10 module Resolver should not be running
  14. bind10 module Xfrout should not be running
  15. bind10 module Zonemgr should not be running
  16. bind10 module Xfrin should not be running
  17. bind10 module Auth should not be running