blob: 01d7f47114c3b423fb801baf3ea3fb727eb1ac55 [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2016, Regents of the University of California,
4 * 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
26#include "nfd-status/format-helpers.hpp"
27
28#include "tests/test-common.hpp"
29
30namespace nfd {
31namespace tools {
32namespace nfd_status {
33namespace tests {
34
35using boost::test_tools::output_test_stream;
36
37BOOST_AUTO_TEST_SUITE(NfdStatus)
38BOOST_AUTO_TEST_SUITE(TestFormatHelpers)
39
40BOOST_AUTO_TEST_SUITE(Xml)
41
42BOOST_AUTO_TEST_CASE(TextEscaping)
43{
44 output_test_stream os;
45 os << xml::Text{"\"less than\" & 'greater than' surround XML <element> tag name"};
46
47 BOOST_CHECK(os.is_equal("&quot;less than&quot; &amp; &apos;greater than&apos;"
48 " surround XML &lt;element&gt; tag name"));
49}
50
51BOOST_AUTO_TEST_SUITE_END() // Xml
52
53BOOST_AUTO_TEST_SUITE(Text)
54
55BOOST_AUTO_TEST_CASE(Sep)
56{
57 output_test_stream os;
58 text::Separator sep(",");
59 for (int i = 1; i <= 3; ++i) {
60 os << sep << i;
61 }
62
63 BOOST_CHECK(os.is_equal("1,2,3"));
64}
65
66BOOST_AUTO_TEST_SUITE_END() // Text
67
68BOOST_AUTO_TEST_SUITE_END() // TestFormatHelpers
69BOOST_AUTO_TEST_SUITE_END() // NfdStatus
70
71} // namespace tests
72} // namespace nfd_status
73} // namespace tools
74} // namespace nfd