blob: d3b445025bc86eeaf7b115053a03b160fc341bd3 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/network/test/test_url_loader_factory.h"
#include "base/logging.h"
#include "base/test/scoped_task_environment.h"
#include "mojo/public/cpp/system/data_pipe_utils.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "services/network/test/test_url_loader_client.h"
#include "services/network/test/test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace network {
class TestURLLoaderFactoryTest : public testing::Test {
public:
TestURLLoaderFactoryTest() {}
~TestURLLoaderFactoryTest() override {}
void SetUp() override {}
void StartRequest(const std::string& url) { StartRequest(url, &client_); }
void StartRequest(const std::string& url,
TestURLLoaderClient* client,
int load_flags = 0,
bool report_raw_headers = false) {
ResourceRequest request;
request.url = GURL(url);
request.load_flags = load_flags;
request.report_raw_headers = report_raw_headers;
factory_.CreateLoaderAndStart(
mojo::MakeRequest(&loader_), 0, 0, 0, request,
client->CreateInterfacePtr(),
net::MutableNetworkTrafficAnnotationTag(TRAFFIC_ANNOTATION_FOR_TESTS));
}
std::string GetData(TestURLLoaderClient* client) {
std::string response;
EXPECT_TRUE(client->response_body().is_valid());
EXPECT_TRUE(
mojo::BlockingCopyToString(client->response_body_release(), &response));
return response;
}
TestURLLoaderFactory* factory() { return &factory_; }
TestURLLoaderClient* client() { return &client_; }
private:
base::test::ScopedTaskEnvironment scoped_task_environment_;
TestURLLoaderFactory factory_;
mojom::URLLoaderPtr loader_;
TestURLLoaderClient client_;
};
TEST_F(TestURLLoaderFactoryTest, Simple) {
std::string url = "http://foo";
std::string data = "bar";
factory()->AddResponse(url, data);
StartRequest(url);
client()->RunUntilComplete();
EXPECT_EQ(GetData(client()), data);
// Data can be fetched multiple times.
mojom::URLLoaderPtr loader2;
TestURLLoaderClient client2;
StartRequest(url, &client2);
client2.RunUntilComplete();
EXPECT_EQ(GetData(&client2), data);
}
TEST_F(TestURLLoaderFactoryTest, AddResponse404) {
std::string url = "http://foo";
std::string body = "Sad robot";
factory()->AddResponse(url, body, net::HTTP_NOT_FOUND);
StartRequest(url);
client()->RunUntilComplete();
ASSERT_TRUE(client()->response_head().headers != nullptr);
EXPECT_EQ(net::HTTP_NOT_FOUND,
client()->response_head().headers->response_code());
EXPECT_EQ(GetData(client()), body);
}
TEST_F(TestURLLoaderFactoryTest, MultipleSameURL) {
std::string url = "http://foo";
std::string data1 = "bar1";
std::string data2 = "bar2";
factory()->AddResponse(url, data1);
factory()->AddResponse(url, data2);
StartRequest(url);
client()->RunUntilComplete();
EXPECT_EQ(GetData(client()), data2);
}
TEST_F(TestURLLoaderFactoryTest, MultipleSameURL2) {
// Tests for two requests to same URL happening before AddResponse.
std::string url = "http://foo";
std::string data = "bar1";
StartRequest(url);
TestURLLoaderClient client2;
StartRequest(url, &client2);
factory()->AddResponse(url, data);
client()->RunUntilComplete();
client2.RunUntilComplete();
EXPECT_EQ(GetData(client()), data);
EXPECT_EQ(GetData(&client2), data);
}
TEST_F(TestURLLoaderFactoryTest, Redirects) {
GURL url("http://example.test/");
net::RedirectInfo redirect_info;
redirect_info.status_code = 301;
redirect_info.new_url = GURL("http://example2.test/");
TestURLLoaderFactory::Redirects redirects{
{redirect_info, ResourceResponseHead()}};
URLLoaderCompletionStatus status;
std::string content = "foo";
status.decoded_body_length = content.size();
factory()->AddResponse(url, ResourceResponseHead(), content, status,
redirects);
StartRequest(url.spec());
client()->RunUntilComplete();
EXPECT_EQ(GetData(client()), content);
EXPECT_TRUE(client()->has_received_redirect());
EXPECT_EQ(redirect_info.new_url, client()->redirect_info().new_url);
}
TEST_F(TestURLLoaderFactoryTest, IsPending) {
std::string url = "http://foo/";
// Normal lifecycle.
EXPECT_FALSE(factory()->IsPending(url));
StartRequest(url);
EXPECT_TRUE(factory()->IsPending(url));
factory()->AddResponse(url, "hi");
client()->RunUntilComplete();
EXPECT_FALSE(factory()->IsPending(url));
// Cleanup between tests.
client()->Unbind();
factory()->ClearResponses();
// Now with cancellation.
StartRequest(url);
EXPECT_TRUE(factory()->IsPending(url));
client()->Unbind();
EXPECT_FALSE(factory()->IsPending(url));
}
TEST_F(TestURLLoaderFactoryTest, IsPendingLoadFlags) {
std::string url = "http://foo/";
std::string url2 = "http://bar/";
int load_flags_out = 0;
StartRequest(url);
EXPECT_TRUE(factory()->IsPending(url, &load_flags_out));
EXPECT_EQ(0, load_flags_out);
factory()->AddResponse(url, "hi");
client()->RunUntilComplete();
TestURLLoaderClient client2;
StartRequest(url2, &client2, 42);
EXPECT_TRUE(factory()->IsPending(url2, &load_flags_out));
EXPECT_EQ(42, load_flags_out);
factory()->AddResponse(url2, "bye");
client2.RunUntilComplete();
}
TEST_F(TestURLLoaderFactoryTest, NumPending) {
std::string url = "http://foo/";
std::string url2 = "http://bar/";
EXPECT_EQ(0, factory()->NumPending());
StartRequest(url);
EXPECT_EQ(1, factory()->NumPending());
client()->Unbind();
// All cancelled.
EXPECT_EQ(0, factory()->NumPending());
TestURLLoaderClient client2;
StartRequest(url2, &client2);
EXPECT_EQ(1, factory()->NumPending());
factory()->AddResponse(url2, "hello");
client2.RunUntilComplete();
EXPECT_EQ(0, factory()->NumPending());
}
TEST_F(TestURLLoaderFactoryTest, NumPending2) {
std::string url = "http://foo/";
EXPECT_EQ(0, factory()->NumPending());
StartRequest(url);
EXPECT_EQ(1, factory()->NumPending());
TestURLLoaderClient client2;
StartRequest(url, &client2);
EXPECT_EQ(2, factory()->NumPending());
factory()->AddResponse(url, "hello");
client2.RunUntilComplete();
EXPECT_EQ(0, factory()->NumPending());
}
TEST_F(TestURLLoaderFactoryTest, SimulateResponse) {
std::string url = "http://foo/";
std::string cookie_line = "my_cookie=myvalue";
network::URLLoaderCompletionStatus ok_status(net::OK);
ResourceResponseHead response_head =
CreateResourceResponseHead(net::HTTP_NOT_FOUND);
AddCookiesToResourceResponseHead({cookie_line}, &response_head);
// By default no request is pending.
EXPECT_FALSE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/""));
StartRequest(url);
EXPECT_EQ(1, factory()->NumPending());
// Try with the wrong URL
EXPECT_FALSE(factory()->SimulateResponseForPendingRequest(
GURL("http://this_is_not_the_url_you_are_looking_for"), ok_status,
response_head, /*content=*/""));
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/"hello"));
EXPECT_EQ(0, factory()->NumPending());
EXPECT_TRUE(client()->has_received_completion());
EXPECT_EQ(net::OK, client()->completion_status().error_code);
ASSERT_TRUE(client()->response_head().headers);
EXPECT_EQ(net::HTTP_NOT_FOUND,
client()->response_head().headers->response_code());
// Our cookie should be set.
int cookie_count = 0;
std::string value;
size_t iter = 0;
while (client()->response_head().headers->EnumerateHeader(&iter, "Set-Cookie",
&value)) {
EXPECT_EQ(cookie_line, value);
cookie_count++;
}
EXPECT_EQ(1, cookie_count);
std::string response;
EXPECT_TRUE(
mojo::BlockingCopyToString(client()->response_body_release(), &response));
EXPECT_EQ("hello", response);
}
TEST_F(TestURLLoaderFactoryTest, SimulateResponseMultipleRequests) {
std::string url = "http://foo/";
TestURLLoaderClient client1;
StartRequest(url, &client1);
TestURLLoaderClient client2;
StartRequest(url, &client2);
network::URLLoaderCompletionStatus ok_status(net::OK);
ResourceResponseHead response_head = CreateResourceResponseHead(net::HTTP_OK);
EXPECT_EQ(2, factory()->NumPending());
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/""));
EXPECT_EQ(1, factory()->NumPending());
EXPECT_TRUE(client1.has_received_completion());
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/""));
EXPECT_EQ(0, factory()->NumPending());
EXPECT_TRUE(client2.has_received_completion());
}
TEST_F(TestURLLoaderFactoryTest, SimulateResponseUrlMatch) {
std::string base_url = "http://foo/";
std::string full_url = base_url + "hello?parameter=bar";
network::URLLoaderCompletionStatus ok_status(net::OK);
ResourceResponseHead response_head = CreateResourceResponseHead(net::HTTP_OK);
StartRequest(full_url);
// Default is non URL prefix match.
EXPECT_FALSE(factory()->SimulateResponseForPendingRequest(
GURL(base_url), ok_status, response_head, /*content=*/""));
EXPECT_FALSE(factory()->SimulateResponseForPendingRequest(
GURL(base_url), ok_status, response_head, /*content=*/"",
TestURLLoaderFactory::kDefault));
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(base_url), ok_status, response_head, /*content=*/"",
TestURLLoaderFactory::kUrlMatchPrefix));
}
TEST_F(TestURLLoaderFactoryTest, SimulateResponseMostRecentMatch) {
std::string url = "http://foo/";
network::URLLoaderCompletionStatus ok_status(net::OK);
ResourceResponseHead response_head = CreateResourceResponseHead(net::HTTP_OK);
EXPECT_FALSE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/"",
TestURLLoaderFactory::kMostRecentMatch));
TestURLLoaderClient client1;
StartRequest(url, &client1);
TestURLLoaderClient client2;
StartRequest(url, &client2);
// test non matching URL when there are pending requests.
EXPECT_FALSE(factory()->SimulateResponseForPendingRequest(
GURL("http://bar"), ok_status, response_head, /*content=*/"",
TestURLLoaderFactory::kMostRecentMatch));
EXPECT_EQ(2, factory()->NumPending());
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/"",
TestURLLoaderFactory::kMostRecentMatch));
EXPECT_EQ(1, factory()->NumPending());
// Last sent request should have been served.
EXPECT_TRUE(client2.has_received_completion());
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/"",
TestURLLoaderFactory::kMostRecentMatch));
EXPECT_EQ(0, factory()->NumPending());
EXPECT_TRUE(client1.has_received_completion());
}
TEST_F(TestURLLoaderFactoryTest, SimulateResponseNoRawHeadersByDefault) {
std::string url = "http://foo/";
// Raw-headers are not reported by default.
StartRequest(url);
network::URLLoaderCompletionStatus ok_status(net::OK);
ResourceResponseHead response_head = CreateResourceResponseHead(net::HTTP_OK);
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/""));
EXPECT_TRUE(client()->has_received_completion());
EXPECT_FALSE(client()->response_head().raw_request_response_info);
}
TEST_F(TestURLLoaderFactoryTest, SimulateResponseReportRawHeaders) {
std::string url = "http://foo/";
std::string cookie_line = "my_cookie=myvalue";
TestURLLoaderClient client;
StartRequest(url, &client, /*load_flags=*/0, /*report_raw_headers=*/true);
network::URLLoaderCompletionStatus ok_status(net::OK);
ResourceResponseHead response_head = CreateResourceResponseHead(
net::HTTP_NOT_FOUND, /*report_raw_headers=*/true);
AddCookiesToResourceResponseHead({cookie_line}, &response_head);
EXPECT_TRUE(factory()->SimulateResponseForPendingRequest(
GURL(url), ok_status, response_head, /*content=*/"hello"));
EXPECT_TRUE(client.has_received_completion());
scoped_refptr<HttpRawRequestResponseInfo> raw_response_info =
client.response_head().raw_request_response_info;
ASSERT_TRUE(raw_response_info);
EXPECT_EQ(net::HTTP_NOT_FOUND, raw_response_info->http_status_code);
network::HttpRawRequestResponseInfo::HeadersVector headers =
raw_response_info->response_headers;
int cookie_count = 0;
for (auto iter = headers.begin(); iter != headers.end(); ++iter) {
if (iter->first == "Set-Cookie") {
cookie_count++;
EXPECT_EQ(cookie_line, iter->second);
}
}
}
} // namespace network