BIND 10 master, updated. 5c8c3e67e2c564ce3c2c1392fc665edb8a982df1 [master] Test SSHFP support in lettuce
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Jun 25 16:28:35 UTC 2012
The branch, master has been updated
via 5c8c3e67e2c564ce3c2c1392fc665edb8a982df1 (commit)
from bd3cc66c7c3ea7877dc83dc9685c9c45bf16cf12 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5c8c3e67e2c564ce3c2c1392fc665edb8a982df1
Author: Mukund Sivaraman <muks at isc.org>
Date: Mon Jun 25 19:45:46 2012 +0530
[master] Test SSHFP support in lettuce
-----------------------------------------------------------------------
Summary of changes:
tests/lettuce/data/example.org | 1 +
tests/lettuce/features/queries.feature | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
-----------------------------------------------------------------------
diff --git a/tests/lettuce/data/example.org b/tests/lettuce/data/example.org
index 20a93be..77f8f53 100644
--- a/tests/lettuce/data/example.org
+++ b/tests/lettuce/data/example.org
@@ -10,3 +10,4 @@ dname.example.org. 3600 IN DNAME dname.example.info.
dname2.foo.example.org. 3600 IN DNAME dname2.example.info.
ns1.example.org. 3600 IN A 192.0.2.3
ns2.example.org. 3600 IN A 192.0.2.4
+shell.example.org. 3600 IN SSHFP 2 1 123456789abcdef67890123456789abcdef67890
diff --git a/tests/lettuce/features/queries.feature b/tests/lettuce/features/queries.feature
index de6f0fa..8ca9467 100644
--- a/tests/lettuce/features/queries.feature
+++ b/tests/lettuce/features/queries.feature
@@ -122,3 +122,25 @@ Feature: Querying feature
"""
ns.sub.example.org. 3600 IN A 192.0.2.101
"""
+ Scenario: SSHFP query
+ Given I have bind10 running with configuration example.org.inmem.config
+ And wait for bind10 stderr message BIND10_STARTED_CC
+ And wait for bind10 stderr message CMDCTL_STARTED
+ And wait for bind10 stderr message AUTH_SERVER_STARTED
+
+ bind10 module Auth should be running
+ And bind10 module Resolver should not be running
+ And bind10 module Xfrout should not be running
+ And bind10 module Zonemgr should not be running
+ And bind10 module Xfrin should not be running
+ And bind10 module Stats should not be running
+ And bind10 module StatsHttpd should not be running
+
+ A query for example.org type SSHFP should have rcode NOERROR
+ The last query response should have ancount 0
+ A query for shell.example.org type SSHFP should have rcode NOERROR
+ The last query response should have ancount 1
+ The answer section of the last query response should be
+ """
+ shell.example.org. 3600 IN SSHFP 2 1 123456789abcdef67890123456789abcdef67890
+ """
More information about the bind10-changes
mailing list