blob: a9e4c87383f9b28dbf78c4e48a868eb54d6c8ce2 [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberryde332452018-01-30 11:45:32 -07002/*
Davide Pesaventoc52cd5e2022-03-05 20:40:54 -05003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi38f4ce92016-08-04 10:01:52 +00004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
Junxiao Shi331ade72016-08-19 14:07:19 +000026#include "nfdc/format-helpers.hpp"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000027
28#include "tests/test-common.hpp"
29
Davide Pesaventocf9e1c72019-12-22 17:56:07 -050030#include <boost/test/tools/output_test_stream.hpp>
Davide Pesaventocf9e1c72019-12-22 17:56:07 -050031
Junxiao Shi38f4ce92016-08-04 10:01:52 +000032namespace nfd {
33namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000034namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000035namespace tests {
36
37using boost::test_tools::output_test_stream;
38
Junxiao Shi331ade72016-08-19 14:07:19 +000039BOOST_AUTO_TEST_SUITE(Nfdc)
Junxiao Shi38f4ce92016-08-04 10:01:52 +000040BOOST_AUTO_TEST_SUITE(TestFormatHelpers)
41
42BOOST_AUTO_TEST_SUITE(Xml)
43
44BOOST_AUTO_TEST_CASE(TextEscaping)
45{
46 output_test_stream os;
47 os << xml::Text{"\"less than\" & 'greater than' surround XML <element> tag name"};
48
49 BOOST_CHECK(os.is_equal("&quot;less than&quot; &amp; &apos;greater than&apos;"
50 " surround XML &lt;element&gt; tag name"));
51}
52
Junxiao Shi7a36ac72018-03-21 15:23:22 +000053BOOST_AUTO_TEST_CASE(Flag)
54{
55 output_test_stream os;
56 os << "<A>" << xml::Flag{"B", true} << "</A><C>" << xml::Flag{"D", false} << "</C>";
57
58 BOOST_CHECK(os.is_equal("<A><B/></A><C></C>"));
59}
60
Eric Newberryde332452018-01-30 11:45:32 -070061BOOST_AUTO_TEST_CASE(DurationFormatting)
62{
63 time::nanoseconds d1 = 53000_s + 87_ms + 3_us;
64 BOOST_CHECK_EQUAL(xml::formatDuration(d1), "PT53000.087S");
65
66 time::nanoseconds d2 = 56_s;
67 BOOST_CHECK_EQUAL(xml::formatDuration(d2), "PT56S");
68
69 time::nanoseconds d3 = 3_min;
70 BOOST_CHECK_EQUAL(xml::formatDuration(d3), "PT180S");
71
72 time::nanoseconds d4 = 0_ns;
73 BOOST_CHECK_EQUAL(xml::formatDuration(d4), "PT0S");
74
75 time::nanoseconds d5 = 1_ms;
76 BOOST_CHECK_EQUAL(xml::formatDuration(d5), "PT0.001S");
77
78 time::nanoseconds d6 = -53_s - 250_ms;
79 BOOST_CHECK_EQUAL(xml::formatDuration(d6), "-PT53.250S");
80
81 time::nanoseconds d7 = 1_us;
82 BOOST_CHECK_EQUAL(xml::formatDuration(d7), "PT0S");
83}
84
Junxiao Shi38f4ce92016-08-04 10:01:52 +000085BOOST_AUTO_TEST_SUITE_END() // Xml
86
87BOOST_AUTO_TEST_SUITE(Text)
88
Junxiao Shi6c135622016-11-21 14:30:33 +000089BOOST_AUTO_TEST_CASE(Space)
90{
91 output_test_stream os;
92 os << 'A' << text::Spaces{-1} << 'B' << text::Spaces{0} << 'C' << text::Spaces{5} << 'D';
93
94 BOOST_CHECK(os.is_equal("ABC D"));
95}
96
Junxiao Shi38f4ce92016-08-04 10:01:52 +000097BOOST_AUTO_TEST_CASE(Sep)
98{
99 output_test_stream os;
100 text::Separator sep(",");
101 for (int i = 1; i <= 3; ++i) {
102 os << sep << i;
103 }
104
105 BOOST_CHECK(os.is_equal("1,2,3"));
106}
107
Junxiao Shi056815e2017-01-29 16:39:19 +0000108static void
109printItemAttributes(std::ostream& os, bool wantMultiLine)
110{
111 text::ItemAttributes ia(wantMultiLine, 3);
112 os << ia("id") << 500
113 << ia("uri") << "udp4://192.0.2.1:6363"
114 << ia.end();
115}
116
117BOOST_AUTO_TEST_CASE(ItemAttributesSingleLine)
118{
119 output_test_stream os;
120 printItemAttributes(os, false);
121 BOOST_CHECK(os.is_equal("id=500 uri=udp4://192.0.2.1:6363"));
122}
123
124BOOST_AUTO_TEST_CASE(ItemAttributesMultiLine)
125{
126 output_test_stream os;
127 printItemAttributes(os, true);
128 BOOST_CHECK(os.is_equal(" id=500\nuri=udp4://192.0.2.1:6363\n"));
129}
130
Junxiao Shi8dc473a2018-03-02 15:10:18 +0000131BOOST_AUTO_TEST_CASE(OnOff)
132{
133 output_test_stream os;
134 os << 'A' << text::OnOff{true} << 'B' << text::OnOff{false} << 'C';
135
136 BOOST_CHECK(os.is_equal("AonBoffC"));
137}
138
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000139BOOST_AUTO_TEST_SUITE_END() // Text
140
141BOOST_AUTO_TEST_SUITE_END() // TestFormatHelpers
Junxiao Shi331ade72016-08-19 14:07:19 +0000142BOOST_AUTO_TEST_SUITE_END() // Nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000143
144} // namespace tests
Junxiao Shi331ade72016-08-19 14:07:19 +0000145} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000146} // namespace tools
147} // namespace nfd