]> granicus.if.org Git - icinga2/blob - test/remote-url.cpp
Replace BOOST_FOREACH with range-based for loops
[icinga2] / test / remote-url.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/)  *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "base/array.hpp"
21 #include "remote/url.hpp"
22 #include <boost/test/unit_test.hpp>
23 #include <boost/assign/list_of.hpp>
24
25 using namespace icinga;
26
27 BOOST_AUTO_TEST_SUITE(remote_url)
28
29 BOOST_AUTO_TEST_CASE(id_and_path)
30 {
31         Url::Ptr url = new Url("http://icinga.org/foo/bar/baz?hurr=durr");
32
33         BOOST_CHECK(url->GetScheme() == "http");
34
35         BOOST_CHECK(url->GetAuthority() == "icinga.org");
36
37         std::vector<String> PathCorrect;
38         PathCorrect.push_back("foo");
39         PathCorrect.push_back("bar");
40         PathCorrect.push_back("baz");
41
42         BOOST_CHECK(url->GetPath() == PathCorrect);
43 }
44
45 BOOST_AUTO_TEST_CASE(get_and_set)
46 {
47         Url::Ptr url = new Url();
48         url->SetScheme("ftp");
49         url->SetUsername("Horst");
50         url->SetPassword("Seehofer");
51         url->SetHost("koenigreich.bayern");
52         url->SetPort("1918");
53         std::vector<String> p = boost::assign::list_of("path")("to")("münchen");
54         url->SetPath(p);
55         BOOST_CHECK(url->Format(true) == "ftp://Horst:Seehofer@koenigreich.bayern:1918/path/to/m%C3%BCnchen");
56
57         std::map<String, std::vector<String> > m;
58         std::vector<String> v1 = boost::assign::list_of("hip")("hip")("hurra");
59         std::vector<String> v2 = boost::assign::list_of("äü^ä+#ül-");
60         std::vector<String> v3 = boost::assign::list_of("1")("2");
61         m.insert(std::pair<String, std::vector<String> >("shout", v1));
62         m.insert(std::pair<String, std::vector<String> >("sonderzeichen", v2));
63         url->SetQuery(m);
64         url->SetQueryElements("count", v3);
65         url->AddQueryElement("count", "3");
66
67         std::map<String, std::vector<String> > mn = url->GetQuery();
68         BOOST_CHECK(mn["shout"][0] == v1[0]);
69         BOOST_CHECK(mn["sonderzeichen"][0] == v2[0]);
70         BOOST_CHECK(mn["count"][2] == "3");
71 }
72
73 BOOST_AUTO_TEST_CASE(parameters)
74 {
75         Url::Ptr url = new Url("https://icinga.org/hya/?rain=karl&rair=robert&foo[]=bar");
76
77         BOOST_CHECK(url->GetQueryElement("rair") == "robert");
78         BOOST_CHECK(url->GetQueryElement("rain") == "karl");
79         std::vector<String> test = url->GetQueryElements("foo");
80         BOOST_CHECK(test.size() == 1);
81         BOOST_CHECK(test[0] == "bar");
82 }
83
84 BOOST_AUTO_TEST_CASE(format)
85 {
86         Url::Ptr url = new Url("http://foo.bar/baz/?hop=top&flop=sop#iLIKEtrains");
87         BOOST_CHECK(new Url(url->Format()));
88
89         url = new Url("//main.args/////////?k[]=one&k[]=two#three");
90         BOOST_CHECK(new Url(url->Format()));
91
92         url = new Url("/foo/bar/index.php?blaka");
93         BOOST_CHECK(new Url(url->Format()));
94
95         url = new Url("/");
96         BOOST_CHECK(url->Format() == "/");
97 }
98
99 BOOST_AUTO_TEST_CASE(illegal_legal_strings)
100 {
101         BOOST_CHECK(new Url("/?foo=barr&foo[]=bazz"));
102         BOOST_CHECK_THROW(new Url("/?]=gar"), std::invalid_argument);
103         BOOST_CHECK_THROW(new Url("/#?[]"), std::invalid_argument);
104         BOOST_CHECK(new Url("/?foo=bar&foo=ba"));
105         BOOST_CHECK_THROW(new Url("/?foo=bar&[]=d"), std::invalid_argument);
106         BOOST_CHECK(new Url("/?fo=&bar=garOA"));
107         BOOST_CHECK(new Url("https://127.0.0.1:5665/demo?type=Service&filter=service.state%3E0"));
108         BOOST_CHECK(new Url("/?foo=baz??&\?\?=/?"));
109         BOOST_CHECK(new Url("/"));
110         BOOST_CHECK(new Url("///////"));
111         BOOST_CHECK(new Url("/??[]=?#?=?"));
112         BOOST_CHECK(new Url("http://foo/#bar"));
113         BOOST_CHECK(new Url("//foo/"));
114 }
115
116 BOOST_AUTO_TEST_SUITE_END()