blob: 0e4a1e488339f954dd34e8969fa0685346697b82 [file] [log] [blame]
Shock Jiang01712f32014-10-01 14:34:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyevfde570c2016-12-19 16:02:55 -08003 * Copyright (c) 2014-2016, Regents of the University of California.
Shock Jiang01712f32014-10-01 14:34:16 -07004 *
5 * This file is part of NDNS (Named Data Networking Domain Name Service).
6 * See AUTHORS.md for complete list of NDNS authors and contributors.
7 *
8 * NDNS is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "clients/query.hpp"
21
Alexander Afanasyevfde570c2016-12-19 16:02:55 -080022#include "test-common.hpp"
Shock Jiang01712f32014-10-01 14:34:16 -070023
24namespace ndn {
25namespace ndns {
26namespace tests {
27
28BOOST_AUTO_TEST_SUITE(Query)
29
30BOOST_AUTO_TEST_CASE(TestCase)
31{
32 Name zone("/net");
33 name::Component qType = ndns::label::NDNS_ITERATIVE_QUERY;
Yumin Xia6343c5b2016-10-20 15:45:50 -070034 ndns::Query q(zone, qType);
Shock Jiang01712f32014-10-01 14:34:16 -070035
36 q.setRrLabel(Name("/ndnsim/www"));
37 BOOST_CHECK_EQUAL(q.getRrLabel(), Name("ndnsim/www"));
38 BOOST_CHECK_EQUAL(q.getRrLabel(), Name("/ndnsim/www"));
Shock Jiang01712f32014-10-01 14:34:16 -070039 BOOST_CHECK_EQUAL(q.getZone(), zone);
40 BOOST_CHECK_EQUAL(q.getQueryType(), qType);
41
42 q.setRrType(ndns::label::CERT_RR_TYPE);
43 BOOST_CHECK_EQUAL(q.getRrType(), label::CERT_RR_TYPE);
44
45 Interest interest = q.toInterest();
46
Yumin Xia6343c5b2016-10-20 15:45:50 -070047 ndns::Query q2(zone, qType);
48 BOOST_CHECK_EQUAL(q2.fromInterest(zone, interest), true);
Shock Jiang01712f32014-10-01 14:34:16 -070049
50 ndns::Query q3;
Yumin Xia6343c5b2016-10-20 15:45:50 -070051 BOOST_CHECK_EQUAL(q3.fromInterest(zone, interest), true);
Shock Jiang01712f32014-10-01 14:34:16 -070052
53 BOOST_CHECK_EQUAL(q, q3);
54 BOOST_CHECK_EQUAL(q, q2);
55
Yumin Xia6343c5b2016-10-20 15:45:50 -070056 ndns::Query q4(zone, qType);
Shock Jiang01712f32014-10-01 14:34:16 -070057 q4.setRrLabel("/ndnsim/www");
58 q4.setRrType(ndns::label::TXT_RR_TYPE);
59 interest = q4.toInterest();
60 ndns::Query q5;
61
Yumin Xia6343c5b2016-10-20 15:45:50 -070062 BOOST_CHECK_EQUAL(q5.fromInterest(zone, interest), true);
Shock Jiang01712f32014-10-01 14:34:16 -070063 BOOST_CHECK_EQUAL(q4, q5);
64 BOOST_CHECK_NE(q2, q4);
65 }
66
67BOOST_AUTO_TEST_SUITE_END()
68
Alexander Afanasyevfde570c2016-12-19 16:02:55 -080069} // namespace tests
70} // namespace ndns
Shock Jiang01712f32014-10-01 14:34:16 -070071} // namespace ndn