Files
@ f2a6ba12fc29
Branch filter:
Location: libtransport.git/3rdparty/cpprestsdk/tests/functional/http/client/request_uri_tests.cpp
f2a6ba12fc29
6.5 KiB
text/x-c++hdr
Slack frontend stub
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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | /***
* ==++==
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* ==--==
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*
* request_uri_tests.cpp
*
* Tests cases covering various kinds of request URIs with http_client.
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#include "stdafx.h"
using namespace web::http;
using namespace web::http::client;
using namespace tests::functional::http::utilities;
namespace tests { namespace functional { namespace http { namespace client {
SUITE(request_uri_tests)
{
// Tests path specified in requests with non-empty base path in client constructor.
TEST_FIXTURE(uri_address, path_non_empty_ctor)
{
uri address(U("http://localhost:45678/base_path/"));
// Path not starting with '/'.
{
test_http_server::scoped_server scoped(address);
http_client client(address);
test_connection(scoped.server(), &client, U("next_level"), U("/base_path/next_level"));
}
// Path starting with '/'.
{
test_http_server::scoped_server scoped(address);
http_client client(address);
test_connection(scoped.server(), &client, U("/next_level"), U("/base_path/next_level"));
}
}
// Tests path specified in requests with empty base path in client constructor.
TEST_FIXTURE(uri_address, path_empty_ctor)
{
uri address(U("http://localhost:45678"));
// NON empty path.
{
test_http_server::scoped_server scoped(address);
http_client client(address);
test_connection(scoped.server(), &client, U("next_level"), U("/next_level"));
}
// Request path of '*'
{
test_http_server::scoped_server scoped(address);
http_client client(address);
test_connection(scoped.server(), &client, U("*"), U("/*"));
}
// Empty base of '/' with request path starting with '/'.
address = uri(U("http://localhost:45678/"));
{
test_http_server::scoped_server scoped(address);
http_client client(address);
test_connection(scoped.server(), &client, U("/hehehe"), U("/hehehe"));
}
}
TEST_FIXTURE(uri_address, with_query_fragment)
{
test_http_server::scoped_server scoped(m_uri);
http_client client(m_uri);
// query
test_connection(scoped.server(), &client, U("/hehehe?key1=value2&"), U("/hehehe?key1=value2&"));
// fragment
// WinRT implementation percent encodes the '#'.
utility::string_t expected_value = U("/heheh?key1=value2#fragment");
#ifdef __cplusplus_winrt
expected_value = percent_encode_pound(expected_value);
#endif
test_connection(scoped.server(), &client, U("/heheh?key1=value2#fragment"), expected_value);
}
TEST_FIXTURE(uri_address, uri_encoding)
{
test_http_server::scoped_server scoped(m_uri);
test_http_server * p_server = scoped.server();
http_client client(m_uri);
// try with encoding string.
http_request msg(methods::GET);
msg.set_request_uri(U("/path1!!alreadyencoded"));
p_server->next_request().then([&](test_request *p_request)
{
http_asserts::assert_test_request_equals(p_request, methods::GET, U("/path1!!alreadyencoded"));
http_asserts::assert_test_request_contains_headers(p_request, msg.headers());
p_request->reply(200);
});
http_asserts::assert_response_equals(client.request(msg).get(), status_codes::OK);
// verify encoding actual happens with plain.
msg = http_request(methods::GET);
msg.set_request_uri(web::http::uri::encode_uri(U("/path1 /encode")));
VERIFY_ARE_EQUAL(U("/path1%20/encode"), msg.relative_uri().to_string());
p_server->next_request().then([&](test_request *p_request)
{
http_asserts::assert_test_request_equals(p_request, methods::GET, U("/path1%20/encode"));
http_asserts::assert_test_request_contains_headers(p_request, msg.headers());
p_request->reply(200);
});
http_asserts::assert_response_equals(client.request(msg).get(), status_codes::OK);
}
// Tests combining case URI query/fragments with relative URI query/fragments.
TEST_FIXTURE(uri_address, append_query_fragment)
{
// Try with query.
const utility::string_t base_uri_with_query = web::http::uri_builder(m_uri).append(U("/path1?key1=value1")).to_string();
{
test_http_server::scoped_server scoped(m_uri);
test_http_server * p_server = scoped.server();
http_client client(base_uri_with_query);
p_server->next_request().then([&](test_request *p_request)
{
// WinRT implementation percent encodes the '#'.
utility::string_t expected_value = U("/path1?key1=value1&key2=value2#frag");
#ifdef __cplusplus_winrt
expected_value = percent_encode_pound(expected_value);
#endif
http_asserts::assert_test_request_equals(p_request, methods::GET, expected_value);
p_request->reply(200);
});
http_asserts::assert_response_equals(client.request(methods::GET, U("?key2=value2#frag")).get(), status_codes::OK);
}
// Try with fragment.
const utility::string_t base_uri_with_frag(m_uri.to_string() + U("path1#fragment"));
{
test_http_server::scoped_server scoped(m_uri);
test_http_server * p_server = scoped.server();
http_client client(base_uri_with_frag);
p_server->next_request().then([&](test_request *p_request)
{
// WinRT implementation percent encodes the '#'.
utility::string_t expected_value = U("/path1/path2?key2=value2#fragmentfg2");
#ifdef __cplusplus_winrt
expected_value = percent_encode_pound(expected_value);
#endif
http_asserts::assert_test_request_equals(p_request, methods::GET, expected_value);
p_request->reply(200);
});
http_asserts::assert_response_equals(client.request(methods::GET, U("path2?key2=value2#fg2")).get(), status_codes::OK);
}
}
} // SUITE(request_uri_tests)
}}}}
|