xfrin_bind10.feature 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Feature: Xfrin
  2. Tests for Xfrin, specific for BIND 10 behaviour.
  3. Scenario: Retransfer command
  4. # Standard check to test (non-)existence of a file.
  5. # This file is actually automatically created.
  6. The file data/test_nonexistent_db.sqlite3 should not exist
  7. Given I have bind10 running with configuration xfrin/retransfer_master.conf with cmdctl port 47804 as master
  8. And wait for master stderr message BIND10_STARTED_CC
  9. And wait for master stderr message CMDCTL_STARTED
  10. And wait for master stderr message AUTH_SERVER_STARTED
  11. And wait for master stderr message XFROUT_STARTED
  12. And wait for master stderr message ZONEMGR_STARTED
  13. And I have bind10 running with configuration xfrin/retransfer_slave.conf
  14. And wait for bind10 stderr message BIND10_STARTED_CC
  15. And wait for bind10 stderr message CMDCTL_STARTED
  16. And wait for bind10 stderr message AUTH_SERVER_STARTED
  17. And wait for bind10 stderr message XFRIN_STARTED
  18. And wait for bind10 stderr message ZONEMGR_STARTED
  19. # Now we use the first step again to see if the file has been created
  20. The file data/test_nonexistent_db.sqlite3 should exist
  21. A query for www.example.org to [::1]:47806 should have rcode REFUSED
  22. When I send bind10 the command Xfrin retransfer example.org IN ::1 47807
  23. # The data we receive contain a NS RRset that refers to three names in the
  24. # example.org. zone. All these three are nonexistent in the data, producing
  25. # 3 separate warning messages in the log.
  26. And wait for new bind10 stderr message XFRIN_ZONE_WARN
  27. And wait for new bind10 stderr message XFRIN_ZONE_WARN
  28. And wait for new bind10 stderr message XFRIN_ZONE_WARN
  29. # But after complaining, the zone data should be accepted.
  30. Then wait for new bind10 stderr message XFRIN_TRANSFER_SUCCESS not XFRIN_XFR_PROCESS_FAILURE
  31. Then wait for new bind10 stderr message ZONEMGR_RECEIVE_XFRIN_SUCCESS
  32. A query for www.example.org to [::1]:47806 should have rcode NOERROR
  33. # The transferred zone should have 11 non-NSEC3 RRs and 1 NSEC3 RR.
  34. # The following check will get these by AXFR, so the total # of RRs
  35. # should be 13, counting the duplicated SOA.
  36. # At this point we can confirm both in and out of AXFR for a zone
  37. # containing an NSEC3 RR.
  38. # We don't have to specify the address/port here; the defaults will work.
  39. When I do an AXFR transfer of example.org
  40. Then transfer result should have 13 rrs
  41. Scenario: Transfer with TSIG
  42. # Similar setup to the test above, but this time, we add TSIG configuration
  43. # In order to check that the tests don't give false positives because config
  44. # happens to be right (like no TSIG on either side), we take an existing
  45. # non-TSIG config, add TSIG on the master side, see it fail, add TSIG
  46. # on the slave side, then check again.
  47. Given I have bind10 running with configuration xfrin/retransfer_master.conf with cmdctl port 47804 as master
  48. And wait for master stderr message AUTH_SERVER_STARTED
  49. And wait for master stderr message XFROUT_STARTED
  50. And I have bind10 running with configuration xfrin/retransfer_slave.conf
  51. And wait for bind10 stderr message CMDCTL_STARTED
  52. And wait for bind10 stderr message XFRIN_STARTED
  53. # Set slave config for 'automatic' xfrin
  54. When I set bind10 configuration Xfrin/zones to [{"master_port": 47806, "name": "example.org", "master_addr": "::1"}]
  55. # Make sure it is fully open
  56. When I send bind10 the command Xfrin retransfer example.org
  57. Then wait for new bind10 stderr message XFRIN_TRANSFER_SUCCESS not XFRIN_XFR_PROCESS_FAILURE
  58. And wait for new bind10 stderr message ZONEMGR_RECEIVE_XFRIN_SUCCESS
  59. # First to master, a transfer should then fail
  60. When I send bind10 the following commands with cmdctl port 47804:
  61. """
  62. config add tsig_keys/keys "example.key.:c2VjcmV0"
  63. config set Xfrout/zone_config[0]/transfer_acl [{"action": "ACCEPT", "from": "::1", "key": "example.key."}]
  64. config commit
  65. """
  66. # Transfer should fail
  67. When I send bind10 the command Xfrin retransfer example.org
  68. Then wait for new bind10 stderr message XFRIN_XFR_TRANSFER_PROTOCOL_ERROR not XFRIN_TRANSFER_SUCCESS
  69. # Set client to use TSIG as well
  70. When I send bind10 the following commands:
  71. """
  72. config add tsig_keys/keys "example.key.:c2VjcmV0"
  73. config set Xfrin/zones[0]/tsig_key "example.key."
  74. config commit
  75. """
  76. # Transwer should succeed now
  77. When I send bind10 the command Xfrin retransfer example.org
  78. Then wait for new bind10 stderr message XFRIN_TRANSFER_SUCCESS not XFRIN_XFR_PROCESS_FAILURE