]> granicus.if.org Git - icinga2/blob - test/remote-url.cpp
Merge pull request #5929 from Icinga/feature/remove-boost-assign
[icinga2] / test / remote-url.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
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 <BoostTestTargetConfig.h>
23
24 using namespace icinga;
25
26 BOOST_AUTO_TEST_SUITE(remote_url)
27
28 BOOST_AUTO_TEST_CASE(id_and_path)
29 {
30         Url::Ptr url = new Url("http://icinga.com/foo/bar/baz?hurr=durr");
31
32         BOOST_CHECK(url->GetScheme() == "http");
33
34         BOOST_CHECK(url->GetAuthority() == "icinga.com");
35
36         std::vector<String> PathCorrect;
37         PathCorrect.push_back("foo");
38         PathCorrect.push_back("bar");
39         PathCorrect.push_back("baz");
40
41         BOOST_CHECK(url->GetPath() == PathCorrect);
42 }
43
44 BOOST_AUTO_TEST_CASE(get_and_set)
45 {
46         Url::Ptr url = new Url();
47         url->SetScheme("ftp");
48         url->SetUsername("Horst");
49         url->SetPassword("Seehofer");
50         url->SetHost("koenigreich.bayern");
51         url->SetPort("1918");
52         url->SetPath({ "path", "to", "münchen" });
53
54         BOOST_CHECK(url->Format(false, true) == "ftp://Horst:Seehofer@koenigreich.bayern:1918/path/to/m%C3%BCnchen");
55
56         std::map<String, std::vector<String> > m;
57         std::vector<String> v1 { "hip", "hip", "hurra" };
58         std::vector<String> v2 { "äü^ä+#ül-" };
59         std::vector<String> v3 { "1", "2" };
60         m.insert(std::make_pair("shout", v1));
61         m.insert(std::make_pair("sonderzeichen", v2));
62         url->SetQuery(m);
63         url->SetQueryElements("count", v3);
64         url->AddQueryElement("count", "3");
65
66         std::map<String, std::vector<String> > mn = url->GetQuery();
67         BOOST_CHECK(mn["shout"][0] == v1[0]);
68         BOOST_CHECK(mn["sonderzeichen"][0] == v2[0]);
69         BOOST_CHECK(mn["count"][2] == "3");
70 }
71
72 BOOST_AUTO_TEST_CASE(parameters)
73 {
74         Url::Ptr url = new Url("https://icinga.com/hya/?rain=karl&rair=robert&foo[]=bar");
75
76         BOOST_CHECK(url->GetQueryElement("rair") == "robert");
77         BOOST_CHECK(url->GetQueryElement("rain") == "karl");
78         std::vector<String> test = url->GetQueryElements("foo");
79         BOOST_CHECK(test.size() == 1);
80         BOOST_CHECK(test[0] == "bar");
81 }
82
83 BOOST_AUTO_TEST_CASE(format)
84 {
85         Url::Ptr url = new Url("http://foo.bar/baz/?hop=top&flop=sop#iLIKEtrains");
86         Url::Ptr url2;
87         BOOST_CHECK(url2 = new Url(url->Format(false, false)));
88
89         url = new Url("//main.args/////////?k[]=one&k[]=two#three");
90         BOOST_CHECK(url2 = new Url(url->Format(false, false)));
91
92         url = new Url("/foo/bar/index.php?blaka");
93         BOOST_CHECK(url2 = new Url(url->Format(false, false)));
94         BOOST_CHECK(url->Format(false, false) == "/foo/bar/index.php?blaka");
95
96         url = new Url("/");
97         BOOST_CHECK(url->Format(false, false) == "/");
98 }
99
100 BOOST_AUTO_TEST_CASE(illegal_legal_strings)
101 {
102         Url::Ptr url;
103         BOOST_CHECK(url = new Url("/?foo=barr&foo[]=bazz"));
104         BOOST_CHECK_THROW(url = new Url("/?]=gar"), std::invalid_argument);
105         BOOST_CHECK_THROW(url = new Url("/#?[]"), std::invalid_argument);
106         BOOST_CHECK(url = new Url("/?foo=bar&foo=ba"));
107         BOOST_CHECK_THROW(url = new Url("/?foo=bar&[]=d"), std::invalid_argument);
108         BOOST_CHECK(url = new Url("/?fo=&bar=garOA"));
109         BOOST_CHECK(url = new Url("https://127.0.0.1:5665/demo?type=Service&filter=service.state%3E0"));
110         BOOST_CHECK(url = new Url("/?foo=baz??&\?\?=/?"));
111         BOOST_CHECK(url = new Url("/"));
112         BOOST_CHECK(url = new Url("///////"));
113         BOOST_CHECK(url = new Url("/??[]=?#?=?"));
114         BOOST_CHECK(url = new Url("http://foo/#bar"));
115         BOOST_CHECK(url = new Url("//foo/"));
116 }
117
118 BOOST_AUTO_TEST_SUITE_END()