nc_test_utils.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. // Copyright (C) 2013-2014 Internet Systems Consortium, Inc. ("ISC")
  2. //
  3. // Permission to use, copy, modify, and/or distribute this software for any
  4. // purpose with or without fee is hereby granted, provided that the above
  5. // copyright notice and this permission notice appear in all copies.
  6. //
  7. // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. // PERFORMANCE OF THIS SOFTWARE.
  14. #ifndef NC_TEST_UTILS_H
  15. #define NC_TEST_UTILS_H
  16. /// @file nc_test_utils.h prototypes for functions related transaction testing.
  17. #include <d2/nc_trans.h>
  18. #include <asio/ip/udp.hpp>
  19. #include <asio/socket_base.hpp>
  20. #include <gtest/gtest.h>
  21. namespace isc {
  22. namespace d2 {
  23. extern const char* TEST_DNS_SERVER_IP;
  24. extern size_t TEST_DNS_SERVER_PORT;
  25. // Not extern'ed to allow use as array size
  26. const int TEST_MSG_MAX = 1024;
  27. typedef boost::shared_ptr<asio::ip::udp::socket> SocketPtr;
  28. /// @brief This class simulates a DNS server. It is capable of performing
  29. /// an asynchronous read, governed by an IOService, and responding to received
  30. /// requests in a given manner.
  31. class FauxServer {
  32. public:
  33. enum ResponseMode {
  34. USE_RCODE, // Generate a response with a given RCODE
  35. CORRUPT_RESP, // Generate a corrupt response
  36. INVALID_TSIG // Generate a repsonse with the wrong TSIG key
  37. };
  38. // Reference to IOService to use for IO processing.
  39. asiolink::IOService& io_service_;
  40. // IP address at which to listen for requests.
  41. const asiolink::IOAddress& address_;
  42. // Port on which to listen for requests.
  43. size_t port_;
  44. // Socket on which listening is done.
  45. SocketPtr server_socket_;
  46. // Stores the end point of requesting client.
  47. asio::ip::udp::endpoint remote_;
  48. // Buffer in which received packets are stuffed.
  49. uint8_t receive_buffer_[TEST_MSG_MAX];
  50. // Flag which indicates if a receive has been initiated but
  51. // not yet completed.
  52. bool receive_pending_;
  53. // Indicates if server is in perpetual receive mode. If true once
  54. // a receive has been completed, a new one will be automatically
  55. // initiated.
  56. bool perpetual_receive_;
  57. // TSIG Key to use to verify requests and sign responses. If its
  58. // NULL TSIG is not used.
  59. dns::TSIGKeyPtr tsig_key_;
  60. /// @brief Constructor
  61. ///
  62. /// @param io_service IOService to be used for socket IO.
  63. /// @param address IP address at which the server should listen.
  64. /// @param port Port number at which the server should listen.
  65. FauxServer(asiolink::IOService& io_service, asiolink::IOAddress& address,
  66. size_t port);
  67. /// @brief Constructor
  68. ///
  69. /// @param io_service IOService to be used for socket IO.
  70. /// @param server DnsServerInfo of server the DNS server. This supplies the
  71. /// server's ip address and port.
  72. FauxServer(asiolink::IOService& io_service, DnsServerInfo& server);
  73. /// @brief Destructor
  74. virtual ~FauxServer();
  75. /// @brief Initiates an asynchronous receive
  76. ///
  77. /// Starts the server listening for requests. Upon completion of the
  78. /// listen, the callback method, requestHandler, is invoked.
  79. ///
  80. /// @param response_mode Selects how the server responds to a request
  81. /// @param response_rcode The Rcode value set in the response. Not used
  82. /// for all modes.
  83. void receive (const ResponseMode& response_mode,
  84. const dns::Rcode& response_rcode=dns::Rcode::NOERROR());
  85. /// @brief Socket IO Completion callback
  86. ///
  87. /// This method servers as the Server's UDP socket receive callback handler.
  88. /// When the receive completes the handler is invoked with the parameters
  89. /// listed.
  90. ///
  91. /// @param error result code of the receive (determined by asio layer)
  92. /// @param bytes_recvd number of bytes received, if any
  93. /// @param response_mode type of response the handler should produce
  94. /// @param response_rcode value of Rcode in the response constructed by
  95. /// handler
  96. void requestHandler(const asio::error_code& error,
  97. std::size_t bytes_recvd,
  98. const ResponseMode& response_mode,
  99. const dns::Rcode& response_rcode);
  100. /// @brief Returns true if a receive has been started but not completed.
  101. bool isReceivePending() {
  102. return receive_pending_;
  103. }
  104. /// @breif Sets the TSIG key to the given value.
  105. ///
  106. /// @param tsig_key Pointer to the TSIG key to use. If the pointer is
  107. /// empty, TSIG will not be used.
  108. void setTSIGKey (const dns::TSIGKeyPtr tsig_key) {
  109. tsig_key_ = tsig_key;
  110. }
  111. };
  112. /// @brief Provides a means to process IOService IO for a finite amount of time.
  113. ///
  114. /// This class instantiates an IOService provides a single method, runTimedIO
  115. /// which will run the IOService for no more than a finite amount of time,
  116. /// at least one event is executed or the IOService is stopped.
  117. /// It provides an virtual handler for timer expiration event. It is
  118. /// intended to be used as a base class for test fixtures that need to process
  119. /// IO by providing them a consistent way to do so while retaining a safety
  120. /// valve so tests do not hang.
  121. class TimedIO {
  122. public:
  123. IOServicePtr io_service_;
  124. asiolink::IntervalTimer timer_;
  125. int run_time_;
  126. // Constructor
  127. TimedIO();
  128. // Destructor
  129. virtual ~TimedIO();
  130. /// @brief IO Timer expiration handler
  131. ///
  132. /// Stops the IOService and fails the current test.
  133. virtual void timesUp();
  134. /// @brief Processes IO till time expires or at least one handler executes.
  135. ///
  136. /// This method first polls IOService to run any ready handlers. If no
  137. /// handlers are ready, it starts the internal time to run for the given
  138. /// amount of time and invokes service's run_one method. This method
  139. /// blocks until at least one handler executes or the IO Service is stopped.
  140. /// Upon completion of this method the timer is cancelled. Should the
  141. /// timer expires prior to run_one returning, the timesUp handler will be
  142. /// invoked which stops the IO service and fails the test.
  143. ///
  144. /// Note that this method closely mimics the runIO method in D2Process.
  145. ///
  146. /// @param run_time maximum length of time to run in milliseconds before
  147. /// timing out.
  148. ///
  149. /// @return Returns the number of handlers executed or zero. A return of
  150. /// zero indicates that the IOService has been stopped.
  151. int runTimedIO(int run_time);
  152. };
  153. /// @brief Base class Test fixture for testing transactions.
  154. class TransactionTest : public TimedIO, public ::testing::Test {
  155. public:
  156. dhcp_ddns::NameChangeRequestPtr ncr_;
  157. DdnsDomainPtr forward_domain_;
  158. DdnsDomainPtr reverse_domain_;
  159. /// #brief constants used to specify change directions for a transaction.
  160. static const unsigned int FORWARD_CHG; // Only forward change.
  161. static const unsigned int REVERSE_CHG; // Only reverse change.
  162. static const unsigned int FWD_AND_REV_CHG; // Both forward and reverse.
  163. TransactionTest();
  164. virtual ~TransactionTest();
  165. /// @brief Creates a transaction which requests an IPv4 DNS update.
  166. ///
  167. /// The transaction is constructed around a predefined (i.e. "canned")
  168. /// IPv4 NameChangeRequest. The request has both forward and reverse DNS
  169. /// changes requested. Based upon the change mask, the transaction
  170. /// will have either the forward, reverse, or both domains populated.
  171. ///
  172. /// @param change_type selects the type of change requested, CHG_ADD or
  173. /// CHG_REMOVE.
  174. /// @param change_mask determines which change directions are requested
  175. /// FORWARD_CHG, REVERSE_CHG, or FWD_AND_REV_CHG.
  176. /// @param key_name value to use to create TSIG key, if blank TSIG will not
  177. /// be used.
  178. void setupForIPv4Transaction(dhcp_ddns::NameChangeType change_type,
  179. int change_mask,
  180. const std::string& key_name = "");
  181. /// @brief Creates a transaction which requests an IPv6 DNS update.
  182. ///
  183. /// The transaction is constructed around a predefined (i.e. "canned")
  184. /// IPv6 NameChangeRequest. The request has both forward and reverse DNS
  185. /// changes requested. Based upon the change mask, the transaction
  186. /// will have either the forward, reverse, or both domains populated.
  187. ///
  188. /// @param change_type selects the type of change requested, CHG_ADD or
  189. /// CHG_REMOVE.
  190. /// @param change_mask determines which change directions are requested
  191. /// FORWARD_CHG, REVERSE_CHG, or FWD_AND_REV_CHG.
  192. /// @param key_name value to use to create TSIG key, if blank TSIG will not
  193. /// be used.
  194. void setupForIPv6Transaction(dhcp_ddns::NameChangeType change_type,
  195. int change_mask,
  196. const std::string& key_name = "");
  197. };
  198. /// @brief Tests the number of RRs in a request section against a given count.
  199. ///
  200. /// This function actually returns the number of RRsetPtrs in a section. Since
  201. /// D2 only uses RRsets with a single RData in each (i.e. 1 RR), it is used
  202. /// as the number of RRs. The dns::Message::getRRCount() cannot be used for
  203. /// this as it returns the number of RDatas in an RRSet which does NOT equate
  204. /// to the number of RRs. RRs with no RData, those with class or type of ANY,
  205. /// are not counted.
  206. ///
  207. /// @param request DNS update request to test
  208. /// @param section enum value of the section to count
  209. /// @param count the expected number of RRs
  210. extern void checkRRCount(const D2UpdateMessagePtr& request,
  211. D2UpdateMessage::UpdateMsgSection section, int count);
  212. /// @brief Tests the zone content of a given request.
  213. ///
  214. /// @param request DNS update request to validate
  215. /// @param exp_zone_name expected value of the zone name in the zone section
  216. extern void checkZone(const D2UpdateMessagePtr& request,
  217. const std::string& exp_zone_name);
  218. /// @brief Tests the contents of an RRset
  219. ///
  220. /// @param rrset Pointer the RRset to test
  221. /// @param exp_name expected value of RRset name (FQDN or reverse ip)
  222. /// @param exp_class expected RRClass value of RRset
  223. /// @param exp_typ expected RRType value of RRset
  224. /// @param exp_ttl expected TTL value of RRset
  225. /// @param ncr NameChangeRequest on which the RRset is based
  226. /// @param has_rdata if true, RRset's rdata will be checked based on it's
  227. /// RRType. Set this to false if the RRset's type supports Rdata but it does
  228. /// not contain it. For instance, prerequisites of type NONE have no Rdata
  229. /// where updates of type NONE may.
  230. extern void checkRR(dns::RRsetPtr rrset, const std::string& exp_name,
  231. const dns::RRClass& exp_class, const dns::RRType& exp_type,
  232. unsigned int exp_ttl, dhcp_ddns::NameChangeRequestPtr ncr,
  233. bool has_rdata=true);
  234. /// @brief Fetches an RR(set) from a given section of a request
  235. ///
  236. /// @param request DNS update request from which the RR should come
  237. /// @param section enum value of the section from which the RR should come
  238. /// @param index zero-based index of the RR of interest.
  239. ///
  240. /// @return Pointer to the RR of interest, empty pointer if the index is out
  241. /// of range.
  242. extern dns::RRsetPtr getRRFromSection(const D2UpdateMessagePtr& request,
  243. D2UpdateMessage::UpdateMsgSection section,
  244. int index);
  245. /// @brief Creates a NameChangeRequest from a JSON string
  246. ///
  247. /// @param ncr_str JSON string form of a NameChangeRequest. Example:
  248. /// @code
  249. /// const char* msg_str =
  250. /// "{"
  251. /// " \"change_type\" : 0 , "
  252. /// " \"forward_change\" : true , "
  253. /// " \"reverse_change\" : true , "
  254. /// " \"fqdn\" : \"my.example.com.\" , "
  255. /// " \"ip_address\" : \"192.168.2.1\" , "
  256. /// " \"dhcid\" : \"0102030405060708\" , "
  257. /// " \"lease_expires_on\" : \"20130121132405\" , "
  258. /// " \"lease_length\" : 1300 "
  259. /// "}";
  260. ///
  261. /// @endcode
  262. /// @brief Verifies a forward mapping addition DNS update request
  263. ///
  264. /// Tests that the DNS Update request for a given transaction, is correct for
  265. /// adding a forward DNS mapping.
  266. ///
  267. /// @param tran Transaction containing the request to be verified.
  268. extern void checkAddFwdAddressRequest(NameChangeTransaction& tran);
  269. /// @brief Verifies a forward mapping replacement DNS update request
  270. ///
  271. /// Tests that the DNS Update request for a given transaction, is correct for
  272. /// replacing a forward DNS mapping.
  273. ///
  274. /// @param tran Transaction containing the request to be verified.
  275. extern void checkReplaceFwdAddressRequest(NameChangeTransaction& tran);
  276. /// @brief Verifies a reverse mapping replacement DNS update request
  277. ///
  278. /// Tests that the DNS Update request for a given transaction, is correct for
  279. /// replacing a reverse DNS mapping.
  280. ///
  281. /// @param tran Transaction containing the request to be verified.
  282. extern void checkReplaceRevPtrsRequest(NameChangeTransaction& tran);
  283. /// @brief Verifies a forward address removal DNS update request
  284. ///
  285. /// Tests that the DNS Update request for a given transaction, is correct for
  286. /// removing the forward address DNS entry.
  287. ///
  288. /// @param tran Transaction containing the request to be verified.
  289. extern void checkRemoveFwdAddressRequest(NameChangeTransaction& tran);
  290. /// @brief Verifies a forward RR removal DNS update request
  291. ///
  292. /// Tests that the DNS Update request for a given transaction, is correct for
  293. /// removing forward RR DNS entries.
  294. ///
  295. /// @param tran Transaction containing the request to be verified.
  296. extern void checkRemoveFwdRRsRequest(NameChangeTransaction& tran);
  297. /// @brief Verifies a reverse mapping removal DNS update request
  298. ///
  299. /// Tests that the DNS Update request for a given transaction, is correct for
  300. /// removing a reverse DNS mapping.
  301. ///
  302. /// @param tran Transaction containing the request to be verified.
  303. extern void checkRemoveRevPtrsRequest(NameChangeTransaction& tran);
  304. /// @brief Creates a NameChangeRequest from JSON string.
  305. ///
  306. /// @param ncr_str string of JSON text from which to make the request.
  307. ///
  308. /// @return Pointer to newly created request.
  309. ///
  310. /// @throw Underlying methods may throw.
  311. extern
  312. dhcp_ddns::NameChangeRequestPtr makeNcrFromString(const std::string& ncr_str);
  313. /// @brief Creates a DdnsDomain with the one server.
  314. ///
  315. /// @param zone_name zone name of the domain
  316. /// @param key_name TSIG key name of the TSIG key for this domain. Defaults to
  317. /// blank which means the DdnsDomain does not have a key.
  318. ///
  319. /// @throw Underlying methods may throw.
  320. extern DdnsDomainPtr makeDomain(const std::string& zone_name,
  321. const std::string& key_name = "");
  322. /// @brief Creates a TSIGKeyInfo
  323. ///
  324. /// @param key_name name of the key
  325. /// @param secret key secret data as a base64 encoded string. If blank,
  326. /// then the secret value will be generated from key_name.
  327. /// @param algorithm algorithm to use. Defaults to MD5.
  328. /// @return a TSIGKeyInfoPtr for the newly created key. If key_name is blank
  329. /// the pointer will be empty.
  330. /// @throw Underlying methods may throw.
  331. extern
  332. TSIGKeyInfoPtr makeTSIGKeyInfo(const std::string& key_name,
  333. const std::string& secret = "",
  334. const std::string& algorithm
  335. = TSIGKeyInfo::MD5_STR);
  336. /// @brief Creates a DnsServerInfo and adds it to the given DdnsDomain.
  337. ///
  338. /// The server is created and added to the domain, without duplicate entry
  339. /// checking.
  340. ///
  341. /// @param domain DdnsDomain to which to add the server
  342. /// @param name new server's host name of the server
  343. /// @param ip new server's ip address
  344. /// @param port new server's port
  345. ///
  346. /// @throw Underlying methods may throw.
  347. extern void addDomainServer(DdnsDomainPtr& domain, const std::string& name,
  348. const std::string& ip = TEST_DNS_SERVER_IP,
  349. const size_t port = TEST_DNS_SERVER_PORT);
  350. /// @brief Creates a hex text dump of the given data buffer.
  351. ///
  352. /// This method is not used for testing but is handy for debugging. It creates
  353. /// a pleasantly formatted string of 2-digits per byte separated by spaces with
  354. /// 16 bytes per line.
  355. ///
  356. /// @param data pointer to the data to dump
  357. /// @param len size (in bytes) of data
  358. extern std::string toHexText(const uint8_t* data, size_t len);
  359. }; // namespace isc::d2
  360. }; // namespace isc
  361. #endif