blob: f7ed47820f07d15275392de12a7f2fe69d1e5544 [file] [log] [blame]
Shock Jiang01712f32014-10-01 14:34:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yumin Xia2c509c22017-02-09 14:37:36 -08002/*
3 * Copyright (c) 2014-2017, 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
Yumin Xia4e561892016-10-21 10:48:01 -070024#include <boost/lexical_cast.hpp>
25#include <string>
Yumin Xia4e561892016-10-21 10:48:01 -070026
Shock Jiang01712f32014-10-01 14:34:16 -070027namespace ndn {
28namespace ndns {
29namespace tests {
30
31BOOST_AUTO_TEST_SUITE(Query)
32
Yumin Xia4e561892016-10-21 10:48:01 -070033BOOST_FIXTURE_TEST_CASE(TestCase, IdentityManagementFixture)
Shock Jiang01712f32014-10-01 14:34:16 -070034{
Yumin Xia2c509c22017-02-09 14:37:36 -080035 security::Identity certIdentity = addIdentity("/cert/name");
Shock Jiang01712f32014-10-01 14:34:16 -070036 Name zone("/net");
37 name::Component qType = ndns::label::NDNS_ITERATIVE_QUERY;
Yumin Xia6343c5b2016-10-20 15:45:50 -070038 ndns::Query q(zone, qType);
Shock Jiang01712f32014-10-01 14:34:16 -070039
40 q.setRrLabel(Name("/ndnsim/www"));
41 BOOST_CHECK_EQUAL(q.getRrLabel(), Name("ndnsim/www"));
42 BOOST_CHECK_EQUAL(q.getRrLabel(), Name("/ndnsim/www"));
Shock Jiang01712f32014-10-01 14:34:16 -070043 BOOST_CHECK_EQUAL(q.getZone(), zone);
44 BOOST_CHECK_EQUAL(q.getQueryType(), qType);
45
46 q.setRrType(ndns::label::CERT_RR_TYPE);
47 BOOST_CHECK_EQUAL(q.getRrType(), label::CERT_RR_TYPE);
48
Yumin Xia4e561892016-10-21 10:48:01 -070049 auto link = make_shared<Link>("/ndn/link/NDNS/test/NS");
50 for (int i = 1; i <= 5; i++) {
51 link->addDelegation(i, std::string("/link/") + to_string(i));
52 }
53 // link has to be signed first, then wireDecode
Yumin Xia2c509c22017-02-09 14:37:36 -080054 m_keyChain.sign(*link, security::signingByIdentity(certIdentity));
Yumin Xia4e561892016-10-21 10:48:01 -070055
Yumin Xia2c509c22017-02-09 14:37:36 -080056 q.setDelegationListFromLink(*link);
57 BOOST_CHECK_EQUAL(q.getDelegationList(), link->getDelegationList());
Yumin Xia4e561892016-10-21 10:48:01 -070058
Shock Jiang01712f32014-10-01 14:34:16 -070059 Interest interest = q.toInterest();
Yumin Xia2c509c22017-02-09 14:37:36 -080060 BOOST_CHECK_EQUAL(interest.getForwardingHint(), link->getDelegationList());
Shock Jiang01712f32014-10-01 14:34:16 -070061
Yumin Xia6343c5b2016-10-20 15:45:50 -070062 ndns::Query q2(zone, qType);
63 BOOST_CHECK_EQUAL(q2.fromInterest(zone, interest), true);
Shock Jiang01712f32014-10-01 14:34:16 -070064
65 ndns::Query q3;
Yumin Xia6343c5b2016-10-20 15:45:50 -070066 BOOST_CHECK_EQUAL(q3.fromInterest(zone, interest), true);
Shock Jiang01712f32014-10-01 14:34:16 -070067
68 BOOST_CHECK_EQUAL(q, q3);
69 BOOST_CHECK_EQUAL(q, q2);
70
Yumin Xia6343c5b2016-10-20 15:45:50 -070071 ndns::Query q4(zone, qType);
Shock Jiang01712f32014-10-01 14:34:16 -070072 q4.setRrLabel("/ndnsim/www");
73 q4.setRrType(ndns::label::TXT_RR_TYPE);
74 interest = q4.toInterest();
75 ndns::Query q5;
76
Yumin Xia6343c5b2016-10-20 15:45:50 -070077 BOOST_CHECK_EQUAL(q5.fromInterest(zone, interest), true);
Shock Jiang01712f32014-10-01 14:34:16 -070078 BOOST_CHECK_EQUAL(q4, q5);
79 BOOST_CHECK_NE(q2, q4);
80 }
81
82BOOST_AUTO_TEST_SUITE_END()
83
Alexander Afanasyevfde570c2016-12-19 16:02:55 -080084} // namespace tests
85} // namespace ndns
Shock Jiang01712f32014-10-01 14:34:16 -070086} // namespace ndn