#include "net/http/http_cache.h"
#include <stdint.h>
#include <algorithm>
#include <memory>
#include <set>
#include <utility>
#include <vector>
#include "base/containers/cxx20_erase.h"
#include "base/files/scoped_temp_dir.h"
#include "base/format_macros.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/simple_test_clock.h"
#include "base/time/time.h"
#include "base/trace_event/memory_allocator_dump.h"
#include "base/trace_event/memory_dump_request_args.h"
#include "base/trace_event/process_memory_dump.h"
#include "net/base/cache_type.h"
#include "net/base/completion_repeating_callback.h"
#include "net/base/elements_upload_data_stream.h"
#include "net/base/features.h"
#include "net/base/host_port_pair.h"
#include "net/base/ip_address.h"
#include "net/base/ip_endpoint.h"
#include "net/base/load_flags.h"
#include "net/base/load_timing_info.h"
#include "net/base/load_timing_info_test_util.h"
#include "net/base/net_errors.h"
#include "net/base/schemeful_site.h"
#include "net/base/tracing.h"
#include "net/base/upload_bytes_element_reader.h"
#include "net/cert/cert_status_flags.h"
#include "net/cert/x509_certificate.h"
#include "net/disk_cache/disk_cache.h"
#include "net/http/http_byte_range.h"
#include "net/http/http_cache_transaction.h"
#include "net/http/http_request_headers.h"
#include "net/http/http_request_info.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_response_info.h"
#include "net/http/http_transaction.h"
#include "net/http/http_transaction_test_util.h"
#include "net/http/http_util.h"
#include "net/http/mock_http_cache.h"
#include "net/log/net_log_event_type.h"
#include "net/log/net_log_source.h"
#include "net/log/net_log_with_source.h"
#include "net/log/test_net_log.h"
#include "net/log/test_net_log_util.h"
#include "net/socket/client_socket_handle.h"
#include "net/ssl/ssl_cert_request_info.h"
#include "net/ssl/ssl_connection_status_flags.h"
#include "net/test/cert_test_util.h"
#include "net/test/gtest_util.h"
#include "net/test/test_data_directory.h"
#include "net/test/test_with_task_environment.h"
#include "net/websockets/websocket_handshake_stream_base.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "url/origin.h"
using net::test::IsError;
using net::test::IsOk;
using testing::AllOf;
using testing::ByRef;
using testing::Contains;
using testing::ElementsAre;
using testing::Eq;
using testing::Field;
using testing::Gt;
using testing::IsEmpty;
using testing::NotNull;
using base::Time;
namespace net {
using CacheEntryStatus = HttpResponseInfo::CacheEntryStatus;
class WebSocketEndpointLockManager;
namespace {
std::string ToSimpleString(const scoped_refptr<HttpResponseHeaders>& parsed) {
std::string result = parsed->GetStatusLine() + "\n";
size_t iter = 0;
std::string name;
std::string value;
while (parsed->EnumerateHeaderLines(&iter, &name, &value)) {
std::string new_line = name + ": " + value + "\n";
result += new_line;
}
return result;
}
void TestLoadTimingNetworkRequest(const LoadTimingInfo& load_timing_info) {
EXPECT_FALSE(load_timing_info.socket_reused);
EXPECT_NE(NetLogSource::kInvalidId, load_timing_info.socket_log_id);
EXPECT_TRUE(load_timing_info.proxy_resolve_start.is_null());
EXPECT_TRUE(load_timing_info.proxy_resolve_end.is_null());
ExpectConnectTimingHasTimes(load_timing_info.connect_timing,
CONNECT_TIMING_HAS_CONNECT_TIMES_ONLY);
EXPECT_LE(load_timing_info.connect_timing.connect_end,
load_timing_info.send_start);
EXPECT_LE(load_timing_info.send_start, load_timing_info.send_end);
EXPECT_TRUE(load_timing_info.request_start_time.is_null());
EXPECT_TRUE(load_timing_info.request_start.is_null());
EXPECT_TRUE(load_timing_info.receive_headers_end.is_null());
}
void TestLoadTimingCachedResponse(const LoadTimingInfo& load_timing_info) {
EXPECT_FALSE(load_timing_info.socket_reused);
EXPECT_EQ(NetLogSource::kInvalidId, load_timing_info.socket_log_id);
EXPECT_TRUE(load_timing_info.proxy_resolve_start.is_null());
EXPECT_TRUE(load_timing_info.proxy_resolve_end.is_null());
ExpectConnectTimingHasNoTimes(load_timing_info.connect_timing);
EXPECT_FALSE(load_timing_info.send_start.is_null());
EXPECT_EQ(load_timing_info.send_start, load_timing_info.send_end);
EXPECT_TRUE(load_timing_info.request_start_time.is_null());
EXPECT_TRUE(load_timing_info.request_start.is_null());
EXPECT_TRUE(load_timing_info.receive_headers_end.is_null());
}
void DeferCallback(bool* defer) {
*defer = true;
}
class DeleteCacheCompletionCallback : public TestCompletionCallbackBase {
public:
explicit DeleteCacheCompletionCallback(std::unique_ptr<MockHttpCache> cache)
: cache_(std::move(cache)) {}
DeleteCacheCompletionCallback(const DeleteCacheCompletionCallback&) = delete;
DeleteCacheCompletionCallback& operator=(
const DeleteCacheCompletionCallback&) = delete;
CompletionOnceCallback callback() {
return base::BindOnce(&DeleteCacheCompletionCallback::OnComplete,
base::Unretained(this));
}
private:
void OnComplete(int result) {
cache_.reset();
SetResult(result);
}
std::unique_ptr<MockHttpCache> cache_;
};
void ReadAndVerifyTransaction(HttpTransaction* trans,
const MockTransaction& trans_info) {
std::string content;
int rv = ReadTransaction(trans, &content);
EXPECT_THAT(rv, IsOk());
std::string expected(trans_info.data);
EXPECT_EQ(expected, content);
}
void ReadRemainingAndVerifyTransaction(HttpTransaction* trans,
const std::string& already_read,
const MockTransaction& trans_info) {
std::string content;
int rv = ReadTransaction(trans, &content);
EXPECT_THAT(rv, IsOk());
std::string expected(trans_info.data);
EXPECT_EQ(expected, already_read + content);
}
void RunTransactionTestBase(HttpCache* cache,
const MockTransaction& trans_info,
const MockHttpRequest& request,
HttpResponseInfo* response_info,
const NetLogWithSource& net_log,
LoadTimingInfo* load_timing_info,
int64_t* sent_bytes,
int64_t* received_bytes,
IPEndPoint* remote_endpoint) {
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
int rv = cache->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
ASSERT_TRUE(trans.get());
rv = trans->Start(&request, callback.callback(), net_log);
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_EQ(trans_info.start_return_code, rv);
if (OK != rv)
return;
const HttpResponseInfo* response = trans->GetResponseInfo();
ASSERT_TRUE(response);
if (response_info)
*response_info = *response;
if (load_timing_info) {
EXPECT_TRUE(net_log.net_log());
*load_timing_info = LoadTimingInfo();
trans->GetLoadTimingInfo(load_timing_info);
}
if (remote_endpoint)
ASSERT_TRUE(trans->GetRemoteEndpoint(remote_endpoint));
ReadAndVerifyTransaction(trans.get(), trans_info);
if (sent_bytes)
*sent_bytes = trans->GetTotalSentBytes();
if (received_bytes)
*received_bytes = trans->GetTotalReceivedBytes();
}
void RunTransactionTestWithRequest(HttpCache* cache,
const MockTransaction& trans_info,
const MockHttpRequest& request,
HttpResponseInfo* response_info) {
RunTransactionTestBase(cache, trans_info, request, response_info,
NetLogWithSource(), nullptr, nullptr, nullptr,
nullptr);
}
void RunTransactionTestAndGetTiming(HttpCache* cache,
const MockTransaction& trans_info,
const NetLogWithSource& log,
LoadTimingInfo* load_timing_info) {
RunTransactionTestBase(cache, trans_info, MockHttpRequest(trans_info),
nullptr, log, load_timing_info, nullptr, nullptr,
nullptr);
}
void RunTransactionTestAndGetTimingAndConnectedSocketAddress(
HttpCache* cache,
const MockTransaction& trans_info,
const NetLogWithSource& log,
LoadTimingInfo* load_timing_info,
IPEndPoint* remote_endpoint) {
RunTransactionTestBase(cache, trans_info, MockHttpRequest(trans_info),
nullptr, log, load_timing_info, nullptr, nullptr,
remote_endpoint);
}
void RunTransactionTest(HttpCache* cache, const MockTransaction& trans_info) {
RunTransactionTestAndGetTiming(cache, trans_info, NetLogWithSource(),
nullptr);
}
void RunTransactionTestWithLog(HttpCache* cache,
const MockTransaction& trans_info,
const NetLogWithSource& log) {
RunTransactionTestAndGetTiming(cache, trans_info, log, nullptr);
}
void RunTransactionTestWithResponseInfo(HttpCache* cache,
const MockTransaction& trans_info,
HttpResponseInfo* response) {
RunTransactionTestWithRequest(cache, trans_info, MockHttpRequest(trans_info),
response);
}
void RunTransactionTestWithResponseInfoAndGetTiming(
HttpCache* cache,
const MockTransaction& trans_info,
HttpResponseInfo* response,
const NetLogWithSource& log,
LoadTimingInfo* load_timing_info) {
RunTransactionTestBase(cache, trans_info, MockHttpRequest(trans_info),
response, log, load_timing_info, nullptr, nullptr,
nullptr);
}
void RunTransactionTestWithResponse(HttpCache* cache,
const MockTransaction& trans_info,
std::string* response_headers) {
HttpResponseInfo response;
RunTransactionTestWithResponseInfo(cache, trans_info, &response);
*response_headers = ToSimpleString(response.headers);
}
void RunTransactionTestWithResponseAndGetTiming(
HttpCache* cache,
const MockTransaction& trans_info,
std::string* response_headers,
const NetLogWithSource& log,
LoadTimingInfo* load_timing_info) {
HttpResponseInfo response;
RunTransactionTestBase(cache, trans_info, MockHttpRequest(trans_info),
&response, log, load_timing_info, nullptr, nullptr,
nullptr);
*response_headers = ToSimpleString(response.headers);
}
class FastTransactionServer {
public:
FastTransactionServer() {
no_store = false;
}
FastTransactionServer(const FastTransactionServer&) = delete;
FastTransactionServer& operator=(const FastTransactionServer&) = delete;
~FastTransactionServer() = default;
void set_no_store(bool value) { no_store = value; }
static void FastNoStoreHandler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
if (no_store)
*response_headers = "Cache-Control: no-store\n";
}
private:
static bool no_store;
};
bool FastTransactionServer::no_store;
const MockTransaction kFastNoStoreGET_Transaction = {
"http://www.google.com/nostore",
"GET",
base::Time(),
"",
LOAD_VALIDATE_CACHE,
DefaultTransportInfo(),
"HTTP/1.1 200 OK",
"Cache-Control: max-age=10000\n",
base::Time(),
"<html><body>Google Blah Blah</body></html>",
{},
absl::nullopt,
absl::nullopt,
TEST_MODE_SYNC_NET_START,
&FastTransactionServer::FastNoStoreHandler,
nullptr,
nullptr,
0,
0,
OK,
};
class RangeTransactionServer {
public:
RangeTransactionServer() {
not_modified_ = false;
modified_ = false;
bad_200_ = false;
redirect_ = false;
length_ = 80;
}
RangeTransactionServer(const RangeTransactionServer&) = delete;
RangeTransactionServer& operator=(const RangeTransactionServer&) = delete;
~RangeTransactionServer() {
not_modified_ = false;
modified_ = false;
bad_200_ = false;
redirect_ = false;
length_ = 80;
}
void set_not_modified(bool value) { not_modified_ = value; }
void set_modified(bool value) { modified_ = value; }
void set_bad_200(bool value) { bad_200_ = value; }
void set_length(int64_t length) { length_ = length; }
void set_redirect(bool redirect) { redirect_ = redirect; }
static void RangeHandler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data);
private:
static bool not_modified_;
static bool modified_;
static bool bad_200_;
static bool redirect_;
static int64_t length_;
};
bool RangeTransactionServer::not_modified_ = false;
bool RangeTransactionServer::modified_ = false;
bool RangeTransactionServer::bad_200_ = false;
bool RangeTransactionServer::redirect_ = false;
int64_t RangeTransactionServer::length_ = 80;
#define EXTRA_HEADER_LINE "Extra: header"
#define EXTRA_HEADER EXTRA_HEADER_LINE "\r\n"
static const char kExtraHeaderKey[] = "Extra";
void RangeTransactionServer::RangeHandler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
if (request->extra_headers.IsEmpty()) {
response_status->assign("HTTP/1.1 416 Requested Range Not Satisfiable");
response_data->clear();
return;
}
EXPECT_TRUE(request->extra_headers.HasHeader(kExtraHeaderKey));
bool require_auth =
request->extra_headers.HasHeader("X-Require-Mock-Auth") ||
request->extra_headers.HasHeader("X-Require-Mock-Auth-Alt");
if (require_auth && !request->extra_headers.HasHeader("Authorization")) {
response_status->assign("HTTP/1.1 401 Unauthorized");
response_data->assign("WWW-Authenticate: Foo\n");
return;
}
if (redirect_) {
response_status->assign("HTTP/1.1 301 Moved Permanently");
response_headers->assign("Location: /elsewhere\nContent-Length: 5");
response_data->assign("12345");
return;
}
if (not_modified_) {
response_status->assign("HTTP/1.1 304 Not Modified");
response_data->clear();
return;
}
std::vector<HttpByteRange> ranges;
std::string range_header;
if (!request->extra_headers.GetHeader(HttpRequestHeaders::kRange,
&range_header) ||
!HttpUtil::ParseRangeHeader(range_header, &ranges) || bad_200_ ||
ranges.size() != 1 ||
(modified_ && request->extra_headers.HasHeader("If-Range"))) {
response_status->assign("HTTP/1.1 200 OK");
response_headers->assign("Date: Wed, 28 Nov 2007 09:40:09 GMT");
response_data->assign("Not a range");
return;
}
HttpByteRange byte_range = ranges[0];
if (request->extra_headers.HasHeader("X-Return-Default-Range")) {
byte_range.set_first_byte_position(40);
byte_range.set_last_byte_position(49);
}
if (byte_range.first_byte_position() >= length_) {
response_status->assign("HTTP/1.1 416 Requested Range Not Satisfiable");
response_data->clear();
return;
}
EXPECT_TRUE(byte_range.ComputeBounds(length_));
int64_t start = byte_range.first_byte_position();
int64_t end = byte_range.last_byte_position();
EXPECT_LT(end, length_);
std::string content_range = base::StringPrintf("Content-Range: bytes %" PRId64
"-%" PRId64 "/%" PRId64 "\n",
start, end, length_);
response_headers->append(content_range);
if (!request->extra_headers.HasHeader("If-None-Match") || modified_) {
std::string data;
if (end == start) {
EXPECT_EQ(0, end % 10);
data = "r";
} else {
EXPECT_EQ(9, (end - start) % 10);
for (int64_t block_start = start; block_start < end; block_start += 10) {
base::StringAppendF(&data, "rg: %02" PRId64 "-%02" PRId64 " ",
block_start % 100, (block_start + 9) % 100);
}
}
*response_data = data;
if (end - start != 9) {
int64_t len = end - start + 1;
std::string content_length =
base::StringPrintf("Content-Length: %" PRId64 "\n", len);
response_headers->replace(response_headers->find("Content-Length:"),
content_length.size(), content_length);
}
} else {
response_status->assign("HTTP/1.1 304 Not Modified");
response_data->clear();
}
}
const MockTransaction kRangeGET_TransactionOK = {
"http://www.google.com/range",
"GET",
base::Time(),
"Range: bytes = 40-49\r\n" EXTRA_HEADER,
LOAD_NORMAL,
DefaultTransportInfo(),
"HTTP/1.1 206 Partial Content",
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n",
base::Time(),
"rg: 40-49 ",
{},
absl::nullopt,
absl::nullopt,
TEST_MODE_NORMAL,
&RangeTransactionServer::RangeHandler,
nullptr,
nullptr,
0,
0,
OK,
};
const char kFullRangeData[] =
"rg: 00-09 rg: 10-19 rg: 20-29 rg: 30-39 "
"rg: 40-49 rg: 50-59 rg: 60-69 rg: 70-79 ";
void Verify206Response(const std::string& response, int start, int end) {
auto headers = base::MakeRefCounted<HttpResponseHeaders>(
HttpUtil::AssembleRawHeaders(response));
ASSERT_EQ(206, headers->response_code());
int64_t range_start, range_end, object_size;
ASSERT_TRUE(
headers->GetContentRangeFor206(&range_start, &range_end, &object_size));
int64_t content_length = headers->GetContentLength();
int length = end - start + 1;
ASSERT_EQ(length, content_length);
ASSERT_EQ(start, range_start);
ASSERT_EQ(end, range_end);
}
void CreateTruncatedEntry(std::string raw_headers, MockHttpCache* cache) {
disk_cache::Entry* entry;
MockHttpRequest request(kRangeGET_TransactionOK);
ASSERT_TRUE(cache->CreateBackendEntry(request.CacheKey(), &entry, nullptr));
HttpResponseInfo response;
response.response_time = base::Time::Now();
response.request_time = base::Time::Now();
response.headers = base::MakeRefCounted<HttpResponseHeaders>(
HttpUtil::AssembleRawHeaders(raw_headers));
EXPECT_TRUE(MockHttpCache::WriteResponseInfo(entry, &response, true, true));
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(100);
int len = static_cast<int>(base::strlcpy(buf->data(),
"rg: 00-09 rg: 10-19 ", 100));
TestCompletionCallback cb;
int rv = entry->WriteData(1, 0, buf.get(), len, cb.callback(), true);
EXPECT_EQ(len, cb.GetResult(rv));
entry->Close();
}
void VerifyTruncatedFlag(MockHttpCache* cache,
const std::string& key,
bool flag_value,
int data_size) {
disk_cache::Entry* entry;
ASSERT_TRUE(cache->OpenBackendEntry(key, &entry));
disk_cache::ScopedEntryPtr closer(entry);
HttpResponseInfo response;
bool truncated = !flag_value;
EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
EXPECT_EQ(flag_value, truncated);
if (data_size)
EXPECT_EQ(data_size, entry->GetDataSize(1));
}
struct Response {
void AssignTo(MockTransaction* trans) const {
trans->status = status;
trans->response_headers = headers;
trans->data = body;
}
std::string status_and_headers() const {
return std::string(status) + "\n" + std::string(headers);
}
const char* status;
const char* headers;
const char* body;
};
struct Context {
Context() = default;
int result = ERR_IO_PENDING;
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
};
class FakeWebSocketHandshakeStreamCreateHelper
: public WebSocketHandshakeStreamBase::CreateHelper {
public:
~FakeWebSocketHandshakeStreamCreateHelper() override = default;
std::unique_ptr<WebSocketHandshakeStreamBase> CreateBasicStream(
std::unique_ptr<ClientSocketHandle> connect,
bool using_proxy,
WebSocketEndpointLockManager* websocket_endpoint_lock_manager) override {
return nullptr;
}
std::unique_ptr<WebSocketHandshakeStreamBase> CreateHttp2Stream(
base::WeakPtr<SpdySession> session,
std::set<std::string> dns_aliases) override {
NOTREACHED();
return nullptr;
}
std::unique_ptr<WebSocketHandshakeStreamBase> CreateHttp3Stream(
std::unique_ptr<QuicChromiumClientSession::Handle> session,
std::set<std::string> dns_aliases) override {
NOTREACHED();
return nullptr;
}
};
bool ShouldIgnoreLogEntry(const NetLogEntry& entry) {
switch (entry.type) {
case NetLogEventType::HTTP_CACHE_GET_BACKEND:
case NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY:
case NetLogEventType::HTTP_CACHE_OPEN_ENTRY:
case NetLogEventType::HTTP_CACHE_CREATE_ENTRY:
case NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY:
case NetLogEventType::HTTP_CACHE_DOOM_ENTRY:
case NetLogEventType::HTTP_CACHE_READ_INFO:
return false;
default:
return true;
}
}
std::vector<NetLogEntry> GetFilteredNetLogEntries(
const RecordingNetLogObserver& net_log_observer) {
auto entries = net_log_observer.GetEntries();
base::EraseIf(entries, ShouldIgnoreLogEntry);
return entries;
}
bool LogContainsEventType(const RecordingNetLogObserver& net_log_observer,
NetLogEventType expected) {
return !net_log_observer.GetEntriesWithType(expected).empty();
}
TransportInfo TestTransportInfoWithPort(uint16_t port) {
TransportInfo result;
result.endpoint = IPEndPoint(IPAddress(42, 0, 1, 2), port);
return result;
}
TransportInfo TestTransportInfo() {
return TestTransportInfoWithPort(1337);
}
TransportInfo CachedTestTransportInfo() {
TransportInfo result = TestTransportInfo();
result.type = TransportType::kCached;
return result;
}
std::string GenerateCacheKey(const std::string& url) {
return "1/0/" + url;
}
}
using HttpCacheTest = TestWithTaskEnvironment;
class HttpCacheIOCallbackTest : public HttpCacheTest {
public:
HttpCacheIOCallbackTest() = default;
~HttpCacheIOCallbackTest() override = default;
using ActiveEntry = HttpCache::ActiveEntry;
using Transaction = HttpCache::Transaction;
int OpenEntry(HttpCache* cache,
const std::string& url,
HttpCache::ActiveEntry** entry,
HttpCache::Transaction* trans) {
return cache->OpenEntry(GenerateCacheKey(url), entry, trans);
}
int OpenOrCreateEntry(HttpCache* cache,
const std::string& url,
HttpCache::ActiveEntry** entry,
HttpCache::Transaction* trans) {
return cache->OpenOrCreateEntry(GenerateCacheKey(url), entry, trans);
}
int CreateEntry(HttpCache* cache,
const std::string& url,
HttpCache::ActiveEntry** entry,
HttpCache::Transaction* trans) {
return cache->CreateEntry(GenerateCacheKey(url), entry, trans);
}
int DoomEntry(HttpCache* cache,
const std::string& url,
HttpCache::Transaction* trans) {
return cache->DoomEntry(GenerateCacheKey(url), trans);
}
void DeactivateEntry(HttpCache* cache, ActiveEntry* entry) {
cache->DeactivateEntry(entry);
}
};
class HttpSplitCacheKeyTest : public HttpCacheTest {
public:
HttpSplitCacheKeyTest() = default;
~HttpSplitCacheKeyTest() override = default;
std::string ComputeCacheKey(const std::string& url_string) {
GURL url(url_string);
SchemefulSite site(url);
net::HttpRequestInfo request_info;
request_info.url = url;
request_info.method = "GET";
request_info.network_isolation_key = net::NetworkIsolationKey(site, site);
request_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site);
MockHttpCache cache;
return *cache.http_cache()->GenerateCacheKeyForRequest(&request_info);
}
};
TEST_F(HttpCacheTest, CreateThenDestroy) {
MockHttpCache cache;
std::unique_ptr<HttpTransaction> trans;
EXPECT_THAT(cache.CreateTransaction(&trans), IsOk());
ASSERT_TRUE(trans.get());
}
TEST_F(HttpCacheTest, GetBackend) {
MockHttpCache cache(HttpCache::DefaultBackend::InMemory(0));
disk_cache::Backend* backend;
TestCompletionCallback cb;
int rv = cache.http_cache()->GetBackend(&backend, cb.callback());
EXPECT_THAT(cb.GetResult(rv), IsOk());
}
TEST_F(HttpCacheTest, SimpleGET) {
MockHttpCache cache;
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), kSimpleGET_Transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
}
TEST_F(HttpCacheTest, SimpleGET_ConnectedCallback) {
MockHttpCache cache;
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = TestTransportInfo();
MockHttpRequest request(mock_transaction);
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(), ElementsAre(TestTransportInfo()));
}
TEST_F(HttpCacheTest, SimpleGET_ConnectedCallbackReturnError) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
connected_handler.set_result(ERR_NOT_IMPLEMENTED);
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsError(ERR_NOT_IMPLEMENTED));
}
TEST_F(HttpCacheTest, SimpleGET_ConnectedCallbackOnCacheHit) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
ConnectedHandler connected_handler;
MockHttpRequest request(kSimpleGET_Transaction);
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
}
TEST_F(HttpCacheTest, SimpleGET_ConnectedCallbackOnCacheHitReturnError) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
}
MockHttpRequest request(kSimpleGET_Transaction);
{
ConnectedHandler connected_handler;
connected_handler.set_result(ERR_FAILED);
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsError(ERR_FAILED));
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
}
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
}
}
TEST_F(HttpCacheTest,
SimpleGET_ConnectedCallbackOnCacheHitReturnInconsistentIpError) {
MockHttpCache cache;
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
MockHttpRequest request(kSimpleGET_Transaction);
{
ConnectedHandler connected_handler;
connected_handler.set_result(ERR_INCONSISTENT_IP_ADDRESS_SPACE);
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(),
IsError(ERR_INCONSISTENT_IP_ADDRESS_SPACE));
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
}
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
}
}
TEST_F(
HttpCacheTest,
SimpleGET_ConnectedCallbackOnCacheHitReturnLocalNetworkAccessBlockedError) {
MockHttpCache cache;
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
MockHttpRequest request(kSimpleGET_Transaction);
{
ConnectedHandler connected_handler;
connected_handler.set_result(
ERR_CACHED_IP_ADDRESS_SPACE_BLOCKED_BY_LOCAL_NETWORK_ACCESS_POLICY);
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(
callback.WaitForResult(),
IsError(
ERR_CACHED_IP_ADDRESS_SPACE_BLOCKED_BY_LOCAL_NETWORK_ACCESS_POLICY));
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo(), TestTransportInfo()));
}
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
}
}
TEST_F(HttpCacheTest, SimpleGET_ConnectedCallbackOnCacheHitFromProxy) {
MockHttpCache cache;
TransportInfo proxied_transport_info = TestTransportInfo();
proxied_transport_info.type = TransportType::kProxied;
{
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = proxied_transport_info;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
ConnectedHandler connected_handler;
MockHttpRequest request(kSimpleGET_Transaction);
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
TransportInfo expected_transport_info = TestTransportInfo();
expected_transport_info.type = TransportType::kCachedFromProxy;
EXPECT_THAT(connected_handler.transports(),
ElementsAre(expected_transport_info));
}
enum class SplitCacheTestCase {
kSplitCacheDisabled,
kSplitCacheNikFrameSiteEnabled,
kSplitCacheNikCrossSiteFlagEnabled,
};
void InitializeSplitCacheScopedFeatureList(
base::test::ScopedFeatureList& scoped_feature_list,
SplitCacheTestCase test_case) {
std::vector<base::test::FeatureRef> enabled_features;
std::vector<base::test::FeatureRef> disabled_features;
if (test_case == SplitCacheTestCase::kSplitCacheDisabled) {
disabled_features.push_back(
net::features::kSplitCacheByNetworkIsolationKey);
} else {
enabled_features.push_back(net::features::kSplitCacheByNetworkIsolationKey);
}
if (test_case == SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled) {
enabled_features.push_back(
net::features::kEnableCrossSiteFlagNetworkIsolationKey);
} else {
disabled_features.push_back(
net::features::kEnableCrossSiteFlagNetworkIsolationKey);
}
scoped_feature_list.InitWithFeatures(enabled_features, disabled_features);
}
class HttpCacheTest_SplitCacheFeature
: public HttpCacheTest,
public ::testing::WithParamInterface<SplitCacheTestCase> {
public:
HttpCacheTest_SplitCacheFeature() {
InitializeSplitCacheScopedFeatureList(feature_list_, GetParam());
}
bool IsSplitCacheEnabled() const {
return GetParam() != SplitCacheTestCase::kSplitCacheDisabled;
}
bool IsNikFrameSiteEnabled() const {
return GetParam() == SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled;
}
private:
base::test::ScopedFeatureList feature_list_;
};
TEST_P(HttpCacheTest_SplitCacheFeature, SimpleGETVerifyGoogleFontMetrics) {
base::HistogramTester histograms;
const std::string histogram_name = "WebFont.HttpCacheStatus_roboto";
SchemefulSite site_a(GURL("http://www.a.com"));
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.url = "http://themes.googleusercontent.com/static/fonts/roboto";
AddMockTransaction(&transaction);
MockHttpRequest request(transaction);
request.network_isolation_key = NetworkIsolationKey(site_a, site_a);
request.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
histograms.ExpectUniqueSample(
histogram_name, static_cast<int>(CacheEntryStatus::ENTRY_NOT_IN_CACHE),
1);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
histograms.ExpectBucketCount(
histogram_name, static_cast<int>(CacheEntryStatus::ENTRY_USED), 1);
}
INSTANTIATE_TEST_SUITE_P(
All,
HttpCacheTest_SplitCacheFeature,
testing::ValuesIn({SplitCacheTestCase::kSplitCacheDisabled,
SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled,
SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled}),
[](const testing::TestParamInfo<SplitCacheTestCase>& info) {
switch (info.param) {
case (SplitCacheTestCase::kSplitCacheDisabled):
return "SplitCacheDisabled";
case (SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled):
return "SplitCacheNikFrameSiteEnabled";
case (SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled):
return "SplitCacheNikCrossSiteFlagEnabled";
}
});
class HttpCacheTest_SplitCacheFeatureEnabled
: public HttpCacheTest_SplitCacheFeature {
public:
HttpCacheTest_SplitCacheFeatureEnabled() {
CHECK(base::FeatureList::IsEnabled(
net::features::kSplitCacheByNetworkIsolationKey));
}
};
INSTANTIATE_TEST_SUITE_P(
All,
HttpCacheTest_SplitCacheFeatureEnabled,
testing::ValuesIn({SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled,
SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled}),
[](const testing::TestParamInfo<SplitCacheTestCase>& info) {
switch (info.param) {
case (SplitCacheTestCase::kSplitCacheDisabled):
return "NotUsedForThisTestSuite";
case (SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled):
return "SplitCacheNikFrameSiteEnabled";
case (SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled):
return "SplitCacheNikCrossSiteFlagEnabled";
}
});
TEST_F(HttpCacheTest, SimpleGETNoDiskCache) {
MockHttpCache cache;
cache.disk_cache()->set_fail_requests(true);
RecordingNetLogObserver net_log_observer;
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), kSimpleGET_Transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
auto entries = GetFilteredNetLogEntries(net_log_observer);
EXPECT_EQ(4u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(entries, 0,
NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(
LogContainsEndEvent(entries, 1, NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(LogContainsBeginEvent(
entries, 2, NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(
entries, 3, NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
}
TEST_F(HttpCacheTest, SimpleGETNoDiskCache2) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
factory->set_fail(true);
factory->FinishCreation();
MockHttpCache cache(std::move(factory));
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_FALSE(cache.http_cache()->GetCurrentBackend());
}
TEST_F(HttpCacheTest, ReleaseBuffer) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockHttpRequest request(kSimpleGET_Transaction);
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
const int kBufferSize = 10;
scoped_refptr<IOBuffer> buffer = base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
int rv = trans->Start(&request, cb.callback(), NetLogWithSource());
EXPECT_THAT(cb.GetResult(rv), IsOk());
rv = trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(rv));
}
TEST_F(HttpCacheTest, SimpleGETWithDiskFailures) {
MockHttpCache cache;
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_ALL);
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGETWithDiskFailures2) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
rv = c->callback.WaitForResult();
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_ALL);
disk_cache::Entry* en;
ASSERT_TRUE(cache.OpenBackendEntry(request.CacheKey(), &en));
en->Close();
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
c.reset();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGETWithDiskFailures3) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_ALL);
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
cache.disk_cache()->set_soft_failures_mask(0);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_LoadOnlyFromCache_Hit) {
MockHttpCache cache;
RecordingNetLogObserver net_log_observer;
NetLogWithSource net_log_with_source =
NetLogWithSource::Make(NetLogSourceType::NONE);
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), kSimpleGET_Transaction,
net_log_with_source, &load_timing_info);
auto entries = GetFilteredNetLogEntries(net_log_observer);
EXPECT_EQ(6u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(entries, 0,
NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(
LogContainsEndEvent(entries, 1, NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(LogContainsBeginEvent(
entries, 2, NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(
entries, 3, NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY));
EXPECT_TRUE(LogContainsBeginEvent(entries, 4,
NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(entries, 5,
NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY));
TestLoadTimingNetworkRequest(load_timing_info);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
net_log_observer.Clear();
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
net_log_with_source, &load_timing_info);
entries = GetFilteredNetLogEntries(net_log_observer);
EXPECT_EQ(8u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(entries, 0,
NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(
LogContainsEndEvent(entries, 1, NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(LogContainsBeginEvent(
entries, 2, NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(
entries, 3, NetLogEventType::HTTP_CACHE_OPEN_OR_CREATE_ENTRY));
EXPECT_TRUE(LogContainsBeginEvent(entries, 4,
NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(entries, 5,
NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY));
EXPECT_TRUE(
LogContainsBeginEvent(entries, 6, NetLogEventType::HTTP_CACHE_READ_INFO));
EXPECT_TRUE(
LogContainsEndEvent(entries, 7, NetLogEventType::HTTP_CACHE_READ_INFO));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingCachedResponse(load_timing_info);
}
TEST_F(HttpCacheTest, SimpleGET_LoadOnlyFromCache_Miss) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsError(ERR_CACHE_MISS));
trans.reset();
EXPECT_EQ(0, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_LoadPreferringCache_Hit) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_LoadPreferringCache_Miss) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_LoadPreferringCache_VaryMatch) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers = "Cache-Control: max-age=10000\n"
"Vary: Foo\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleGET_LoadPreferringCache_VaryMismatch) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers = "Cache-Control: max-age=10000\n"
"Vary: Foo\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
transaction.request_headers = "Foo: none\r\n";
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleGET_LoadSkipCacheValidation_VaryStar) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Vary: *\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleGET_CacheSignal_Failure) {
for (bool use_memory_entry_data : {false, true}) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(use_memory_entry_data);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Cache-Control: no-cache\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
RemoveMockTransaction(&transaction);
transaction.start_return_code = ERR_FAILED;
AddMockTransaction(&transaction);
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
ASSERT_TRUE(trans.get());
rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsError(ERR_FAILED));
const HttpResponseInfo* response_info = trans->GetResponseInfo();
ASSERT_TRUE(response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
if (use_memory_entry_data) {
EXPECT_EQ(false, response_info->was_cached);
EXPECT_EQ(2, cache.disk_cache()->create_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
} else {
EXPECT_EQ(true, response_info->was_cached);
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
}
RemoveMockTransaction(&transaction);
}
}
TEST_F(HttpCacheTest, RecordHistogramsCantConditionalize) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(true);
{
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Cache-Control: no-cache\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
}
{
ScopedMockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
ASSERT_TRUE(trans.get());
rv = trans->Start(&request, callback.callback(), NetLogWithSource());
trans.reset();
}
}
TEST_F(HttpCacheTest, SimpleGET_NetworkAccessed_Network) {
MockHttpCache cache;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), kSimpleGET_Transaction,
&response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_TRUE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_NOT_IN_CACHE,
response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, SimpleGET_NetworkAccessed_Cache) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_FALSE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_USED, response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, SimpleGET_LoadBypassCache) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_BYPASS_CACHE;
RecordingNetLogObserver net_log_observer;
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
auto entries = GetFilteredNetLogEntries(net_log_observer);
EXPECT_EQ(8u, entries.size());
EXPECT_TRUE(LogContainsBeginEvent(entries, 0,
NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(
LogContainsEndEvent(entries, 1, NetLogEventType::HTTP_CACHE_GET_BACKEND));
EXPECT_TRUE(LogContainsBeginEvent(entries, 2,
NetLogEventType::HTTP_CACHE_DOOM_ENTRY));
EXPECT_TRUE(
LogContainsEndEvent(entries, 3, NetLogEventType::HTTP_CACHE_DOOM_ENTRY));
EXPECT_TRUE(LogContainsBeginEvent(entries, 4,
NetLogEventType::HTTP_CACHE_CREATE_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(entries, 5,
NetLogEventType::HTTP_CACHE_CREATE_ENTRY));
EXPECT_TRUE(LogContainsBeginEvent(entries, 6,
NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY));
EXPECT_TRUE(LogContainsEndEvent(entries, 7,
NetLogEventType::HTTP_CACHE_ADD_TO_ENTRY));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
}
TEST_F(HttpCacheTest, SimpleGET_LoadBypassCache_Implicit) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "pragma: no-cache\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_LoadBypassCache_Implicit2) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "cache-control: no-cache\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_LoadValidateCache) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
HttpResponseInfo response_info;
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), &load_timing_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_TRUE(response_info.network_accessed);
TestLoadTimingNetworkRequest(load_timing_info);
}
TEST_F(HttpCacheTest, SimpleGET_LoadValidateCache_Implicit) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "cache-control: max-age=0\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_UnusedSincePrefetch) {
MockHttpCache cache;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.unused_since_prefetch);
EXPECT_FALSE(response_info.was_cached);
MockTransaction prefetch_transaction(kSimpleGET_Transaction);
prefetch_transaction.load_flags |= LOAD_PREFETCH;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), prefetch_transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.unused_since_prefetch);
EXPECT_TRUE(response_info.was_cached);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), prefetch_transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_TRUE(response_info.unused_since_prefetch);
EXPECT_TRUE(response_info.was_cached);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_TRUE(response_info.unused_since_prefetch);
EXPECT_TRUE(response_info.was_cached);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.unused_since_prefetch);
EXPECT_TRUE(response_info.was_cached);
}
TEST_F(HttpCacheTest, SimpleGET_RestrictedPrefetchIsRestrictedUntilReuse) {
MockHttpCache cache;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kTypicalGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.restricted_prefetch);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
MockTransaction prefetch_transaction(kSimpleGET_Transaction);
prefetch_transaction.load_flags |= LOAD_PREFETCH;
prefetch_transaction.load_flags |= LOAD_RESTRICTED_PREFETCH;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), prefetch_transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_TRUE(response_info.restricted_prefetch);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
MockTransaction can_use_restricted_prefetch_transaction(
kSimpleGET_Transaction);
can_use_restricted_prefetch_transaction.load_flags |=
LOAD_CAN_USE_RESTRICTED_PREFETCH;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), can_use_restricted_prefetch_transaction,
&response_info, NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_TRUE(response_info.restricted_prefetch);
EXPECT_TRUE(response_info.was_cached);
EXPECT_FALSE(response_info.network_accessed);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.restricted_prefetch);
EXPECT_TRUE(response_info.was_cached);
EXPECT_FALSE(response_info.network_accessed);
}
TEST_F(HttpCacheTest, SimpleGET_RestrictedPrefetchReuseIsLimited) {
MockHttpCache cache;
HttpResponseInfo response_info;
MockTransaction prefetch_transaction(kSimpleGET_Transaction);
prefetch_transaction.load_flags |= LOAD_PREFETCH;
prefetch_transaction.load_flags |= LOAD_RESTRICTED_PREFETCH;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), prefetch_transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_TRUE(response_info.restricted_prefetch);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.restricted_prefetch);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_FALSE(response_info.restricted_prefetch);
EXPECT_TRUE(response_info.was_cached);
EXPECT_FALSE(response_info.network_accessed);
}
TEST_F(HttpCacheTest, SimpleGET_UnusedSincePrefetchWriteError) {
MockHttpCache cache;
HttpResponseInfo response_info;
MockTransaction prefetch_transaction(kSimpleGET_Transaction);
prefetch_transaction.load_flags |= LOAD_PREFETCH;
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), prefetch_transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
EXPECT_TRUE(response_info.unused_since_prefetch);
EXPECT_FALSE(response_info.was_cached);
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_WRITE);
RunTransactionTestWithResponseInfoAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &response_info,
NetLogWithSource::Make(NetLogSourceType::NONE), nullptr);
}
TEST_F(HttpCacheTest, PrefetchTruncateCancelInConnectedCallback) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 20\n"
"Etag: \"foopy\"\n";
transaction.data = "01234567890123456789";
transaction.load_flags |= LOAD_PREFETCH | LOAD_CAN_USE_RESTRICTED_PREFETCH;
{
MockHttpRequest request(transaction);
Context c;
int rv = cache.CreateTransaction(&c.trans);
ASSERT_THAT(rv, IsOk());
rv = c.callback.GetResult(
c.trans->Start(&request, c.callback.callback(), NetLogWithSource()));
ASSERT_THAT(rv, IsOk());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c.callback.GetResult(
c.trans->Read(buf.get(), buf->size(), c.callback.callback()));
EXPECT_EQ(buf->size(), rv);
c.trans.reset();
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), true,
10);
}
transaction.load_flags &= ~LOAD_PREFETCH;
{
MockHttpRequest request(transaction);
Context c;
int rv = cache.CreateTransaction(&c.trans);
ASSERT_THAT(rv, IsOk());
c.trans->SetConnectedCallback(base::BindRepeating(
[](const TransportInfo& info, CompletionOnceCallback callback) -> int {
return net::ERR_ABORTED;
}));
rv = c.callback.GetResult(
c.trans->Start(&request, c.callback.callback(), NetLogWithSource()));
EXPECT_EQ(net::ERR_ABORTED, rv);
c.trans.reset();
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), true,
10);
}
{
MockHttpRequest request(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), false,
20);
}
}
TEST_F(HttpCacheTest, StaleWhiteRevalidateTruncateCancelInConnectedCallback) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 20\n"
"Cache-Control: max-age=0, stale-while-revalidate=60\n"
"Etag: \"foopy\"\n";
transaction.data = "01234567890123456789";
transaction.load_flags |= LOAD_SUPPORT_ASYNC_REVALIDATION;
{
MockHttpRequest request(transaction);
Context c;
int rv = cache.CreateTransaction(&c.trans);
ASSERT_THAT(rv, IsOk());
rv = c.callback.GetResult(
c.trans->Start(&request, c.callback.callback(), NetLogWithSource()));
ASSERT_THAT(rv, IsOk());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c.callback.GetResult(
c.trans->Read(buf.get(), buf->size(), c.callback.callback()));
EXPECT_EQ(buf->size(), rv);
c.trans.reset();
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), true,
10);
}
{
MockHttpRequest request(transaction);
Context c;
int rv = cache.CreateTransaction(&c.trans);
ASSERT_THAT(rv, IsOk());
c.trans->SetConnectedCallback(base::BindRepeating(
[](const TransportInfo& info, CompletionOnceCallback callback) -> int {
return net::ERR_ABORTED;
}));
rv = c.callback.GetResult(
c.trans->Start(&request, c.callback.callback(), NetLogWithSource()));
EXPECT_EQ(net::ERR_ABORTED, rv);
c.trans.reset();
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), true,
10);
}
{
MockHttpRequest request(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), false,
20);
}
}
static void PreserveRequestHeaders_Handler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
EXPECT_TRUE(request->extra_headers.HasHeader(kExtraHeaderKey));
}
TEST_F(HttpCacheTest, SimpleGET_PreserveRequestHeaders) {
for (bool use_memory_entry_data : {false, true}) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(use_memory_entry_data);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.handler = PreserveRequestHeaders_Handler;
transaction.request_headers = EXTRA_HEADER;
transaction.response_headers = "Cache-Control: max-age=0\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
if (use_memory_entry_data) {
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
} else {
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
RemoveMockTransaction(&transaction);
}
}
TEST_F(HttpCacheTest, ConditionalizedGET_PreserveRequestHeaders) {
for (bool use_memory_entry_data : {false, true}) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(use_memory_entry_data);
RunTransactionTest(cache.http_cache(), kETagGET_Transaction);
MockTransaction transaction(kETagGET_Transaction);
transaction.handler = PreserveRequestHeaders_Handler;
transaction.request_headers = "If-None-Match: \"foopy\"\r\n" EXTRA_HEADER;
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
}
TEST_F(HttpCacheTest, SimpleGET_ManyReaders) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, context->trans->GetLoadState());
}
base::RunLoop().RunUntilIdle();
std::string cache_key = request.CacheKey();
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i > 0) {
EXPECT_FALSE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(kNumTransactions - i, cache.GetCountReaders(cache_key));
}
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_FullAfterPartial) {
MockHttpCache cache;
{
ScopedMockTransaction transaction_pre(kRangeGET_TransactionOK);
transaction_pre.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction_pre.data = "rg: 00-09 ";
MockHttpRequest request_pre(transaction_pre);
HttpResponseInfo response_pre;
RunTransactionTestWithRequest(cache.http_cache(), transaction_pre,
request_pre, &response_pre);
ASSERT_TRUE(response_pre.headers != nullptr);
EXPECT_EQ(206, response_pre.headers->response_code());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
RangeTransactionServer handler;
handler.set_modified(true);
ScopedMockTransaction transaction_all(kRangeGET_TransactionOK);
transaction_all.request_headers = EXTRA_HEADER;
transaction_all.data = "Not a range";
MockHttpRequest request_all(transaction_all);
HttpResponseInfo response_all;
RunTransactionTestWithRequest(cache.http_cache(), transaction_all,
request_all, &response_all);
ASSERT_TRUE(response_all.headers != nullptr);
EXPECT_EQ(200, response_all.headers->response_code());
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
}
TEST_F(HttpCacheTest, RangeGET_OverlappingRangesCouldntConditionalize) {
MockHttpCache cache;
{
ScopedMockTransaction transaction_pre(kRangeGET_TransactionOK);
transaction_pre.request_headers = "Range: bytes = 10-19\r\n" EXTRA_HEADER;
transaction_pre.data = "rg: 10-19 ";
MockHttpRequest request_pre(transaction_pre);
HttpResponseInfo response_pre;
RunTransactionTestWithRequest(cache.http_cache(), transaction_pre,
request_pre, &response_pre);
ASSERT_TRUE(response_pre.headers != nullptr);
EXPECT_EQ(206, response_pre.headers->response_code());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
cache.FailConditionalizations();
ScopedMockTransaction transaction_pre(kRangeGET_TransactionOK);
transaction_pre.request_headers = "Range: bytes = 10-29\r\n" EXTRA_HEADER;
transaction_pre.data = "rg: 10-19 rg: 10-19 rg: 20-29 ";
MockHttpRequest request_pre(transaction_pre);
HttpResponseInfo response_pre;
RunTransactionTestWithRequest(cache.http_cache(), transaction_pre,
request_pre, &response_pre);
ASSERT_TRUE(response_pre.headers != nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
TEST_F(HttpCacheTest, RangeGET_FullAfterPartialReuse) {
MockHttpCache cache;
{
ScopedMockTransaction transaction_pre(kRangeGET_TransactionOK);
transaction_pre.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction_pre.data = "rg: 00-09 ";
MockHttpRequest request_pre(transaction_pre);
HttpResponseInfo response_pre;
RunTransactionTestWithRequest(cache.http_cache(), transaction_pre,
request_pre, &response_pre);
ASSERT_TRUE(response_pre.headers != nullptr);
EXPECT_EQ(206, response_pre.headers->response_code());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
ScopedMockTransaction transaction_all(kRangeGET_TransactionOK);
transaction_all.request_headers = EXTRA_HEADER;
transaction_all.data =
"rg: 00-09 rg: 10-19 rg: 20-29 rg: 30-39 rg: 40-49"
" rg: 50-59 rg: 60-69 rg: 70-79 ";
MockHttpRequest request_all(transaction_all);
HttpResponseInfo response_all;
RunTransactionTestWithRequest(cache.http_cache(), transaction_all,
request_all, &response_all);
ASSERT_TRUE(response_all.headers != nullptr);
EXPECT_EQ(200, response_all.headers->response_code());
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
ScopedMockTransaction transaction_all2(kRangeGET_TransactionOK);
transaction_all2.request_headers = EXTRA_HEADER;
transaction_all2.data =
"rg: 00-09 rg: 10-19 rg: 20-29 rg: 30-39 rg: 40-49"
" rg: 50-59 rg: 60-69 rg: 70-79 ";
MockHttpRequest request_all2(transaction_all2);
HttpResponseInfo response_all2;
RunTransactionTestWithRequest(cache.http_cache(), transaction_all2,
request_all2, &response_all2);
ASSERT_TRUE(response_all2.headers != nullptr);
EXPECT_EQ(200, response_all2.headers->response_code());
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
}
TEST_F(HttpCacheTest, RangeGET_ConnectedCallbackCalledForEachRange) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 20-29\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 20-29 ";
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
}
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-39\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 rg: 20-29 rg: 30-39 ";
mock_transaction.transport_info = TestTransportInfo();
MockHttpRequest request(mock_transaction);
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
mock_transaction.transport_info = TestTransportInfoWithPort(123);
ReadAndVerifyTransaction(transaction.get(), mock_transaction);
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo(), CachedTestTransportInfo(),
TestTransportInfoWithPort(123)));
}
}
TEST_F(HttpCacheTest, RangeGET_ConnectedCallbackReturnInconsistentIpError) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 20-29\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 20-29 ";
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
}
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-39\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 rg: 20-29 rg: 30-39 ";
mock_transaction.transport_info = TestTransportInfo();
MockHttpRequest request(mock_transaction);
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
connected_handler.set_result(ERR_INCONSISTENT_IP_ADDRESS_SPACE);
std::string content;
EXPECT_THAT(ReadTransaction(transaction.get(), &content),
IsError(ERR_INCONSISTENT_IP_ADDRESS_SPACE));
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo(), CachedTestTransportInfo()));
}
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
std::string content;
EXPECT_THAT(ReadTransaction(transaction.get(), &content), IsOk());
EXPECT_EQ(content, mock_transaction.data);
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
}
}
TEST_F(HttpCacheTest,
RangeGET_ConnectedCallbackReturnInconsistentIpErrorForNetwork) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-19\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 ";
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
}
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-29\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 rg: 20-29 ";
mock_transaction.transport_info = TestTransportInfo();
MockHttpRequest request(mock_transaction);
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
connected_handler.set_result(ERR_INCONSISTENT_IP_ADDRESS_SPACE);
std::string content;
EXPECT_THAT(ReadTransaction(transaction.get(), &content),
IsError(ERR_INCONSISTENT_IP_ADDRESS_SPACE));
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo(), TestTransportInfo()));
}
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
std::string content;
EXPECT_THAT(ReadTransaction(transaction.get(), &content), IsOk());
EXPECT_EQ(content, mock_transaction.data);
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
}
}
TEST_F(HttpCacheTest, RangeGET_ConnectedCallbackReturnErrorSecondTime) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 20-29\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 20-29 ";
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
}
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-39\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 rg: 20-29 rg: 30-39 ";
mock_transaction.transport_info = TestTransportInfo();
MockHttpRequest request(mock_transaction);
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo()));
connected_handler.set_result(ERR_NOT_IMPLEMENTED);
std::string content;
EXPECT_THAT(ReadTransaction(transaction.get(), &content),
IsError(ERR_NOT_IMPLEMENTED));
EXPECT_THAT(connected_handler.transports(),
ElementsAre(TestTransportInfo(), CachedTestTransportInfo()));
}
{
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
std::string content;
EXPECT_THAT(ReadTransaction(transaction.get(), &content), IsOk());
EXPECT_EQ(content, mock_transaction.data);
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo(), TestTransportInfo()));
}
}
TEST_F(HttpCacheTest, RangeGET_ConnectedCallbackCalledForEachRangeWithPrefix) {
MockHttpCache cache;
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-19\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 ";
mock_transaction.transport_info = TestTransportInfo();
RunTransactionTest(cache.http_cache(), mock_transaction);
}
{
ScopedMockTransaction mock_transaction(kRangeGET_TransactionOK);
mock_transaction.request_headers = "Range: bytes = 10-39\r\n" EXTRA_HEADER;
mock_transaction.data = "rg: 10-19 rg: 20-29 rg: 30-39 ";
mock_transaction.transport_info = TestTransportInfoWithPort(123);
MockHttpRequest request(mock_transaction);
ConnectedHandler connected_handler;
std::unique_ptr<HttpTransaction> transaction;
EXPECT_THAT(cache.CreateTransaction(&transaction), IsOk());
ASSERT_THAT(transaction, NotNull());
transaction->SetConnectedCallback(connected_handler.Callback());
TestCompletionCallback callback;
ASSERT_THAT(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
IsError(ERR_IO_PENDING));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_THAT(connected_handler.transports(),
ElementsAre(CachedTestTransportInfo()));
ReadAndVerifyTransaction(transaction.get(), mock_transaction);
EXPECT_THAT(
connected_handler.transports(),
ElementsAre(CachedTestTransportInfo(), TestTransportInfoWithPort(123)));
}
}
TEST_F(HttpCacheTest, RangeGET_FailedCacheAccess) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
cache.disk_cache()->set_fail_requests(true);
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(cache.IsWriterPresent(kRangeGET_TransactionOK.url));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
c->result = c->callback.WaitForResult();
ReadAndVerifyTransaction(c->trans.get(), kRangeGET_TransactionOK);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationNoMatch) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
MockHttpRequest request(transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, context->trans->GetLoadState());
}
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(cache.IsWriterPresent(request.CacheKey()));
EXPECT_EQ(5, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
ReadAndVerifyTransaction(c->trans.get(), kRangeGET_TransactionOK);
}
EXPECT_EQ(5, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationNoMatchDoomEntry) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
MockHttpRequest request(transaction);
MockTransaction dooming_transaction(kRangeGET_TransactionOK);
dooming_transaction.load_flags |= LOAD_BYPASS_CACHE;
MockHttpRequest dooming_request(dooming_transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 3;
scoped_refptr<MockDiskEntry> first_entry;
scoped_refptr<MockDiskEntry> second_entry;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
MockHttpRequest* this_request = &request;
if (i == 2)
this_request = &dooming_request;
if (i == 1) {
ASSERT_TRUE(first_entry);
first_entry->SetDefer(MockDiskEntry::DEFER_READ);
}
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
base::RunLoop().RunUntilIdle();
std::string cache_key = request.CacheKey();
switch (i) {
case 0:
first_entry = cache.disk_cache()->GetDiskEntryRef(cache_key);
break;
case 1:
EXPECT_FALSE(first_entry->is_doomed());
break;
case 2:
EXPECT_TRUE(first_entry->is_doomed());
second_entry = cache.disk_cache()->GetDiskEntryRef(cache_key);
EXPECT_FALSE(second_entry->is_doomed());
break;
}
}
first_entry->ResumeDiskEntryOperation();
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(second_entry->is_doomed());
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (auto& c : context_list) {
ReadAndVerifyTransaction(c->trans.get(), kRangeGET_TransactionOK);
}
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationNoMatchDoomEntry1) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
MockHttpRequest request(transaction);
MockTransaction dooming_transaction(kRangeGET_TransactionOK);
dooming_transaction.load_flags |= LOAD_BYPASS_CACHE;
MockHttpRequest dooming_request(dooming_transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 3;
scoped_refptr<MockDiskEntry> first_entry;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
MockHttpRequest* this_request = &request;
if (i == 2) {
this_request = &dooming_request;
cache.disk_cache()->SetDefer(MockDiskEntry::DEFER_CREATE);
}
if (i == 1) {
ASSERT_TRUE(first_entry);
first_entry->SetDefer(MockDiskEntry::DEFER_READ);
}
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
base::RunLoop().RunUntilIdle();
switch (i) {
case 0:
first_entry = cache.disk_cache()->GetDiskEntryRef(request.CacheKey());
break;
case 1:
EXPECT_FALSE(first_entry->is_doomed());
break;
case 2:
EXPECT_TRUE(first_entry->is_doomed());
break;
}
}
first_entry->ResumeDiskEntryOperation();
base::RunLoop().RunUntilIdle();
cache.disk_cache()->ResumeCacheOperation();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (auto& c : context_list) {
ReadAndVerifyTransaction(c->trans.get(), kRangeGET_TransactionOK);
}
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationDifferentRanges) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
}
std::string first_read;
MockHttpRequest request1(transaction);
{
auto& c = context_list[0];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request1, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
transaction.request_headers = "Range: bytes = 30-39\r\n" EXTRA_HEADER;
MockHttpRequest request2(transaction);
{
auto& c = context_list[1];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request2, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
std::string cache_key = request2.CacheKey();
EXPECT_TRUE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i == 0) {
ReadRemainingAndVerifyTransaction(c->trans.get(), first_read,
transaction);
continue;
}
transaction.data = "rg: 30-39 ";
ReadAndVerifyTransaction(c->trans.get(), transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
{
MockTransaction range_transaction(kRangeGET_TransactionOK);
range_transaction.request_headers = "Range: bytes = 30-49\r\n" EXTRA_HEADER;
range_transaction.data = "rg: 30-39 rg: 40-49 ";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), range_transaction,
&headers);
Verify206Response(headers, 30, 49);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
context_list.clear();
}
TEST_F(HttpCacheTest, RangeGET_DoNotCreateWritersWhenReaderExists) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_Transaction);
transaction.request_headers = EXTRA_HEADER;
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
Context context;
context.result = cache.CreateTransaction(&context.trans);
ASSERT_THAT(context.result, IsOk());
context.result = context.trans->Start(&request, context.callback.callback(),
NetLogWithSource());
base::RunLoop().RunUntilIdle();
std::string cache_key = request.CacheKey();
EXPECT_EQ(1, cache.GetCountReaders(cache_key));
RemoveMockTransaction(&transaction);
MockTransaction range_transaction(kRangeGET_Transaction);
range_transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
AddMockTransaction(&range_transaction);
MockHttpRequest range_request(range_transaction);
Context range_context;
range_context.result = cache.CreateTransaction(&range_context.trans);
ASSERT_THAT(range_context.result, IsOk());
range_context.result = range_context.trans->Start(
&range_request, range_context.callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.GetCountReaders(cache_key));
EXPECT_FALSE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
RemoveMockTransaction(&range_transaction);
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationCacheLockTimeout) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
}
std::string first_read;
MockHttpRequest request1(transaction);
{
auto& c = context_list[0];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request1, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
cache.SimulateCacheLockTimeoutAfterHeaders();
transaction.request_headers = "Range: bytes = 30-39\r\n" EXTRA_HEADER;
MockHttpRequest request2(transaction);
{
auto& c = context_list[1];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request2, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(request1.CacheKey()));
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i == 0) {
ReadRemainingAndVerifyTransaction(c->trans.get(), first_read,
transaction);
continue;
}
transaction.data = "rg: 30-39 ";
ReadAndVerifyTransaction(c->trans.get(), transaction);
}
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationCouldntConditionalize) {
MockHttpCache cache;
MockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.url = kRangeGET_TransactionOK.url;
ScopedMockTransaction transaction(mock_transaction);
transaction.response_headers = "";
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
}
std::string first_read;
MockHttpRequest request1(transaction);
{
request1.url = GURL(kRangeGET_TransactionOK.url);
auto& c = context_list[0];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request1, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
ScopedMockTransaction range_transaction(kRangeGET_TransactionOK);
range_transaction.request_headers = "Range: bytes = 0-29\r\n" EXTRA_HEADER;
MockHttpRequest request2(range_transaction);
{
auto& c = context_list[1];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request2, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i == 0) {
ReadRemainingAndVerifyTransaction(c->trans.get(), first_read,
transaction);
continue;
}
range_transaction.data = "rg: 00-09 rg: 10-19 rg: 20-29 ";
ReadAndVerifyTransaction(c->trans.get(), range_transaction);
}
context_list.clear();
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationCouldConditionalize) {
MockHttpCache cache;
MockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.url = kRangeGET_TransactionOK.url;
mock_transaction.data = kFullRangeData;
std::string response_headers_str = base::StrCat(
{"ETag: StrongOne\n",
"Content-Length:", base::NumberToString(strlen(kFullRangeData)), "\n"});
mock_transaction.response_headers = response_headers_str.c_str();
ScopedMockTransaction transaction(mock_transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
}
std::string first_read;
MockHttpRequest request1(transaction);
{
request1.url = GURL(kRangeGET_TransactionOK.url);
auto& c = context_list[0];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request1, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
ScopedMockTransaction range_transaction(kRangeGET_TransactionOK);
range_transaction.request_headers = "Range: bytes = 0-29\r\n" EXTRA_HEADER;
MockHttpRequest request2(range_transaction);
{
auto& c = context_list[1];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request2, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
auto& c0 = context_list[0];
c0->result = c0->callback.WaitForResult();
ReadRemainingAndVerifyTransaction(c0->trans.get(), first_read, transaction);
auto& c1 = context_list[1];
c1->result = c1->callback.WaitForResult();
range_transaction.data = "rg: 00-09 rg: 10-19 rg: 20-29 ";
ReadAndVerifyTransaction(c1->trans.get(), range_transaction);
context_list.clear();
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationOverlappingRanges) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
}
std::string first_read;
MockHttpRequest request1(transaction);
{
auto& c = context_list[0];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request1, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
transaction.request_headers = "Range: bytes = 30-49\r\n" EXTRA_HEADER;
MockHttpRequest request2(transaction);
{
auto& c = context_list[1];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request2, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
std::string cache_key = request1.CacheKey();
EXPECT_TRUE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i == 0) {
ReadRemainingAndVerifyTransaction(c->trans.get(), first_read,
transaction);
continue;
}
transaction.data = "rg: 30-39 rg: 40-49 ";
ReadAndVerifyTransaction(c->trans.get(), transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
{
MockTransaction range_transaction(kRangeGET_TransactionOK);
range_transaction.request_headers = "Range: bytes = 30-49\r\n" EXTRA_HEADER;
range_transaction.data = "rg: 30-39 rg: 40-49 ";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), range_transaction,
&headers);
Verify206Response(headers, 30, 49);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_ParallelValidationRestartDoneHeaders) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
}
std::string first_read;
transaction.request_headers = "Range: bytes = 40-59\r\n" EXTRA_HEADER;
MockHttpRequest request1(transaction);
{
auto& c = context_list[0];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request1, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
const int kBufferSize = 10;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
transaction.request_headers = "Range: bytes = 30-59\r\n" EXTRA_HEADER;
MockHttpRequest request2(transaction);
{
auto& c = context_list[1];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request2, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
std::string cache_key = request1.CacheKey();
EXPECT_TRUE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
context_list[0].reset();
base::RunLoop().RunUntilIdle();
transaction.data = "rg: 30-39 rg: 40-49 rg: 50-59 ";
ReadAndVerifyTransaction(context_list[1]->trans.get(), transaction);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
{
MockTransaction range_transaction(kRangeGET_TransactionOK);
range_transaction.request_headers = "Range: bytes = 30-49\r\n" EXTRA_HEADER;
range_transaction.data = "rg: 30-39 rg: 40-49 ";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), range_transaction,
&headers);
Verify206Response(headers, 30, 49);
}
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_CachedRedirect) {
RangeTransactionServer handler;
handler.set_redirect(true);
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-\r\n" EXTRA_HEADER;
transaction.status = "HTTP/1.1 301 Moved Permanently";
transaction.response_headers = "Location: /elsewhere\nContent-Length:5";
transaction.data = "12345";
MockHttpRequest request(transaction);
TestCompletionCallback callback;
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsOk());
const HttpResponseInfo* info = trans->GetResponseInfo();
ASSERT_TRUE(info);
EXPECT_EQ(info->headers->response_code(), 301);
std::string location;
info->headers->EnumerateHeader(nullptr, "Location", &location);
EXPECT_EQ(location, "/elsewhere");
ReadAndVerifyTransaction(trans.get(), transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsOk());
const HttpResponseInfo* info = trans->GetResponseInfo();
ASSERT_TRUE(info);
EXPECT_EQ(info->headers->response_code(), 301);
std::string location;
info->headers->EnumerateHeader(nullptr, "Location", &location);
EXPECT_EQ(location, "/elsewhere");
trans->DoneReading();
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsOk());
const HttpResponseInfo* info = trans->GetResponseInfo();
ASSERT_TRUE(info);
EXPECT_EQ(info->headers->response_code(), 301);
std::string location;
info->headers->EnumerateHeader(nullptr, "Location", &location);
EXPECT_EQ(location, "/elsewhere");
ReadAndVerifyTransaction(trans.get(), transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ValidationFailureWithCreateFailure) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
request.load_flags |= LOAD_VALIDATE_CACHE;
std::vector<std::unique_ptr<Context>> context_list;
context_list.push_back(std::make_unique<Context>());
auto& c1 = context_list.back();
c1->result = cache.CreateTransaction(&c1->trans);
ASSERT_THAT(c1->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c1->trans->GetLoadState());
c1->result =
c1->trans->Start(&request, c1->callback.callback(), NetLogWithSource());
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, c1->trans->GetLoadState());
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(cache.IsWriterPresent(request.CacheKey()));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
context_list.push_back(std::make_unique<Context>());
auto& c2 = context_list.back();
c2->result = cache.CreateTransaction(&c2->trans);
ASSERT_THAT(c2->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c2->trans->GetLoadState());
c2->result =
c2->trans->Start(&request, c2->callback.callback(), NetLogWithSource());
EXPECT_EQ(LOAD_STATE_IDLE, c2->trans->GetLoadState());
cache.disk_cache()->set_fail_requests(true);
base::RunLoop().RunUntilIdle();
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (auto& context : context_list) {
if (context->result == ERR_IO_PENDING)
context->result = context->callback.WaitForResult();
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationNoMatch) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
request.load_flags |= LOAD_VALIDATE_CACHE;
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, context->trans->GetLoadState());
}
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(cache.IsWriterPresent(request.CacheKey()));
EXPECT_EQ(5, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(5, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (auto& context : context_list) {
if (context->result == ERR_IO_PENDING)
context->result = context->callback.WaitForResult();
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(5, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(5, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_Enormous) {
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
auto backend_factory = std::make_unique<HttpCache::DefaultBackend>(
DISK_CACHE, CACHE_BACKEND_BLOCKFILE,
nullptr, temp_dir.GetPath(), 1024 * 1024,
false);
MockHttpCache cache(std::move(backend_factory));
RangeTransactionServer handler;
handler.set_length(2305843009213693962);
{
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.data = "rg: 00-09 ";
MockHttpRequest request(transaction);
HttpResponseInfo response;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
&response);
ASSERT_TRUE(response.headers != nullptr);
EXPECT_EQ(206, response.headers->response_code());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
}
{
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers =
"Range: bytes = "
"2305843009213693952-2305843009213693961\r\n" EXTRA_HEADER;
transaction.data = "rg: 52-61 ";
MockHttpRequest request(transaction);
HttpResponseInfo response;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
&response);
ASSERT_TRUE(response.headers != nullptr);
EXPECT_EQ(206, response.headers->response_code());
EXPECT_EQ(2, cache.network_layer()->transaction_count());
}
{
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers =
"Range: bytes = "
"2305843009213693952-2305843009213693961\r\n" EXTRA_HEADER;
transaction.data = "rg: 52-61 ";
MockHttpRequest request(transaction);
HttpResponseInfo response;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
&response);
ASSERT_TRUE(response.headers != nullptr);
EXPECT_EQ(206, response.headers->response_code());
EXPECT_EQ(3, cache.network_layer()->transaction_count());
}
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationNoMatch1) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
MockHttpRequest validate_request(transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
MockHttpRequest* this_request = &request;
if (i == 1)
this_request = &validate_request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, context->trans->GetLoadState());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(kNumTransactions - 1,
cache.GetCountWriterTransactions(validate_request.CacheKey()));
EXPECT_EQ(1, cache.disk_cache()->doomed_count());
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (auto& context : context_list) {
if (context->result == ERR_IO_PENDING)
context->result = context->callback.WaitForResult();
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationDelete) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
request.load_flags |= LOAD_VALIDATE_CACHE;
MockHttpRequest delete_request(kSimpleGET_Transaction);
delete_request.method = "DELETE";
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
MockHttpRequest* this_request = &request;
if (i == 1)
this_request = &delete_request;
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, context->trans->GetLoadState());
}
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(cache.disk_cache()->IsDiskEntryDoomed(request.CacheKey()));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
for (auto& context : context_list) {
if (context->result == ERR_IO_PENDING)
context->result = context->callback.WaitForResult();
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationCancelValidated) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest read_only_request(transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* current_request = i == 1 ? &read_only_request : &request;
c->result = c->trans->Start(current_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(1, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
context_list[1].reset();
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(cache_key));
for (auto& context : context_list) {
if (!context)
continue;
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingCancelIdleTransaction) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
context_list[1].reset();
EXPECT_EQ(kNumTransactions - 1, cache.GetCountWriterTransactions(cache_key));
for (auto& context : context_list) {
if (!context)
continue;
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationValidatedTimeout) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest read_only_request(transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
MockHttpRequest* this_request = &request;
if (i == 1) {
this_request = &read_only_request;
cache.SimulateCacheLockTimeoutAfterHeaders();
}
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_TRUE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(cache_key));
base::RunLoop().RunUntilIdle();
int rv = context_list[1]->callback.WaitForResult();
EXPECT_EQ(ERR_CACHE_MISS, rv);
ReadAndVerifyTransaction(context_list[0]->trans.get(),
kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationCancelReader) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
MockHttpRequest validate_request(transaction);
int kNumTransactions = 4;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 3) {
this_request = &validate_request;
c->trans->SetBeforeNetworkStartCallback(base::BindOnce(&DeferCallback));
}
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(kNumTransactions - 1, cache.GetCountWriterTransactions(cache_key));
EXPECT_TRUE(cache.IsHeadersTransactionPresent(cache_key));
ReadAndVerifyTransaction(context_list[0]->trans.get(),
kSimpleGET_Transaction);
EXPECT_FALSE(cache.IsWriterPresent(cache_key));
EXPECT_EQ(kNumTransactions - 2, cache.GetCountReaders(cache_key));
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(cache_key));
EXPECT_TRUE(cache.IsHeadersTransactionPresent(cache_key));
kNumTransactions = 6;
for (int i = 4; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
EXPECT_EQ(2, cache.GetCountAddToEntryQueue(cache_key));
context_list[1].reset();
EXPECT_EQ(1, cache.GetCountReaders(cache_key));
EXPECT_EQ(2, cache.GetCountAddToEntryQueue(cache_key));
EXPECT_TRUE(cache.IsHeadersTransactionPresent(cache_key));
context_list[3]->trans->ResumeNetworkStart();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(3, cache.GetCountWriterTransactions(cache_key));
for (int i = 2; i < kNumTransactions; ++i) {
ReadAndVerifyTransaction(context_list[i]->trans.get(),
kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_HangingCacheWriteCleanup) {
MockHttpCache mock_cache;
MockHttpRequest request(kSimpleGET_Transaction);
std::unique_ptr<HttpTransaction> transaction;
mock_cache.CreateTransaction(&transaction);
TestCompletionCallback callback;
int result =
transaction->Start(&request, callback.callback(), NetLogWithSource());
result = callback.GetResult(result);
scoped_refptr<IOBuffer> buffer = base::MakeRefCounted<IOBuffer>(1);
ReleaseBufferCompletionCallback buffer_callback(buffer.get());
result = transaction->Read(buffer.get(), 1, buffer_callback.callback());
EXPECT_EQ(1, buffer_callback.GetResult(result));
std::string cache_key = request.CacheKey();
scoped_refptr<MockDiskEntry> entry =
mock_cache.disk_cache()->GetDiskEntryRef(cache_key);
entry->SetDefer(MockDiskEntry::DEFER_WRITE);
buffer = base::MakeRefCounted<IOBuffer>(1);
ReleaseBufferCompletionCallback buffer_callback2(buffer.get());
result = transaction->Read(buffer.get(), 1, buffer_callback2.callback());
EXPECT_EQ(ERR_IO_PENDING, result);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(mock_cache.IsWriterPresent(cache_key));
transaction = nullptr;
EXPECT_FALSE(mock_cache.IsWriterPresent(cache_key));
EXPECT_FALSE(mock_cache.network_layer()->last_transaction());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingCancelWriter) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
MockHttpRequest validate_request(transaction);
const int kNumTransactions = 3;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 2) {
this_request = &validate_request;
c->trans->SetBeforeNetworkStartCallback(base::BindOnce(&DeferCallback));
}
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = validate_request.CacheKey();
EXPECT_TRUE(cache.IsHeadersTransactionPresent(cache_key));
EXPECT_EQ(2, cache.GetCountWriterTransactions(cache_key));
std::string first_read;
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(ERR_IO_PENDING, c->result);
if (i == 1) {
context_list[0].reset();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
}
}
auto& c = context_list[2];
c->trans->ResumeNetworkStart();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.GetCountWriterTransactions(cache_key));
for (int i = 0; i < kNumTransactions; i++) {
auto& context = context_list[i];
if (!context)
continue;
if (i == 1)
ReadRemainingAndVerifyTransaction(context->trans.get(), first_read,
kSimpleGET_Transaction);
else
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingNetworkReadFailed) {
MockHttpCache cache;
ScopedMockTransaction fail_transaction(kSimpleGET_Transaction);
fail_transaction.read_return_code = ERR_INTERNET_DISCONNECTED;
MockHttpRequest failing_request(fail_transaction);
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest read_request(transaction);
const int kNumTransactions = 4;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 0)
this_request = &failing_request;
if (i == 3)
this_request = &read_request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = read_request.CacheKey();
EXPECT_EQ(3, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
c->result =
c->trans->Read(buffer.get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_IO_PENDING, c->result);
}
base::RunLoop().RunUntilIdle();
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
c->result = c->callback.WaitForResult();
EXPECT_EQ(ERR_INTERNET_DISCONNECTED, c->result);
}
auto& read_only = context_list[3];
read_only->result = read_only->callback.WaitForResult();
EXPECT_EQ(ERR_CACHE_MISS, read_only->result);
EXPECT_FALSE(cache.IsWriterPresent(cache_key));
auto& c = context_list[2];
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer = base::MakeRefCounted<IOBuffer>(kBufferSize);
c->result = c->trans->Read(buffer.get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_INTERNET_DISCONNECTED, c->result);
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingCacheWriteFailed) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest read_request(transaction);
const int kNumTransactions = 4;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 3)
this_request = &read_request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = read_request.CacheKey();
EXPECT_EQ(3, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_ALL);
disk_cache::Entry* en;
cache.OpenBackendEntry(cache_key, &en);
en->Close();
const int kBufferSize = 5;
std::vector<scoped_refptr<IOBuffer>> buffer(
3, base::MakeRefCounted<IOBuffer>(kBufferSize));
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
c->result =
c->trans->Read(buffer[i].get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_IO_PENDING, c->result);
}
std::string first_read;
base::RunLoop().RunUntilIdle();
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
c->result = c->callback.WaitForResult();
if (i == 0) {
EXPECT_EQ(5, c->result);
std::string data_read(buffer[i]->data(), kBufferSize);
first_read = data_read;
} else {
EXPECT_EQ(ERR_CACHE_WRITE_FAILURE, c->result);
}
}
auto& read_only = context_list[3];
read_only->result = read_only->callback.WaitForResult();
EXPECT_EQ(ERR_CACHE_MISS, read_only->result);
EXPECT_FALSE(cache.IsWriterPresent(cache_key));
auto& c = context_list[2];
c->result =
c->trans->Read(buffer[2].get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_CACHE_WRITE_FAILURE, c->result);
auto& succ_read = context_list[0];
ReadRemainingAndVerifyTransaction(succ_read->trans.get(), first_read,
kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, SimplePOST_ParallelWritingDisallowed) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
const int64_t kUploadId = 1;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers),
kUploadId);
transaction.load_flags = LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
request.upload_data_stream = &upload_data_stream;
const int kNumTransactions = 2;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
}
std::string cache_key = request.CacheKey();
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
EXPECT_EQ(1, cache.GetCountWriterTransactions(cache_key));
ReadAndVerifyTransaction(context_list[0]->trans.get(),
kSimplePOST_Transaction);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.GetCountReaders(cache_key));
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(cache_key));
ReadAndVerifyTransaction(context_list[1]->trans.get(),
kSimplePOST_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
context_list.clear();
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingSuccess) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest read_request(transaction);
const int kNumTransactions = 4;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 3)
this_request = &read_request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(3, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
const int kBufferSize = 5;
std::vector<scoped_refptr<IOBuffer>> buffer(
3, base::MakeRefCounted<IOBuffer>(kBufferSize));
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
c->result =
c->trans->Read(buffer[i].get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_IO_PENDING, c->result);
}
std::vector<std::string> first_read(2);
base::RunLoop().RunUntilIdle();
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
c->result = c->callback.WaitForResult();
EXPECT_EQ(5, c->result);
std::string data_read(buffer[i]->data(), kBufferSize);
first_read[i] = data_read;
}
EXPECT_EQ(first_read[0], first_read[1]);
for (int i = 0; i < 2; i++) {
auto& c = context_list[i];
ReadRemainingAndVerifyTransaction(c->trans.get(), first_read[i],
kSimpleGET_Transaction);
if (i == 0) {
EXPECT_EQ(3, cache.GetCountReaders(cache_key));
}
}
for (int i = 2; i < kNumTransactions; i++) {
auto& c = context_list[i];
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
context_list.clear();
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingHuge) {
MockHttpCache cache;
cache.disk_cache()->set_max_file_size(10);
MockTransaction transaction(kSimpleGET_Transaction);
std::string response_headers = base::StrCat(
{kSimpleGET_Transaction.response_headers, "Content-Length: ",
base::NumberToString(strlen(kSimpleGET_Transaction.data)), "\n"});
transaction.response_headers = response_headers.c_str();
AddMockTransaction(&transaction);
MockHttpRequest request(transaction);
const int kNumTransactions = 4;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(1, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(kNumTransactions - 1, cache.GetCountDoneHeadersQueue(cache_key));
const int kBufferSize = 5;
std::vector<scoped_refptr<IOBuffer>> buffer(
kNumTransactions, base::MakeRefCounted<IOBuffer>(kBufferSize));
auto& c = context_list[0];
c->result =
c->trans->Read(buffer[0].get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_IO_PENDING, c->result);
std::vector<std::string> first_read(kNumTransactions);
base::RunLoop().RunUntilIdle();
c->result = c->callback.WaitForResult();
EXPECT_EQ(kBufferSize, c->result);
std::string data_read(buffer[0]->data(), kBufferSize);
first_read[0] = data_read;
EXPECT_EQ("<html", first_read[0]);
for (int i = 0; i < kNumTransactions; i++) {
ReadRemainingAndVerifyTransaction(context_list[i]->trans.get(),
first_read[i], kSimpleGET_Transaction);
}
EXPECT_EQ(kNumTransactions, cache.network_layer()->transaction_count());
context_list.clear();
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritingVerifyNetworkBytes) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
const int kNumTransactions = 2;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(2, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(cache_key));
int total_received_bytes = context_list[0]->trans->GetTotalReceivedBytes();
EXPECT_GT(total_received_bytes, 0);
ReadAndVerifyTransaction(context_list[1]->trans.get(),
kSimpleGET_Transaction);
EXPECT_EQ(1, cache.GetCountReaders(cache_key));
EXPECT_EQ(0, context_list[1]->trans->GetTotalReceivedBytes());
EXPECT_GE(total_received_bytes,
context_list[0]->trans->GetTotalReceivedBytes());
ReadAndVerifyTransaction(context_list[0]->trans.get(),
kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, SimpleGET_ExtraRead) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
Context c;
c.result = cache.CreateTransaction(&c.trans);
ASSERT_THAT(c.result, IsOk());
c.result =
c.trans->Start(&request, c.callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(1, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(0, cache.GetCountDoneHeadersQueue(cache_key));
ReadAndVerifyTransaction(c.trans.get(), kSimpleGET_Transaction);
const int kBufferSize = 10;
scoped_refptr<IOBuffer> buffer = base::MakeRefCounted<IOBuffer>(kBufferSize);
c.result = c.trans->Read(buffer.get(), kBufferSize, c.callback.callback());
EXPECT_EQ(0, c.result);
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationCancelWriter) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 22\n"
"Etag: \"foopy\"\n";
MockHttpRequest request(transaction);
const int kNumTransactions = 3;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
{
auto& c = context_list[0];
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(kBufferSize, cb.GetResult(c->result));
}
context_list[0].reset();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (auto& context : context_list) {
if (!context)
continue;
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationStopCaching) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest read_only_request(transaction);
const int kNumTransactions = 2;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 1) {
this_request = &read_only_request;
}
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_EQ(kNumTransactions - 1, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.GetCountDoneHeadersQueue(cache_key));
context_list[0]->trans->StopCaching();
base::RunLoop().RunUntilIdle();
int rv = context_list[1]->callback.WaitForResult();
EXPECT_EQ(ERR_CACHE_MISS, rv);
ReadAndVerifyTransaction(context_list[0]->trans.get(),
kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritersStopCachingNoOp) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
MockHttpRequest validate_request(transaction);
const int kNumTransactions = 3;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 2) {
this_request = &validate_request;
c->trans->SetBeforeNetworkStartCallback(base::BindOnce(&DeferCallback));
}
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string cache_key = request.CacheKey();
EXPECT_TRUE(cache.IsHeadersTransactionPresent(cache_key));
EXPECT_EQ(kNumTransactions - 1, cache.GetCountWriterTransactions(cache_key));
context_list[0]->trans->StopCaching();
auto& c = context_list[2];
c->trans->ResumeNetworkStart();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.GetCountWriterTransactions(cache_key));
for (auto& context : context_list) {
if (!context)
continue;
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelValidationCancelHeaders) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
const int kNumTransactions = 2;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
if (i == 0)
c->trans->SetBeforeNetworkStartCallback(base::BindOnce(&DeferCallback));
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
std::string cache_key = request.CacheKey();
EXPECT_TRUE(cache.IsHeadersTransactionPresent(cache_key));
EXPECT_EQ(1, cache.GetCountAddToEntryQueue(cache_key));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
context_list[0].reset();
base::RunLoop().RunUntilIdle();
for (auto& context : context_list) {
if (!context)
continue;
ReadAndVerifyTransaction(context->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ParallelWritersFailWrite) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
const int kNumTransactions = 5;
std::vector<std::unique_ptr<Context>> context_list;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, context->trans->GetLoadState());
}
base::RunLoop().RunUntilIdle();
std::string cache_key = request.CacheKey();
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
for (auto& context : context_list) {
EXPECT_EQ(LOAD_STATE_IDLE, context->trans->GetLoadState());
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_ALL);
disk_cache::Entry* en;
cache.OpenBackendEntry(cache_key, &en);
en->Close();
for (int i = 0; i < kNumTransactions; ++i) {
auto& c = context_list[i];
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i == 1) {
EXPECT_TRUE(cache.disk_cache()->IsDiskEntryDoomed(cache_key));
}
if (i == 0) {
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
} else {
const int kBufferSize = 5;
scoped_refptr<IOBuffer> buffer =
base::MakeRefCounted<IOBuffer>(kBufferSize);
ReleaseBufferCompletionCallback cb(buffer.get());
c->result = c->trans->Read(buffer.get(), kBufferSize, cb.callback());
EXPECT_EQ(ERR_CACHE_WRITE_FAILURE, cb.GetResult(c->result));
}
}
}
TEST_F(HttpCacheTest, SimpleGET_RacingReaders) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
MockHttpRequest reader_request(kSimpleGET_Transaction);
reader_request.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 1 || i == 2)
this_request = &reader_request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
Context* c = context_list[0].get();
ASSERT_THAT(c->result, IsError(ERR_IO_PENDING));
c->result = c->callback.WaitForResult();
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
EXPECT_EQ(LOAD_STATE_IDLE, context_list[2]->trans->GetLoadState());
EXPECT_EQ(LOAD_STATE_IDLE, context_list[3]->trans->GetLoadState());
c = context_list[1].get();
ASSERT_THAT(c->result, IsError(ERR_IO_PENDING));
c->result = c->callback.WaitForResult();
if (c->result == OK)
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
c = context_list[2].get();
c->trans.reset();
for (int i = 3; i < kNumTransactions; ++i) {
c = context_list[i].get();
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (c->result == OK)
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_DoomWithPending) {
MockHttpCache cache(HttpCache::DefaultBackend::InMemory(1024 * 1024));
MockHttpRequest request(kSimpleGET_Transaction);
MockHttpRequest writer_request(kSimpleGET_Transaction);
writer_request.load_flags = LOAD_BYPASS_CACHE;
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 4;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
MockHttpRequest* this_request = &request;
if (i == 3)
this_request = &writer_request;
c->result = c->trans->Start(this_request, c->callback.callback(),
NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
context_list[1].reset();
for (int i = 0; i < kNumTransactions; ++i) {
if (i == 1)
continue;
Context* c = context_list[i].get();
ASSERT_THAT(c->result, IsError(ERR_IO_PENDING));
c->result = c->callback.WaitForResult();
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
}
TEST_F(HttpCacheTest, DoomDoesNotSetHints) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(true);
MockTransaction no_cache_transaction(kSimpleGET_Transaction);
no_cache_transaction.response_headers = "Cache-Control: no-cache\n";
AddMockTransaction(&no_cache_transaction);
MockHttpRequest request1(no_cache_transaction);
Context c1;
c1.result = cache.CreateTransaction(&c1.trans);
ASSERT_THAT(c1.result, IsOk());
c1.trans->SetBeforeNetworkStartCallback(
base::BindOnce([](bool* defer) { *defer = true; }));
c1.result =
c1.trans->Start(&request1, c1.callback.callback(), NetLogWithSource());
ASSERT_THAT(c1.result, IsError(ERR_IO_PENDING));
base::RunLoop().RunUntilIdle();
RemoveMockTransaction(&no_cache_transaction);
MockHttpRequest request2(kSimpleGET_Transaction);
request2.load_flags = LOAD_BYPASS_CACHE;
Context c2;
c2.result = cache.CreateTransaction(&c2.trans);
ASSERT_THAT(c2.result, IsOk());
c2.result =
c2.trans->Start(&request2, c2.callback.callback(), NetLogWithSource());
ASSERT_THAT(c2.result, IsError(ERR_IO_PENDING));
base::RunLoop().RunUntilIdle();
c2.callback.WaitForResult();
ReadAndVerifyTransaction(c2.trans.get(), kSimpleGET_Transaction);
c1.trans->ResumeNetworkStart();
c1.callback.WaitForResult();
ReadAndVerifyTransaction(c1.trans.get(), no_cache_transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
MockHttpRequest request3(kSimpleGET_Transaction);
Context context3;
context3.result = cache.CreateTransaction(&context3.trans);
ASSERT_THAT(context3.result, IsOk());
context3.result = context3.trans->Start(
&request3, context3.callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
ASSERT_THAT(context3.result, IsError(ERR_IO_PENDING));
context3.result = context3.callback.WaitForResult();
ReadAndVerifyTransaction(context3.trans.get(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, FastNoStoreGET_DoneWithPending) {
MockHttpCache cache;
MockHttpRequest request(kFastNoStoreGET_Transaction);
FastTransactionServer request_handler;
AddMockTransaction(&kFastNoStoreGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 3;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
request_handler.set_no_store(true);
for (int i = 0; i < kNumTransactions; ++i) {
Context* c = context_list[i].get();
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
ReadAndVerifyTransaction(c->trans.get(), kFastNoStoreGET_Transaction);
context_list[i].reset();
}
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
RemoveMockTransaction(&kFastNoStoreGET_Transaction);
}
TEST_F(HttpCacheTest, SimpleGET_ManyWriters_CancelFirst) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 2;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
std::string cache_key =
*cache.http_cache()->GenerateCacheKeyForRequest(&request);
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; ++i) {
Context* c = context_list[i].get();
if (c->result == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
if (i == 0) {
context_list[i].reset();
}
}
for (int i = 1; i < kNumTransactions; ++i) {
Context* c = context_list[i].get();
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ManyWriters_CancelCreate) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; i++) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
EXPECT_EQ(0, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
context_list[3].reset();
context_list[0].reset();
for (int i = 1; i < kNumTransactions; i++) {
Context* c = context_list[i].get();
if (c) {
c->result = c->callback.GetResult(c->result);
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_CancelCreate) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->result, IsError(ERR_IO_PENDING));
cache.disk_cache()->ReleaseAll();
c.reset();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_ManyWriters_BypassCache) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
request.load_flags = LOAD_BYPASS_CACHE;
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; i++) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
EXPECT_EQ(0, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; i++) {
Context* c = context_list[i].get();
c->result = c->callback.GetResult(c->result);
ReadAndVerifyTransaction(c->trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(5, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(5, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_WriterTimeout) {
MockHttpCache cache;
cache.SimulateCacheLockTimeout();
MockHttpRequest request(kSimpleGET_Transaction);
Context c1, c2;
ASSERT_THAT(cache.CreateTransaction(&c1.trans), IsOk());
ASSERT_EQ(ERR_IO_PENDING, c1.trans->Start(&request, c1.callback.callback(),
NetLogWithSource()));
ASSERT_THAT(cache.CreateTransaction(&c2.trans), IsOk());
ASSERT_EQ(ERR_IO_PENDING, c2.trans->Start(&request, c2.callback.callback(),
NetLogWithSource()));
c2.callback.WaitForResult();
ReadAndVerifyTransaction(c2.trans.get(), kSimpleGET_Transaction);
c1.callback.WaitForResult();
ReadAndVerifyTransaction(c1.trans.get(), kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, SimpleGET_WriterTimeoutReadOnlyError) {
MockHttpCache cache;
cache.SimulateCacheLockTimeout();
MockHttpRequest request(kSimpleGET_Transaction);
Context c1, c2;
ASSERT_THAT(cache.CreateTransaction(&c1.trans), IsOk());
ASSERT_EQ(ERR_IO_PENDING, c1.trans->Start(&request, c1.callback.callback(),
NetLogWithSource()));
request.load_flags = LOAD_ONLY_FROM_CACHE;
ASSERT_THAT(cache.CreateTransaction(&c2.trans), IsOk());
ASSERT_EQ(ERR_IO_PENDING, c2.trans->Start(&request, c2.callback.callback(),
NetLogWithSource()));
int res = c2.callback.WaitForResult();
ASSERT_EQ(ERR_CACHE_MISS, res);
c1.callback.WaitForResult();
ReadAndVerifyTransaction(c1.trans.get(), kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, SimpleGET_AbandonedCacheRead) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockHttpRequest request(kSimpleGET_Transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(256);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
trans.reset();
base::RunLoop().RunUntilIdle();
}
TEST_F(HttpCacheTest, SimpleGET_ManyWriters_DeleteCache) {
auto cache = std::make_unique<MockHttpCache>(
std::make_unique<MockBackendNoCbFactory>());
MockHttpRequest request(kSimpleGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 5;
for (int i = 0; i < kNumTransactions; i++) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache->CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
EXPECT_EQ(0, cache->network_layer()->transaction_count());
EXPECT_EQ(0, cache->disk_cache()->open_count());
EXPECT_EQ(0, cache->disk_cache()->create_count());
cache.reset();
}
TEST_F(HttpCacheTest, SimpleGET_WaitForBackend) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
MockBlockingBackendFactory* factory_ptr = factory.get();
MockHttpCache cache(std::move(factory));
MockHttpRequest request0(kSimpleGET_Transaction);
MockHttpRequest request1(kTypicalGET_Transaction);
MockHttpRequest request2(kETagGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 3;
for (int i = 0; i < kNumTransactions; i++) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
}
context_list[0]->result = context_list[0]->trans->Start(
&request0, context_list[0]->callback.callback(), NetLogWithSource());
context_list[1]->result = context_list[1]->trans->Start(
&request1, context_list[1]->callback.callback(), NetLogWithSource());
context_list[2]->result = context_list[2]->trans->Start(
&request2, context_list[2]->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(context_list[0]->callback.have_result());
factory_ptr->FinishCreation();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
for (int i = 0; i < kNumTransactions; ++i) {
EXPECT_TRUE(context_list[i]->callback.have_result());
context_list[i].reset();
}
}
TEST_F(HttpCacheTest, SimpleGET_WaitForBackend_CancelCreate) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
MockBlockingBackendFactory* factory_ptr = factory.get();
MockHttpCache cache(std::move(factory));
MockHttpRequest request0(kSimpleGET_Transaction);
MockHttpRequest request1(kTypicalGET_Transaction);
MockHttpRequest request2(kETagGET_Transaction);
std::vector<std::unique_ptr<Context>> context_list;
const int kNumTransactions = 3;
for (int i = 0; i < kNumTransactions; i++) {
context_list.push_back(std::make_unique<Context>());
Context* c = context_list[i].get();
c->result = cache.CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
}
context_list[0]->result = context_list[0]->trans->Start(
&request0, context_list[0]->callback.callback(), NetLogWithSource());
context_list[1]->result = context_list[1]->trans->Start(
&request1, context_list[1]->callback.callback(), NetLogWithSource());
context_list[2]->result = context_list[2]->trans->Start(
&request2, context_list[2]->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(context_list[0]->callback.have_result());
context_list[1].reset();
context_list[0].reset();
factory_ptr->FinishCreation();
context_list[2]->result =
context_list[2]->callback.GetResult(context_list[2]->result);
ReadAndVerifyTransaction(context_list[2]->trans.get(), kETagGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, DeleteCacheWaitingForBackend) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
MockBlockingBackendFactory* factory_ptr = factory.get();
auto cache = std::make_unique<MockHttpCache>(std::move(factory));
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
c->result = cache->CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(c->callback.have_result());
disk_cache::BackendResultCallback callback = factory_ptr->ReleaseCallback();
cache.reset();
base::RunLoop().RunUntilIdle();
std::move(callback).Run(disk_cache::BackendResult::MakeError(ERR_ABORTED));
}
TEST_F(HttpCacheTest, DeleteCacheWaitingForBackend2) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
MockBlockingBackendFactory* factory_ptr = factory.get();
auto cache = std::make_unique<MockHttpCache>(std::move(factory));
auto* cache_ptr = cache.get();
DeleteCacheCompletionCallback cb(std::move(cache));
disk_cache::Backend* backend;
int rv = cache_ptr->http_cache()->GetBackend(&backend, cb.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
c->result = cache_ptr->CreateTransaction(&c->trans);
ASSERT_THAT(c->result, IsOk());
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
TestCompletionCallback cb2;
rv = cache_ptr->http_cache()->GetBackend(&backend, cb2.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(c->callback.have_result());
factory_ptr->FinishCreation();
rv = cb.WaitForResult();
base::RunLoop().RunUntilIdle();
EXPECT_THAT(c->callback.GetResult(c->result), IsOk());
EXPECT_FALSE(cb2.have_result());
}
TEST_F(HttpCacheTest, TypicalGET_ConditionalRequest) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kTypicalGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), kTypicalGET_Transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
}
static void ETagGet_ConditionalRequest_Handler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
EXPECT_TRUE(
request->extra_headers.HasHeader(HttpRequestHeaders::kIfNoneMatch));
response_status->assign("HTTP/1.1 304 Not Modified");
response_headers->assign(kETagGET_Transaction.response_headers);
response_data->clear();
}
TEST_F(HttpCacheTest, ETagGET_ConditionalRequest_304) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.handler = ETagGet_ConditionalRequest_Handler;
LoadTimingInfo load_timing_info;
IPEndPoint remote_endpoint;
RunTransactionTestAndGetTimingAndConnectedSocketAddress(
cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE), &load_timing_info,
&remote_endpoint);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
EXPECT_FALSE(remote_endpoint.address().empty());
}
class RevalidationServer {
public:
RevalidationServer() {
s_etag_used_ = false;
s_last_modified_used_ = false;
}
bool EtagUsed() { return s_etag_used_; }
bool LastModifiedUsed() { return s_last_modified_used_; }
static void Handler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data);
private:
static bool s_etag_used_;
static bool s_last_modified_used_;
};
bool RevalidationServer::s_etag_used_ = false;
bool RevalidationServer::s_last_modified_used_ = false;
void RevalidationServer::Handler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
if (request->extra_headers.HasHeader(HttpRequestHeaders::kIfNoneMatch))
s_etag_used_ = true;
if (request->extra_headers.HasHeader(HttpRequestHeaders::kIfModifiedSince)) {
s_last_modified_used_ = true;
}
if (s_etag_used_ || s_last_modified_used_) {
response_status->assign("HTTP/1.1 304 Not Modified");
response_headers->assign(kTypicalGET_Transaction.response_headers);
response_data->clear();
} else {
response_status->assign(kTypicalGET_Transaction.status);
response_headers->assign(kTypicalGET_Transaction.response_headers);
response_data->assign(kTypicalGET_Transaction.data);
}
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMatch) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n"
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: Foo\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.Handler;
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_TRUE(server.EtagUsed());
EXPECT_TRUE(server.LastModifiedUsed());
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMismatch) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n"
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: Foo\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.Handler;
transaction.request_headers = "Foo: none\r\n";
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_TRUE(server.EtagUsed());
EXPECT_FALSE(server.LastModifiedUsed());
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMismatchStar) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
transaction.response_headers =
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n"
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: *\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.Handler;
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_TRUE(server.EtagUsed());
EXPECT_FALSE(server.LastModifiedUsed());
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_DontValidateCache_VaryMismatch) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n"
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Cache-Control: max-age=0\n"
"Vary: Foo\n";
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.Handler;
transaction.request_headers = "Foo: none\r\n";
LoadTimingInfo load_timing_info;
RunTransactionTestAndGetTiming(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE),
&load_timing_info);
EXPECT_FALSE(server.EtagUsed());
EXPECT_FALSE(server.LastModifiedUsed());
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMatch_UpdateVary) {
MockHttpCache cache;
ScopedMockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n Name: bar\r\n";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: Foo\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.request_headers = "Foo: bar\r\n Name: none\r\n";
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=3600\n"
"Vary: Name\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Foo: bar\r\n Name: bar\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMismatch_UpdateRequestHeader) {
MockHttpCache cache;
ScopedMockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=3600\n"
"Vary: Foo\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.request_headers = "Foo: none\r\n";
transaction.status = "HTTP/1.1 304 Not Modified";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Foo: bar\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMatch_DontDeleteVary) {
MockHttpCache cache;
ScopedMockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: Foo\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=3600\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Foo: none\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, GET_ValidateCache_VaryMismatch_DontDeleteVary) {
MockHttpCache cache;
ScopedMockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=3600\n"
"Vary: Foo\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.request_headers = "Foo: none\r\n";
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.response_headers =
"Etag: \"foopy\"\n"
"Cache-Control: max-age=3600\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Foo: bar\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
static void ETagGet_UnconditionalRequest_Handler(const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
EXPECT_FALSE(
request->extra_headers.HasHeader(HttpRequestHeaders::kIfNoneMatch));
}
TEST_F(HttpCacheTest, ETagGET_Http10) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
transaction.status = "HTTP/1.0 200 OK";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.handler = ETagGet_UnconditionalRequest_Handler;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, ETagGET_Http10_Range) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
transaction.status = "HTTP/1.0 200 OK";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.handler = ETagGet_UnconditionalRequest_Handler;
transaction.request_headers = "Range: bytes = 5-\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
static void ETagGet_ConditionalRequest_NoStore_Handler(
const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
EXPECT_TRUE(
request->extra_headers.HasHeader(HttpRequestHeaders::kIfNoneMatch));
response_status->assign("HTTP/1.1 304 Not Modified");
response_headers->assign("Cache-Control: no-store\n");
response_data->clear();
}
TEST_F(HttpCacheTest, ETagGET_ConditionalRequest_304_NoStore) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.handler = ETagGet_ConditionalRequest_NoStore_Handler;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
ScopedMockTransaction transaction2(kETagGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction2);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
static void ConditionalizedRequestUpdatesCacheHelper(
const Response& net_response_1,
const Response& net_response_2,
const Response& cached_response_2,
const char* extra_request_headers) {
MockHttpCache cache;
const char kUrl[] = "http://foobar.com/main.css";
static const Response kUnexpectedResponse = {
"HTTP/1.1 500 Unexpected",
"Server: unexpected_header",
"unexpected body"
};
MockTransaction mock_network_response = {nullptr};
mock_network_response.url = kUrl;
AddMockTransaction(&mock_network_response);
MockTransaction request = {nullptr};
request.url = kUrl;
request.method = "GET";
request.request_headers = "";
net_response_1.AssignTo(&mock_network_response);
net_response_1.AssignTo(&request);
std::string response_headers;
RunTransactionTestWithResponse(
cache.http_cache(), request, &response_headers);
EXPECT_EQ(net_response_1.status_and_headers(), response_headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
request.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
kUnexpectedResponse.AssignTo(&mock_network_response);
net_response_1.AssignTo(&request);
RunTransactionTestWithResponse(
cache.http_cache(), request, &response_headers);
EXPECT_EQ(net_response_1.status_and_headers(), response_headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
request.request_headers = extra_request_headers;
request.load_flags = LOAD_NORMAL;
net_response_2.AssignTo(&mock_network_response);
net_response_2.AssignTo(&request);
RunTransactionTestWithResponse(
cache.http_cache(), request, &response_headers);
EXPECT_EQ(net_response_2.status_and_headers(), response_headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
request.request_headers = "";
request.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
kUnexpectedResponse.AssignTo(&mock_network_response);
cached_response_2.AssignTo(&request);
RunTransactionTestWithResponse(
cache.http_cache(), request, &response_headers);
EXPECT_EQ(cached_response_2.status_and_headers(), response_headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&mock_network_response);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache1) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Last-Modified: Fri, 03 Jul 2009 02:14:27 GMT\n",
"body2"
};
const char extra_headers[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse2, extra_headers);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache2) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Etag: \"ETAG1\"\n"
"Expires: Wed, 7 Sep 2033 21:46:42 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Etag: \"ETAG2\"\n"
"Expires: Wed, 7 Sep 2033 21:46:42 GMT\n",
"body2"
};
const char extra_headers[] = "If-None-Match: \"ETAG1\"\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse2, extra_headers);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache3) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Server: server1\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 304 Not Modified",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Server: server2\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
""
};
static const Response kCachedResponse2 = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Server: server2\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
const char extra_headers[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kCachedResponse2, extra_headers);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache4) {
MockHttpCache cache;
const char kUrl[] = "http://foobar.com/main.css";
static const Response kNetResponse = {
"HTTP/1.1 304 Not Modified",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
""
};
const char kExtraRequestHeaders[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n";
MockTransaction mock_network_response = {nullptr};
mock_network_response.url = kUrl;
AddMockTransaction(&mock_network_response);
MockTransaction request = {nullptr};
request.url = kUrl;
request.method = "GET";
request.request_headers = kExtraRequestHeaders;
kNetResponse.AssignTo(&mock_network_response);
kNetResponse.AssignTo(&request);
std::string response_headers;
RunTransactionTestWithResponse(
cache.http_cache(), request, &response_headers);
EXPECT_EQ(kNetResponse.status_and_headers(), response_headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
RemoveMockTransaction(&mock_network_response);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache5) {
MockHttpCache cache;
const char kUrl[] = "http://foobar.com/main.css";
static const Response kNetResponse = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"foobar!!!"
};
const char kExtraRequestHeaders[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n";
MockTransaction mock_network_response = {nullptr};
mock_network_response.url = kUrl;
AddMockTransaction(&mock_network_response);
MockTransaction request = {nullptr};
request.url = kUrl;
request.method = "GET";
request.request_headers = kExtraRequestHeaders;
kNetResponse.AssignTo(&mock_network_response);
kNetResponse.AssignTo(&request);
std::string response_headers;
RunTransactionTestWithResponse(
cache.http_cache(), request, &response_headers);
EXPECT_EQ(kNetResponse.status_and_headers(), response_headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
RemoveMockTransaction(&mock_network_response);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache6) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Server: server1\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 304 Not Modified",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Server: server2\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
""
};
const char kExtraRequestHeaders[] =
"If-Modified-Since: Fri, 08 Feb 2008 22:38:21 GMT\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse1, kExtraRequestHeaders);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache7) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Etag: \"Foo1\"\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 304 Not Modified",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Etag: \"Foo2\"\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
""
};
const char kExtraRequestHeaders[] = "If-None-Match: \"Foo2\"\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse1, kExtraRequestHeaders);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache8) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Etag: \"Foo1\"\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Etag: \"Foo2\"\n"
"Last-Modified: Fri, 03 Jul 2009 02:14:27 GMT\n",
"body2"
};
const char kExtraRequestHeaders[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n"
"If-None-Match: \"Foo1\"\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse2, kExtraRequestHeaders);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache9) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Etag: \"Foo1\"\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Etag: \"Foo2\"\n"
"Last-Modified: Fri, 03 Jul 2009 02:14:27 GMT\n",
"body2"
};
const char kExtraRequestHeaders[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n"
"If-None-Match: \"Foo2\"\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse1, kExtraRequestHeaders);
}
TEST_F(HttpCacheTest, ConditionalizedRequestUpdatesCache10) {
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Etag: \"Foo1\"\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
"body1"
};
static const Response kNetResponse2 = {
"HTTP/1.1 200 OK",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Etag: \"Foo2\"\n"
"Last-Modified: Fri, 03 Jul 2009 02:14:27 GMT\n",
"body2"
};
const char kExtraRequestHeaders[] =
"If-Modified-Since: Fri, 08 Feb 2008 22:38:21 GMT\r\n"
"If-None-Match: \"Foo1\"\r\n";
ConditionalizedRequestUpdatesCacheHelper(
kNetResponse1, kNetResponse2, kNetResponse1, kExtraRequestHeaders);
}
TEST_F(HttpCacheTest, UrlContainingHash) {
MockHttpCache cache;
MockTransaction trans(kTypicalGET_Transaction);
RunTransactionTest(cache.http_cache(), trans);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::string url_with_hash = std::string(trans.url) + "#multiple#hashes";
trans.url = url_with_hash.c_str();
trans.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTest(cache.http_cache(), trans);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_SkipsCache) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimplePOST_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_DisabledCache) {
MockHttpCache cache;
cache.http_cache()->set_mode(HttpCache::Mode::DISABLE);
RunTransactionTest(cache.http_cache(), kSimplePOST_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_LoadOnlyFromCache_Miss) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
ASSERT_TRUE(trans.get());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
ASSERT_THAT(callback.GetResult(rv), IsError(ERR_CACHE_MISS));
trans.reset();
EXPECT_EQ(0, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_LoadOnlyFromCache_Hit) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
const int64_t kUploadId = 1;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers),
kUploadId);
MockHttpRequest request(transaction);
request.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
request.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_WithRanges) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
transaction.request_headers = "Range: bytes = 0-4\r\n";
const int64_t kUploadId = 1;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers),
kUploadId);
MockHttpRequest request(transaction);
request.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_SeparateCache) {
MockHttpCache cache;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 1);
MockTransaction transaction(kSimplePOST_Transaction);
MockHttpRequest req1(transaction);
req1.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "GET";
MockHttpRequest req2(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePOST_Invalidate_205) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 1);
transaction.method = "POST";
transaction.status = "HTTP/1.1 205 No Content";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_P(HttpCacheTest_SplitCacheFeatureEnabled,
SimplePOST_Invalidate_205_SplitCache) {
SchemefulSite site_a(GURL("http://a.com"));
SchemefulSite site_b(GURL("http://b.com"));
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req1(transaction);
req1.network_isolation_key = NetworkIsolationKey(site_a, site_a);
req1.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
MockHttpRequest req1b(transaction);
req1b.network_isolation_key = NetworkIsolationKey(site_b, site_b);
req1b.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_b);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1b,
nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 1);
transaction.method = "POST";
transaction.status = "HTTP/1.1 205 No Content";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
req2.network_isolation_key = NetworkIsolationKey(site_a, site_a);
req2.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1b,
nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(4, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePOST_NoUploadId_Invalidate_205) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
transaction.method = "POST";
transaction.status = "HTTP/1.1 205 No Content";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePOST_NoUploadId_NoBackend) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
factory->set_fail(true);
factory->FinishCreation();
MockHttpCache cache(std::move(factory));
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
MockTransaction transaction(kSimplePOST_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req(transaction);
req.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req, nullptr);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePOST_DontInvalidate_100) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 1);
transaction.method = "POST";
transaction.status = "HTTP/1.1 100 Continue";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleHEAD_LoadOnlyFromCache_Miss) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
AddMockTransaction(&transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.method = "HEAD";
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
ASSERT_TRUE(trans.get());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
ASSERT_THAT(callback.GetResult(rv), IsError(ERR_CACHE_MISS));
trans.reset();
EXPECT_EQ(0, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleHEAD_LoadOnlyFromCache_Hit) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "HEAD";
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.data = "";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleHEAD_ContentLengthOnHit_Read) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
transaction.response_headers = "Content-Length: 42\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.method = "HEAD";
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.data = "";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ("HTTP/1.1 200 OK\nContent-Length: 42\n", headers);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, ETagHEAD_ContentLengthOnHit_ReadWrite) {
MockHttpCache cache;
MockTransaction transaction(kETagGET_Transaction);
AddMockTransaction(&transaction);
std::string server_headers(kETagGET_Transaction.response_headers);
server_headers.append("Content-Length: 42\n");
transaction.response_headers = server_headers.data();
RunTransactionTest(cache.http_cache(), transaction);
transaction.method = "HEAD";
transaction.data = "";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_NE(std::string::npos, headers.find("Content-Length: 42\n"));
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleHEAD_WithRanges) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.method = "HEAD";
transaction.request_headers = "Range: bytes = 0-4\r\n";
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.start_return_code = ERR_CACHE_MISS;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleHEAD_WithCachedRanges) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
RemoveMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.url = kRangeGET_TransactionOK.url;
transaction.method = "HEAD";
transaction.data = "";
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_NE(std::string::npos, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_NE(std::string::npos, headers.find("Content-Length: 80\n"));
EXPECT_EQ(std::string::npos, headers.find("Content-Range"));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleHEAD_WithTruncatedEntry) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
RemoveMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.url = kRangeGET_TransactionOK.url;
transaction.method = "HEAD";
transaction.data = "";
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_NE(std::string::npos, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_NE(std::string::npos, headers.find("Content-Length: 80\n"));
EXPECT_EQ(std::string::npos, headers.find("Content-Range"));
EXPECT_EQ(0, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, TypicalHEAD_UpdatesResponse) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.method = "HEAD";
transaction.response_headers = "Foo: bar\n";
transaction.data = "";
transaction.status = "HTTP/1.1 304 Not Modified\n";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
RemoveMockTransaction(&transaction);
EXPECT_NE(std::string::npos, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
MockTransaction transaction2(kTypicalGET_Transaction);
AddMockTransaction(&transaction2);
base::RunLoop().RunUntilIdle();
transaction2.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTestWithResponse(cache.http_cache(), transaction2, &headers);
EXPECT_NE(std::string::npos, headers.find("Foo: bar\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction2);
}
TEST_F(HttpCacheTest, TypicalHEAD_ConditionalizedRequestUpdatesResponse) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.method = "HEAD";
transaction.request_headers =
"If-Modified-Since: Wed, 28 Nov 2007 00:40:09 GMT\r\n";
transaction.response_headers = "Foo: bar\n";
transaction.data = "";
transaction.status = "HTTP/1.1 304 Not Modified\n";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
RemoveMockTransaction(&transaction);
EXPECT_NE(std::string::npos, headers.find("HTTP/1.1 304 Not Modified\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
MockTransaction transaction2(kTypicalGET_Transaction);
AddMockTransaction(&transaction2);
base::RunLoop().RunUntilIdle();
transaction2.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTestWithResponse(cache.http_cache(), transaction2, &headers);
EXPECT_NE(std::string::npos, headers.find("Foo: bar\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction2);
}
TEST_F(HttpCacheTest, SimpleHEAD_InvalidatesEntry) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.method = "HEAD";
transaction.data = "";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
transaction.method = "GET";
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.start_return_code = ERR_CACHE_MISS;
RunTransactionTest(cache.http_cache(), transaction);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePUT_Miss) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
transaction.method = "PUT";
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
MockHttpRequest request(transaction);
request.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePUT_Invalidate) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
transaction.method = "PUT";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePUT_Invalidate_305) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
transaction.method = "PUT";
transaction.status = "HTTP/1.1 305 Use Proxy";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePUT_DontInvalidate_404) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
transaction.method = "PUT";
transaction.status = "HTTP/1.1 404 Not Found";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleDELETE_Miss) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
transaction.method = "DELETE";
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
MockHttpRequest request(transaction);
request.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleDELETE_Invalidate) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
transaction.method = "DELETE";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleDELETE_Invalidate_301) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "DELETE";
transaction.status = "HTTP/1.1 301 Moved Permanently ";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "GET";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleDELETE_DontInvalidate_416) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "DELETE";
transaction.status = "HTTP/1.1 416 Requested Range Not Satisfiable";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "GET";
transaction.status = "HTTP/1.1 200 OK";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePATCH_Invalidate) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest req1(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
transaction.method = "PATCH";
MockHttpRequest req2(transaction);
req2.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req2, nullptr);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithRequest(cache.http_cache(), transaction, req1, nullptr);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimplePATCH_Invalidate_301) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "PATCH";
transaction.status = "HTTP/1.1 301 Moved Permanently ";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "GET";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimplePATCH_DontInvalidate_416) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "PATCH";
transaction.status = "HTTP/1.1 416 Requested Range Not Satisfiable";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.method = "GET";
transaction.status = "HTTP/1.1 200 OK";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SimpleGET_DontInvalidateOnFailure) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
MockTransaction transaction(kSimpleGET_Transaction);
transaction.start_return_code = ERR_FAILED;
transaction.load_flags |= LOAD_VALIDATE_CACHE;
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
RemoveMockTransaction(&transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.start_return_code = OK;
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_SkipsCache) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kRangeGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "If-None-Match: foo\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
transaction.request_headers =
"If-Modified-Since: Wed, 28 Nov 2007 00:45:20 GMT\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_SkipsCache2) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_Transaction);
transaction.request_headers = "If-None-Match: foo\r\n"
EXTRA_HEADER
"Range: bytes = 40-49\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
transaction.request_headers =
"If-Modified-Since: Wed, 28 Nov 2007 00:45:20 GMT\r\n"
EXTRA_HEADER
"Range: bytes = 40-49\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
transaction.request_headers = "If-Range: bla\r\n"
EXTRA_HEADER
"Range: bytes = 40-49\r\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, SimpleGET_DoesntLogHeaders) {
MockHttpCache cache;
RecordingNetLogObserver net_log_observer;
RunTransactionTestWithLog(cache.http_cache(), kSimpleGET_Transaction,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_FALSE(LogContainsEventType(
net_log_observer, NetLogEventType::HTTP_CACHE_CALLER_REQUEST_HEADERS));
}
TEST_F(HttpCacheTest, RangeGET_LogsHeaders) {
MockHttpCache cache;
RecordingNetLogObserver net_log_observer;
RunTransactionTestWithLog(cache.http_cache(), kRangeGET_Transaction,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_TRUE(LogContainsEventType(
net_log_observer, NetLogEventType::HTTP_CACHE_CALLER_REQUEST_HEADERS));
}
TEST_F(HttpCacheTest, ExternalValidation_LogsHeaders) {
MockHttpCache cache;
RecordingNetLogObserver net_log_observer;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "If-None-Match: foo\r\n" EXTRA_HEADER;
RunTransactionTestWithLog(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_TRUE(LogContainsEventType(
net_log_observer, NetLogEventType::HTTP_CACHE_CALLER_REQUEST_HEADERS));
}
TEST_F(HttpCacheTest, SpecialHeaders_LogsHeaders) {
MockHttpCache cache;
RecordingNetLogObserver net_log_observer;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "cache-control: no-cache\r\n" EXTRA_HEADER;
RunTransactionTestWithLog(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_TRUE(LogContainsEventType(
net_log_observer, NetLogEventType::HTTP_CACHE_CALLER_REQUEST_HEADERS));
}
TEST_F(HttpCacheTest, GET_Crazy206) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_TransactionOK);
AddMockTransaction(&transaction);
transaction.request_headers = EXTRA_HEADER;
transaction.handler = nullptr;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_Crazy416) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
transaction.status = "HTTP/1.1 416 Requested Range Not Satisfiable";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_NoStrongValidators) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers = "Content-Length: 10\n"
"Cache-Control: max-age=3600\n"
"ETag: w/\"foo\"\n";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_NoConditionalization) {
MockHttpCache cache;
cache.FailConditionalizations();
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers = "Content-Length: 10\n"
"ETag: \"foo\"\n";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_NoValidation_LogsRestart) {
MockHttpCache cache;
cache.FailConditionalizations();
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers = "Content-Length: 10\n"
"ETag: \"foo\"\n";
RunTransactionTest(cache.http_cache(), transaction);
RecordingNetLogObserver net_log_observer;
RunTransactionTestWithLog(cache.http_cache(), kRangeGET_TransactionOK,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_TRUE(LogContainsEventType(
net_log_observer, NetLogEventType::HTTP_CACHE_RESTART_PARTIAL_REQUEST));
}
TEST_F(HttpCacheTest, GET_NoConditionalization) {
for (bool use_memory_entry_data : {false, true}) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(use_memory_entry_data);
cache.FailConditionalizations();
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers =
"Content-Length: 10\n"
"ETag: \"foo\"\n";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.request_headers = EXTRA_HEADER;
transaction.data = "Not a range";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(0U, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
if (use_memory_entry_data) {
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(3, cache.disk_cache()->create_count());
} else {
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
}
TEST_F(HttpCacheTest, RangeGET_NoConditionalization2) {
MockHttpCache cache;
cache.FailConditionalizations();
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers = "Content-Length: 10\n"
"ETag: \"foo\"\n";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.request_headers = "Range: bytes = 20-59\r\n" EXTRA_HEADER;
transaction.data = "rg: 20-29 rg: 30-39 rg: 40-49 rg: 50-59 ";
transaction.response_headers = kRangeGET_TransactionOK.response_headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 20, 59);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_NoContentLength) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
AddMockTransaction(&transaction);
transaction.response_headers = "ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Range: bytes 40-49/80\n";
transaction.handler = nullptr;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.handler = &RangeTransactionServer::RangeHandler;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_OK) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 30-39\r\n" EXTRA_HEADER;
transaction.data = "rg: 30-39 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 30, 39);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = 20-59\r\n" EXTRA_HEADER;
transaction.data = "rg: 20-29 rg: 30-39 rg: 40-49 rg: 50-59 ";
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseAndGetTiming(
cache.http_cache(), transaction, &headers,
NetLogWithSource::Make(NetLogSourceType::NONE), &load_timing_info);
Verify206Response(headers, 20, 59);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(3, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_CacheReadError) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
cache.disk_cache()->set_soft_failures_one_instance(MockDiskEntry::FAIL_ALL);
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_NoStore) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_TransactionOK);
std::string response_headers = base::StrCat(
{kRangeGET_TransactionOK.response_headers, "Cache-Control: no-store\n"});
transaction.response_headers = response_headers.c_str();
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_NoStore304) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_TransactionOK);
std::string response_headers = base::StrCat(
{kRangeGET_TransactionOK.response_headers, "Cache-Control: max-age=0\n"});
transaction.response_headers = response_headers.c_str();
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
response_headers = base::StrCat(
{kRangeGET_TransactionOK.response_headers, "Cache-Control: no-store\n"});
transaction.response_headers = response_headers.c_str();
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.response_headers = kRangeGET_TransactionOK.response_headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
Verify206Response(headers, 40, 49);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_SyncOK) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.test_mode = TEST_MODE_SYNC_ALL;
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = 30-39\r\n" EXTRA_HEADER;
transaction.data = "rg: 30-39 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 30, 39);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = 20-59\r\n" EXTRA_HEADER;
transaction.data = "rg: 20-29 rg: 30-39 rg: 40-49 rg: 50-59 ";
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseAndGetTiming(
cache.http_cache(), transaction, &headers,
NetLogWithSource::Make(NetLogSourceType::NONE), &load_timing_info);
Verify206Response(headers, 20, 59);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, Sparse_WaitForEntry) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), transaction);
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
std::string cache_key =
*cache.http_cache()->GenerateCacheKeyForRequest(&request);
ASSERT_TRUE(cache.OpenBackendEntry(cache_key, &entry));
entry->CancelSparseIO();
RunTransactionTest(cache.http_cache(), transaction);
entry->CancelSparseIO();
transaction.request_headers = EXTRA_HEADER;
transaction.data = kFullRangeData;
RunTransactionTest(cache.http_cache(), transaction);
entry->Close();
}
TEST_F(HttpCacheTest, RangeGET_Revalidate1) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2009 01:10:43 GMT\n"
"Expires: Wed, 7 Sep 2033 21:46:42 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n";
AddMockTransaction(&transaction);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
NetLogWithSource net_log_with_source =
NetLogWithSource::Make(NetLogSourceType::NONE);
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseAndGetTiming(cache.http_cache(), transaction,
&headers, net_log_with_source,
&load_timing_info);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingCachedResponse(load_timing_info);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
RunTransactionTestWithResponseAndGetTiming(cache.http_cache(), transaction,
&headers, net_log_with_source,
&load_timing_info);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_Revalidate2) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2009 01:10:43 GMT\n"
"Expires: Sat, 18 Apr 2009 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n";
AddMockTransaction(&transaction);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_304) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RangeTransactionServer handler;
handler.set_not_modified(true);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_ModifiedResult) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RangeTransactionServer handler;
handler.set_modified(true);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_206ReturnsSubrangeRange_NoCachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 40-59\r\n" EXTRA_HEADER;
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n"
"Content-Range: bytes 40-49/80\n";
transaction.handler = nullptr;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_206ReturnsSubrangeRange_CachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 70-79\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
transaction.request_headers = "Range: bytes = 40-79\r\n" EXTRA_HEADER;
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n"
"Content-Range: bytes 40-49/80\n";
transaction.handler = nullptr;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, GET_206ReturnsSubrangeRange_CachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 70-79\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
transaction.request_headers = "X-Return-Default-Range:\r\n" EXTRA_HEADER;
transaction.data = "Not a range";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(0U, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_206ReturnsWrongRange_NoCachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 30-59\r\n" EXTRA_HEADER;
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n"
"Content-Range: bytes 40-49/80\n";
transaction.handler = nullptr;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_206ReturnsWrongRange_CachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 70-79\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
transaction.request_headers = "Range: bytes = 30-79\r\n" EXTRA_HEADER;
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n"
"Content-Range: bytes 40-49/80\n";
transaction.handler = nullptr;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_206ReturnsSmallerFile_NoCachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 70-99\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(1, cache.disk_cache()->open_count());
}
TEST_F(HttpCacheTest, RangeGET_206ReturnsSmallerFile_CachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
transaction.request_headers = "Range: bytes = 70-99\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_416_NoCachedContent) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 80-99\r\n" EXTRA_HEADER;
transaction.data = "";
transaction.status = "HTTP/1.1 416 Requested Range Not Satisfiable";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(0U, headers.find(transaction.status));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_301) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.status = "HTTP/1.1 301 Moved Permanently";
transaction.response_headers = "Location: http://www.bar.com/\n";
transaction.data = "";
transaction.handler = nullptr;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, UnknownRangeGET_1) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = -10\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = 60-\r\n" EXTRA_HEADER;
transaction.data = "rg: 60-69 rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 60, 79);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, UnknownRangeGET_2) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.test_mode = TEST_MODE_SYNC_CACHE_START |
TEST_MODE_SYNC_CACHE_READ |
TEST_MODE_SYNC_CACHE_WRITE;
AddMockTransaction(&transaction);
transaction.request_headers = "Range: bytes = 70-\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = -20\r\n" EXTRA_HEADER;
transaction.data = "rg: 60-69 rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 60, 79);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, UnknownRangeGET_3) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Content-Length: 0\n",
transaction.data = "";
transaction.test_mode = TEST_MODE_SYNC_CACHE_START |
TEST_MODE_SYNC_CACHE_READ |
TEST_MODE_SYNC_CACHE_WRITE;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(
"HTTP/1.1 200 OK\nCache-Control: max-age=10000\nContent-Length: 0\n",
headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = -20\r\n" EXTRA_HEADER;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(
"HTTP/1.1 200 OK\nCache-Control: max-age=10000\nContent-Length: 0\n",
headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, UnknownRangeGET_302) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.status = "HTTP/1.1 302 Found";
transaction.response_headers =
"Cache-Control: max-age=0\n"
"Content-Length: 0\n"
"Location: https://example.org/\n",
transaction.data = "";
transaction.request_headers = "Range: bytes = 0-\r\n" EXTRA_HEADER;
transaction.test_mode = TEST_MODE_SYNC_CACHE_START |
TEST_MODE_SYNC_CACHE_READ |
TEST_MODE_SYNC_CACHE_WRITE;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(
"HTTP/1.1 302 Found\n"
"Cache-Control: max-age=0\n"
"Content-Length: 0\n"
"Location: https://example.org/\n",
headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.response_headers =
"Cache-Control: max-age=0\n"
"Content-Length: 0\n"
"Location: https://example.com/\n",
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(
"HTTP/1.1 302 Found\n"
"Cache-Control: max-age=0\n"
"Content-Length: 0\n"
"Location: https://example.com/\n",
headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, UnknownRangeGET_302_Replaced) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.status = "HTTP/1.1 302 Found";
transaction.response_headers =
"Cache-Control: max-age=0\n"
"Content-Length: 0\n"
"Location: https://example.org/\n",
transaction.data = "";
transaction.test_mode = TEST_MODE_SYNC_CACHE_START |
TEST_MODE_SYNC_CACHE_READ |
TEST_MODE_SYNC_CACHE_WRITE;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(
"HTTP/1.1 302 Found\n"
"Cache-Control: max-age=0\n"
"Content-Length: 0\n"
"Location: https://example.org/\n",
headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
transaction.handler = &RangeTransactionServer::RangeHandler;
transaction.request_headers = "Range: bytes = -30\r\n" EXTRA_HEADER;
transaction.data = "rg: 50-59 rg: 60-69 rg: 70-79 ";
transaction.status = "HTTP/1.1 206 Partial Content";
transaction.response_headers = "Content-Length: 10\n";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(
"HTTP/1.1 206 Partial Content\n"
"Content-Range: bytes 50-79/80\n"
"Content-Length: 30\n",
headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, UnknownRangeGET_304) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
AddMockTransaction(&transaction);
RangeTransactionServer handler;
handler.set_not_modified(true);
transaction.request_headers = "Range: bytes = 70-\r\n" EXTRA_HEADER;
transaction.data = "";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(0U, headers.find("HTTP/1.1 304 Not Modified\n"));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_Previous206) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
NetLogWithSource net_log_with_source =
NetLogWithSource::Make(NetLogSourceType::NONE);
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseAndGetTiming(
cache.http_cache(), kRangeGET_TransactionOK, &headers,
net_log_with_source, &load_timing_info);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
transaction.data = kFullRangeData;
RunTransactionTestWithResponseAndGetTiming(cache.http_cache(), transaction,
&headers, net_log_with_source,
&load_timing_info);
EXPECT_EQ(0U, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, GET_Previous206_NotModified) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_TransactionOK);
AddMockTransaction(&transaction);
std::string headers;
NetLogWithSource net_log_with_source =
NetLogWithSource::Make(NetLogSourceType::NONE);
LoadTimingInfo load_timing_info;
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.data = "rg: 00-09 ";
RunTransactionTestWithResponseAndGetTiming(cache.http_cache(), transaction,
&headers, net_log_with_source,
&load_timing_info);
Verify206Response(headers, 0, 9);
TestLoadTimingNetworkRequest(load_timing_info);
transaction.request_headers = "Range: bytes = 70-79\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponseAndGetTiming(cache.http_cache(), transaction,
&headers, net_log_with_source,
&load_timing_info);
Verify206Response(headers, 70, 79);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
transaction.request_headers = "Foo: bar\r\n" EXTRA_HEADER;
transaction.data = kFullRangeData;
RunTransactionTestWithResponseAndGetTiming(cache.http_cache(), transaction,
&headers, net_log_with_source,
&load_timing_info);
EXPECT_EQ(0U, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_Previous206_NewContent) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.data = "rg: 00-09 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 0, 9);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
MockTransaction transaction2(kRangeGET_TransactionOK);
transaction2.request_headers = EXTRA_HEADER;
transaction2.load_flags |= LOAD_VALIDATE_CACHE;
transaction2.data = "Not a range";
RangeTransactionServer handler;
handler.set_modified(true);
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseAndGetTiming(
cache.http_cache(), transaction2, &headers,
NetLogWithSource::Make(NetLogSourceType::NONE), &load_timing_info);
EXPECT_EQ(0U, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_Previous206_NotSparse) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
disk_cache::Entry* entry;
ASSERT_TRUE(cache.CreateBackendEntry(request.CacheKey(), &entry, nullptr));
std::string raw_headers(kRangeGET_TransactionOK.status);
raw_headers.append("\n");
raw_headers.append(kRangeGET_TransactionOK.response_headers);
HttpResponseInfo response;
response.headers = base::MakeRefCounted<HttpResponseHeaders>(
HttpUtil::AssembleRawHeaders(raw_headers));
EXPECT_TRUE(MockHttpCache::WriteResponseInfo(entry, &response, true, false));
scoped_refptr<IOBuffer> buf(base::MakeRefCounted<IOBuffer>(500));
int len = static_cast<int>(base::strlcpy(buf->data(),
kRangeGET_TransactionOK.data, 500));
TestCompletionCallback cb;
int rv = entry->WriteData(1, 0, buf.get(), len, cb.callback(), true);
EXPECT_EQ(len, cb.GetResult(rv));
entry->Close();
std::string headers;
LoadTimingInfo load_timing_info;
RunTransactionTestWithResponseAndGetTiming(
cache.http_cache(), kSimpleGET_Transaction, &headers,
NetLogWithSource::Make(NetLogSourceType::NONE), &load_timing_info);
std::string expected_headers(kSimpleGET_Transaction.status);
expected_headers.append("\n");
expected_headers.append(kSimpleGET_Transaction.response_headers);
EXPECT_EQ(expected_headers, headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
TestLoadTimingNetworkRequest(load_timing_info);
}
TEST_F(HttpCacheTest, RangeGET_Previous206_NotSparse_2) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
disk_cache::Entry* entry;
ASSERT_TRUE(cache.CreateBackendEntry(request.CacheKey(), &entry, nullptr));
std::string raw_headers(kRangeGET_TransactionOK.status);
raw_headers.append("\n");
raw_headers.append(kRangeGET_TransactionOK.response_headers);
HttpResponseInfo response;
response.headers = base::MakeRefCounted<HttpResponseHeaders>(
HttpUtil::AssembleRawHeaders(raw_headers));
EXPECT_TRUE(MockHttpCache::WriteResponseInfo(entry, &response, true, false));
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(500);
int len = static_cast<int>(base::strlcpy(buf->data(),
kRangeGET_TransactionOK.data, 500));
TestCompletionCallback cb;
int rv = entry->WriteData(1, 0, buf.get(), len, cb.callback(), true);
EXPECT_EQ(len, cb.GetResult(rv));
entry->Close();
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, GET_Previous206_NotValidation) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
disk_cache::Entry* entry;
ASSERT_TRUE(cache.CreateBackendEntry(request.CacheKey(), &entry, nullptr));
std::string raw_headers(kRangeGET_TransactionOK.status);
raw_headers.append("\n");
raw_headers.append("Content-Length: 80\n");
HttpResponseInfo response;
response.headers = base::MakeRefCounted<HttpResponseHeaders>(
HttpUtil::AssembleRawHeaders(raw_headers));
EXPECT_TRUE(MockHttpCache::WriteResponseInfo(entry, &response, true, false));
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(500);
int len = static_cast<int>(base::strlcpy(buf->data(),
kRangeGET_TransactionOK.data, 500));
TestCompletionCallback cb;
int rv = entry->WriteData(1, 0, buf.get(), len, cb.callback(), true);
EXPECT_EQ(len, cb.GetResult(rv));
entry->Close();
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kSimpleGET_Transaction,
&headers);
std::string expected_headers(kSimpleGET_Transaction.status);
expected_headers.append("\n");
expected_headers.append(kSimpleGET_Transaction.response_headers);
EXPECT_EQ(expected_headers, headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, RangeGET_Previous200) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
transaction.url = kRangeGET_TransactionOK.url;
transaction.data = kFullRangeData;
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
MockTransaction transaction2(kRangeGET_TransactionOK);
RangeTransactionServer handler;
handler.set_not_modified(true);
RunTransactionTestWithResponse(cache.http_cache(), transaction2, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
MockTransaction transaction3(kRangeGET_TransactionOK);
transaction3.request_headers = "Range: bytes = 80-90\r\n" EXTRA_HEADER;
transaction3.data = transaction.data;
transaction3.load_flags = LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTestWithResponse(cache.http_cache(), transaction3, &headers);
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(0U, headers.find("HTTP/1.1 200 "));
EXPECT_EQ(std::string::npos, headers.find("Content-Range:"));
EXPECT_EQ(std::string::npos, headers.find("Content-Length: 80"));
base::RunLoop().RunUntilIdle();
RunTransactionTest(cache.http_cache(), transaction2);
EXPECT_EQ(3, cache.disk_cache()->open_count());
base::RunLoop().RunUntilIdle();
handler.set_not_modified(false);
transaction2.request_headers = kRangeGET_TransactionOK.request_headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction2, &headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(4, cache.network_layer()->transaction_count());
EXPECT_EQ(4, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction2);
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeRequestResultsIn200) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = -10\r\n" EXTRA_HEADER;
transaction.data = "rg: 70-79 ";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction2(kSimpleGET_Transaction);
transaction2.url = kRangeGET_TransactionOK.url;
transaction2.request_headers = kRangeGET_TransactionOK.request_headers;
AddMockTransaction(&transaction2);
RunTransactionTestWithResponse(cache.http_cache(), transaction2, &headers);
std::string expected_headers(kSimpleGET_Transaction.status);
expected_headers.append("\n");
expected_headers.append(kSimpleGET_Transaction.response_headers);
EXPECT_EQ(expected_headers, headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction2);
}
TEST_F(HttpCacheTest, RangeGET_MoreThanCurrentSize) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 120-\r\n" EXTRA_HEADER;
transaction.data = "";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(0U, headers.find("HTTP/1.1 416 "));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_Cancel) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(buf->size(), rv);
c.reset();
disk_cache::Entry* entry;
ASSERT_TRUE(cache.OpenBackendEntry(request.CacheKey(), &entry));
entry->Close();
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_CancelWhileReading) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
auto context = std::make_unique<Context>();
int rv = cache.CreateTransaction(&context->trans);
ASSERT_THAT(rv, IsOk());
rv = context->trans->Start(&request, context->callback.callback(),
NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = context->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(5);
rv = context->trans->Read(buf.get(), buf->size(),
context->callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
context.reset();
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), false, 0);
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_Cancel2) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
request.load_flags |= LOAD_VALIDATE_CACHE;
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(5);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_EQ(5, c->callback.GetResult(rv));
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
c.reset();
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_Cancel3) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
request.load_flags |= LOAD_VALIDATE_CACHE;
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
rv = c->callback.WaitForResult();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(5);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_EQ(5, c->callback.GetResult(rv));
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
c.reset();
c = std::make_unique<Context>();
rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
MockDiskEntry::IgnoreCallbacks(true);
base::RunLoop().RunUntilIdle();
MockDiskEntry::IgnoreCallbacks(false);
c.reset();
base::RunLoop().RunUntilIdle();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_InvalidResponse1) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = nullptr;
transaction.response_headers = "Content-Range: bytes 40-49/45\n"
"Content-Length: 10\n";
AddMockTransaction(&transaction);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
std::string expected(transaction.status);
expected.append("\n");
expected.append(transaction.response_headers);
EXPECT_EQ(expected, headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_InvalidResponse2) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = nullptr;
transaction.response_headers = "Content-Range: bytes 40-49/80\n"
"Content-Length: 20\n";
AddMockTransaction(&transaction);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
std::string expected(transaction.status);
expected.append("\n");
expected.append(transaction.response_headers);
EXPECT_EQ(expected, headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_InvalidResponse3) {
MockHttpCache cache;
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = nullptr;
transaction.request_headers = "Range: bytes = 50-59\r\n" EXTRA_HEADER;
std::string response_headers(transaction.response_headers);
response_headers.append("Content-Range: bytes 50-59/160\n");
transaction.response_headers = response_headers.c_str();
AddMockTransaction(&transaction);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 50, 59);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
AddMockTransaction(&kRangeGET_TransactionOK);
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_LargeValues) {
MockHttpCache cache(HttpCache::DefaultBackend::InMemory(1024 * 1024));
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = nullptr;
transaction.request_headers = "Range: bytes = 4294967288-4294967297\r\n"
EXTRA_HEADER;
transaction.response_headers =
"ETag: \"foo\"\n"
"Content-Range: bytes 4294967288-4294967297/4294967299\n"
"Content-Length: 10\n";
AddMockTransaction(&transaction);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
std::string expected(transaction.status);
expected.append("\n");
expected.append(transaction.response_headers);
EXPECT_EQ(expected, headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
disk_cache::Entry* en;
MockHttpRequest request(transaction);
ASSERT_TRUE(cache.OpenBackendEntry(request.CacheKey(), &en));
en->Close();
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_NoDiskCache) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
factory->set_fail(true);
factory->FinishCreation();
MockHttpCache cache(std::move(factory));
AddMockTransaction(&kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeHEAD) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = -10\r\n" EXTRA_HEADER;
transaction.method = "HEAD";
transaction.data = "rg: 70-79 ";
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
Verify206Response(headers, 70, 79);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(0, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, RangeGET_FastFlakyServer) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 40-\r\n" EXTRA_HEADER;
transaction.test_mode = TEST_MODE_SYNC_NET_START;
transaction.load_flags |= LOAD_VALIDATE_CACHE;
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
RangeTransactionServer handler;
handler.set_bad_200(true);
transaction.data = "Not a range";
RecordingNetLogObserver net_log_observer;
RunTransactionTestWithLog(cache.http_cache(), transaction,
NetLogWithSource::Make(NetLogSourceType::NONE));
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_TRUE(LogContainsEventType(
net_log_observer, NetLogEventType::HTTP_CACHE_RE_SEND_PARTIAL_REQUEST));
}
TEST_F(HttpCacheTest, RangeGET_FastFlakyServer2) {
MockHttpCache cache;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 40-49\r\n" EXTRA_HEADER;
transaction.data = "rg: 40-";
transaction.handler = nullptr;
std::string headers(transaction.response_headers);
headers.append("Content-Range: bytes 40-49/80\n");
transaction.response_headers = headers.c_str();
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.request_headers = "Range: bytes = 60-69\r\n" EXTRA_HEADER;
transaction.data = "rg: 60-";
headers = kRangeGET_TransactionOK.response_headers;
headers.append("Content-Range: bytes 60-69/80\n");
transaction.response_headers = headers.c_str();
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_OK_LoadOnlyFromCache) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
ASSERT_TRUE(trans.get());
rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsError(ERR_CACHE_MISS));
trans.reset();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, WriteResponseInfo_Truncated) {
MockHttpCache cache;
disk_cache::Entry* entry;
ASSERT_TRUE(cache.CreateBackendEntry(
GenerateCacheKey("http://www.google.com"), &entry, nullptr));
HttpResponseInfo response;
response.headers = base::MakeRefCounted<HttpResponseHeaders>(
HttpUtil::AssembleRawHeaders("HTTP/1.1 200 OK"));
EXPECT_TRUE(MockHttpCache::WriteResponseInfo(entry, &response, true, true));
bool truncated = false;
EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
EXPECT_TRUE(truncated);
EXPECT_TRUE(MockHttpCache::WriteResponseInfo(entry, &response, true, false));
truncated = true;
EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
EXPECT_FALSE(truncated);
entry->Close();
}
TEST_F(HttpCacheTest, PersistHttpResponseInfo) {
const IPEndPoint expected_endpoint = IPEndPoint(IPAddress(1, 2, 3, 4), 80);
HttpResponseInfo response1;
response1.was_cached = false;
response1.remote_endpoint = expected_endpoint;
response1.headers =
base::MakeRefCounted<HttpResponseHeaders>("HTTP/1.1 200 OK");
base::Pickle pickle;
response1.Persist(&pickle, false, false);
HttpResponseInfo response2;
bool response_truncated;
EXPECT_TRUE(response2.InitFromPickle(pickle, &response_truncated));
EXPECT_FALSE(response_truncated);
EXPECT_TRUE(response2.was_cached);
EXPECT_EQ(expected_endpoint, response2.remote_endpoint);
EXPECT_EQ("HTTP/1.1 200 OK", response2.headers->GetStatusLine());
}
TEST_F(HttpCacheTest, DoomOnDestruction) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
c->result = c->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
c.reset();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, DoomOnDestruction2) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(buf->size(), rv);
c.reset();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, DoomOnDestruction3) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 22\n"
"Accept-Ranges: none\n"
"Etag: \"foopy\"\n";
AddMockTransaction(&transaction);
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(buf->size(), rv);
c.reset();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, SetTruncatedFlag) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 22\n"
"Etag: \"foopy\"\n";
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(buf->size(), rv);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
EXPECT_FALSE(c->callback.have_result());
c->trans.reset();
EXPECT_FALSE(c->callback.have_result());
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), true, 0);
}
TEST_F(HttpCacheTest, DontSetTruncatedFlagForGarbledResponseCode) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 22\n"
"Etag: \"foopy\"\n";
transaction.status = "HTTP/1.1 2";
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(10);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
EXPECT_EQ(buf->size(), rv);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
EXPECT_FALSE(c->callback.have_result());
MockHttpCache::SetTestMode(TEST_MODE_SYNC_ALL);
c->trans.reset();
MockHttpCache::SetTestMode(0);
EXPECT_FALSE(c->callback.have_result());
base::RunLoop().RunUntilIdle();
disk_cache::Entry* entry;
ASSERT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
}
TEST_F(HttpCacheTest, DontSetTruncatedFlag) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Content-Length: 22\n"
"Etag: \"foopy\"\n";
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(22);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_EQ(buf->size(), c->callback.GetResult(rv));
c->trans.reset();
VerifyTruncatedFlag(&cache, request.CacheKey(), false, 0);
}
TEST_F(HttpCacheTest, RangeGET_DontTruncate) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-19\r\n" EXTRA_HEADER;
auto request = std::make_unique<MockHttpRequest>(transaction);
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
TestCompletionCallback cb;
rv = trans->Start(request.get(), cb.callback(), NetLogWithSource());
EXPECT_EQ(0, cb.GetResult(rv));
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(10);
rv = trans->Read(buf.get(), 10, cb.callback());
EXPECT_EQ(10, cb.GetResult(rv));
trans.reset();
VerifyTruncatedFlag(&cache, request->CacheKey(), false, 0);
}
TEST_F(HttpCacheTest, RangeGET_DontTruncate2) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 30-49\r\n" EXTRA_HEADER;
auto request = std::make_unique<MockHttpRequest>(transaction);
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
TestCompletionCallback cb;
rv = trans->Start(request.get(), cb.callback(), NetLogWithSource());
EXPECT_EQ(0, cb.GetResult(rv));
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(10);
rv = trans->Read(buf.get(), 10, cb.callback());
EXPECT_EQ(10, cb.GetResult(rv));
trans.reset();
VerifyTruncatedFlag(&cache, request->CacheKey(), false, 0);
}
TEST_F(HttpCacheTest, GET_IncompleteResource) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
std::string headers;
transaction.request_headers = EXTRA_HEADER;
transaction.data = kFullRangeData;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
std::string expected_headers(
"HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Accept-Ranges: bytes\n"
"ETag: \"foo\"\n"
"Content-Length: 80\n");
EXPECT_EQ(expected_headers, headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
MockHttpRequest request(transaction);
VerifyTruncatedFlag(&cache, request.CacheKey(), false, 80);
}
TEST_F(HttpCacheTest, GET_IncompleteResource_NoStore) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
RemoveMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
std::string response_headers(transaction.response_headers);
response_headers += ("Cache-Control: no-store\n");
transaction.response_headers = response_headers.c_str();
transaction.data = kFullRangeData;
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
std::string expected_headers(
"HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Accept-Ranges: bytes\n"
"Cache-Control: no-store\n"
"ETag: \"foo\"\n"
"Content-Length: 80\n");
EXPECT_EQ(expected_headers, headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_IncompleteResource_Cancel) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
RemoveMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
std::string response_headers(transaction.response_headers);
response_headers += ("Cache-Control: no-store\n");
transaction.response_headers = response_headers.c_str();
transaction.data = kFullRangeData;
AddMockTransaction(&transaction);
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
auto pending = std::make_unique<Context>();
ASSERT_THAT(cache.CreateTransaction(&pending->trans), IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_EQ(ERR_IO_PENDING,
pending->trans->Start(&request, pending->callback.callback(),
NetLogWithSource()));
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
scoped_refptr<IOBufferWithSize> buf =
base::MakeRefCounted<IOBufferWithSize>(5);
rv = c->trans->Read(buf.get(), buf->size(), c->callback.callback());
EXPECT_EQ(5, c->callback.GetResult(rv));
c.reset();
pending.reset();
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, GET_IncompleteResource2) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 50\n");
CreateTruncatedEntry(raw_headers, &cache);
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
transaction.data = "Not a range";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
std::string expected_headers(
"HTTP/1.1 200 OK\n"
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n");
EXPECT_EQ(expected_headers, headers);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
ASSERT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, GET_IncompleteResource3) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2009 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Cache-Control: max-age= 36000\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
transaction.data = kFullRangeData;
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
MockHttpRequest request(transaction);
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, GET_IncompleteResourceWithAuth) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "X-Require-Mock-Auth: dummy\r\n"
EXTRA_HEADER;
transaction.data = kFullRangeData;
RangeTransactionServer handler;
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
MockHttpRequest request(transaction);
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
const HttpResponseInfo* response = c->trans->GetResponseInfo();
ASSERT_TRUE(response);
ASSERT_EQ(401, response->headers->response_code());
rv = c->trans->RestartWithAuth(AuthCredentials(), c->callback.callback());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
response = c->trans->GetResponseInfo();
ASSERT_TRUE(response);
ASSERT_EQ(200, response->headers->response_code());
ReadAndVerifyTransaction(c->trans.get(), transaction);
c.reset();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
disk_cache::Entry* entry;
ASSERT_TRUE(cache.OpenBackendEntry(request.CacheKey(), &entry));
entry->Close();
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, TransactionRetryLimit) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.data = "rg: 00-09 ";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
transaction.request_headers =
"Range: bytes = 0-79\r\n"
"X-Require-Mock-Auth-Alt: dummy\r\n" EXTRA_HEADER;
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
MockHttpRequest request(transaction);
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = c->callback.WaitForResult();
std::string content;
rv = ReadTransaction(c->trans.get(), &content);
EXPECT_THAT(rv, IsError(ERR_CACHE_AUTH_FAILURE_AFTER_READ));
}
TEST_F(HttpCacheTest, GET_IncompleteResource4) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2009 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
std::string headers;
transaction.request_headers = EXTRA_HEADER;
transaction.data = "Not a range";
RangeTransactionServer handler;
handler.set_bad_200(true);
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
MockHttpRequest request(transaction);
VerifyTruncatedFlag(&cache, request.CacheKey(), false, 11);
}
TEST_F(HttpCacheTest, GET_CancelIncompleteResource) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2009 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
transaction.request_headers = EXTRA_HEADER;
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
int rv = cache.CreateTransaction(&c->trans);
ASSERT_THAT(rv, IsOk());
rv = c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(100);
rv = c->trans->Read(buf.get(), 20, c->callback.callback());
EXPECT_EQ(20, c->callback.GetResult(rv));
rv = c->trans->Read(buf.get(), 10, c->callback.callback());
EXPECT_EQ(10, c->callback.GetResult(rv));
c.reset();
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
VerifyTruncatedFlag(&cache, request.CacheKey(), true, 30);
}
TEST_F(HttpCacheTest, RangeGET_IncompleteResource) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: something\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 10\n");
CreateTruncatedEntry(raw_headers, &cache);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), kRangeGET_TransactionOK,
&headers);
Verify206Response(headers, 40, 49);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
TEST_F(HttpCacheTest, SyncRead) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.test_mode |= (TEST_MODE_SYNC_CACHE_START |
TEST_MODE_SYNC_CACHE_READ |
TEST_MODE_SYNC_CACHE_WRITE);
MockHttpRequest r1(transaction),
r2(transaction),
r3(transaction);
TestTransactionConsumer c1(DEFAULT_PRIORITY, cache.http_cache()),
c2(DEFAULT_PRIORITY, cache.http_cache()),
c3(DEFAULT_PRIORITY, cache.http_cache());
c1.Start(&r1, NetLogWithSource());
r2.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
c2.Start(&r2, NetLogWithSource());
r3.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
c3.Start(&r3, NetLogWithSource());
base::RunLoop().Run();
EXPECT_TRUE(c1.is_done());
EXPECT_TRUE(c2.is_done());
EXPECT_TRUE(c3.is_done());
EXPECT_THAT(c1.error(), IsOk());
EXPECT_THAT(c2.error(), IsOk());
EXPECT_THAT(c3.error(), IsOk());
}
TEST_F(HttpCacheTest, ValidationResultsIn200) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kETagGET_Transaction);
MockTransaction transaction(kETagGET_Transaction);
transaction.load_flags |= LOAD_VALIDATE_CACHE;
RunTransactionTest(cache.http_cache(), transaction);
RunTransactionTest(cache.http_cache(), kETagGET_Transaction);
}
TEST_F(HttpCacheTest, CachedRedirect) {
MockHttpCache cache;
ScopedMockTransaction kTestTransaction(kSimpleGET_Transaction);
kTestTransaction.status = "HTTP/1.1 301 Moved Permanently";
kTestTransaction.response_headers = "Location: http://www.bar.com/\n";
MockHttpRequest request(kTestTransaction);
TestCompletionCallback callback;
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsOk());
const HttpResponseInfo* info = trans->GetResponseInfo();
ASSERT_TRUE(info);
EXPECT_EQ(info->headers->response_code(), 301);
std::string location;
info->headers->EnumerateHeader(nullptr, "Location", &location);
EXPECT_EQ(location, "http://www.bar.com/");
trans->DoneReading();
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
base::RunLoop().RunUntilIdle();
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsOk());
const HttpResponseInfo* info = trans->GetResponseInfo();
ASSERT_TRUE(info);
EXPECT_EQ(info->headers->response_code(), 301);
std::string location;
info->headers->EnumerateHeader(nullptr, "Location", &location);
EXPECT_EQ(location, "http://www.bar.com/");
trans->DoneReading();
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, CacheControlNoCacheNormalLoad) {
for (bool use_memory_entry_data : {false, true}) {
MockHttpCache cache;
cache.disk_cache()->set_support_in_memory_entry_data(use_memory_entry_data);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "cache-control: no-cache\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
if (use_memory_entry_data) {
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
} else {
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_TRUE(cache.OpenBackendEntry(request.CacheKey(), &entry));
entry->Close();
}
}
TEST_F(HttpCacheTest, CacheControlNoCacheHistoryLoad) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "cache-control: no-cache\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_TRUE(cache.OpenBackendEntry(request.CacheKey(), &entry));
entry->Close();
}
TEST_F(HttpCacheTest, CacheControlNoStore) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "cache-control: no-store\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
}
TEST_F(HttpCacheTest, CacheControlNoStore2) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.response_headers = "cache-control: no-store\n";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
}
TEST_F(HttpCacheTest, CacheControlNoStore3) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.response_headers = "cache-control: no-store\n";
transaction.status = "HTTP/1.1 304 Not Modified";
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
EXPECT_FALSE(cache.OpenBackendEntry(request.CacheKey(), &entry));
}
TEST_F(HttpCacheTest, SimpleGET_SSLError) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.cert_status = CERT_STATUS_REVOKED;
ScopedMockTransaction scoped_transaction(transaction);
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING)
rv = callback.WaitForResult();
ASSERT_THAT(rv, IsError(ERR_CACHE_MISS));
}
TEST_F(HttpCacheTest, OutlivedTransactions) {
auto cache = std::make_unique<MockHttpCache>();
std::unique_ptr<HttpTransaction> trans;
EXPECT_THAT(cache->CreateTransaction(&trans), IsOk());
cache.reset();
trans.reset();
}
TEST_F(HttpCacheTest, CacheDisabledMode) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
cache.http_cache()->set_mode(HttpCache::DISABLE);
MockTransaction transaction(kSimpleGET_Transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, UpdatesRequestResponseTimeOn304) {
MockHttpCache cache;
const char kUrl[] = "http://foobar";
const char kData[] = "body";
MockTransaction mock_network_response = {nullptr};
mock_network_response.url = kUrl;
AddMockTransaction(&mock_network_response);
MockTransaction request = {nullptr};
request.url = kUrl;
request.method = "GET";
request.request_headers = "\r\n";
request.data = kData;
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
kData
};
kNetResponse1.AssignTo(&mock_network_response);
RunTransactionTest(cache.http_cache(), request);
request.load_flags = LOAD_VALIDATE_CACHE;
static const Response kNetResponse2 = {
"HTTP/1.1 304 Not Modified",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n",
""
};
kNetResponse2.AssignTo(&mock_network_response);
base::Time request_time = base::Time() + base::Hours(1234);
base::Time response_time = base::Time() + base::Hours(1235);
mock_network_response.request_time = request_time;
mock_network_response.response_time = response_time;
HttpResponseInfo response;
RunTransactionTestWithResponseInfo(cache.http_cache(), request, &response);
EXPECT_EQ(request_time.ToInternalValue(),
response.request_time.ToInternalValue());
EXPECT_EQ(response_time.ToInternalValue(),
response.response_time.ToInternalValue());
EXPECT_EQ("HTTP/1.1 200 OK\n"
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
ToSimpleString(response.headers));
RemoveMockTransaction(&mock_network_response);
}
TEST_P(HttpCacheTest_SplitCacheFeatureEnabled,
SplitCacheWithNetworkIsolationKey) {
MockHttpCache cache;
HttpResponseInfo response;
SchemefulSite site_a(GURL("http://a.com"));
SchemefulSite site_b(GURL("http://b.com"));
SchemefulSite site_data(GURL("data:text/html,<body>Hello World</body>"));
MockHttpRequest trans_info = MockHttpRequest(kSimpleGET_Transaction);
trans_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
trans_info.network_isolation_key = NetworkIsolationKey(site_a, site_b);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateCrossSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
trans_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
trans_info.network_isolation_key = NetworkIsolationKey(site_b, site_data);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateCrossSite(site_b);
if (IsNikFrameSiteEnabled()) {
EXPECT_EQ(absl::nullopt,
trans_info.network_isolation_key.ToCacheKeyString());
} else {
EXPECT_EQ("http://b.com _1",
trans_info.network_isolation_key.ToCacheKeyString().value());
}
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
if (IsNikFrameSiteEnabled()) {
EXPECT_FALSE(response.was_cached);
} else {
EXPECT_TRUE(response.was_cached);
}
const int64_t kUploadId = 1;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers),
kUploadId);
MockHttpRequest post_info = MockHttpRequest(kSimplePOST_Transaction);
post_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
post_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
post_info.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), kSimplePOST_Transaction,
post_info, &response);
EXPECT_FALSE(response.was_cached);
}
TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyCSS) {
base::HistogramTester histograms;
MockHttpCache cache;
HttpResponseInfo response;
url::Origin origin_a = url::Origin::Create(GURL(kSimpleGET_Transaction.url));
url::Origin origin_b = url::Origin::Create(GURL("http://b.com"));
SchemefulSite site_a(origin_a);
SchemefulSite site_b(origin_b);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Content-Type: text/css\n";
MockHttpRequest trans_info = MockHttpRequest(transaction);
trans_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
trans_info.possibly_top_frame_origin = origin_a;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
histograms.ExpectTotalCount("HttpCache.Pattern", 1);
histograms.ExpectTotalCount("HttpCache.Pattern.CSS", 1);
histograms.ExpectTotalCount("HttpCache.Pattern.CSSThirdParty", 0);
trans_info.network_isolation_key = NetworkIsolationKey(site_b, site_b);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_b);
trans_info.possibly_top_frame_origin = origin_b;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
histograms.ExpectTotalCount("HttpCache.Pattern", 2);
histograms.ExpectTotalCount("HttpCache.Pattern.CSS", 2);
histograms.ExpectTotalCount("HttpCache.Pattern.CSSThirdParty", 1);
}
TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyJavaScript) {
base::HistogramTester histograms;
MockHttpCache cache;
HttpResponseInfo response;
url::Origin origin_a = url::Origin::Create(GURL(kSimpleGET_Transaction.url));
url::Origin origin_b = url::Origin::Create(GURL("http://b.com"));
SchemefulSite site_a(origin_a);
SchemefulSite site_b(origin_b);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Content-Type: application/javascript\n";
MockHttpRequest trans_info = MockHttpRequest(transaction);
trans_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
trans_info.possibly_top_frame_origin = origin_a;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
histograms.ExpectTotalCount("HttpCache.Pattern", 1);
histograms.ExpectTotalCount("HttpCache.Pattern.JavaScript", 1);
histograms.ExpectTotalCount("HttpCache.Pattern.JavaScriptThirdParty", 0);
trans_info.network_isolation_key = NetworkIsolationKey(site_b, site_b);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_b);
trans_info.possibly_top_frame_origin = origin_b;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
histograms.ExpectTotalCount("HttpCache.Pattern", 2);
histograms.ExpectTotalCount("HttpCache.Pattern.JavaScript", 2);
histograms.ExpectTotalCount("HttpCache.Pattern.JavaScriptThirdParty", 1);
}
TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyFont) {
base::HistogramTester histograms;
MockHttpCache cache;
HttpResponseInfo response;
url::Origin origin_a = url::Origin::Create(GURL(kSimpleGET_Transaction.url));
url::Origin origin_b = url::Origin::Create(GURL("http://b.com"));
SchemefulSite site_a(origin_a);
SchemefulSite site_b(origin_b);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Content-Type: font/otf\n";
MockHttpRequest trans_info = MockHttpRequest(transaction);
trans_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_a);
trans_info.possibly_top_frame_origin = origin_a;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
histograms.ExpectTotalCount("HttpCache.Pattern", 1);
histograms.ExpectTotalCount("HttpCache.Pattern.Font", 1);
histograms.ExpectTotalCount("HttpCache.Pattern.FontThirdParty", 0);
trans_info.network_isolation_key = NetworkIsolationKey(site_b, site_b);
trans_info.network_anonymization_key =
net::NetworkAnonymizationKey::CreateSameSite(site_b);
trans_info.possibly_top_frame_origin = origin_b;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
histograms.ExpectTotalCount("HttpCache.Pattern", 2);
histograms.ExpectTotalCount("HttpCache.Pattern.Font", 2);
histograms.ExpectTotalCount("HttpCache.Pattern.FontThirdParty", 1);
}
TEST_P(HttpCacheTest_SplitCacheFeatureEnabled, SplitCache) {
MockHttpCache cache;
HttpResponseInfo response;
SchemefulSite site_a(GURL("http://a.com"));
SchemefulSite site_b(GURL("http://b.com"));
SchemefulSite site_data(GURL("data:text/html,<body>Hello World</body>"));
MockHttpRequest trans_info = MockHttpRequest(kSimpleGET_Transaction);
trans_info.network_isolation_key = net::NetworkIsolationKey();
trans_info.network_anonymization_key = net::NetworkAnonymizationKey();
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
net::NetworkIsolationKey key_a(site_a, site_a);
auto nak_a = net::NetworkAnonymizationKey::CreateSameSite(site_a);
trans_info.network_isolation_key = key_a;
trans_info.network_anonymization_key = nak_a;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
MockHttpRequest subframe_document_trans_info = trans_info;
subframe_document_trans_info.is_subframe_document_resource = true;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
subframe_document_trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
subframe_document_trans_info, &response);
EXPECT_TRUE(response.was_cached);
trans_info.network_isolation_key = NetworkIsolationKey(site_b, site_b);
trans_info.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(site_b);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
trans_info.network_isolation_key = key_a;
trans_info.network_anonymization_key = nak_a;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
trans_info.network_isolation_key = NetworkIsolationKey(site_data, site_data);
trans_info.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(site_data);
EXPECT_EQ(absl::nullopt, trans_info.network_isolation_key.ToCacheKeyString());
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
const int64_t kUploadId = 1;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(
std::make_unique<UploadBytesElementReader>("hello", 5));
ElementsUploadDataStream upload_data_stream(std::move(element_readers),
kUploadId);
MockHttpRequest post_info = MockHttpRequest(kSimplePOST_Transaction);
post_info.network_isolation_key = NetworkIsolationKey(site_a, site_a);
post_info.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(site_a);
post_info.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), kSimplePOST_Transaction,
post_info, &response);
EXPECT_FALSE(response.was_cached);
}
TEST_F(HttpCacheTest, SplitCacheEnabledByDefault) {
HttpCache::ClearGlobalsForTesting();
HttpCache::SplitCacheFeatureEnableByDefault();
EXPECT_TRUE(HttpCache::IsSplitCacheEnabled());
MockHttpCache cache;
HttpResponseInfo response;
SchemefulSite site_a(GURL("http://a.com"));
SchemefulSite site_b(GURL("http://b.com"));
MockHttpRequest trans_info = MockHttpRequest(kSimpleGET_Transaction);
net::NetworkIsolationKey key_a(site_a, site_a);
auto nak_a = net::NetworkAnonymizationKey::CreateSameSite(site_a);
trans_info.network_isolation_key = key_a;
trans_info.network_anonymization_key = nak_a;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
net::NetworkIsolationKey key_b(site_b, site_b);
auto nak_b = net::NetworkAnonymizationKey::CreateSameSite(site_b);
trans_info.network_isolation_key = key_b;
trans_info.network_anonymization_key = nak_b;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
}
TEST_F(HttpCacheTest, SplitCacheEnabledByDefaultButOverridden) {
HttpCache::ClearGlobalsForTesting();
base::test::ScopedFeatureList feature_list;
feature_list.InitAndDisableFeature(
net::features::kSplitCacheByNetworkIsolationKey);
HttpCache::SplitCacheFeatureEnableByDefault();
EXPECT_FALSE(HttpCache::IsSplitCacheEnabled());
}
TEST_P(HttpCacheTest_SplitCacheFeatureEnabled,
SplitCacheUsesRegistrableDomain) {
MockHttpCache cache;
HttpResponseInfo response;
MockHttpRequest trans_info = MockHttpRequest(kSimpleGET_Transaction);
SchemefulSite site_a(GURL("http://a.foo.com"));
SchemefulSite site_b(GURL("http://b.foo.com"));
net::NetworkIsolationKey key_a(site_a, site_a);
auto nak_a = net::NetworkAnonymizationKey::CreateSameSite(site_a);
trans_info.network_isolation_key = key_a;
trans_info.network_anonymization_key = nak_a;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
net::NetworkIsolationKey key_b(site_b, site_b);
auto nak_b = net::NetworkAnonymizationKey::CreateSameSite(site_b);
trans_info.network_isolation_key = key_b;
trans_info.network_anonymization_key = nak_b;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
SchemefulSite new_site_a(GURL("http://a.bar.com"));
net::NetworkIsolationKey new_key_a(new_site_a, new_site_a);
auto new_nak_a = net::NetworkAnonymizationKey::CreateSameSite(new_site_a);
trans_info.network_isolation_key = new_key_a;
trans_info.network_anonymization_key = new_nak_a;
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
}
TEST_F(HttpCacheTest, NonSplitCache) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndDisableFeature(
net::features::kSplitCacheByNetworkIsolationKey);
MockHttpCache cache;
HttpResponseInfo response;
MockHttpRequest trans_info = MockHttpRequest(kSimpleGET_Transaction);
trans_info.network_isolation_key = NetworkIsolationKey();
trans_info.network_anonymization_key = NetworkAnonymizationKey();
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
const SchemefulSite kSiteA(GURL("http://a.com/"));
trans_info.network_isolation_key = NetworkIsolationKey(kSiteA, kSiteA);
trans_info.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(kSiteA);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
trans_info, &response);
EXPECT_TRUE(response.was_cached);
}
TEST_F(HttpCacheTest, SkipVaryCheck) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "accept-encoding: gzip\r\n";
transaction.response_headers =
"Vary: accept-encoding\n"
"Cache-Control: max-age=10000\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE;
transaction.request_headers = "accept-encoding: foo\r\n";
transaction.start_return_code = ERR_CACHE_MISS;
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_VARY_CHECK;
transaction.start_return_code = OK;
RunTransactionTest(cache.http_cache(), transaction);
}
TEST_F(HttpCacheTest, SkipVaryCheckStar) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "accept-encoding: gzip\r\n";
transaction.response_headers =
"Vary: *\n"
"Cache-Control: max-age=10000\n";
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE;
transaction.start_return_code = ERR_CACHE_MISS;
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_VARY_CHECK;
transaction.start_return_code = OK;
RunTransactionTest(cache.http_cache(), transaction);
}
TEST_F(HttpCacheTest, ValidLoadOnlyFromCache) {
MockHttpCache cache;
base::SimpleTestClock clock;
cache.http_cache()->SetClockForTesting(&clock);
cache.network_layer()->SetClock(&clock);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Cache-Control: max-age=100\n";
RunTransactionTest(cache.http_cache(), transaction);
clock.Advance(base::Seconds(101));
transaction.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE;
transaction.start_return_code = ERR_CACHE_MISS;
RunTransactionTest(cache.http_cache(), transaction);
}
TEST_F(HttpCacheTest, InvalidLoadFlagCombination) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_BYPASS_CACHE;
transaction.start_return_code = ERR_CACHE_MISS;
RunTransactionTest(cache.http_cache(), transaction);
}
TEST_F(HttpCacheTest, FilterCompletion) {
MockHttpCache cache;
TestCompletionCallback callback;
{
MockHttpRequest request(kSimpleGET_Transaction);
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(256);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_GT(callback.GetResult(rv), 0);
trans->DoneReading();
}
base::RunLoop().RunUntilIdle();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, DoneReading) {
MockHttpCache cache;
TestCompletionCallback callback;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.data = "";
MockHttpRequest request(transaction);
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
trans->DoneReading();
base::RunLoop().RunUntilIdle();
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, StopCachingDeletesEntry) {
MockHttpCache cache;
TestCompletionCallback callback;
MockHttpRequest request(kSimpleGET_Transaction);
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(256);
rv = trans->Read(buf.get(), 10, callback.callback());
EXPECT_EQ(10, callback.GetResult(rv));
trans->StopCaching();
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_GT(callback.GetResult(rv), 0);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_EQ(0, callback.GetResult(rv));
}
base::RunLoop().RunUntilIdle();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, StopCachingThenDoneReadingDeletesEntry) {
MockHttpCache cache;
TestCompletionCallback callback;
MockHttpRequest request(kSimpleGET_Transaction);
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(256);
rv = trans->Read(buf.get(), 10, callback.callback());
EXPECT_EQ(10, callback.GetResult(rv));
trans->StopCaching();
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_GT(callback.GetResult(rv), 0);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_EQ(0, callback.GetResult(rv));
trans->DoneReading();
}
base::RunLoop().RunUntilIdle();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, StopCachingWithAuthDeletesEntry) {
MockHttpCache cache;
TestCompletionCallback callback;
MockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.status = "HTTP/1.1 401 Unauthorized";
AddMockTransaction(&mock_transaction);
MockHttpRequest request(mock_transaction);
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
trans->StopCaching();
}
RemoveMockTransaction(&mock_transaction);
base::RunLoop().RunUntilIdle();
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, StopCachingSavesEntry) {
MockHttpCache cache;
TestCompletionCallback callback;
MockHttpRequest request(kSimpleGET_Transaction);
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
AddMockTransaction(&mock_transaction);
mock_transaction.response_headers = "Cache-Control: max-age=10000\n"
"Content-Length: 42\n"
"Etag: \"foo\"\n";
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(256);
rv = trans->Read(buf.get(), 10, callback.callback());
EXPECT_EQ(callback.GetResult(rv), 10);
trans->StopCaching();
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_GT(callback.GetResult(rv), 0);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_EQ(callback.GetResult(rv), 0);
}
cache.disk_cache()->IsDiskEntryDoomed(request.CacheKey());
}
TEST_F(HttpCacheTest, StopCachingTruncatedEntry) {
MockHttpCache cache;
TestCompletionCallback callback;
MockHttpRequest request(kRangeGET_TransactionOK);
request.extra_headers.Clear();
request.extra_headers.AddHeaderFromString(EXTRA_HEADER_LINE);
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
{
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.CreateTransaction(&trans), IsOk());
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
scoped_refptr<IOBuffer> buf = base::MakeRefCounted<IOBuffer>(256);
rv = trans->Read(buf.get(), 10, callback.callback());
EXPECT_EQ(callback.GetResult(rv), 10);
trans->StopCaching();
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_GT(callback.GetResult(rv), 0);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_GT(callback.GetResult(rv), 0);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_EQ(callback.GetResult(rv), 0);
}
VerifyTruncatedFlag(&cache, request.CacheKey(), false, 80);
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
namespace {
enum class TransactionPhase {
BEFORE_FIRST_READ,
AFTER_FIRST_READ,
AFTER_NETWORK_READ
};
using CacheInitializer = void (*)(MockHttpCache*);
using HugeCacheTestConfiguration =
std::pair<TransactionPhase, CacheInitializer>;
class HttpCacheHugeResourceTest
: public ::testing::TestWithParam<HugeCacheTestConfiguration>,
public WithTaskEnvironment {
public:
static std::list<HugeCacheTestConfiguration> GetTestModes();
static std::list<HugeCacheTestConfiguration> kTestModes;
static void SetupTruncatedCacheEntry(MockHttpCache* cache);
static void SetupPrefixSparseCacheEntry(MockHttpCache* cache);
static void SetupInfixSparseCacheEntry(MockHttpCache* cache);
protected:
static void LargeResourceTransactionHandler(
const net::HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data);
static int LargeBufferReader(int64_t content_length,
int64_t offset,
net::IOBuffer* buf,
int buf_len);
static void SetFlagOnBeforeNetworkStart(bool* started, bool* );
static const int64_t kTotalSize = 5000LL * 1000 * 1000;
};
const int64_t HttpCacheHugeResourceTest::kTotalSize;
void HttpCacheHugeResourceTest::LargeResourceTransactionHandler(
const net::HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
std::string if_range;
if (!request->extra_headers.GetHeader(net::HttpRequestHeaders::kIfRange,
&if_range)) {
*response_status = "HTTP/1.1 200 Success";
*response_headers = base::StringPrintf("Content-Length: %" PRId64
"\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n",
kTotalSize);
return;
}
EXPECT_EQ("\"foo\"", if_range);
std::string range_header;
EXPECT_TRUE(request->extra_headers.GetHeader(net::HttpRequestHeaders::kRange,
&range_header));
std::vector<net::HttpByteRange> ranges;
EXPECT_TRUE(net::HttpUtil::ParseRangeHeader(range_header, &ranges));
ASSERT_EQ(1u, ranges.size());
net::HttpByteRange range = ranges[0];
EXPECT_TRUE(range.HasFirstBytePosition());
int64_t last_byte_position =
range.HasLastBytePosition() ? range.last_byte_position() : kTotalSize - 1;
*response_status = "HTTP/1.1 206 Partial";
*response_headers = base::StringPrintf(
"Content-Range: bytes %" PRId64 "-%" PRId64 "/%" PRId64
"\n"
"Content-Length: %" PRId64 "\n",
range.first_byte_position(), last_byte_position, kTotalSize,
last_byte_position - range.first_byte_position() + 1);
}
int HttpCacheHugeResourceTest::LargeBufferReader(int64_t content_length,
int64_t offset,
net::IOBuffer* buf,
int buf_len) {
EXPECT_LT(0, content_length);
EXPECT_LE(offset, content_length);
int num = std::min(static_cast<int64_t>(buf_len), content_length - offset);
return num;
}
void HttpCacheHugeResourceTest::SetFlagOnBeforeNetworkStart(bool* started,
bool* ) {
*started = true;
}
void HttpCacheHugeResourceTest::SetupTruncatedCacheEntry(MockHttpCache* cache) {
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
std::string cached_headers = base::StringPrintf(
"HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: %" PRId64 "\n",
kTotalSize);
CreateTruncatedEntry(cached_headers, cache);
}
void HttpCacheHugeResourceTest::SetupPrefixSparseCacheEntry(
MockHttpCache* cache) {
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = nullptr;
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Range: bytes 0-9/5000000000\n"
"Content-Length: 10\n";
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache->http_cache(), transaction, &headers);
RemoveMockTransaction(&transaction);
}
void HttpCacheHugeResourceTest::SetupInfixSparseCacheEntry(
MockHttpCache* cache) {
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = nullptr;
transaction.request_headers = "Range: bytes = 99990-99999\r\n" EXTRA_HEADER;
transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Range: bytes 99990-99999/5000000000\n"
"Content-Length: 10\n";
AddMockTransaction(&transaction);
std::string headers;
RunTransactionTestWithResponse(cache->http_cache(), transaction, &headers);
RemoveMockTransaction(&transaction);
}
std::list<HugeCacheTestConfiguration>
HttpCacheHugeResourceTest::GetTestModes() {
std::list<HugeCacheTestConfiguration> test_modes;
const TransactionPhase kTransactionPhases[] = {
TransactionPhase::BEFORE_FIRST_READ, TransactionPhase::AFTER_FIRST_READ,
TransactionPhase::AFTER_NETWORK_READ};
const CacheInitializer kInitializers[] = {&SetupTruncatedCacheEntry,
&SetupPrefixSparseCacheEntry,
&SetupInfixSparseCacheEntry};
for (const auto phase : kTransactionPhases)
for (const auto initializer : kInitializers)
test_modes.emplace_back(phase, initializer);
return test_modes;
}
std::list<HugeCacheTestConfiguration> HttpCacheHugeResourceTest::kTestModes =
HttpCacheHugeResourceTest::GetTestModes();
INSTANTIATE_TEST_SUITE_P(
_,
HttpCacheHugeResourceTest,
::testing::ValuesIn(HttpCacheHugeResourceTest::kTestModes));
}
TEST_P(HttpCacheHugeResourceTest,
StopCachingFollowedByReadForHugeTruncatedResource) {
const TransactionPhase stop_caching_phase = GetParam().first;
const CacheInitializer cache_initializer = GetParam().second;
MockHttpCache cache;
(*cache_initializer)(&cache);
MockTransaction transaction(kSimpleGET_Transaction);
transaction.url = kRangeGET_TransactionOK.url;
transaction.handler = &LargeResourceTransactionHandler;
transaction.read_handler = &LargeBufferReader;
ScopedMockTransaction scoped_transaction(transaction);
MockHttpRequest request(transaction);
net::TestCompletionCallback callback;
std::unique_ptr<net::HttpTransaction> http_transaction;
int rv = cache.http_cache()->CreateTransaction(net::DEFAULT_PRIORITY,
&http_transaction);
ASSERT_EQ(net::OK, rv);
ASSERT_TRUE(http_transaction.get());
bool network_transaction_started = false;
if (stop_caching_phase == TransactionPhase::AFTER_NETWORK_READ) {
http_transaction->SetBeforeNetworkStartCallback(base::BindOnce(
&SetFlagOnBeforeNetworkStart, &network_transaction_started));
}
rv = http_transaction->Start(&request, callback.callback(),
NetLogWithSource());
rv = callback.GetResult(rv);
ASSERT_EQ(net::OK, rv);
if (stop_caching_phase == TransactionPhase::BEFORE_FIRST_READ)
http_transaction->StopCaching();
int64_t total_bytes_received = 0;
EXPECT_EQ(kTotalSize,
http_transaction->GetResponseInfo()->headers->GetContentLength());
do {
const int kBufferSize = 1024 * 1024 * 10;
scoped_refptr<net::IOBuffer> buf =
base::MakeRefCounted<net::IOBuffer>(kBufferSize);
rv = http_transaction->Read(buf.get(), kBufferSize, callback.callback());
rv = callback.GetResult(rv);
if (stop_caching_phase == TransactionPhase::AFTER_FIRST_READ &&
total_bytes_received == 0) {
http_transaction->StopCaching();
}
if (rv > 0)
total_bytes_received += rv;
if (network_transaction_started &&
stop_caching_phase == TransactionPhase::AFTER_NETWORK_READ) {
http_transaction->StopCaching();
network_transaction_started = false;
}
} while (rv > 0);
EXPECT_EQ(kTotalSize, total_bytes_received);
}
TEST_F(HttpCacheTest, TruncatedByContentLength) {
MockHttpCache cache;
TestCompletionCallback callback;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
transaction.response_headers = "Cache-Control: max-age=10000\n"
"Content-Length: 100\n";
RunTransactionTest(cache.http_cache(), transaction);
RemoveMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, TruncatedByContentLength2) {
MockHttpCache cache;
TestCompletionCallback callback;
MockTransaction transaction(kSimpleGET_Transaction);
AddMockTransaction(&transaction);
transaction.response_headers = "Cache-Control: max-age=10000\n"
"Content-Length: 100\n"
"Etag: \"foo\"\n";
RunTransactionTest(cache.http_cache(), transaction);
RemoveMockTransaction(&transaction);
MockHttpRequest request(transaction);
VerifyTruncatedFlag(&cache, request.CacheKey(), true, 0);
}
TEST_F(HttpCacheTest, SetPriority) {
MockHttpCache cache;
HttpRequestInfo info;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.http_cache()->CreateTransaction(IDLE, &trans), IsOk());
trans->SetPriority(LOW);
EXPECT_FALSE(cache.network_layer()->last_transaction());
EXPECT_EQ(DEFAULT_PRIORITY,
cache.network_layer()->last_create_transaction_priority());
info.url = GURL(kSimpleGET_Transaction.url);
TestCompletionCallback callback;
EXPECT_EQ(ERR_IO_PENDING,
trans->Start(&info, callback.callback(), NetLogWithSource()));
EXPECT_TRUE(cache.network_layer()->last_transaction());
if (cache.network_layer()->last_transaction()) {
EXPECT_EQ(LOW, cache.network_layer()->last_create_transaction_priority());
EXPECT_EQ(LOW, cache.network_layer()->last_transaction()->priority());
}
trans->SetPriority(HIGHEST);
if (cache.network_layer()->last_transaction()) {
EXPECT_EQ(LOW, cache.network_layer()->last_create_transaction_priority());
EXPECT_EQ(HIGHEST, cache.network_layer()->last_transaction()->priority());
}
EXPECT_THAT(callback.WaitForResult(), IsOk());
}
TEST_F(HttpCacheTest, SetWebSocketHandshakeStreamCreateHelper) {
MockHttpCache cache;
HttpRequestInfo info;
FakeWebSocketHandshakeStreamCreateHelper create_helper;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.http_cache()->CreateTransaction(IDLE, &trans), IsOk());
EXPECT_FALSE(cache.network_layer()->last_transaction());
info.url = GURL(kSimpleGET_Transaction.url);
TestCompletionCallback callback;
EXPECT_EQ(ERR_IO_PENDING,
trans->Start(&info, callback.callback(), NetLogWithSource()));
ASSERT_TRUE(cache.network_layer()->last_transaction());
EXPECT_FALSE(cache.network_layer()->last_transaction()->
websocket_handshake_stream_create_helper());
trans->SetWebSocketHandshakeStreamCreateHelper(&create_helper);
EXPECT_EQ(&create_helper,
cache.network_layer()->last_transaction()->
websocket_handshake_stream_create_helper());
EXPECT_THAT(callback.WaitForResult(), IsOk());
}
TEST_F(HttpCacheTest, SetPriorityNewTransaction) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
std::string raw_headers("HTTP/1.1 200 OK\n"
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Length: 80\n");
CreateTruncatedEntry(raw_headers, &cache);
std::string headers;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
transaction.data = kFullRangeData;
std::unique_ptr<HttpTransaction> trans;
ASSERT_THAT(cache.http_cache()->CreateTransaction(MEDIUM, &trans), IsOk());
EXPECT_EQ(DEFAULT_PRIORITY,
cache.network_layer()->last_create_transaction_priority());
MockHttpRequest info(transaction);
TestCompletionCallback callback;
EXPECT_EQ(ERR_IO_PENDING,
trans->Start(&info, callback.callback(), NetLogWithSource()));
EXPECT_THAT(callback.WaitForResult(), IsOk());
EXPECT_EQ(MEDIUM, cache.network_layer()->last_create_transaction_priority());
trans->SetPriority(HIGHEST);
ReadAndVerifyTransaction(trans.get(), transaction);
EXPECT_EQ(HIGHEST, cache.network_layer()->last_create_transaction_priority());
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
namespace {
void RunTransactionAndGetNetworkBytes(MockHttpCache* cache,
const MockTransaction& trans_info,
int64_t* sent_bytes,
int64_t* received_bytes) {
RunTransactionTestBase(
cache->http_cache(), trans_info, MockHttpRequest(trans_info), nullptr,
NetLogWithSource(), nullptr, sent_bytes, received_bytes, nullptr);
}
}
TEST_F(HttpCacheTest, NetworkBytesCacheMissAndThenHit) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
int64_t sent, received;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(0, sent);
EXPECT_EQ(0, received);
}
TEST_F(HttpCacheTest, NetworkBytesConditionalRequest304) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_Transaction);
int64_t sent, received;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
transaction.load_flags = LOAD_VALIDATE_CACHE;
transaction.handler = ETagGet_ConditionalRequest_Handler;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
}
TEST_F(HttpCacheTest, NetworkBytesConditionalRequest200) {
MockHttpCache cache;
MockTransaction transaction(kTypicalGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n"
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: Foo\n";
AddMockTransaction(&transaction);
int64_t sent, received;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
RevalidationServer server;
transaction.handler = server.Handler;
transaction.request_headers = "Foo: none\r\n";
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, NetworkBytesRange) {
MockHttpCache cache;
AddMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction(kRangeGET_TransactionOK);
int64_t sent, received;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(0, sent);
EXPECT_EQ(0, received);
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = 30-39\r\n" EXTRA_HEADER;
transaction.data = "rg: 30-39 ";
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
base::RunLoop().RunUntilIdle();
transaction.request_headers = "Range: bytes = 20-59\r\n" EXTRA_HEADER;
transaction.data = "rg: 20-29 rg: 30-39 rg: 40-49 rg: 50-59 ";
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes * 2, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes * 2, received);
RemoveMockTransaction(&kRangeGET_TransactionOK);
}
class HttpCachePrefetchValidationTest : public TestWithTaskEnvironment {
protected:
static const int kNumSecondsPerMinute = 60;
static const int kMaxAgeSecs = 100;
static const int kRequireValidationSecs = kMaxAgeSecs + 1;
HttpCachePrefetchValidationTest() : transaction_(kSimpleGET_Transaction) {
DCHECK_LT(kMaxAgeSecs, prefetch_reuse_mins() * kNumSecondsPerMinute);
cache_.http_cache()->SetClockForTesting(&clock_);
cache_.network_layer()->SetClock(&clock_);
transaction_.response_headers = "Cache-Control: max-age=100\n";
}
bool TransactionRequiredNetwork(int load_flags) {
int pre_transaction_count = transaction_count();
transaction_.load_flags = load_flags;
RunTransactionTest(cache_.http_cache(), transaction_);
return pre_transaction_count != transaction_count();
}
void AdvanceTime(int seconds) { clock_.Advance(base::Seconds(seconds)); }
int prefetch_reuse_mins() { return HttpCache::kPrefetchReuseMins; }
int transaction_count() {
return cache_.network_layer()->transaction_count();
}
MockHttpCache cache_;
ScopedMockTransaction transaction_;
std::string response_headers_;
base::SimpleTestClock clock_;
};
TEST_F(HttpCachePrefetchValidationTest, SkipValidationShortlyAfterPrefetch) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest, ValidateLongAfterPrefetch) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(prefetch_reuse_mins() * kNumSecondsPerMinute);
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest, SkipValidationOnceOnly) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_NORMAL));
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest, SkipValidationOnceReadOnly) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_ONLY_FROM_CACHE |
LOAD_SKIP_CACHE_VALIDATION));
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest, BypassCacheOverwritesPrefetch) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_BYPASS_CACHE));
AdvanceTime(kRequireValidationSecs);
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest,
SkipValidationOnExistingEntryThatNeedsValidation) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
AdvanceTime(kRequireValidationSecs);
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_NORMAL));
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest,
SkipValidationOnExistingEntryThatDoesNotNeedValidation) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_NORMAL));
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest, PrefetchMultipleTimes) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCachePrefetchValidationTest, ValidateOnDelayedSecondPrefetch) {
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_TRUE(TransactionRequiredNetwork(LOAD_PREFETCH));
AdvanceTime(kRequireValidationSecs);
EXPECT_FALSE(TransactionRequiredNetwork(LOAD_NORMAL));
}
TEST_F(HttpCacheTest, StaleContentNotUsedWhenLoadFlagNotSet) {
MockHttpCache cache;
ScopedMockTransaction stale_while_revalidate_transaction(
kSimpleGET_Transaction);
stale_while_revalidate_transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Age: 10801\n"
"Cache-Control: max-age=0,stale-while-revalidate=86400\n";
RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_FALSE(response_info.async_revalidation_requested);
}
TEST_F(HttpCacheTest, StaleContentUsedWhenLoadFlagSetAndUsableThenTimesout) {
MockHttpCache cache;
base::SimpleTestClock clock;
cache.http_cache()->SetClockForTesting(&clock);
cache.network_layer()->SetClock(&clock);
clock.Advance(base::Seconds(10));
ScopedMockTransaction stale_while_revalidate_transaction(
kSimpleGET_Transaction);
stale_while_revalidate_transaction.load_flags |=
LOAD_SUPPORT_ASYNC_REVALIDATION;
stale_while_revalidate_transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Age: 10801\n"
"Cache-Control: max-age=0,stale-while-revalidate=86400\n";
RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_TRUE(response_info.async_revalidation_requested);
EXPECT_FALSE(response_info.stale_revalidate_timeout.is_null());
clock.SetNow(response_info.stale_revalidate_timeout);
clock.Advance(base::Seconds(1));
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_FALSE(response_info.async_revalidation_requested);
}
TEST_F(HttpCacheTest, StaleContentUsedWhenLoadFlagSetAndUsable) {
MockHttpCache cache;
base::SimpleTestClock clock;
cache.http_cache()->SetClockForTesting(&clock);
cache.network_layer()->SetClock(&clock);
clock.Advance(base::Seconds(10));
ScopedMockTransaction stale_while_revalidate_transaction(
kSimpleGET_Transaction);
stale_while_revalidate_transaction.load_flags |=
LOAD_SUPPORT_ASYNC_REVALIDATION;
stale_while_revalidate_transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Age: 10801\n"
"Cache-Control: max-age=0,stale-while-revalidate=86400\n";
RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_TRUE(response_info.async_revalidation_requested);
EXPECT_FALSE(response_info.stale_revalidate_timeout.is_null());
base::Time revalidation_timeout = response_info.stale_revalidate_timeout;
clock.Advance(base::Seconds(1));
EXPECT_TRUE(clock.Now() < revalidation_timeout);
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_TRUE(response_info.async_revalidation_requested);
EXPECT_FALSE(response_info.stale_revalidate_timeout.is_null());
EXPECT_TRUE(revalidation_timeout == response_info.stale_revalidate_timeout);
stale_while_revalidate_transaction.load_flags &=
~LOAD_SUPPORT_ASYNC_REVALIDATION;
stale_while_revalidate_transaction.status = "HTTP/1.1 304 Not Modified";
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_FALSE(response_info.async_revalidation_requested);
EXPECT_TRUE(response_info.stale_revalidate_timeout.is_null());
}
TEST_F(HttpCacheTest, StaleContentNotUsedWhenUnusable) {
MockHttpCache cache;
ScopedMockTransaction stale_while_revalidate_transaction(
kSimpleGET_Transaction);
stale_while_revalidate_transaction.load_flags |=
LOAD_SUPPORT_ASYNC_REVALIDATION;
stale_while_revalidate_transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Age: 10801\n"
"Cache-Control: max-age=0,stale-while-revalidate=1800\n";
RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_FALSE(response_info.async_revalidation_requested);
}
TEST_F(HttpCacheTest, StaleContentWriteError) {
MockHttpCache cache;
base::SimpleTestClock clock;
cache.http_cache()->SetClockForTesting(&clock);
cache.network_layer()->SetClock(&clock);
clock.Advance(base::Seconds(10));
ScopedMockTransaction stale_while_revalidate_transaction(
kSimpleGET_Transaction);
stale_while_revalidate_transaction.load_flags |=
LOAD_SUPPORT_ASYNC_REVALIDATION;
stale_while_revalidate_transaction.response_headers =
"Last-Modified: Sat, 18 Apr 2007 01:10:43 GMT\n"
"Age: 10801\n"
"Cache-Control: max-age=0,stale-while-revalidate=86400\n";
RunTransactionTest(cache.http_cache(), stale_while_revalidate_transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
cache.disk_cache()->set_soft_failures_mask(MockDiskEntry::FAIL_WRITE);
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(
cache.http_cache(), stale_while_revalidate_transaction, &response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
}
TEST_F(HttpCacheTest, RangeGET_MultipleRequests) {
MockHttpCache cache;
MockHttpRequest request(kRangeGET_TransactionOK);
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.data = "rg: 00-09 ";
AddMockTransaction(&transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
ASSERT_TRUE(trans.get());
trans->Start(&request, callback.callback(), NetLogWithSource());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
callback.WaitForResult();
RemoveMockTransaction(&transaction);
}
TEST_F(HttpCacheTest, RangeGET_Previous200_LoadOnlyFromCache) {
MockHttpCache cache;
MockTransaction transaction(kETagGET_Transaction);
transaction.url = kRangeGET_TransactionOK.url;
transaction.data = kFullRangeData;
AddMockTransaction(&transaction);
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
RemoveMockTransaction(&transaction);
AddMockTransaction(&kRangeGET_TransactionOK);
MockTransaction transaction2(kRangeGET_TransactionOK);
transaction2.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest request(transaction2);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
int rv = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY, &trans);
EXPECT_THAT(rv, IsOk());
ASSERT_TRUE(trans);
rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING) {
rv = callback.WaitForResult();
}
EXPECT_THAT(rv, IsError(ERR_CACHE_MISS));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_F(HttpCacheTest, NoStoreResponseShouldNotBlockFollowingRequests) {
MockHttpCache cache;
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.response_headers = "Cache-Control: no-store\n";
MockHttpRequest request(mock_transaction);
auto first = std::make_unique<Context>();
first->result = cache.CreateTransaction(&first->trans);
ASSERT_THAT(first->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, first->trans->GetLoadState());
first->result = first->trans->Start(&request, first->callback.callback(),
NetLogWithSource());
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, first->trans->GetLoadState());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, first->trans->GetLoadState());
ASSERT_TRUE(first->trans->GetResponseInfo());
EXPECT_TRUE(first->trans->GetResponseInfo()->headers->HasHeaderValue(
"Cache-Control", "no-store"));
auto second = std::make_unique<Context>();
second->result = cache.CreateTransaction(&second->trans);
ASSERT_THAT(second->result, IsOk());
EXPECT_EQ(LOAD_STATE_IDLE, second->trans->GetLoadState());
second->result = second->trans->Start(&request, second->callback.callback(),
NetLogWithSource());
EXPECT_EQ(LOAD_STATE_WAITING_FOR_CACHE, second->trans->GetLoadState());
base::RunLoop().RunUntilIdle();
EXPECT_EQ(LOAD_STATE_IDLE, second->trans->GetLoadState());
ASSERT_TRUE(second->trans->GetResponseInfo());
EXPECT_TRUE(second->trans->GetResponseInfo()->headers->HasHeaderValue(
"Cache-Control", "no-store"));
ReadAndVerifyTransaction(second->trans.get(), kSimpleGET_Transaction);
}
TEST_F(HttpCacheTest, CachePreservesSSLInfo) {
static const uint16_t kTLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 0xc02f;
int status = 0;
SSLConnectionStatusSetCipherSuite(kTLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
&status);
SSLConnectionStatusSetVersion(SSL_CONNECTION_VERSION_TLS1_2, &status);
scoped_refptr<X509Certificate> cert =
ImportCertFromFile(GetTestCertsDirectory(), "ok_cert.pem");
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.cert = cert;
transaction.ssl_connection_status = status;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_EQ(transaction.ssl_connection_status,
response_info.ssl_info.connection_status);
EXPECT_TRUE(cert->EqualsIncludingChain(response_info.ssl_info.cert.get()));
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_EQ(status, response_info.ssl_info.connection_status);
EXPECT_TRUE(cert->EqualsIncludingChain(response_info.ssl_info.cert.get()));
}
TEST_F(HttpCacheTest, RevalidationUpdatesSSLInfo) {
static const uint16_t kTLS_RSA_WITH_RC4_128_MD5 = 0x0004;
static const uint16_t kTLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 0xc02f;
int status1 = 0;
SSLConnectionStatusSetCipherSuite(kTLS_RSA_WITH_RC4_128_MD5, &status1);
SSLConnectionStatusSetVersion(SSL_CONNECTION_VERSION_TLS1, &status1);
int status2 = 0;
SSLConnectionStatusSetCipherSuite(kTLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
&status2);
SSLConnectionStatusSetVersion(SSL_CONNECTION_VERSION_TLS1_2, &status2);
scoped_refptr<X509Certificate> cert1 =
ImportCertFromFile(GetTestCertsDirectory(), "expired_cert.pem");
scoped_refptr<X509Certificate> cert2 =
ImportCertFromFile(GetTestCertsDirectory(), "ok_cert.pem");
MockHttpCache cache;
ScopedMockTransaction transaction(kTypicalGET_Transaction);
transaction.cert = cert1;
transaction.ssl_connection_status = status1;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response_info);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_FALSE(response_info.was_cached);
EXPECT_EQ(status1, response_info.ssl_info.connection_status);
EXPECT_TRUE(cert1->EqualsIncludingChain(response_info.ssl_info.cert.get()));
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.cert = cert2;
transaction.ssl_connection_status = status2;
transaction.request_headers = "Cache-Control: max-age=0\r\n";
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response_info);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
EXPECT_TRUE(response_info.was_cached);
EXPECT_EQ(status2, response_info.ssl_info.connection_status);
EXPECT_TRUE(cert2->EqualsIncludingChain(response_info.ssl_info.cert.get()));
}
TEST_F(HttpCacheTest, CacheEntryStatusOther) {
MockHttpCache cache;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), kRangeGET_Transaction,
&response_info);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_OTHER, response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, CacheEntryStatusNotInCache) {
MockHttpCache cache;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), kSimpleGET_Transaction,
&response_info);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_NOT_IN_CACHE,
response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, CacheEntryStatusUsed) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), kSimpleGET_Transaction,
&response_info);
EXPECT_TRUE(response_info.was_cached);
EXPECT_FALSE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_USED, response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, CacheEntryStatusValidated) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kETagGET_Transaction);
ScopedMockTransaction still_valid(kETagGET_Transaction);
still_valid.load_flags = LOAD_VALIDATE_CACHE;
still_valid.handler = ETagGet_ConditionalRequest_Handler;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), still_valid,
&response_info);
EXPECT_TRUE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_VALIDATED,
response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, CacheEntryStatusUpdated) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kETagGET_Transaction);
ScopedMockTransaction update(kETagGET_Transaction);
update.load_flags = LOAD_VALIDATE_CACHE;
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(), update,
&response_info);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_UPDATED, response_info.cache_entry_status);
}
TEST_F(HttpCacheTest, CacheEntryStatusCantConditionalize) {
MockHttpCache cache;
cache.FailConditionalizations();
RunTransactionTest(cache.http_cache(), kTypicalGET_Transaction);
HttpResponseInfo response_info;
RunTransactionTestWithResponseInfo(cache.http_cache(),
kTypicalGET_Transaction, &response_info);
EXPECT_FALSE(response_info.was_cached);
EXPECT_TRUE(response_info.network_accessed);
EXPECT_EQ(CacheEntryStatus::ENTRY_CANT_CONDITIONALIZE,
response_info.cache_entry_status);
}
TEST_F(HttpSplitCacheKeyTest, GetResourceURLFromHttpCacheKey) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(
net::features::kSplitCacheByNetworkIsolationKey);
MockHttpCache cache;
std::string urls[] = {"http://www.a.com/", "https://b.com/example.html",
"http://example.com/Some Path/Some Leaf?some query"};
for (const std::string& url : urls) {
std::string key = ComputeCacheKey(url);
EXPECT_EQ(GURL(url).spec(), HttpCache::GetResourceURLFromHttpCacheKey(key));
}
}
TEST_F(HttpCacheTest, GetResourceURLFromHttpCacheKey) {
const struct {
std::string input;
std::string output;
} kTestCase[] = {
{"0/0/https://a.com/", "https://a.com/"},
{"0/0/https://a.com/path", "https://a.com/path"},
{"0/0/https://a.com/?query", "https://a.com/?query"},
{"0/0/https://a.com/#fragment", "https://a.com/#fragment"},
{"0/0/_dk_s_ https://a.com/", "https://a.com/"},
{"0/0/_dk_https://a.com https://b.com https://c.com/", "https://c.com/"},
{"0/0/_dk_shttps://a.com https://b.com https://c.com/", "https://c.com/"},
{"", ""},
{"0/a.com", "0/a.com"},
{"https://a.com/", "a.com/"},
{"0/https://a.com/", "/a.com/"},
};
for (const auto& test : kTestCase) {
EXPECT_EQ(test.output,
HttpCache::GetResourceURLFromHttpCacheKey(test.input));
}
}
class TestCompletionCallbackForHttpCache : public TestCompletionCallbackBase {
public:
TestCompletionCallbackForHttpCache() = default;
~TestCompletionCallbackForHttpCache() override = default;
CompletionRepeatingCallback callback() {
return base::BindRepeating(&TestCompletionCallbackForHttpCache::SetResult,
base::Unretained(this));
}
const std::vector<int>& results() { return results_; }
private:
std::vector<int> results_;
protected:
void SetResult(int result) override {
results_.push_back(result);
DidSetResult();
}
};
TEST_F(HttpCacheIOCallbackTest, FailedDoomFollowedByOpen) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = DoomEntry(cache.http_cache(), m_transaction.url, transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = OpenEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_DOOM_FAILURE);
ASSERT_EQ(cb.results()[1], ERR_CACHE_DOOM_FAILURE);
ASSERT_EQ(entry1, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, FailedDoomFollowedByCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = DoomEntry(cache.http_cache(), m_transaction.url, transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_DOOM_FAILURE);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
ASSERT_EQ(entry1, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, FailedDoomFollowedByDoom) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = DoomEntry(cache.http_cache(), m_transaction.url, transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = DoomEntry(cache.http_cache(), m_transaction.url, transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_DOOM_FAILURE);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
}
TEST_F(HttpCacheIOCallbackTest, FailedOpenFollowedByCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = OpenEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_OPEN_FAILURE);
ASSERT_EQ(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, FailedCreateFollowedByOpen) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = OpenEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_CREATE_FAILURE);
ASSERT_EQ(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, FailedCreateFollowedByCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_CREATE_FAILURE);
ASSERT_EQ(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_CREATE_FAILURE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, CreateFollowedByCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], OK);
ASSERT_NE(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_CREATE_FAILURE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, OperationFollowedByDoom) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
rv = DoomEntry(cache.http_cache(), m_transaction.url, transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], OK);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
}
TEST_F(HttpCacheIOCallbackTest, CreateFollowedByOpenOrCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], OK);
ASSERT_NE(entry1, nullptr);
ASSERT_EQ(cb.results()[1], OK);
ASSERT_NE(entry2, nullptr);
ASSERT_EQ(entry1->disk_entry, entry2->disk_entry);
}
TEST_F(HttpCacheIOCallbackTest, FailedCreateFollowedByOpenOrCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_CREATE_FAILURE);
ASSERT_EQ(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, OpenFollowedByOpenOrCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry0 = nullptr;
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
int rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry0,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), static_cast<size_t>(1));
ASSERT_EQ(cb.results()[0], OK);
ASSERT_NE(entry0, nullptr);
DeactivateEntry(cache.http_cache(), entry0);
rv = OpenEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 3u);
ASSERT_EQ(cb.results()[1], OK);
ASSERT_NE(entry1, nullptr);
ASSERT_EQ(cb.results()[2], OK);
ASSERT_NE(entry2, nullptr);
ASSERT_EQ(entry1->disk_entry, entry2->disk_entry);
}
TEST_F(HttpCacheIOCallbackTest, FailedOpenFollowedByOpenOrCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = OpenEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_OPEN_FAILURE);
ASSERT_EQ(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_RACE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, OpenOrCreateFollowedByCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
int rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
rv = CreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], OK);
ASSERT_NE(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_CREATE_FAILURE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, OpenOrCreateFollowedByOpenOrCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
int rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], OK);
ASSERT_NE(entry1, nullptr);
ASSERT_EQ(cb.results()[1], OK);
ASSERT_NE(entry2, nullptr);
}
TEST_F(HttpCacheIOCallbackTest, FailedOpenOrCreateFollowedByOpenOrCreate) {
MockHttpCache cache;
TestCompletionCallbackForHttpCache cb;
std::unique_ptr<Transaction> transaction =
std::make_unique<Transaction>(DEFAULT_PRIORITY, cache.http_cache());
transaction->SetIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
ActiveEntry* entry1 = nullptr;
ActiveEntry* entry2 = nullptr;
cache.disk_cache()->set_force_fail_callback_later(true);
int rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry1,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cache.disk_cache()->set_force_fail_callback_later(false);
rv = OpenOrCreateEntry(cache.http_cache(), m_transaction.url, &entry2,
transaction.get());
ASSERT_EQ(rv, ERR_IO_PENDING);
cb.GetResult(rv);
ASSERT_EQ(cb.results().size(), 2u);
ASSERT_EQ(cb.results()[0], ERR_CACHE_OPEN_OR_CREATE_FAILURE);
ASSERT_EQ(entry1, nullptr);
ASSERT_EQ(cb.results()[1], ERR_CACHE_OPEN_OR_CREATE_FAILURE);
ASSERT_EQ(entry2, nullptr);
}
TEST_F(HttpCacheTest, DnsAliasesNoRevalidation) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.dns_aliases = {"alias1", "alias2"};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_THAT(response.dns_aliases, testing::ElementsAre("alias1", "alias2"));
transaction.dns_aliases = {};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_TRUE(response.was_cached);
EXPECT_THAT(response.dns_aliases, testing::ElementsAre("alias1", "alias2"));
}
TEST_F(HttpCacheTest, NoDnsAliasesNoRevalidation) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.dns_aliases = {};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_TRUE(response.dns_aliases.empty());
transaction.dns_aliases = {"alias"};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_TRUE(response.was_cached);
EXPECT_TRUE(response.dns_aliases.empty());
}
TEST_F(HttpCacheTest, DnsAliasesRevalidation) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kTypicalGET_Transaction);
transaction.response_headers =
"Date: Wed, 28 Nov 2007 09:40:09 GMT\n"
"Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n"
"Cache-Control: max-age=0\n";
transaction.dns_aliases = {"alias1", "alias2"};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_THAT(response.dns_aliases, testing::ElementsAre("alias1", "alias2"));
transaction.response_headers = "Cache-Control: max-age=10000\n";
transaction.dns_aliases = {"alias3", "alias4"};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_THAT(response.dns_aliases, testing::ElementsAre("alias3", "alias4"));
transaction.dns_aliases = {"alias5", "alias6"};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_TRUE(response.was_cached);
EXPECT_THAT(response.dns_aliases, testing::ElementsAre("alias3", "alias4"));
}
TEST_F(HttpCacheTest, FirstPartySetsBypassCache_ShouldBypass_NoId) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
transaction.fps_cache_filter = {5};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
}
TEST_F(HttpCacheTest, FirstPartySetsBypassCache_ShouldBypass_IdTooSmall) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
const int64_t kBrowserRunId = 4;
transaction.browser_run_id = {kBrowserRunId};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_TRUE(response.browser_run_id.has_value());
EXPECT_EQ(kBrowserRunId, response.browser_run_id.value());
transaction.fps_cache_filter = {5};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
}
TEST_F(HttpCacheTest, FirstPartySetsBypassCache_ShouldNotBypass) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
const int64_t kBrowserRunId = 5;
transaction.browser_run_id = {kBrowserRunId};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_TRUE(response.browser_run_id.has_value());
EXPECT_EQ(kBrowserRunId, response.browser_run_id.value());
transaction.fps_cache_filter = {5};
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_TRUE(response.was_cached);
}
TEST_F(HttpCacheTest, FirstPartySetsBypassCache_ShouldNotBypass_NoFilter) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_FALSE(response.was_cached);
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
EXPECT_TRUE(response.was_cached);
}
TEST_F(HttpCacheTest, SecurityHeadersAreCopiedToConditionalizedResponse) {
MockHttpCache cache;
HttpResponseInfo response;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
static const Response kNetResponse1 = {
"HTTP/1.1 200 OK",
"Date: Fri, 12 Jun 2009 21:46:42 GMT\n"
"Server: server1\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n"
"Cross-Origin-Resource-Policy: cross-origin\n",
"body1"};
static const Response kNetResponse2 = {
"HTTP/1.1 304 Not Modified",
"Date: Wed, 22 Jul 2009 03:15:26 GMT\n"
"Server: server2\n"
"Last-Modified: Wed, 06 Feb 2008 22:38:21 GMT\n",
""};
kNetResponse1.AssignTo(&transaction);
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
const char kExtraRequestHeaders[] =
"If-Modified-Since: Wed, 06 Feb 2008 22:38:21 GMT\r\n";
transaction.request_headers = kExtraRequestHeaders;
kNetResponse2.AssignTo(&transaction);
RunTransactionTestWithResponseInfo(cache.http_cache(), transaction,
&response);
std::string response_corp_header;
response.headers->GetNormalizedHeader("Cross-Origin-Resource-Policy",
&response_corp_header);
EXPECT_EQ(304, response.headers->response_code());
EXPECT_EQ("cross-origin", response_corp_header);
}
class CacheTransparencyHttpCacheTest
: public HttpCacheTest_SplitCacheFeatureEnabled {
public:
CacheTransparencyHttpCacheTest() {
CHECK(base::FeatureList::IsEnabled(
net::features::kSplitCacheByNetworkIsolationKey));
}
void RunTransactionTestForSingleKeyedCache(
HttpCache* cache,
const MockTransaction& trans_info,
const NetworkIsolationKey& network_isolation_key,
const std::string& checksum) {
ScopedMockTransaction transaction(trans_info);
MockHttpRequest request(transaction);
request.network_isolation_key = network_isolation_key;
request.network_anonymization_key =
net::NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
network_isolation_key);
request.checksum = checksum;
HttpResponseInfo response_info;
RunTransactionTestWithRequest(cache, transaction, request, &response_info);
}
void RunSimpleTransactionTestForSingleKeyedCache(
HttpCache* cache,
const NetworkIsolationKey& network_isolation_key,
const std::string& checksum) {
RunTransactionTestForSingleKeyedCache(cache, kSimpleGET_Transaction,
network_isolation_key, checksum);
}
};
INSTANTIATE_TEST_SUITE_P(
All,
CacheTransparencyHttpCacheTest,
testing::ValuesIn({SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled,
SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled}),
[](const testing::TestParamInfo<SplitCacheTestCase>& info) {
switch (info.param) {
case (SplitCacheTestCase::kSplitCacheDisabled):
return "NotUsedForThisTestSuite";
case (SplitCacheTestCase::kSplitCacheNikFrameSiteEnabled):
return "SplitCacheNikFrameSiteEnabled";
case (SplitCacheTestCase::kSplitCacheNikCrossSiteFlagEnabled):
return "SplitCacheNikCrossSiteFlagEnabled";
}
});
constexpr char kChecksumForSimpleGET[] =
"80B4C37CEF5CFE69B4A90830282AA2BB772DC4CBC00491A219CE5F2AD75C7B58";
TEST_P(CacheTransparencyHttpCacheTest, SuccessfulGET) {
MockHttpCache cache;
{
const auto site_a = SchemefulSite(GURL("https://a.com/"));
RunSimpleTransactionTestForSingleKeyedCache(
cache.http_cache(), NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_b = SchemefulSite(GURL("https://b.com/"));
RunSimpleTransactionTestForSingleKeyedCache(
cache.http_cache(), NetworkIsolationKey(site_b, site_b),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, GETWithChecksumMismatch) {
MockHttpCache cache;
const auto site_a = SchemefulSite(GURL("https://a.com/"));
{
RunSimpleTransactionTestForSingleKeyedCache(
cache.http_cache(), NetworkIsolationKey(site_a, site_a),
"000000000000000000000000000000000000000000000000000000000000000");
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
RunSimpleTransactionTestForSingleKeyedCache(
cache.http_cache(), NetworkIsolationKey(site_a, site_a),
"000000000000000000000000000000000000000000000000000000000000000");
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
{
RunSimpleTransactionTestForSingleKeyedCache(
cache.http_cache(), NetworkIsolationKey(site_a, site_a),
"000000000000000000000000000000000000000000000000000000000000000");
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(3, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, GETWithBadResponseCode) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.status = "HTTP/1.1 404 Not Found";
const auto site_a = SchemefulSite(GURL("https://a.com/"));
{
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, RedirectUnusable) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.status = "HTTP/1.1 301 Moved Permanently";
const auto site_a = SchemefulSite(GURL("https://a.com/"));
{
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, GETWith206ResponseCode) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.status = "HTTP/1.1 206 Partial";
const auto site_a = SchemefulSite(GURL("https://a.com/"));
{
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, SuccessfulRevalidation) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.response_headers =
"Etag: \"foo\"\n"
"Cache-Control: max-age=0\n";
{
const auto site_a = SchemefulSite(GURL("https://a.com/"));
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_b = SchemefulSite(GURL("https://b.com/"));
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.response_headers =
"Etag: \"foo\"\n"
"Cache-Control: max-age=10000\n";
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_b, site_b),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_c = SchemefulSite(GURL("https://c.com/"));
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_c, site_c),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, RevalidationChangingUncheckedHeader) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.response_headers =
"Etag: \"foo\"\n"
"Cache-Control: max-age=0\n";
{
const auto site_a = SchemefulSite(GURL("https://a.com/"));
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_b = SchemefulSite(GURL("https://b.com/"));
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.response_headers =
"Etag: \"foo\"\n"
"Cache-Control: max-age=10000\n"
"X-Unchecked-Header: 1\n";
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_b, site_b),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_c = SchemefulSite(GURL("https://c.com/"));
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_c, site_c),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, RevalidationChangingCheckedHeader) {
MockHttpCache cache;
MockTransaction transaction = kSimpleGET_Transaction;
transaction.response_headers =
"Etag: \"foo\"\n"
"Cache-Control: max-age=0\n";
{
const auto site_a = SchemefulSite(GURL("https://a.com/"));
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_a, site_a),
kChecksumForSimpleGET);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_b = SchemefulSite(GURL("https://b.com/"));
transaction.status = "HTTP/1.1 304 Not Modified";
transaction.response_headers =
"Etag: \"foo\"\n"
"Cache-Control: max-age=10000\n"
"Vary: Cookie\n";
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_b, site_b),
kChecksumForSimpleGET);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
EXPECT_EQ(1, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
{
const auto site_c = SchemefulSite(GURL("https://c.com/"));
RunTransactionTestForSingleKeyedCache(cache.http_cache(), transaction,
NetworkIsolationKey(site_c, site_c),
kChecksumForSimpleGET);
EXPECT_EQ(3, cache.network_layer()->transaction_count());
EXPECT_EQ(2, cache.disk_cache()->open_count());
EXPECT_EQ(2, cache.disk_cache()->create_count());
}
}
TEST_P(CacheTransparencyHttpCacheTest, SuccessfulGETManyWriters) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
request.checksum = kChecksumForSimpleGET;
constexpr int kNumTransactions = 2;
std::vector<Context> context_list(kNumTransactions);
for (Context& c : context_list) {
c.result = cache.CreateTransaction(&c.trans);
ASSERT_THAT(c.result, IsOk());
c.result =
c.trans->Start(&request, c.callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
std::string cache_key = cache.http_cache()
->GenerateCacheKeyForRequest(
&request, true)
.value();
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (Context& c : context_list) {
ReadAndVerifyTransaction(c.trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
TEST_P(CacheTransparencyHttpCacheTest, BadChecksumManyWriters) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
request.checksum =
"0000000000000000000000000000000000000000000000000000000000000000";
constexpr int kNumTransactions = 2;
std::vector<Context> context_list(kNumTransactions);
for (Context& c : context_list) {
c.result = cache.CreateTransaction(&c.trans);
ASSERT_THAT(c.result, IsOk());
c.result =
c.trans->Start(&request, c.callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
std::string cache_key = cache.http_cache()
->GenerateCacheKeyForRequest(
&request, true)
.value();
EXPECT_EQ(kNumTransactions, cache.GetCountWriterTransactions(cache_key));
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
for (Context& c : context_list) {
ReadAndVerifyTransaction(c.trans.get(), kSimpleGET_Transaction);
}
EXPECT_EQ(1, cache.network_layer()->transaction_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
}
}