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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
|
/***
* Copyright (C) Microsoft. All rights reserved.
* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
*
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*
* Tests cases for using http_clients to outside websites.
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#include "stdafx.h"
#if defined(_MSC_VER) && !defined(__cplusplus_winrt)
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <winhttp.h>
#pragma comment(lib, "winhttp")
#endif
#include "cpprest/details/http_helpers.h"
#include "cpprest/rawptrstream.h"
#include "os_utilities.h"
#include <stdexcept>
using namespace web;
using namespace utility;
using namespace concurrency;
using namespace web::http;
using namespace web::http::client;
using namespace tests::common::utilities;
using namespace tests::functional::http::utilities;
namespace tests
{
namespace functional
{
namespace http
{
namespace client
{
SUITE(outside_tests)
{
TEST_FIXTURE(uri_address, outside_cnn_dot_com)
{
handle_timeout([] {
// http://www.cnn.com redirects users from countries outside of the US to the "http://edition.cnn.com/" drop
// location
http_client client(U("http://edition.cnn.com"));
// CNN's main page doesn't use chunked transfer encoding.
http_response response = client.request(methods::GET).get();
auto code = response.status_code();
VERIFY_IS_TRUE(code == status_codes::OK || code == status_codes::MovedPermanently);
response.content_ready().wait();
// CNN's other pages do use chunked transfer encoding.
response = client.request(methods::GET, U("us")).get();
code = response.status_code();
VERIFY_IS_TRUE(code == status_codes::OK || code == status_codes::MovedPermanently);
response.content_ready().wait();
});
}
TEST_FIXTURE(uri_address, outside_wikipedia_compressed_http_response)
{
if (web::http::compression::builtin::supported() == false)
{
// On platforms which do not support compressed http, nothing to check.
return;
}
http_client_config config;
config.set_request_compressed_response(true);
http_client client(U("https://en.wikipedia.org/wiki/HTTP_compression"), config);
http_request httpRequest(methods::GET);
http_response response = client.request(httpRequest).get();
VERIFY_ARE_EQUAL(status_codes::OK, response.status_code());
response.content_ready().wait();
auto s = response.extract_utf8string().get();
VERIFY_IS_FALSE(s.empty());
utility::string_t encoding;
VERIFY_IS_TRUE(response.headers().match(web::http::header_names::content_encoding, encoding));
VERIFY_ARE_EQUAL(encoding, U("gzip"));
}
TEST_FIXTURE(uri_address, outside_google_dot_com)
{
// Use code.google.com instead of www.google.com, which redirects
http_client client(U("http://code.google.com"));
http_request request(methods::GET);
for (int i = 0; i < 2; ++i)
{
http_response response = client.request(request).get();
VERIFY_ARE_EQUAL(status_codes::OK, response.status_code());
}
}
TEST_FIXTURE(uri_address, multiple_https_requests)
{
handle_timeout([&] {
// Use code.google.com instead of www.google.com, which redirects
http_client client(U("https://code.google.com"));
http_response response;
for (int i = 0; i < 5; ++i)
{
response = client.request(methods::GET).get();
VERIFY_ARE_EQUAL(status_codes::OK, response.status_code());
response.content_ready().wait();
}
});
}
#if (defined(_MSC_VER) && (_MSC_VER >= 1900)) && !CPPREST_FORCE_PPLX
TEST_FIXTURE(uri_address, multiple_https_requests_sync_scheduler)
{
struct sync_scheduler : public scheduler_interface
{
public:
virtual void schedule(TaskProc_t function, PVOID context) override { function(context); }
};
// Save the current ambient scheduler
const auto scheduler = get_cpprestsdk_ambient_scheduler();
// Change the ambient scheduler to one that schedules synchronously
static std::shared_ptr<scheduler_interface> syncScheduler = std::make_shared<sync_scheduler>();
set_cpprestsdk_ambient_scheduler(syncScheduler);
handle_timeout([&] {
// Use code.google.com instead of www.google.com, which redirects
http_client client(U("https://code.google.com"));
http_response response;
for (int i = 0; i < 5; ++i)
{
response = client.request(methods::GET).get();
VERIFY_ARE_EQUAL(status_codes::OK, response.status_code());
response.content_ready().wait();
}
});
// Revert to the original scheduler
set_cpprestsdk_ambient_scheduler(scheduler);
}
#endif
TEST_FIXTURE(uri_address, reading_google_stream)
{
handle_timeout([&] {
// Use code.google.com instead of www.google.com, which redirects
http_client simpleclient(U("http://code.google.com"));
utility::string_t path = m_uri.query();
http_response response = simpleclient.request(::http::methods::GET).get();
uint8_t chars[71];
memset(chars, 0, sizeof(chars));
streams::rawptr_buffer<uint8_t> temp(chars, sizeof(chars));
VERIFY_ARE_EQUAL(response.body().read(temp, 70).get(), 70);
// Uncomment the following line to output the chars.
// std::cout << chars << '\n';
VERIFY_ARE_EQUAL(strcmp((const char*)chars,
"<html>\n <head>\n <meta name=\"google-site-verification\" content=\"4zc"),
0);
});
}
TEST_FIXTURE(uri_address, no_transfer_encoding_content_length)
{
handle_timeout([] {
http_client client(U("http://ws.audioscrobbler.com/2.0/") U(
"?method=artist.gettoptracks&artist=cher&api_key=6fcd59047568e89b1615975081258990&format=json"));
client.request(methods::GET)
.then([](http_response response) {
VERIFY_ARE_EQUAL(response.status_code(), status_codes::OK);
VERIFY_IS_FALSE(response.headers().has(header_names::content_length) &&
response.headers().has(header_names::transfer_encoding));
return response.extract_string();
})
.then([](string_t result) {
// Verify that the body size isn't empty.
VERIFY_IS_TRUE(result.size() > 0);
})
.wait();
});
}
// Note additional sites for testing can be found at:
// https://badssl.com/
// https://www.ssllabs.com/ssltest/
// http://www.internetsociety.org/deploy360/resources/dane-test-sites/
// https://onlinessl.netlock.hu/#
static void test_failed_ssl_cert(const uri& base_uri)
{
handle_timeout([&base_uri] {
http_client client(base_uri);
auto requestTask = client.request(methods::GET);
VERIFY_THROWS(requestTask.get(), http_exception);
});
}
#if !defined(__cplusplus_winrt)
static void test_ignored_ssl_cert(const uri& base_uri)
{
handle_timeout([&base_uri] {
http_client_config config;
config.set_validate_certificates(false);
http_client client(base_uri, config);
auto response = client.request(methods::GET).get();
VERIFY_ARE_EQUAL(status_codes::OK, response.status_code());
});
}
#endif // !defined(__cplusplus_winrt)
TEST(server_selfsigned_cert) { test_failed_ssl_cert(U("https://self-signed.badssl.com/")); }
#if !defined(__cplusplus_winrt)
TEST(server_selfsigned_cert_ignored) { test_ignored_ssl_cert(U("https://self-signed.badssl.com/")); }
#endif // !defined(__cplusplus_winrt)
TEST(server_hostname_mismatch) { test_failed_ssl_cert(U("https://wrong.host.badssl.com/")); }
#if !defined(__cplusplus_winrt)
TEST(server_hostname_host_override)
{
handle_timeout([] {
http_client client(U("https://wrong.host.badssl.com/"));
http_request req(methods::GET);
req.headers().add(U("Host"), U("badssl.com"));
auto response = client.request(req).get();
VERIFY_ARE_EQUAL(status_codes::OK, response.status_code());
});
}
TEST(server_hostname_mismatch_ignored) { test_ignored_ssl_cert(U("https://wrong.host.badssl.com/")); }
TEST(server_hostname_host_override_after_upgrade)
{
http_client client(U("http://198.35.26.96/"));
http_request req(methods::GET);
req.headers().add(U("Host"), U("en.wikipedia.org"));
auto response = client.request(req).get();
// WinHTTP will transparently follow the HTTP 301 upgrade request redirect,
// ASIO does not and will return the 301 directly.
const auto statusCode = response.status_code();
CHECK(statusCode == status_codes::OK || statusCode == status_codes::MovedPermanently);
}
#endif // !defined(__cplusplus_winrt)
TEST(server_cert_expired) { test_failed_ssl_cert(U("https://expired.badssl.com/")); }
#if !defined(__cplusplus_winrt)
TEST(server_cert_expired_ignored) { test_ignored_ssl_cert(U("https://expired.badssl.com/")); }
#endif // !defined(__cplusplus_winrt)
TEST(server_cert_revoked, "Ignore:Android", "229", "Ignore:Apple", "229", "Ignore:Linux", "229")
{
test_failed_ssl_cert(U("https://revoked.badssl.com/"));
}
#if !defined(__cplusplus_winrt)
TEST(server_cert_revoked_ignored) { test_ignored_ssl_cert(U("https://revoked.badssl.com/")); }
#endif // !defined(__cplusplus_winrt)
TEST(server_cert_untrusted) { test_failed_ssl_cert(U("https://untrusted-root.badssl.com/")); }
#if !defined(__cplusplus_winrt)
TEST(server_cert_untrusted_ignored) { test_ignored_ssl_cert(U("https://untrusted-root.badssl.com/")); }
#endif // !defined(__cplusplus_winrt)
#if !defined(__cplusplus_winrt)
TEST(ignore_server_cert_invalid, "Ignore:Android", "229", "Ignore:Apple", "229", "Ignore:Linux", "229")
{
handle_timeout([] {
http_client_config config;
config.set_validate_certificates(false);
config.set_timeout(std::chrono::seconds(1));
http_client client(U("https://expired.badssl.com/"), config);
auto request = client.request(methods::GET).get();
VERIFY_ARE_EQUAL(status_codes::OK, request.status_code());
});
}
#endif // !defined(__cplusplus_winrt)
TEST_FIXTURE(uri_address, outside_ssl_json)
{
// Create URI for:
// https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId=UUF1hMUVwlrvlVMjUGOZExgg&key=AIzaSyAviHxf_y0SzNoAq3iKqvWVE4KQ0yylsnk
uri_builder playlistUri(U("https://www.googleapis.com/youtube/v3/playlistItems?"));
playlistUri.append_query(U("part"), U("snippet"));
playlistUri.append_query(U("playlistId"), U("UUF1hMUVwlrvlVMjUGOZExgg"));
playlistUri.append_query(U("key"), U("AIzaSyAviHxf_y0SzNoAq3iKqvWVE4KQ0yylsnk"));
// Send request
web::http::client::http_client playlistClient(playlistUri.to_uri());
handle_timeout([&] {
// Retry up to 4 times.
for (int i = 0; i < 4; ++i)
{
try
{
playlistClient.request(methods::GET)
.then([=](http_response playlistResponse) -> pplx::task<json::value> {
return playlistResponse.extract_json();
})
.then([=](json::value v) {
int count = 0;
auto& obj = v.as_object();
VERIFY_ARE_NOT_EQUAL(obj.find(U("pageInfo")), obj.end());
VERIFY_ARE_NOT_EQUAL(obj.find(U("items")), obj.end());
auto& items = obj[U("items")];
for (auto iter = items.as_array().cbegin(); iter != items.as_array().cend(); ++iter)
{
const auto& item = *iter;
auto iSnippet = item.as_object().find(U("snippet"));
if (iSnippet == item.as_object().end())
{
throw std::runtime_error("snippet key not found");
}
auto iTitle = iSnippet->second.as_object().find(U("title"));
if (iTitle == iSnippet->second.as_object().end())
{
throw std::runtime_error("title key not found");
}
auto name = iTitle->second.serialize();
count++;
}
VERIFY_ARE_EQUAL(3, count); // Update this accordingly, if the number of items changes
})
.wait();
break;
}
catch (web::http::http_exception const& e)
{
#if defined(_MSC_VER) && !defined(__cplusplus_winrt)
if (e.error_code().value() != API_QUERY_DATA_AVAILABLE || i == 3)
{
// If we didn't get a "connection broken" error (or we are on the last retry), rethrow it
throw;
}
#else
CASABLANCA_UNREFERENCED_PARAMETER(e);
throw;
#endif
os_utilities::sleep(1000);
}
}
});
}
} // SUITE(outside_tests)
} // namespace client
} // namespace http
} // namespace functional
} // namespace tests
|