default.feature 886 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 BIND10_STARTED_CC
  6. And wait for bind10 stderr message CMDCTL_STARTED
  7. And wait for bind10 stderr message STATS_STARTING
  8. # These should be running
  9. bind10 module Init should be running
  10. And bind10 module Logging should be running
  11. And bind10 module Stats should be running
  12. # These should not be running
  13. bind10 module Resolver should not be running
  14. And bind10 module Xfrout should not be running
  15. And bind10 module Zonemgr should not be running
  16. And bind10 module Xfrin should not be running
  17. And bind10 module Auth should not be running
  18. And bind10 module StatsHttpd should not be running