1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
//
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/url
//
// Test that header file is self-contained.
#include <boost/url/scheme.hpp>
#include <boost/url/grammar/ci_string.hpp>
#include "test_suite.hpp"
namespace boost {
namespace urls {
class scheme_test
{
public:
void
check(
std::string s0,
scheme sc0 = scheme::unknown)
{
auto sc1 =
string_to_scheme(s0);
if(! BOOST_TEST(sc1 == sc0))
return;
if(sc0 == scheme::unknown)
return;
auto s1 = to_string(sc1);
for(auto& c : s0)
c = grammar::to_lower(c);
BOOST_TEST_EQ(s1, s0);
BOOST_TEST(s1 != to_string(
scheme::unknown));
}
void
run()
{
// (none)
check("", scheme::none);
// ftp
check("f");
check("ft");
check("f0");
check("ftp0");
check("ft0");
check("f00");
check("ftp", scheme::ftp);
check("Ftp", scheme::ftp);
check("FTP", scheme::ftp);
// file
check("f");
check("fi");
check("fil");
check("f0");
check("f00");
check("f000");
check("fi00");
check("fil0");
check("file0");
check("file", scheme::file);
check("File", scheme::file);
check("FILE", scheme::file);
// http
check("h");
check("ht");
check("htt");
check("h0");
check("h00");
check("h000");
check("ht00");
check("htt");
check("http0");
check("http", scheme::http);
check("htTp", scheme::http);
check("HTTP", scheme::http);
// https
check("h");
check("ht");
check("htt");
check("h0");
check("h00");
check("h000");
check("h0000");
check("ht000");
check("htt00");
check("http0");
check("https", scheme::https);
check("htTps", scheme::https);
check("HTTPS", scheme::https);
// ws
check("w");
check("w0");
check("w00");
check("ws0");
check("ws", scheme::ws);
check("Ws", scheme::ws);
check("wS", scheme::ws);
check("WS", scheme::ws);
// wss
check("w");
check("w0");
check("w00");
check("w000");
check("ws0");
check("wss0");
check("wss", scheme::wss);
check("Wss", scheme::wss);
check("wSs", scheme::wss);
check("WSS", scheme::wss);
// unknown
check("gopher");
check("magnet");
check("mailto");
BOOST_TEST_EQ(default_port(scheme::none), 0);
BOOST_TEST_EQ(default_port(scheme::unknown), 0);
BOOST_TEST_EQ(default_port(scheme::ftp), 21);
BOOST_TEST_EQ(default_port(scheme::file), 0);
BOOST_TEST_EQ(default_port(scheme::http), 80);
BOOST_TEST_EQ(default_port(scheme::https), 443);
BOOST_TEST_EQ(default_port(scheme::ws), 80);
BOOST_TEST_EQ(default_port(scheme::wss), 443);
}
};
TEST_SUITE(
scheme_test,
"boost.url.scheme");
} // urls
} // boost
|