#include "net/http/http_cache.h"
#include <stdint.h>
#include <algorithm>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#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/pickle.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/strings/to_string.h"
#include "base/test/bind.h"
#include "base/test/gmock_callback_support.h"
#include "base/test/gmock_expected_support.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/simple_test_clock.h"
#include "base/test/test_future.h"
#include "base/test/test_waitable_event.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 "base/trace_event/trace_event.h"
#include "net/base/cache_type.h"
#include "net/base/completion_repeating_callback.h"
#include "net/base/does_url_match_filter.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/network_anonymization_key.h"
#include "net/base/network_isolation_partition.h"
#include "net/base/request_priority.h"
#include "net/base/schemeful_site.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/disk_cache/memory_entry_data_hints.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_headers_test_util.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/http/no_vary_search_cache_storage_mock_file_operations.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/scoped_mutually_exclusive_feature_list.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 "url/origin.h"
using base::test::RunClosure;
using net::test::IsError;
using net::test::IsOk;
using testing::_;
using testing::AllOf;
using testing::ByRef;
using testing::Contains;
using testing::DoAll;
using testing::ElementsAre;
using testing::Eq;
using testing::Field;
using testing::Gt;
using testing::InSequence;
using testing::IsEmpty;
using testing::MockFunction;
using testing::NotNull;
using testing::Return;
using testing::StrictMock;
using testing::Truly;
using base::Time;
namespace net {
using CacheEntryStatus = HttpResponseInfo::CacheEntryStatus;
class WebSocketEndpointLockManager;
namespace {
constexpr auto ToSimpleString = test::HttpResponseHeadersToSimpleString;
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());
}
class DeleteCacheCompletionCallback
: public TestGetBackendCompletionCallbackBase {
public:
explicit DeleteCacheCompletionCallback(std::unique_ptr<MockHttpCache> cache)
: cache_(std::move(cache)) {}
DeleteCacheCompletionCallback(const DeleteCacheCompletionCallback&) = delete;
DeleteCacheCompletionCallback& operator=(
const DeleteCacheCompletionCallback&) = delete;
HttpCache::GetBackendCallback callback() {
return base::BindOnce(&DeleteCacheCompletionCallback::OnComplete,
base::Unretained(this));
}
private:
void OnComplete(HttpCache::GetBackendResult result) {
result.second = nullptr;
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 =
cache->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(trans.get());
int 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>",
{},
std::nullopt,
std::nullopt,
TEST_MODE_SYNC_NET_START,
base::BindRepeating(&FastTransactionServer::FastNoStoreHandler),
MockTransactionReadHandler(),
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::optional<std::string_view> range_header =
request->extra_headers.GetHeaderView(HttpRequestHeaders::kRange);
if (!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 ",
{},
std::nullopt,
std::nullopt,
TEST_MODE_NORMAL,
base::BindRepeating(&RangeTransactionServer::RangeHandler),
MockTransactionReadHandler(),
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));
std::optional<base::ByteCount> content_length = headers->GetContentLength();
int length = end - start + 1;
ASSERT_EQ(length, content_length->InBytes());
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));
auto buf = base::MakeRefCounted<IOBufferWithSize>(100);
std::string_view in = "rg: 00-09 rg: 10-19 ";
buf->span().copy_prefix_from(base::as_byte_span(in));
int len = in.size();
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();
}
std::unique_ptr<WebSocketHandshakeStreamBase> CreateHttp3Stream(
std::unique_ptr<QuicChromiumClientSession::Handle> session,
std::set<std::string> dns_aliases) override {
NOTREACHED();
}
};
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();
std::erase_if(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;
}
base::test::TestFuture<TransportInfo, CompletionOnceCallback> ExpectConnected(
HttpTransaction& transaction) {
base::test::TestFuture<TransportInfo, CompletionOnceCallback>
connected_future;
transaction.SetConnectedCallback(
connected_future
.GetRepeatingCallback<const TransportInfo&, CompletionOnceCallback>()
.Then(base::BindRepeating([]() -> int { return ERR_IO_PENDING; })));
return connected_future;
}
void ContinueAfterConnect(
base::test::TestFuture<TransportInfo, CompletionOnceCallback>
connected_future) {
std::get<1>(connected_future.Take()).Run(OK);
}
}
class HttpCacheTest : public TestWithTaskEnvironment {
public:
void CacheControlNoCacheNormalLoad(bool skip_feature_enabled);
};
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,
scoped_refptr<ActiveEntry>* entry,
HttpCache::Transaction* trans) {
return cache->OpenEntry(GenerateCacheKey(url), entry, trans);
}
int OpenOrCreateEntry(HttpCache* cache,
const std::string& url,
scoped_refptr<ActiveEntry>* entry,
HttpCache::Transaction* trans) {
return cache->OpenOrCreateEntry(GenerateCacheKey(url), entry, trans);
}
int CreateEntry(HttpCache* cache,
const std::string& url,
scoped_refptr<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);
}
};
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);
HttpRequestInfo request_info;
request_info.url = url;
request_info.method = "GET";
request_info.network_isolation_key = NetworkIsolationKey(site, site);
request_info.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(site);
MockHttpCache cache;
return *HttpCache::GenerateCacheKeyForRequest(&request_info);
}
};
TEST_F(HttpCacheTest, CreateThenDestroy) {
MockHttpCache cache;
std::unique_ptr<HttpTransaction> trans = cache.CreateTransaction();
ASSERT_TRUE(trans.get());
}
TEST_F(HttpCacheTest, GetBackend) {
MockHttpCache cache(HttpCache::DefaultBackend::InMemory(0));
TestGetBackendCompletionCallback cb;
HttpCache::GetBackendResult result =
cache.http_cache()->GetBackend(cb.callback());
EXPECT_THAT(cb.GetResult(result).first, IsOk());
}
using HttpCacheSimpleGetTest = HttpCacheTest;
TEST_F(HttpCacheSimpleGetTest, Basic) {
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(HttpCacheSimpleGetTest, ConnectedCallback) {
MockHttpCache cache;
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.transport_info = TestTransportInfo();
MockHttpRequest request(mock_transaction);
ConnectedHandler connected_handler;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheSimpleGetTest, ConnectedCallbackReturnError) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
ConnectedHandler connected_handler;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheSimpleGetTest, 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);
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheSimpleGetTest, 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);
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheSimpleGetTest,
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);
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheSimpleGetTest,
ConnectedCallbackOnCacheHitReturnPrivateNetworkAccessBlockedError) {
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);
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheSimpleGetTest, 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);
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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));
}
TEST_F(HttpCacheSimpleGetTest, DelayedCacheLock) {
MockHttpCache cache;
LoadTimingInfo load_timing_info;
cache.http_cache()->DelayAddTransactionToEntryForTesting();
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);
}
enum class SplitCacheTestCase {
kDisabled,
kEnabledTripleKeyed,
};
class HttpCacheTestSplitCacheFeature
: public HttpCacheTest,
public ::testing::WithParamInterface<SplitCacheTestCase> {
public:
HttpCacheTestSplitCacheFeature() {
split_cache_feature_list_.InitWithFeatureState(
features::kSplitCacheByNetworkIsolationKey, IsSplitCacheEnabled());
}
bool IsSplitCacheEnabled() const {
return GetParam() != SplitCacheTestCase::kDisabled;
}
private:
base::test::ScopedFeatureList split_cache_feature_list_;
};
TEST_P(HttpCacheTestSplitCacheFeature, SimpleGetVerifyGoogleFontMetrics) {
SchemefulSite site_a(GURL("http://www.a.com"));
MockHttpCache cache;
ScopedMockTransaction transaction(
kSimpleGET_Transaction,
"http://themes.googleusercontent.com/static/fonts/roboto");
MockHttpRequest request(transaction);
request.network_isolation_key = NetworkIsolationKey(site_a, site_a);
request.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(site_a);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
}
INSTANTIATE_TEST_SUITE_P(
All,
HttpCacheTestSplitCacheFeature,
testing::ValuesIn({SplitCacheTestCase::kDisabled,
SplitCacheTestCase::kEnabledTripleKeyed}),
[](const testing::TestParamInfo<SplitCacheTestCase>& info) {
switch (info.param) {
case SplitCacheTestCase::kDisabled:
return "SplitCacheDisabled";
case SplitCacheTestCase::kEnabledTripleKeyed:
return "SplitCacheNikFrameSiteEnabled";
}
});
class HttpCacheTestSplitCacheFeatureEnabled : public HttpCacheTest {
public:
HttpCacheTestSplitCacheFeatureEnabled() {
split_cache_enabled_feature_list_.InitAndEnableFeature(
features::kSplitCacheByNetworkIsolationKey);
}
private:
base::test::ScopedFeatureList split_cache_enabled_feature_list_;
};
TEST_F(HttpCacheSimpleGetTest, NoDiskCache) {
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(HttpCacheSimpleGetTest, NoDiskCache2) {
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);
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
const int kBufferSize = 10;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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(HttpCacheSimpleGetTest, WithDiskFailures) {
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(HttpCacheSimpleGetTest, WithDiskFailures2) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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(HttpCacheSimpleGetTest, WithDiskFailures3) {
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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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(HttpCacheSimpleGetTest, LoadOnlyFromCacheHit) {
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(HttpCacheSimpleGetTest, LoadOnlyFromCacheMiss) {
MockHttpCache cache;
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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(HttpCacheSimpleGetTest, LoadPreferringCacheHit) {
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(HttpCacheSimpleGetTest, LoadPreferringCacheMiss) {
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(HttpCacheSimpleGetTest, LoadPreferringCacheVaryMatch) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Vary: Foo\n";
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());
}
TEST_F(HttpCacheSimpleGetTest, LoadPreferringCacheVaryMismatch) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.request_headers = "Foo: bar\r\n";
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Vary: Foo\n";
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);
}
TEST_F(HttpCacheSimpleGetTest, LoadSkipCacheValidationVaryStar) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Vary: *\n";
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());
}
TEST_F(HttpCacheSimpleGetTest, CacheSignalFailure) {
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(1, cache.disk_cache()->create_count());
EXPECT_EQ(0, cache.disk_cache()->open_count());
transaction.start_return_code = ERR_FAILED;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
auto trans = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(trans);
int 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());
}
}
}
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;
auto trans = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(trans);
trans->Start(&request, callback.callback(), NetLogWithSource());
trans.reset();
}
}
TEST_F(HttpCacheSimpleGetTest, NetworkAccessedNetwork) {
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(HttpCacheSimpleGetTest, NetworkAccessedCache) {
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(HttpCacheSimpleGetTest, 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(HttpCacheSimpleGetTest, LoadBypassCacheImplicit) {
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(HttpCacheSimpleGetTest, LoadBypassCacheImplicit2) {
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(HttpCacheSimpleGetTest, 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(HttpCacheSimpleGetTest, LoadValidateCacheImplicit) {
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(HttpCacheSimpleGetTest, 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(HttpCacheSimpleGetTest, 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_FOR_MAIN_FRAME;
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_FOR_MAIN_FRAME;
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(HttpCacheSimpleGetTest, RestrictedPrefetchReuseIsLimited) {
MockHttpCache cache;
HttpResponseInfo response_info;
MockTransaction prefetch_transaction(kSimpleGET_Transaction);
prefetch_transaction.load_flags |= LOAD_PREFETCH;
prefetch_transaction.load_flags |= LOAD_RESTRICTED_PREFETCH_FOR_MAIN_FRAME;
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(HttpCacheSimpleGetTest, 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_FOR_MAIN_FRAME;
{
MockHttpRequest request(transaction);
Context c;
c.trans = cache.CreateTransaction();
ASSERT_TRUE(c.trans);
int 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;
c.trans = cache.CreateTransaction();
ASSERT_TRUE(c.trans);
c.trans->SetConnectedCallback(base::BindRepeating(
[](const TransportInfo& info, CompletionOnceCallback callback) -> int {
return ERR_ABORTED;
}));
int rv = c.callback.GetResult(
c.trans->Start(&request, c.callback.callback(), NetLogWithSource()));
EXPECT_EQ(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, StaleWhileRevalidateTruncated) {
MockHttpCache cache;
RangeTransactionServer range_support;
range_support.set_length(20);
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;
c.trans = cache.CreateTransaction();
ASSERT_TRUE(c.trans);
int 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);
}
{
bool first = true;
transaction.handler = base::BindLambdaForTesting(
[&](const HttpRequestInfo* request, std::string* response_status,
std::string* response_headers, std::string* response_data) {
if (first) {
EXPECT_EQ(request->extra_headers.GetHeaderView("Range"),
"bytes=10-10");
EXPECT_EQ(request->extra_headers.GetHeaderView("If-Range"),
"foopy");
response_status->assign("HTTP/1.1 206 Partial Content");
response_headers->assign(
"Content-Range: bytes 10-10/20\n"
"Content-Length: 1");
response_data->assign("0");
first = false;
} else {
EXPECT_EQ(request->extra_headers.GetHeaderView("Range"),
"bytes=10-19");
response_status->assign("HTTP/1.1 206 Partial Content");
response_headers->assign(
"Content-Range: bytes 10-19/20\n"
"Content-Length: 10");
*response_data = "0123456789";
}
});
MockHttpRequest request(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
base::RunLoop().RunUntilIdle();
VerifyTruncatedFlag(&cache, request.CacheKey(), false,
20);
}
}
TEST_F(HttpCacheTest, StaleWhileRevalidateTruncateCancelInConnectedCallback) {
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;
c.trans = cache.CreateTransaction();
ASSERT_TRUE(c.trans);
int 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;
c.trans = cache.CreateTransaction();
ASSERT_TRUE(c.trans);
c.trans->SetConnectedCallback(base::BindRepeating(
[](const TransportInfo& info, CompletionOnceCallback callback) -> int {
return ERR_ABORTED;
}));
int rv = c.callback.GetResult(
c.trans->Start(&request, c.callback.callback(), NetLogWithSource()));
EXPECT_EQ(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 const auto kPreserveRequestHeaders =
base::BindRepeating([](const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
EXPECT_TRUE(request->extra_headers.HasHeader(kExtraHeaderKey));
});
TEST_F(HttpCacheSimpleGetTest, PreserveRequestHeaders) {
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.handler = kPreserveRequestHeaders;
transaction.request_headers = EXTRA_HEADER;
transaction.response_headers = "Cache-Control: max-age=0\n";
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());
}
}
}
TEST_F(HttpCacheTest, ConditionalizedGetPreserveRequestHeaders) {
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);
ScopedMockTransaction transaction(kETagGET_Transaction);
transaction.handler = kPreserveRequestHeaders;
transaction.request_headers = "If-None-Match: \"foopy\"\r\n" EXTRA_HEADER;
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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());
}
using HttpCacheRangeGetTest = HttpCacheTest;
TEST_F(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, 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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheRangeGetTest, 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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheRangeGetTest,
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheRangeGetTest, 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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheRangeGetTest, 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;
auto transaction = cache.CreateTransaction();
ASSERT_TRUE(transaction);
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(HttpCacheRangeGetTest, FailedCacheAccess) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, DoNotCreateWritersWhenReaderExists) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_Transaction);
transaction.request_headers = EXTRA_HEADER;
RunTransactionTest(cache.http_cache(), transaction);
transaction.load_flags |= LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
Context context;
context.trans = cache.CreateTransaction();
ASSERT_TRUE(context.trans);
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));
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
MockHttpRequest range_request(transaction);
Context range_context;
range_context.trans = cache.CreateTransaction();
ASSERT_TRUE(range_context.trans);
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));
}
TEST_F(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, ParallelValidationCouldntConditionalize) {
MockHttpCache cache;
MockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.url = kRangeGET_TransactionOK.url;
mock_transaction.response_headers = "";
MockHttpRequest request1(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;
{
ScopedMockTransaction transaction(mock_transaction);
request1.url = GURL(kRangeGET_TransactionOK.url);
auto& c = context_list[0];
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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,
mock_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(HttpCacheRangeGetTest, 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();
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(mock_transaction);
{
ScopedMockTransaction transaction(mock_transaction);
request1.url = GURL(kRangeGET_TransactionOK.url);
auto& c = context_list[0];
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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,
mock_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(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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;
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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();
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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());
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c1->trans);
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c2->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheRangeGetTest, 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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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;
base::test::TestFuture<TransportInfo, CompletionOnceCallback>
connected_future;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
MockHttpRequest* this_request = &request;
if (i == 3) {
this_request = &validate_request;
connected_future = ExpectConnected(*c->trans);
}
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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));
ContinueAfterConnect(std::move(connected_future));
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(HttpCacheSimpleGetTest, HangingCacheWriteCleanup) {
MockHttpCache mock_cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto transaction = mock_cache.CreateTransaction();
ASSERT_TRUE(transaction);
TestCompletionCallback callback;
int result =
transaction->Start(&request, callback.callback(), NetLogWithSource());
result = callback.GetResult(result);
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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);
auto buffer2 = base::MakeRefCounted<IOBufferWithSize>(1);
ReleaseBufferCompletionCallback buffer_callback2(buffer2.get());
result = transaction->Read(buffer2.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(HttpCacheSimpleGetTest, 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;
base::test::TestFuture<TransportInfo, CompletionOnceCallback>
connected_future;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
MockHttpRequest* this_request = &request;
if (i == 2) {
this_request = &validate_request;
connected_future = ExpectConnected(*c->trans);
}
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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;
}
}
ContinueAfterConnect(std::move(connected_future));
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(kBufferSize);
c->result = c->trans->Read(buffer.get(), kBufferSize, c->callback.callback());
EXPECT_EQ(ERR_INTERNET_DISCONNECTED, c->result);
}
TEST_F(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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<IOBufferWithSize>(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);
}
using HttpCacheSimplePostTest = HttpCacheTest;
TEST_F(HttpCacheSimplePostTest, 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>(
base::byte_span_from_cstring("hello")));
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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<IOBufferWithSize>(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(HttpCacheSimpleGetTest, ParallelWritingHuge) {
MockHttpCache cache;
cache.disk_cache()->set_max_file_size(10);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
std::string response_headers = base::StrCat(
{kSimpleGET_Transaction.response_headers, "Content-Length: ",
base::NumberToString(kSimpleGET_Transaction.data.size()), "\n"});
transaction.response_headers = response_headers.c_str();
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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<IOBufferWithSize>(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();
}
TEST_F(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, ExtraRead) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
Context c;
c.trans = cache.CreateTransaction();
ASSERT_TRUE(c.trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(kBufferSize);
c.result = c.trans->Read(buffer.get(), kBufferSize, c.callback.callback());
EXPECT_EQ(0, c.result);
}
TEST_F(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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;
base::test::TestFuture<TransportInfo, CompletionOnceCallback>
connected_future;
for (int i = 0; i < kNumTransactions; ++i) {
context_list.push_back(std::make_unique<Context>());
auto& c = context_list[i];
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
MockHttpRequest* this_request = &request;
if (i == 2) {
this_request = &validate_request;
connected_future = ExpectConnected(*c->trans);
}
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();
ContinueAfterConnect(std::move(connected_future));
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
if (i == 0) {
c->trans->SetConnectedCallback(base::BindLambdaForTesting(
[&](const TransportInfo& info, CompletionOnceCallback callback)
-> int { return ERR_IO_PENDING; }));
}
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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;
auto buffer = base::MakeRefCounted<IOBufferWithSize>(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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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);
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers = "Cache-Control: no-cache\n";
MockHttpRequest request1(transaction);
Context c1;
c1.trans = cache.CreateTransaction();
ASSERT_TRUE(c1.trans);
auto connected_future = ExpectConnected(*c1.trans);
c1.result =
c1.trans->Start(&request1, c1.callback.callback(), NetLogWithSource());
ASSERT_THAT(c1.result, IsError(ERR_IO_PENDING));
base::RunLoop().RunUntilIdle();
transaction.response_headers = kSimpleGET_Transaction.response_headers;
MockHttpRequest request2(transaction);
request2.load_flags = LOAD_BYPASS_CACHE;
Context c2;
c2.trans = cache.CreateTransaction();
ASSERT_TRUE(c2.trans);
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);
ContinueAfterConnect(std::move(connected_future));
c1.callback.WaitForResult();
ReadAndVerifyTransaction(c1.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());
MockHttpRequest request3(kSimpleGET_Transaction);
Context context3;
context3.trans = cache.CreateTransaction();
ASSERT_TRUE(context3.trans);
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, FastNoStoreGetDoneWithPending) {
MockHttpCache cache;
ScopedMockTransaction transaction(kFastNoStoreGET_Transaction);
MockHttpRequest request(transaction);
FastTransactionServer request_handler;
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(), 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());
}
TEST_F(HttpCacheSimpleGetTest, ManyWritersCancelFirst) {
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
c->result =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
}
base::RunLoop().RunUntilIdle();
std::string cache_key = *HttpCache::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(HttpCacheSimpleGetTest, ManyWritersCancelCreate) {
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, CancelCreate) {
MockHttpCache cache;
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, ManyWritersBypassCache) {
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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, WriterTimeout) {
MockHttpCache cache;
cache.SimulateCacheLockTimeout();
MockHttpRequest request(kSimpleGET_Transaction);
Context c1, c2;
c1.trans = cache.CreateTransaction();
ASSERT_TRUE(c1.trans);
ASSERT_EQ(ERR_IO_PENDING, c1.trans->Start(&request, c1.callback.callback(),
NetLogWithSource()));
c2.trans = cache.CreateTransaction();
ASSERT_TRUE(c2.trans);
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(HttpCacheSimpleGetTest, WriterTimeoutReadOnlyError) {
MockHttpCache cache;
cache.SimulateCacheLockTimeout();
MockHttpRequest request(kSimpleGET_Transaction);
Context c1, c2;
c1.trans = cache.CreateTransaction();
ASSERT_TRUE(c1.trans);
ASSERT_EQ(ERR_IO_PENDING, c1.trans->Start(&request, c1.callback.callback(),
NetLogWithSource()));
request.load_flags = LOAD_ONLY_FROM_CACHE;
c2.trans = cache.CreateTransaction();
ASSERT_TRUE(c2.trans);
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(HttpCacheSimpleGetTest, AbandonedCacheRead) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
MockHttpRequest request(kSimpleGET_Transaction);
TestCompletionCallback callback;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
if (rv == ERR_IO_PENDING) {
rv = callback.WaitForResult();
}
ASSERT_THAT(rv, IsOk());
auto buf = base::MakeRefCounted<IOBufferWithSize>(256);
rv = trans->Read(buf.get(), 256, callback.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
trans.reset();
base::RunLoop().RunUntilIdle();
}
TEST_F(HttpCacheSimpleGetTest, ManyWritersDeleteCache) {
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->trans = cache->CreateTransaction();
ASSERT_TRUE(c->trans);
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
}
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(HttpCacheSimpleGetTest, 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->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
}
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->trans = cache->CreateTransaction();
ASSERT_TRUE(c->trans);
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));
auto [rv, _] = cache_ptr->http_cache()->GetBackend(cb.callback());
EXPECT_THAT(rv, IsError(ERR_IO_PENDING));
MockHttpRequest request(kSimpleGET_Transaction);
auto c = std::make_unique<Context>();
c->trans = cache_ptr->CreateTransaction();
ASSERT_TRUE(c->trans);
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
TestGetBackendCompletionCallback cb2;
auto [rv2, _2] = cache_ptr->http_cache()->GetBackend(cb2.callback());
EXPECT_THAT(rv2, IsError(ERR_IO_PENDING));
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(c->callback.have_result());
factory_ptr->FinishCreation();
cb.WaitForResult();
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(cb2.have_result());
}
TEST_F(HttpCacheTest, TypicalGetConditionalRequest) {
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 const auto kETagGetConditionalRequestHandler =
base::BindRepeating([](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();
});
using HttpCacheETagGetTest = HttpCacheTest;
TEST_F(HttpCacheETagGetTest, ConditionalRequest304) {
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 = kETagGetConditionalRequestHandler;
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() = default;
bool EtagUsed() { return etag_used_; }
bool LastModifiedUsed() { return last_modified_used_; }
MockTransactionHandler GetHandlerCallback() {
return base::BindLambdaForTesting([this](const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
if (request->extra_headers.HasHeader(HttpRequestHeaders::kIfNoneMatch)) {
etag_used_ = true;
}
if (request->extra_headers.HasHeader(
HttpRequestHeaders::kIfModifiedSince)) {
last_modified_used_ = true;
}
if (etag_used_ || 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);
}
});
}
private:
bool etag_used_ = false;
bool last_modified_used_ = false;
};
using HttpCacheGetTest = HttpCacheTest;
TEST_F(HttpCacheGetTest, ValidateCacheVaryMatch) {
MockHttpCache cache;
ScopedMockTransaction 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";
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.GetHandlerCallback();
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);
}
TEST_F(HttpCacheGetTest, ValidateCacheVaryMismatch) {
MockHttpCache cache;
ScopedMockTransaction 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";
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.GetHandlerCallback();
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);
}
TEST_F(HttpCacheGetTest, ValidateCacheVaryMismatchStar) {
MockHttpCache cache;
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"
"Etag: \"foopy\"\n"
"Cache-Control: max-age=0\n"
"Vary: *\n";
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.GetHandlerCallback();
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);
}
TEST_F(HttpCacheGetTest, DontValidateCacheVaryMismatch) {
MockHttpCache cache;
ScopedMockTransaction 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";
RunTransactionTest(cache.http_cache(), transaction);
RevalidationServer server;
transaction.handler = server.GetHandlerCallback();
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);
}
TEST_F(HttpCacheGetTest, ValidateCacheVaryMatchUpdateVary) {
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(HttpCacheGetTest, ValidateCacheVaryMismatchUpdateRequestHeader) {
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(HttpCacheGetTest, ValidateCacheVaryMatchDontDeleteVary) {
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(HttpCacheGetTest, ValidateCacheVaryMismatchDontDeleteVary) {
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(HttpCacheETagGetTest, 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 =
base::BindRepeating(&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(HttpCacheETagGetTest, Http10Range) {
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 =
base::BindRepeating(&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(HttpCacheETagGetTest, ConditionalRequest304NoStore) {
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 =
base::BindRepeating(&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());
transaction.load_flags = kETagGET_Transaction.load_flags;
transaction.handler = kETagGET_Transaction.handler;
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());
}
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"};
ScopedMockTransaction mock_network_response(kUrl);
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());
}
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";
ScopedMockTransaction mock_network_response(kUrl);
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());
}
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";
ScopedMockTransaction mock_network_response(kUrl);
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());
}
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, ConditionalizedRequestEmptyIfModifiedSince) {
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 kExtraRequestHeaders[] = "If-Modified-Since:\r\n";
ConditionalizedRequestUpdatesCacheHelper(kNetResponse1, kNetResponse2,
kNetResponse1, kExtraRequestHeaders);
}
TEST_F(HttpCacheTest, ConditionalizedRequestEmptyIfNoneMatch) {
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-None-Match:\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(HttpCacheSimplePostTest, 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(HttpCacheSimplePostTest, 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(HttpCacheSimplePostTest, LoadOnlyFromCacheMiss) {
MockHttpCache cache;
MockTransaction transaction(kSimplePOST_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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());
}
using HttpCacheSimplePostTest = HttpCacheTest;
TEST_F(HttpCacheSimplePostTest, LoadOnlyFromCacheHit) {
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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimplePostTest, 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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimplePostTest, SeparateCache) {
MockHttpCache cache;
std::vector<std::unique_ptr<UploadElementReader>> element_readers;
element_readers.push_back(std::make_unique<UploadBytesElementReader>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimplePostTest, Invalidate205) {
MockHttpCache cache;
ScopedMockTransaction 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>(
base::byte_span_from_cstring("hello")));
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());
}
TEST_F(HttpCacheTestSplitCacheFeatureEnabled,
SimplePostInvalidate205SplitCache) {
SchemefulSite site_a(GURL("http://a.com"));
SchemefulSite site_b(GURL("http://b.com"));
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest req1(transaction);
req1.network_isolation_key = NetworkIsolationKey(site_a, site_a);
req1.network_anonymization_key =
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 =
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>(
base::byte_span_from_cstring("hello")));
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 =
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());
}
TEST_F(HttpCacheSimplePostTest, NoUploadIdInvalidate205) {
MockHttpCache cache;
ScopedMockTransaction 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>(
base::byte_span_from_cstring("hello")));
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());
}
TEST_F(HttpCacheSimplePostTest, NoUploadIdNoBackend) {
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>(
base::byte_span_from_cstring("hello")));
ElementsUploadDataStream upload_data_stream(std::move(element_readers), 0);
ScopedMockTransaction transaction(kSimplePOST_Transaction);
MockHttpRequest req(transaction);
req.upload_data_stream = &upload_data_stream;
RunTransactionTestWithRequest(cache.http_cache(), transaction, req, nullptr);
}
TEST_F(HttpCacheSimplePostTest, DontInvalidate100) {
MockHttpCache cache;
ScopedMockTransaction 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>(
base::byte_span_from_cstring("hello")));
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());
}
using HttpCacheSimpleHeadTest = HttpCacheTest;
TEST_F(HttpCacheSimpleHeadTest, LoadOnlyFromCacheMiss) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimplePOST_Transaction);
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.method = "HEAD";
MockHttpRequest request(transaction);
TestCompletionCallback callback;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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(HttpCacheSimpleHeadTest, LoadOnlyFromCacheHit) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
TEST_F(HttpCacheSimpleHeadTest, ContentLengthOnHitRead) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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);
}
TEST_F(HttpCacheTest, ETagHeadContentLengthOnHitReadWrite) {
MockHttpCache cache;
ScopedMockTransaction transaction(kETagGET_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"));
}
TEST_F(HttpCacheSimpleHeadTest, WithRanges) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
TEST_F(HttpCacheSimpleHeadTest, WithCachedRanges) {
MockHttpCache cache;
{
ScopedMockTransaction scoped_mock_transaction(kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
}
ScopedMockTransaction transaction(kSimpleGET_Transaction,
kRangeGET_TransactionOK.url);
transaction.method = "HEAD";
transaction.data = "";
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());
}
TEST_F(HttpCacheSimpleHeadTest, WithTruncatedEntry) {
MockHttpCache cache;
{
ScopedMockTransaction scoped_mock_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);
}
ScopedMockTransaction transaction(kSimpleGET_Transaction,
kRangeGET_TransactionOK.url);
transaction.method = "HEAD";
transaction.data = "";
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());
}
using HttpCacheTypicalHeadTest = HttpCacheTest;
TEST_F(HttpCacheTypicalHeadTest, UpdatesResponse) {
MockHttpCache cache;
std::string headers;
{
ScopedMockTransaction transaction(kTypicalGET_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";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
}
EXPECT_NE(std::string::npos, headers.find("HTTP/1.1 200 OK\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
ScopedMockTransaction transaction2(kTypicalGET_Transaction);
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());
}
TEST_F(HttpCacheTypicalHeadTest, ConditionalizedRequestUpdatesResponse) {
MockHttpCache cache;
std::string headers;
{
ScopedMockTransaction transaction(kTypicalGET_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";
RunTransactionTestWithResponse(cache.http_cache(), transaction, &headers);
EXPECT_NE(std::string::npos, headers.find("HTTP/1.1 304 Not Modified\n"));
EXPECT_EQ(2, cache.network_layer()->transaction_count());
base::RunLoop().RunUntilIdle();
}
{
ScopedMockTransaction transaction2(kTypicalGET_Transaction);
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());
}
}
TEST_F(HttpCacheSimpleHeadTest, InvalidatesEntry) {
MockHttpCache cache;
ScopedMockTransaction transaction(kTypicalGET_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);
}
using HttpCacheSimplePutTest = HttpCacheTest;
TEST_F(HttpCacheSimplePutTest, 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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimplePutTest, 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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimplePutTest, Invalidate305) {
MockHttpCache cache;
ScopedMockTransaction 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>(
base::byte_span_from_cstring("hello")));
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());
}
TEST_F(HttpCacheSimplePutTest, DontInvalidate404) {
MockHttpCache cache;
ScopedMockTransaction 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>(
base::byte_span_from_cstring("hello")));
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());
}
using HttpCacheSimpleDeleteTest = HttpCacheTest;
TEST_F(HttpCacheSimpleDeleteTest, 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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimpleDeleteTest, 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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimpleDeleteTest, Invalidate301) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
TEST_F(HttpCacheSimpleDeleteTest, DontInvalidate416) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
using HttpCacheSimplePatchTest = HttpCacheTest;
TEST_F(HttpCacheSimplePatchTest, 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>(
base::byte_span_from_cstring("hello")));
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(HttpCacheSimplePatchTest, Invalidate301) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
TEST_F(HttpCacheSimplePatchTest, DontInvalidate416) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
TEST_F(HttpCacheSimpleGetTest, DontInvalidateOnFailure) {
MockHttpCache cache;
RunTransactionTest(cache.http_cache(), kSimpleGET_Transaction);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.start_return_code = ERR_FAILED;
transaction.load_flags |= LOAD_VALIDATE_CACHE;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
transaction.load_flags = LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
transaction.start_return_code = OK;
RunTransactionTest(cache.http_cache(), transaction);
EXPECT_EQ(2, cache.network_layer()->transaction_count());
}
TEST_F(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, 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(HttpCacheSimpleGetTest, 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(HttpCacheRangeGetTest, 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, ExternalValidationLogsHeaders) {
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, SpecialHeadersLogsHeaders) {
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(HttpCacheGetTest, Crazy206) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
transaction.handler = MockTransactionHandler();
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());
}
TEST_F(HttpCacheGetTest, Crazy416) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_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());
}
TEST_F(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, NoValidationLogsRestart) {
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(HttpCacheGetTest, 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(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, NoContentLength) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.response_headers =
"ETag: \"foo\"\n"
"Accept-Ranges: bytes\n"
"Content-Range: bytes 40-49/80\n";
transaction.handler = MockTransactionHandler();
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 =
base::BindRepeating(&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());
}
TEST_F(HttpCacheRangeGetTest, OK) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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);
}
TEST_F(HttpCacheRangeGetTest, CacheReadError) {
MockHttpCache cache;
ScopedMockTransaction transaction(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());
}
TEST_F(HttpCacheRangeGetTest, NoStore) {
MockHttpCache cache;
ScopedMockTransaction 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();
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());
}
TEST_F(HttpCacheRangeGetTest, NoStore304) {
MockHttpCache cache;
ScopedMockTransaction 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();
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);
}
TEST_F(HttpCacheRangeGetTest, SyncOK) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.test_mode = TEST_MODE_SYNC_ALL;
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);
}
TEST_F(HttpCacheTest, SparseWaitForEntry) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), transaction);
disk_cache::Entry* entry;
MockHttpRequest request(transaction);
std::string cache_key = *HttpCache::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(HttpCacheRangeGetTest, Revalidate1) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction 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";
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);
}
TEST_F(HttpCacheRangeGetTest, Revalidate2) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction 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";
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());
}
TEST_F(HttpCacheRangeGetTest, 304) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), scoped_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());
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());
}
TEST_F(HttpCacheRangeGetTest, ModifiedResult) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
std::string headers;
RunTransactionTestWithResponse(cache.http_cache(), scoped_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());
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());
}
TEST_F(HttpCacheRangeGetTest, 206ReturnsSubrangeRangeNoCachedContent) {
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 = MockTransactionHandler();
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(HttpCacheRangeGetTest, 206ReturnsSubrangeRangeCachedContent) {
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 = MockTransactionHandler();
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(HttpCacheGetTest, 206ReturnsSubrangeRangeCachedContent) {
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(HttpCacheRangeGetTest, 206ReturnsWrongRangeNoCachedContent) {
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 = MockTransactionHandler();
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(HttpCacheRangeGetTest, 206ReturnsWrongRangeCachedContent) {
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 = MockTransactionHandler();
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(HttpCacheRangeGetTest, 206ReturnsSmallerFileNoCachedContent) {
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(HttpCacheRangeGetTest, 206ReturnsSmallerFileCachedContent) {
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(HttpCacheRangeGetTest, 416NoCachedContent) {
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(HttpCacheRangeGetTest, MovedPermanently301) {
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 = MockTransactionHandler();
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());
}
using HttpCacheUnknownRangeGetTest = HttpCacheTest;
TEST_F(HttpCacheUnknownRangeGetTest, SuffixRangeThenIntRange) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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());
}
TEST_F(HttpCacheUnknownRangeGetTest, IntRangeThenSuffixRange) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.test_mode = TEST_MODE_SYNC_CACHE_START |
TEST_MODE_SYNC_CACHE_READ |
TEST_MODE_SYNC_CACHE_WRITE;
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());
}
TEST_F(HttpCacheUnknownRangeGetTest, SuffixRangeEmptyResponse) {
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(HttpCacheUnknownRangeGetTest, Empty302) {
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(HttpCacheUnknownRangeGetTest, Empty302Replaced) {
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 =
base::BindRepeating(&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(HttpCacheUnknownRangeGetTest, Basic304) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
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());
}
TEST_F(HttpCacheGetTest, Previous206) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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);
}
TEST_F(HttpCacheGetTest, Previous206NotModified) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
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);
}
TEST_F(HttpCacheGetTest, Previous206NewContent) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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());
}
TEST_F(HttpCacheGetTest, Previous206NotSparse) {
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));
auto buf(base::MakeRefCounted<IOBufferWithSize>(500));
buf->span().copy_prefix_from(
base::as_byte_span(kRangeGET_TransactionOK.data));
int len = kRangeGET_TransactionOK.data.size();
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(HttpCacheRangeGetTest, Previous206NotSparser2) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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));
auto buf = base::MakeRefCounted<IOBufferWithSize>(500);
buf->span().copy_prefix_from(
base::as_byte_span(kRangeGET_TransactionOK.data));
int len = kRangeGET_TransactionOK.data.size();
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());
}
TEST_F(HttpCacheGetTest, Previous206NotValidation) {
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));
auto buf = base::MakeRefCounted<IOBufferWithSize>(500);
buf->span().copy_prefix_from(
base::as_byte_span(kRangeGET_TransactionOK.data));
int len = kRangeGET_TransactionOK.data.size();
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(HttpCacheRangeGetTest, Previous200) {
MockHttpCache cache;
{
ScopedMockTransaction transaction(kTypicalGET_Transaction,
kRangeGET_TransactionOK.url);
transaction.data = kFullRangeData;
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());
}
ScopedMockTransaction scoped_transaction(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 = kFullRangeData;
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());
}
TEST_F(HttpCacheTest, RangeRequestResultsIn200) {
MockHttpCache cache;
std::string headers;
{
ScopedMockTransaction 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());
}
ScopedMockTransaction transaction2(kSimpleGET_Transaction,
kRangeGET_TransactionOK.url);
transaction2.request_headers = kRangeGET_TransactionOK.request_headers;
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());
}
TEST_F(HttpCacheRangeGetTest, MoreThanCurrentSize) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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());
}
TEST_F(HttpCacheRangeGetTest, Cancel) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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();
}
TEST_F(HttpCacheRangeGetTest, CancelWhileReading) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
auto context = std::make_unique<Context>();
context->trans = cache.CreateTransaction();
ASSERT_TRUE(context->trans);
int 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);
}
TEST_F(HttpCacheRangeGetTest, Cancel2) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
request.load_flags |= LOAD_VALIDATE_CACHE;
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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());
}
TEST_F(HttpCacheRangeGetTest, Cancel3) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
MockHttpRequest request(kRangeGET_TransactionOK);
request.load_flags |= LOAD_VALIDATE_CACHE;
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
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());
}
TEST_F(HttpCacheRangeGetTest, InvalidResponse1) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = MockTransactionHandler();
transaction.response_headers =
"Content-Range: bytes 40-49/45\n"
"Content-Length: 10\n";
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));
}
TEST_F(HttpCacheRangeGetTest, InvalidResponse2) {
MockHttpCache cache;
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = MockTransactionHandler();
transaction.response_headers =
"Content-Range: bytes 40-49/80\n"
"Content-Length: 20\n";
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));
}
TEST_F(HttpCacheRangeGetTest, InvalidResponse3) {
MockHttpCache cache;
std::string headers;
{
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = MockTransactionHandler();
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();
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());
}
ScopedMockTransaction transaction(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());
}
TEST_F(HttpCacheRangeGetTest, LargeValues) {
MockHttpCache cache(HttpCache::DefaultBackend::InMemory(1024 * 1024));
std::string headers;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = MockTransactionHandler();
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";
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();
}
TEST_F(HttpCacheRangeGetTest, NoDiskCache) {
auto factory = std::make_unique<MockBlockingBackendFactory>();
factory->set_fail(true);
factory->FinishCreation();
MockHttpCache cache(std::move(factory));
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
EXPECT_EQ(1, cache.network_layer()->transaction_count());
}
TEST_F(HttpCacheTest, RangeHead) {
MockHttpCache cache;
ScopedMockTransaction 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());
}
TEST_F(HttpCacheRangeGetTest, 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(HttpCacheRangeGetTest, FastFlakyServer2) {
MockHttpCache cache;
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 40-49\r\n" EXTRA_HEADER;
transaction.data = "rg: 40-";
transaction.handler = MockTransactionHandler();
std::string headers(transaction.response_headers);
headers.append("Content-Range: bytes 40-49/80\n");
transaction.response_headers = headers.c_str();
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());
}
TEST_F(HttpCacheRangeGetTest, OkLoadOnlyFromCache) {
MockHttpCache cache;
ScopedMockTransaction transaction(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());
transaction.load_flags |= LOAD_ONLY_FROM_CACHE | LOAD_SKIP_CACHE_VALIDATION;
MockHttpRequest request(transaction);
TestCompletionCallback callback;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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(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, WriteResponseInfoTruncated) {
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");
std::unique_ptr<base::Pickle> pickle = response1.MakePickle(
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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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;
ScopedMockTransaction 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";
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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, 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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int 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(HttpCacheRangeGetTest, 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;
trans = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(trans);
TestCompletionCallback cb;
int rv = trans->Start(request.get(), cb.callback(), NetLogWithSource());
EXPECT_EQ(0, cb.GetResult(rv));
auto buf = base::MakeRefCounted<IOBufferWithSize>(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(HttpCacheRangeGetTest, 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;
trans = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(trans);
TestCompletionCallback cb;
int rv = trans->Start(request.get(), cb.callback(), NetLogWithSource());
EXPECT_EQ(0, cb.GetResult(rv));
auto buf = base::MakeRefCounted<IOBufferWithSize>(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(HttpCacheGetTest, 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(HttpCacheGetTest, IncompleteResourceNoStore) {
MockHttpCache cache;
{
ScopedMockTransaction scoped_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);
}
ScopedMockTransaction 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;
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));
}
TEST_F(HttpCacheGetTest, IncompleteResourceCancel) {
MockHttpCache cache;
{
ScopedMockTransaction scoped_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);
}
ScopedMockTransaction 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;
MockHttpRequest request(transaction);
auto c = std::make_unique<Context>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
auto pending = std::make_unique<Context>();
pending->trans = cache.CreateTransaction();
ASSERT_TRUE(pending->trans);
int 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();
}
TEST_F(HttpCacheGetTest, IncompleteResource2) {
MockHttpCache cache;
ScopedMockTransaction scoped_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: 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));
}
TEST_F(HttpCacheGetTest, IncompleteResource3) {
MockHttpCache cache;
ScopedMockTransaction scoped_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"
"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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
MockHttpRequest request(transaction);
int 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());
}
TEST_F(HttpCacheGetTest, IncompleteResourceWithAuth) {
MockHttpCache cache;
ScopedMockTransaction scoped_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);
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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
MockHttpRequest request(transaction);
int 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();
}
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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
MockHttpRequest request(transaction);
int 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(HttpCacheGetTest, 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(HttpCacheGetTest, 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>();
c->trans = cache.CreateTransaction();
ASSERT_TRUE(c->trans);
int rv =
c->trans->Start(&request, c->callback.callback(), NetLogWithSource());
EXPECT_THAT(c->callback.GetResult(rv), IsOk());
auto buf = base::MakeRefCounted<IOBufferWithSize>(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(HttpCacheRangeGetTest, IncompleteResource) {
MockHttpCache cache;
ScopedMockTransaction scoped_transaction(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());
}
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());
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;
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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();
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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());
}
void HttpCacheTest::CacheControlNoCacheNormalLoad(bool skip_feature_enabled) {
base::test::ScopedFeatureList feature_list;
if (skip_feature_enabled) {
feature_list.InitAndEnableFeature(features::kHttpCacheSkipUnusableEntry);
} else {
feature_list.InitAndDisableFeature(features::kHttpCacheSkipUnusableEntry);
}
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 (skip_feature_enabled && 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, CacheControlNoCacheNormalLoadSkipUnusable) {
CacheControlNoCacheNormalLoad(true);
}
TEST_F(HttpCacheTest, CacheControlNoCacheNormalLoadDontSkipUnusable) {
CacheControlNoCacheNormalLoad(false);
}
TEST_F(HttpCacheTest, ConcurrentUnusable) {
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(0, cache.disk_cache()->open_count());
EXPECT_EQ(1, cache.disk_cache()->create_count());
MockHttpRequest request1(transaction);
request1.load_flags = LOAD_SKIP_CACHE_VALIDATION | LOAD_ONLY_FROM_CACHE;
TestCompletionCallback callback1;
MockHttpRequest request2(transaction);
TestCompletionCallback callback2;
auto transact1 = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(transact1);
int rv1 =
transact1->Start(&request1, callback1.callback(), NetLogWithSource());
ASSERT_EQ(rv1, ERR_IO_PENDING);
auto transact2 = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(transact2);
int rv2 =
transact2->Start(&request2, callback2.callback(), NetLogWithSource());
ASSERT_EQ(rv2, ERR_IO_PENDING);
EXPECT_EQ(OK, callback1.WaitForResult());
EXPECT_EQ(OK, callback2.WaitForResult());
ReadAndVerifyTransaction(transact1.get(), transaction);
ReadAndVerifyTransaction(transact2.get(), 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, 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(HttpCacheSimpleGetTest, 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;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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 = cache->CreateTransaction();
EXPECT_TRUE(trans);
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";
ScopedMockTransaction mock_network_response(kUrl);
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);
base::Time request_time1 = base::Time() + base::Hours(1232);
base::Time response_time1 = base::Time() + base::Hours(1233);
mock_network_response.request_time = request_time1;
mock_network_response.response_time = response_time1;
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_time2 = base::Time() + base::Hours(1234);
base::Time response_time2 = base::Time() + base::Hours(1235);
mock_network_response.request_time = request_time2;
mock_network_response.response_time = response_time2;
HttpResponseInfo response;
RunTransactionTestWithResponseInfo(cache.http_cache(), request, &response);
EXPECT_EQ(request_time2, response.request_time);
EXPECT_EQ(response_time2, response.response_time);
EXPECT_EQ(response.original_response_time, response_time1);
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));
}
TEST_F(HttpCacheTestSplitCacheFeatureEnabled,
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 =
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 =
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 =
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 =
NetworkAnonymizationKey::CreateCrossSite(site_b);
EXPECT_EQ(std::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>(
base::byte_span_from_cstring("hello")));
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, 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 =
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 =
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 =
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 =
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 =
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 =
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(HttpCacheTestSplitCacheFeature, SplitCache) {
if (!IsSplitCacheEnabled()) {
GTEST_SKIP() << "This test is relevant only with SplitCache.";
}
MockHttpCache cache;
HttpResponseInfo response;
const SchemefulSite site_a(GURL("http://a.com"));
const url::Origin origin_b = url::Origin::Create(GURL("http://b.com"));
const SchemefulSite site_b(origin_b);
const SchemefulSite site_data(
GURL("data:text/html,<body>Hello World</body>"));
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_FALSE(response.was_cached);
NetworkIsolationKey key_a(site_a, site_a);
auto nak_a = 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;
switch (GetParam()) {
case SplitCacheTestCase::kDisabled:
NOTREACHED();
case SplitCacheTestCase::kEnabledTripleKeyed:
break;
}
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(std::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>(
base::byte_span_from_cstring("hello")));
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_P(HttpCacheTestSplitCacheFeature, GenerateCacheKeyForRequestFailures) {
GURL url("http://example.com");
SchemefulSite site(url);
HttpRequestInfo cacheable_request;
cacheable_request.url = url;
cacheable_request.method = "GET";
cacheable_request.network_isolation_key = NetworkIsolationKey(site, site);
cacheable_request.network_anonymization_key =
NetworkAnonymizationKey::CreateSameSite(site);
std::optional<std::string> cache_key =
HttpCache::GenerateCacheKeyForRequest(&cacheable_request);
EXPECT_NE(std::nullopt, cache_key);
const SchemefulSite site_data(
GURL("data:text/html,<body>Hello World</body>"));
HttpRequestInfo opaque_top_level_site_request = cacheable_request;
opaque_top_level_site_request.network_isolation_key =
NetworkIsolationKey(site_data, site);
opaque_top_level_site_request.network_anonymization_key =
NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
opaque_top_level_site_request.network_isolation_key);
bool is_request_cacheable;
switch (GetParam()) {
case SplitCacheTestCase::kDisabled:
is_request_cacheable = true;
break;
case SplitCacheTestCase::kEnabledTripleKeyed:
is_request_cacheable = false;
break;
}
cache_key =
HttpCache::GenerateCacheKeyForRequest(&opaque_top_level_site_request);
EXPECT_EQ(is_request_cacheable, cache_key.has_value());
HttpRequestInfo opaque_initiator_main_frame_request = cacheable_request;
opaque_initiator_main_frame_request.is_main_frame_navigation = true;
opaque_initiator_main_frame_request.initiator = url::Origin();
cache_key = HttpCache::GenerateCacheKeyForRequest(
&opaque_initiator_main_frame_request);
EXPECT_TRUE(cache_key.has_value());
HttpRequestInfo opaque_initiator_subframe_request = cacheable_request;
opaque_initiator_subframe_request.is_subframe_document_resource = true;
opaque_initiator_subframe_request.initiator = url::Origin();
cache_key =
HttpCache::GenerateCacheKeyForRequest(&opaque_initiator_subframe_request);
EXPECT_TRUE(cache_key.has_value());
}
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);
NetworkIsolationKey key_a(site_a, site_a);
auto nak_a = 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);
NetworkIsolationKey key_b(site_b, site_b);
auto nak_b = 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(
features::kSplitCacheByNetworkIsolationKey);
HttpCache::SplitCacheFeatureEnableByDefault();
EXPECT_FALSE(HttpCache::IsSplitCacheEnabled());
}
TEST_F(HttpCacheTestSplitCacheFeatureEnabled, 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"));
NetworkIsolationKey key_a(site_a, site_a);
auto nak_a = 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);
NetworkIsolationKey key_b(site_b, site_b);
auto nak_b = 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"));
NetworkIsolationKey new_key_a(new_site_a, new_site_a);
auto new_nak_a = 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(HttpCacheTestSplitCacheFeatureEnabled,
SplitCacheUsesNetworkIsolationPartition) {
MockHttpCache cache;
HttpResponseInfo response;
SchemefulSite site(GURL("http://foo.com"));
MockHttpRequest request(kSimpleGET_Transaction);
NetworkIsolationKey general_partition_nik(site, site);
request.network_isolation_key = general_partition_nik;
request.network_anonymization_key =
NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
general_partition_nik);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
request, &response);
EXPECT_FALSE(response.was_cached);
EXPECT_TRUE(response.headers->GetMaxAgeValue());
EXPECT_EQ(base::Seconds(10000), response.headers->GetMaxAgeValue().value());
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
request, &response);
EXPECT_TRUE(response.was_cached);
EXPECT_TRUE(response.headers->GetMaxAgeValue());
EXPECT_EQ(base::Seconds(10000), response.headers->GetMaxAgeValue().value());
NetworkIsolationKey special_partition_nik(
site, site, std::nullopt,
NetworkIsolationPartition::kProtectedAudienceSellerWorklet);
MockHttpRequest special_partition_request(kSimpleGET_Transaction);
request.network_isolation_key = special_partition_nik;
request.network_anonymization_key =
NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
special_partition_nik);
ScopedMockTransaction transaction_info_for_special_partition(
kSimpleGET_Transaction);
transaction_info_for_special_partition.response_headers =
"Cache-Control: max-age=50000\n";
RunTransactionTestWithRequest(cache.http_cache(),
transaction_info_for_special_partition, request,
&response);
EXPECT_FALSE(response.was_cached);
EXPECT_TRUE(response.headers->GetMaxAgeValue());
EXPECT_EQ(base::Seconds(50000), response.headers->GetMaxAgeValue().value());
RunTransactionTestWithRequest(cache.http_cache(),
transaction_info_for_special_partition, request,
&response);
EXPECT_TRUE(response.was_cached);
EXPECT_TRUE(response.headers->GetMaxAgeValue());
EXPECT_EQ(base::Seconds(50000), response.headers->GetMaxAgeValue().value());
request.network_isolation_key = general_partition_nik;
request.network_anonymization_key =
NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
general_partition_nik);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
request, &response);
EXPECT_TRUE(response.was_cached);
EXPECT_TRUE(response.headers->GetMaxAgeValue());
EXPECT_EQ(base::Seconds(10000), response.headers->GetMaxAgeValue().value());
}
TEST_F(HttpCacheTestSplitCacheFeatureEnabled, SharedResourceUsesSharedCache) {
SchemefulSite site(GURL("http://foo.com"));
MockHttpRequest request(kSimpleGET_Transaction);
NetworkIsolationKey general_partition_nik(site, site);
request.network_isolation_key = general_partition_nik;
request.network_anonymization_key =
NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
general_partition_nik);
std::string cache_key = *HttpCache::GenerateCacheKeyForRequest(&request);
EXPECT_EQ("1/0/_dk_http://foo.com http://foo.com http://www.google.com/",
cache_key);
request.is_shared_resource = true;
cache_key = *HttpCache::GenerateCacheKeyForRequest(&request);
EXPECT_EQ("1/0/http://www.google.com/", cache_key);
}
TEST_F(HttpCacheTest, NonSplitCache) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndDisableFeature(
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, 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);
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
auto buf = base::MakeRefCounted<IOBufferWithSize>(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);
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
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);
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
auto buf = base::MakeRefCounted<IOBufferWithSize>(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);
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
auto buf = base::MakeRefCounted<IOBufferWithSize>(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;
ScopedMockTransaction mock_transaction(kSimpleGET_Transaction);
mock_transaction.status = "HTTP/1.1 401 Unauthorized";
MockHttpRequest request(mock_transaction);
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
trans->StopCaching();
}
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);
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
ScopedMockTransaction mock_transaction(kSimpleGET_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());
auto buf = base::MakeRefCounted<IOBufferWithSize>(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);
ScopedMockTransaction scoped_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);
{
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
int rv = trans->Start(&request, callback.callback(), NetLogWithSource());
EXPECT_THAT(callback.GetResult(rv), IsOk());
auto buf = base::MakeRefCounted<IOBufferWithSize>(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);
}
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 HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data);
static int LargeBufferReader(int64_t content_length,
int64_t offset,
IOBuffer* buf,
int buf_len);
static const int64_t kTotalSize = 5000LL * 1000 * 1000;
};
const int64_t HttpCacheHugeResourceTest::kTotalSize;
void HttpCacheHugeResourceTest::LargeResourceTransactionHandler(
const HttpRequestInfo* request,
std::string* response_status,
std::string* response_headers,
std::string* response_data) {
std::optional<std::string_view> if_range =
request->extra_headers.GetHeaderView(HttpRequestHeaders::kIfRange);
if (!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_view range_header =
request->extra_headers.GetHeaderView(HttpRequestHeaders::kRange).value();
std::vector<HttpByteRange> ranges;
EXPECT_TRUE(HttpUtil::ParseRangeHeader(range_header, &ranges));
ASSERT_EQ(1u, ranges.size());
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,
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::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) {
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = MockTransactionHandler();
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";
std::string headers;
RunTransactionTestWithResponse(cache->http_cache(), transaction, &headers);
}
void HttpCacheHugeResourceTest::SetupInfixSparseCacheEntry(
MockHttpCache* cache) {
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.handler = MockTransactionHandler();
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";
std::string headers;
RunTransactionTestWithResponse(cache->http_cache(), transaction, &headers);
}
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 = base::BindRepeating(&LargeResourceTransactionHandler);
transaction.read_handler = base::BindRepeating(&LargeBufferReader);
ScopedMockTransaction scoped_transaction(transaction);
MockHttpRequest request(transaction);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> http_transaction =
cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(http_transaction.get());
bool network_transaction_started = false;
if (stop_caching_phase == TransactionPhase::AFTER_NETWORK_READ) {
http_transaction->SetConnectedCallback(base::BindLambdaForTesting(
[&](const TransportInfo& info, CompletionOnceCallback callback) -> int {
network_transaction_started = true;
return OK;
}));
}
int rv = http_transaction->Start(&request, callback.callback(),
NetLogWithSource());
rv = callback.GetResult(rv);
ASSERT_EQ(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()
->InBytes());
do {
const int kBufferSize = 1024 * 1024 * 10;
scoped_refptr<IOBuffer> buf =
base::MakeRefCounted<IOBufferWithSize>(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;
{
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Content-Length: 100\n";
RunTransactionTest(cache.http_cache(), 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;
{
ScopedMockTransaction transaction(kSimpleGET_Transaction);
transaction.response_headers =
"Cache-Control: max-age=10000\n"
"Content-Length: 100\n"
"Etag: \"foo\"\n";
RunTransactionTest(cache.http_cache(), transaction);
}
MockHttpRequest request(kSimpleGET_Transaction);
VerifyTruncatedFlag(&cache, request.CacheKey(), true, 0);
}
TEST_F(HttpCacheTest, SetPriority) {
MockHttpCache cache;
HttpRequestInfo info;
std::unique_ptr<HttpTransaction> trans =
cache.http_cache()->CreateTransaction(IDLE);
ASSERT_TRUE(trans);
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 =
cache.http_cache()->CreateTransaction(IDLE);
ASSERT_TRUE(trans);
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;
ScopedMockTransaction scoped_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;
MockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = EXTRA_HEADER;
transaction.data = kFullRangeData;
std::unique_ptr<HttpTransaction> trans =
cache.http_cache()->CreateTransaction(MEDIUM);
ASSERT_TRUE(trans);
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());
}
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 = kETagGetConditionalRequestHandler;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
}
TEST_F(HttpCacheTest, NetworkBytesConditionalRequest200) {
MockHttpCache cache;
ScopedMockTransaction 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";
int64_t sent, received;
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
RevalidationServer server;
transaction.handler = server.GetHandlerCallback();
transaction.request_headers = "Foo: none\r\n";
RunTransactionAndGetNetworkBytes(&cache, transaction, &sent, &received);
EXPECT_EQ(MockNetworkTransaction::kTotalSentBytes, sent);
EXPECT_EQ(MockNetworkTransaction::kTotalReceivedBytes, received);
}
TEST_F(HttpCacheTest, NetworkBytesRange) {
MockHttpCache cache;
ScopedMockTransaction 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);
}
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(HttpCacheRangeGetTest, MultipleRequests) {
MockHttpCache cache;
MockHttpRequest request(kRangeGET_TransactionOK);
ScopedMockTransaction transaction(kRangeGET_TransactionOK);
transaction.request_headers = "Range: bytes = 0-9\r\n" EXTRA_HEADER;
transaction.data = "rg: 00-09 ";
TestCompletionCallback callback;
auto trans = cache.CreateTransaction();
ASSERT_TRUE(trans);
trans->Start(&request, callback.callback(), NetLogWithSource());
RunTransactionTest(cache.http_cache(), kRangeGET_TransactionOK);
callback.WaitForResult();
}
TEST_F(HttpCacheRangeGetTest, Previous200LoadOnlyFromCache) {
MockHttpCache cache;
{
MockTransaction transaction(kETagGET_Transaction);
transaction.url = kRangeGET_TransactionOK.url;
transaction.data = kFullRangeData;
ScopedMockTransaction scoped_transaction(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());
}
ScopedMockTransaction scoped_transaction(kRangeGET_TransactionOK);
MockTransaction transaction2(kRangeGET_TransactionOK);
transaction2.load_flags |= LOAD_ONLY_FROM_CACHE;
MockHttpRequest request(transaction2);
TestCompletionCallback callback;
std::unique_ptr<HttpTransaction> trans;
trans = cache.http_cache()->CreateTransaction(DEFAULT_PRIORITY);
ASSERT_TRUE(trans);
int 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->trans = cache.CreateTransaction();
ASSERT_TRUE(first->trans);
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->trans = cache.CreateTransaction();
ASSERT_TRUE(second->trans);
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 = kETagGetConditionalRequestHandler;
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(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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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->GetEntry(), entry2->GetEntry());
}
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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry0 = nullptr;
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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);
entry0.reset();
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->GetEntry(), entry2->GetEntry());
}
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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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());
transaction->SetCacheIOCallBackForTest(cb.callback());
cache.backend();
ScopedMockTransaction m_transaction(kSimpleGET_Transaction);
scoped_refptr<ActiveEntry> entry1 = nullptr;
scoped_refptr<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"));
}
using HttpCacheFirstPartySetsBypassCacheTest = HttpCacheTest;
TEST_F(HttpCacheFirstPartySetsBypassCacheTest, ShouldBypassNoId) {
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(HttpCacheFirstPartySetsBypassCacheTest, ShouldBypassIdTooSmall) {
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(HttpCacheFirstPartySetsBypassCacheTest, 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(HttpCacheFirstPartySetsBypassCacheTest, ShouldNotBypassNoFilter) {
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);
EXPECT_EQ(
response.headers->GetNormalizedHeader("Cross-Origin-Resource-Policy"),
"cross-origin");
EXPECT_EQ(304, response.headers->response_code());
}
TEST_F(HttpCacheTest, PrioritizeCachingFlagNotSetByDefault) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest request(transaction);
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(cache.backend()->GetEntryInMemoryData(request.CacheKey()), 0);
}
TEST_F(HttpCacheTest, PrioritizeCachingFlagSetForMainFrameNavigationRequest) {
MockHttpCache cache;
ScopedMockTransaction transaction(kSimpleGET_Transaction);
MockHttpRequest request(transaction);
request.is_main_frame_navigation = true;
RunTransactionTestWithRequest(cache.http_cache(), transaction, request,
nullptr);
EXPECT_EQ(cache.backend()->GetEntryInMemoryData(request.CacheKey()),
HINT_HIGH_PRIORITY);
}
enum class SplitCacheByCredentials { kDisabled, kEnabled };
enum class SplitCacheByNIK { kDisabled, kEnabled };
enum class IsSubframeDocumentResource { kNo, kYes };
enum class IsMainFrameNavigation { kNo, kYes };
enum class IsSharedResource { kNo, kYes };
struct GenerateCacheKeyTestParams {
std::string_view name;
std::string_view url;
int load_flags = LOAD_NORMAL;
IsSubframeDocumentResource is_subframe_document_resource =
IsSubframeDocumentResource::kNo;
IsMainFrameNavigation is_main_frame_navigation = IsMainFrameNavigation::kNo;
std::optional<url::Origin> initiator;
IsSharedResource is_shared_resource = IsSharedResource::kNo;
std::optional<NetworkIsolationKey> network_isolation_key;
int64_t upload_data_identifier = 0;
SplitCacheByCredentials split_cache_by_credentials =
SplitCacheByCredentials::kDisabled;
SplitCacheByNIK split_cache_by_nik = SplitCacheByNIK::kDisabled;
std::optional<std::string> expected_key;
std::optional<std::string> expected_partition_key;
};
class HttpCacheGenerateCacheKeyTest
: public ::testing::TestWithParam<GenerateCacheKeyTestParams> {
public:
HttpCacheGenerateCacheKeyTest() {
const GenerateCacheKeyTestParams& param = GetParam();
std::vector<base::test::FeatureRef> enabled_features;
std::vector<base::test::FeatureRef> disabled_features;
auto enable_or_disable_feature = [&](const base::Feature& feature,
bool enable) {
auto& features = enable ? enabled_features : disabled_features;
features.push_back(feature);
};
enable_or_disable_feature(
features::kSplitCacheByIncludeCredentials,
param.split_cache_by_credentials == SplitCacheByCredentials::kEnabled);
enable_or_disable_feature(
features::kSplitCacheByNetworkIsolationKey,
param.split_cache_by_nik == SplitCacheByNIK::kEnabled);
feature_list_.InitWithFeatures(enabled_features, disabled_features);
}
static std::pair<std::unique_ptr<UploadDataStream>, HttpRequestInfo>
GenerateRequestFromTestParams(const GenerateCacheKeyTestParams& params) {
std::unique_ptr<UploadDataStream> upload_data_stream;
HttpRequestInfo request;
request.url = GURL(params.url);
request.method = "GET";
request.load_flags = params.load_flags;
if (params.network_isolation_key) {
request.network_isolation_key = *params.network_isolation_key;
request.network_anonymization_key =
NetworkAnonymizationKey::CreateFromNetworkIsolationKey(
*params.network_isolation_key);
}
request.is_subframe_document_resource =
params.is_subframe_document_resource ==
IsSubframeDocumentResource::kYes;
request.is_main_frame_navigation =
params.is_main_frame_navigation == IsMainFrameNavigation::kYes;
request.initiator = params.initiator;
request.is_shared_resource =
params.is_shared_resource == IsSharedResource::kYes;
if (params.upload_data_identifier != 0) {
upload_data_stream = std::make_unique<ElementsUploadDataStream>(
std::vector<std::unique_ptr<UploadElementReader>>(),
params.upload_data_identifier);
request.upload_data_stream = upload_data_stream.get();
}
return std::pair(std::move(upload_data_stream), std::move(request));
}
private:
base::test::ScopedFeatureList feature_list_;
};
TEST_P(HttpCacheGenerateCacheKeyTest, GenerateCacheKeyForRequest) {
const GenerateCacheKeyTestParams& params = GetParam();
const auto& [upload_data_stream, request] =
GenerateRequestFromTestParams(params);
EXPECT_EQ(params.expected_key,
HttpCache::GenerateCacheKeyForRequest(&request));
}
TEST_P(HttpCacheGenerateCacheKeyTest, GenerateCachePartitionKeyForRequest) {
const GenerateCacheKeyTestParams& params = GetParam();
const auto& [upload_data_stream, request] =
GenerateRequestFromTestParams(params);
EXPECT_EQ(params.expected_partition_key,
HttpCache::GenerateCachePartitionKeyForRequest(request));
}
const GenerateCacheKeyTestParams kGenerateCacheKeyTestParams[] = {
{"NoSplitting", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo, std::nullopt, 0, SplitCacheByCredentials::kDisabled,
SplitCacheByNIK::kDisabled, "1/0/http://a.com/", "1/0/"},
{"NoSplittingWithUploadData", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo, std::nullopt, 123,
SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kDisabled,
"1/123/http://a.com/", "1/123/"},
{"SplitByCredentials_NoCookies", "http://a.com/", LOAD_DO_NOT_SAVE_COOKIES,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo, std::nullopt, 0, SplitCacheByCredentials::kEnabled,
SplitCacheByNIK::kDisabled, "0/0/http://a.com/", "0/0/"},
{"SplitByCredentials_WithCookies", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo, std::nullopt, 0, SplitCacheByCredentials::kEnabled,
SplitCacheByNIK::kDisabled, "1/0/http://a.com/", "1/0/"},
{"SplitByNIK_Basic", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo,
NetworkIsolationKey(SchemefulSite(GURL("http://b.com")),
SchemefulSite(GURL("http://c.com"))),
0, SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kEnabled,
"1/0/_dk_http://b.com http://c.com http://a.com/",
"1/0/_dk_http://b.com http://c.com"},
{"SplitByNIK_SharedResource", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kYes,
NetworkIsolationKey(SchemefulSite(GURL("http://b.com")),
SchemefulSite(GURL("http://c.com"))),
0, SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kEnabled,
"1/0/http://a.com/", "1/0/"},
{"SplitByNIK_TransientNIK", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo, NetworkIsolationKey::CreateTransientForTesting(), 0,
SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kEnabled,
std::nullopt, std::nullopt},
{"SplitByNIK_SubframeDocument", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kYes, IsMainFrameNavigation::kNo, std::nullopt,
IsSharedResource::kNo,
NetworkIsolationKey(SchemefulSite(GURL("http://b.com")),
SchemefulSite(GURL("http://c.com"))),
0, SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kEnabled,
"1/0/_dk_s_http://b.com http://c.com http://a.com/",
"1/0/_dk_s_http://b.com http://c.com"},
{"SplitByCrossSiteNav_SameSite", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kYes,
url::Origin::Create(GURL("http://b.a.com")), IsSharedResource::kNo,
NetworkIsolationKey(SchemefulSite(GURL("http://c.com")),
SchemefulSite(GURL("http://d.com"))),
0, SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kEnabled,
"1/0/_dk_http://c.com http://d.com http://a.com/",
"1/0/_dk_http://c.com http://d.com"},
{"SplitByCrossSiteNav_CrossSite", "http://a.com/", LOAD_NORMAL,
IsSubframeDocumentResource::kNo, IsMainFrameNavigation::kYes,
url::Origin::Create(GURL("http://b.com")), IsSharedResource::kNo,
NetworkIsolationKey(SchemefulSite(GURL("http://c.com")),
SchemefulSite(GURL("http://d.com"))),
0, SplitCacheByCredentials::kDisabled, SplitCacheByNIK::kEnabled,
"1/0/_dk_cn_http://c.com http://d.com http://a.com/",
"1/0/_dk_cn_http://c.com http://d.com"},
};
INSTANTIATE_TEST_SUITE_P(
All,
HttpCacheGenerateCacheKeyTest,
testing::ValuesIn(kGenerateCacheKeyTestParams),
[](const testing::TestParamInfo<GenerateCacheKeyTestParams>& info) {
return std::string(info.param.name);
});
class HttpCacheNoVarySearchTestBase
: public HttpCacheTest,
public ::testing::WithParamInterface<bool> {
protected:
static constexpr int kMaxAgeOneDay = 24 * 60 * 60;
static constexpr std::string_view kBaseURL = "https://example.com/search?";
HttpCacheNoVarySearchTestBase() {
using base::test::FeatureRef;
std::vector<FeatureRef> enabled_features = {
features::kHttpCacheNoVarySearch};
std::vector<FeatureRef> disabled_features;
FeatureRef split_cache_feature = features::kSplitCacheByNetworkIsolationKey;
if (GetParam()) {
enabled_features.push_back(split_cache_feature);
} else {
disabled_features.push_back(split_cache_feature);
}
scoped_feature_list_.InitWithFeatures(enabled_features, disabled_features);
}
~HttpCacheNoVarySearchTestBase() {
http_cache_.reset();
RunUntilIdle();
}
enum ETagUsage {
kNoEtagHeader,
kIncludeETagHeader,
};
void SetUp() override { ConstructCache(http_cache_); }
virtual void ConstructCache(std::optional<MockHttpCache>& http_cache) {
http_cache.emplace();
}
HttpCache* cache() { return http_cache_->http_cache(); }
MockDiskCache* mock_disk_cache() { return http_cache_->disk_cache(); }
MockTransaction& CreateMockTransaction(
std::string_view query,
std::string_view no_vary_search,
int max_age = kMaxAgeOneDay,
ETagUsage use_etag = kIncludeETagHeader) {
auto iterator = CreateData(query, no_vary_search, max_age, use_etag);
MockTransaction transaction = kTypicalGET_Transaction;
transaction.url = iterator->first.possibly_invalid_spec().c_str();
transaction.response_headers = iterator->second.c_str();
scoped_mock_transactions_.emplace_back(transaction);
return scoped_mock_transactions_.back();
}
void FetchIntoCache(std::string_view query,
std::string_view no_vary_search,
int max_age = kMaxAgeOneDay,
ETagUsage use_etag = kIncludeETagHeader) {
MockTransaction& transaction =
CreateMockTransaction(query, no_vary_search, max_age, use_etag);
MockHttpRequest network_request(transaction);
HttpResponseInfo info;
RunTransactionTestWithRequest(cache(), transaction, network_request, &info);
EXPECT_FALSE(info.was_cached);
EXPECT_TRUE(info.network_accessed);
EXPECT_EQ(info.headers->response_code(), 200);
}
private:
std::map<GURL, std::string>::iterator CreateData(
std::string_view query,
std::string_view no_vary_search,
int max_age,
ETagUsage use_etag) {
GURL url(base::StrCat({kBaseURL, query}));
std::string no_vary_search_string(no_vary_search);
std::string response_headers = base::StringPrintf(
"%s"
"Cache-Control: max-age=%d\n"
"No-Vary-Search: %s\n",
use_etag == kIncludeETagHeader ? "ETag: \"foo\"\n" : "", max_age,
no_vary_search_string.c_str());
auto [data_iterator, data_inserted] =
mock_transaction_data_.emplace(url, response_headers);
CHECK(data_inserted)
<< "Can only create one MockTransaction per distinct query";
return data_iterator;
}
base::test::ScopedFeatureList scoped_feature_list_;
std::map<GURL, std::string> mock_transaction_data_;
std::list<ScopedMockTransaction> scoped_mock_transactions_;
std::optional<MockHttpCache> http_cache_;
};
using HttpCacheNoVarySearchTest = HttpCacheNoVarySearchTestBase;
constexpr auto split_cache_parameter_name = [](const auto& info) {
return info.param ? "NotSplitCache" : "SplitCache";
};
INSTANTIATE_TEST_SUITE_P(All,
HttpCacheNoVarySearchTest,
::testing::Bool(),
split_cache_parameter_name);
TEST_P(HttpCacheNoVarySearchTest, SimpleSuccess) {
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
MockTransaction& from_cache =
CreateMockTransaction("q=fred&a=2", "params=(\"a\")");
MockHttpRequest cache_request(from_cache);
HttpResponseInfo info;
RunTransactionTestWithRequest(cache(), from_cache, cache_request, &info);
EXPECT_TRUE(info.was_cached);
EXPECT_FALSE(info.network_accessed);
EXPECT_EQ(info.cache_entry_status, HttpResponseInfo::ENTRY_USED);
EXPECT_EQ(info.headers->response_code(), 200);
}
TEST_P(HttpCacheNoVarySearchTest, HeadMethodSupported) {
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
MockTransaction& from_cache =
CreateMockTransaction("q=fred&a=2", "params=(\"a\")");
from_cache.method = "HEAD";
from_cache.data = "";
MockHttpRequest cache_request(from_cache);
HttpResponseInfo info;
RunTransactionTestWithRequest(cache(), from_cache, cache_request, &info);
EXPECT_TRUE(info.was_cached);
EXPECT_FALSE(info.network_accessed);
EXPECT_EQ(info.cache_entry_status, HttpResponseInfo::ENTRY_USED);
EXPECT_EQ(info.headers->response_code(), 200);
}
TEST_P(HttpCacheNoVarySearchTest, ClearNoVarySearchCache) {
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
cache()->ClearNoVarySearchCache(UrlFilterType::kTrueIfMatches, {},
{"example.com"}, base::Time(),
base::Time::Max());
MockTransaction& probe_cache =
CreateMockTransaction("q=fred&a=2", "params=(\"a\")");
MockHttpRequest probe_request(probe_cache);
HttpResponseInfo info;
RunTransactionTestWithRequest(cache(), probe_cache, probe_request, &info);
EXPECT_FALSE(info.was_cached);
EXPECT_TRUE(info.network_accessed);
}
TEST_P(HttpCacheNoVarySearchTest, ModeIsReadButRequiresValidation) {
{
MockTransaction plain = kSimpleGET_Transaction;
const std::string url = base::StrCat({kBaseURL, "q=fred"});
plain.url = url.c_str();
ScopedMockTransaction scoped(plain);
RunTransactionTest(cache(), scoped);
}
FetchIntoCache("q=fred&a=1", "params=(\"a\")", 0);
MockTransaction& from_cache = CreateMockTransaction("q=fred", "");
from_cache.load_flags = LOAD_ONLY_FROM_CACHE;
auto create_and_start_transaction = [&](MockHttpRequest& request,
TestCompletionCallback& callback) {
auto transaction = cache()->CreateTransaction(DEFAULT_PRIORITY);
EXPECT_TRUE(transaction);
if (transaction) {
EXPECT_EQ(
transaction->Start(&request, callback.callback(), NetLogWithSource()),
ERR_IO_PENDING);
}
return transaction;
};
MockHttpRequest cache_request1(from_cache);
TestCompletionCallback callback1;
auto transaction1 = create_and_start_transaction(cache_request1, callback1);
ASSERT_TRUE(transaction1);
MockHttpRequest cache_request2(from_cache);
TestCompletionCallback callback2;
auto transaction2 = create_and_start_transaction(cache_request2, callback2);
EXPECT_TRUE(transaction2);
EXPECT_THAT(callback1.WaitForResult(), IsOk());
static constexpr auto expect_fresh_response =
[](const HttpTransaction& transaction) {
const HttpResponseInfo* info = transaction.GetResponseInfo();
EXPECT_TRUE(info->was_cached);
EXPECT_FALSE(info->network_accessed);
EXPECT_EQ(info->cache_entry_status, HttpResponseInfo::ENTRY_USED);
EXPECT_EQ(info->headers->response_code(), 200);
EXPECT_EQ(info->headers->GetNormalizedHeader("No-Vary-Search"),
std::nullopt);
};
expect_fresh_response(*transaction1);
transaction1.reset();
EXPECT_THAT(callback2.WaitForResult(), IsOk());
expect_fresh_response(*transaction2);
}
TEST_P(HttpCacheNoVarySearchTest, ExternalHit) {
static constexpr std::string_view kNvsQuery = "q=john&a=10";
FetchIntoCache(kNvsQuery, "params=(\"a\")");
MockTransaction& transaction =
CreateMockTransaction("q=john", "params=(\"a\")");
MockHttpRequest request(transaction);
cache()->OnExternalCacheHit(request.url, request.method,
request.network_isolation_key,
(request.load_flags & LOAD_DO_NOT_SAVE_COOKIES));
ASSERT_OK_AND_ASSIGN(const std::string new_url_cache_key,
HttpCache::GenerateCacheKeyForRequest(&request));
GURL::Replacements replacements;
replacements.SetQueryStr(kNvsQuery);
request.url = request.url.ReplaceComponents(replacements);
ASSERT_OK_AND_ASSIGN(const std::string nvs_url_cache_key,
HttpCache::GenerateCacheKeyForRequest(&request));
EXPECT_THAT(mock_disk_cache()->GetExternalCacheHits(),
ElementsAre(new_url_cache_key, nvs_url_cache_key));
}
class HttpCacheNoVarySearchKeepNotSuitableTest
: public HttpCacheNoVarySearchTestBase {
public:
static constexpr int kMaxAgeZero = 0;
void SetKeepNotSuitable(bool keep) {
keep_not_suitable_feature_list_.InitAndEnableFeatureWithParameters(
features::kHttpCacheNoVarySearch,
{{features::kHttpCacheNoVarySearchKeepNotSuitable.name,
base::ToString(keep)}});
}
void InsertStaleNonRevalidatableEntry(std::string_view params) {
FetchIntoCache(params, "params=(\"a\")", kMaxAgeZero, kNoEtagHeader);
}
HttpResponseInfo RunTransactionTestWithMaxAgeZeroNoEtag(
std::string_view params,
int load_flags) {
MockTransaction& transaction =
CreateMockTransaction(params, "", kMaxAgeZero, kNoEtagHeader);
transaction.load_flags = load_flags;
HttpResponseInfo info;
RunTransactionTestWithResponseInfo(cache(), transaction, &info);
return info;
}
private:
base::test::ScopedFeatureList keep_not_suitable_feature_list_;
};
INSTANTIATE_TEST_SUITE_P(All,
HttpCacheNoVarySearchKeepNotSuitableTest,
::testing::Bool(),
split_cache_parameter_name);
TEST_P(HttpCacheNoVarySearchKeepNotSuitableTest, InMemoryHintTriggersErase) {
SetKeepNotSuitable(false);
InsertStaleNonRevalidatableEntry("q=fred&a=1");
const HttpResponseInfo info1 =
RunTransactionTestWithMaxAgeZeroNoEtag("q=fred", LOAD_NORMAL);
EXPECT_FALSE(info1.was_cached);
EXPECT_TRUE(info1.network_accessed);
HttpResponseInfo info2 = RunTransactionTestWithMaxAgeZeroNoEtag(
"q=fred&a=77", LOAD_SKIP_CACHE_VALIDATION);
EXPECT_FALSE(info2.was_cached);
EXPECT_TRUE(info2.network_accessed);
}
TEST_P(HttpCacheNoVarySearchKeepNotSuitableTest,
InMemoryHintDoesNotTriggerErase) {
SetKeepNotSuitable(true);
InsertStaleNonRevalidatableEntry("q=fred&a=1");
const HttpResponseInfo info1 =
RunTransactionTestWithMaxAgeZeroNoEtag("q=fred", LOAD_NORMAL);
EXPECT_FALSE(info1.was_cached);
EXPECT_TRUE(info1.network_accessed);
HttpResponseInfo info2 = RunTransactionTestWithMaxAgeZeroNoEtag(
"q=fred&a=77", LOAD_SKIP_CACHE_VALIDATION);
EXPECT_TRUE(info2.was_cached);
EXPECT_FALSE(info2.network_accessed);
}
auto QuitRunLoop(base::RunLoop& run_loop) {
return RunClosure(run_loop.QuitClosure());
}
class HttpCacheNoVarySearchMockFileOperationsTest
: public HttpCacheNoVarySearchTestBase {
public:
using StrictMockFileOperations = StrictMock<MockFileOperations>;
using StrictMockWriter = StrictMock<MockWriter>;
using Checkpoint = StrictMock<MockFunction<void()>>;
void ConstructCache(std::optional<MockHttpCache>& http_cache) override {
auto file_operations = std::make_unique<StrictMockFileOperations>();
file_operations_ = file_operations.get();
auto writer = std::make_unique<StrictMockWriter>();
writer_ = writer.get();
auto maybe_block = [&] {
if (delay_load_.load()) {
load_can_proceed_.Wait();
}
};
{
InSequence s;
load_expectations_ +=
EXPECT_CALL(*file_operations, Init).WillOnce(Return(true));
load_expectations_ +=
EXPECT_CALL(*file_operations, Load)
.WillOnce(DoAll(
maybe_block,
Return(base::unexpected(base::File::FILE_ERROR_NOT_FOUND))));
load_expectations_ += EXPECT_CALL(*file_operations, AtomicSave)
.WillOnce(Return(base::ok()));
load_expectations_ += EXPECT_CALL(*file_operations, CreateWriter)
.WillOnce(Return(std::move(writer)));
load_expectations_ +=
EXPECT_CALL(*writer_, Write)
.WillOnce(DoAll(QuitRunLoop(load_run_loop_), Return(true)));
}
http_cache.emplace(std::make_unique<MockBackendFactory>(),
std::move(file_operations));
}
void InitializeBackend() {
initialized_backend_ = true;
file_operations_ = nullptr;
writer_ = nullptr;
TestGetBackendCompletionCallback cb;
HttpCache::GetBackendResult result = cache()->GetBackend(cb.callback());
EXPECT_THAT(cb.GetResult(result).first, IsOk());
}
void WaitForLoad() { load_run_loop_.Run(); }
static auto SpanHasSubstring(const std::string& substring) {
return Truly([substring](base::span<const uint8_t> span) {
return !std::ranges::search(span, substring).empty();
});
}
void ResumeLoad() {
CHECK(delay_load_.load());
load_can_proceed_.Signal();
}
void set_delay_load(bool delay_load) { delay_load_.store(delay_load); }
StrictMockFileOperations& operations() {
CHECK(!initialized_backend_)
<< "Set expectations before initializing backend";
return *file_operations_;
}
StrictMockWriter& writer() {
CHECK(!initialized_backend_)
<< "Set expectations before initializing backend";
return *writer_;
}
const testing::ExpectationSet& load_expectations() const {
CHECK(!initialized_backend_)
<< "Set expectations before initializing backend";
return load_expectations_;
}
private:
base::RunLoop load_run_loop_;
raw_ptr<StrictMockFileOperations> file_operations_ = nullptr;
raw_ptr<StrictMockWriter> writer_ = nullptr;
testing::ExpectationSet load_expectations_;
base::TestWaitableEvent load_can_proceed_;
bool initialized_backend_ = false;
std::atomic<bool> delay_load_ = false;
};
INSTANTIATE_TEST_SUITE_P(All,
HttpCacheNoVarySearchMockFileOperationsTest,
::testing::Bool(),
split_cache_parameter_name);
TEST_P(HttpCacheNoVarySearchMockFileOperationsTest, CacheStorageIsCreated) {
InitializeBackend();
WaitForLoad();
}
TEST_P(HttpCacheNoVarySearchMockFileOperationsTest, InsertsAreJournalled) {
base::RunLoop run_loop;
EXPECT_CALL(writer(), Write(SpanHasSubstring("q=fred&a=1")))
.After(load_expectations())
.WillOnce(DoAll(QuitRunLoop(run_loop), Return(true)));
InitializeBackend();
WaitForLoad();
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
run_loop.Run();
}
TEST_P(HttpCacheNoVarySearchMockFileOperationsTest, EraseIsJournalled) {
base::RunLoop insert_run_loop;
base::RunLoop erase_run_loop;
EXPECT_CALL(writer(), Write(SpanHasSubstring("q=fred&a=1")))
.After(load_expectations())
.WillOnce(DoAll(QuitRunLoop(insert_run_loop), Return(true)))
.WillOnce(DoAll(QuitRunLoop(erase_run_loop), Return(true)));
InitializeBackend();
WaitForLoad();
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
insert_run_loop.Run();
mock_disk_cache()->set_fail_requests(true);
MockTransaction& from_cache =
CreateMockTransaction("q=fred&a=2", "params=(\"a\")");
RunTransactionTest(cache(), from_cache);
erase_run_loop.Run();
}
TEST_P(HttpCacheNoVarySearchMockFileOperationsTest,
ClearNoVarySearchCacheRewritesSnapshot) {
base::RunLoop journal_run_loop;
base::RunLoop snapshot_run_loop;
{
InSequence s;
EXPECT_CALL(writer(), Write(SpanHasSubstring("q=fred&a=1")))
.After(load_expectations())
.WillOnce(DoAll(QuitRunLoop(journal_run_loop), Return(true)));
EXPECT_CALL(operations(),
AtomicSave(_, Not(Contains(SpanHasSubstring("q=fred&a=1")))))
.WillOnce(Return(base::ok()));
auto writer = std::make_unique<StrictMockWriter>();
auto& writer_ref = *writer;
EXPECT_CALL(operations(), CreateWriter).WillOnce(Return(std::move(writer)));
EXPECT_CALL(writer_ref, Write)
.WillOnce(DoAll(QuitRunLoop(snapshot_run_loop), Return(true)));
}
InitializeBackend();
WaitForLoad();
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
journal_run_loop.Run();
cache()->ClearNoVarySearchCache(UrlFilterType::kFalseIfMatches, {}, {},
base::Time(), base::Time::Max());
snapshot_run_loop.Run();
}
TEST_P(HttpCacheNoVarySearchMockFileOperationsTest,
InsertDuringLoadIsJournalled) {
set_delay_load(true);
base::RunLoop run_loop;
Checkpoint checkpoint;
{
InSequence s;
EXPECT_CALL(checkpoint, Call());
EXPECT_CALL(writer(), Write(SpanHasSubstring("q=fred&a=1")))
.After(load_expectations())
.WillOnce(DoAll(QuitRunLoop(run_loop), Return(true)));
}
InitializeBackend();
FetchIntoCache("q=fred&a=1", "params=(\"a\")");
checkpoint.Call();
ResumeLoad();
run_loop.Run();
MockTransaction& from_cache =
CreateMockTransaction("q=fred&a=2", "params=(\"a\")");
MockHttpRequest cache_request(from_cache);
HttpResponseInfo info;
RunTransactionTestWithRequest(cache(), from_cache, cache_request, &info);
EXPECT_TRUE(info.was_cached);
EXPECT_FALSE(info.network_accessed);
EXPECT_EQ(info.cache_entry_status, HttpResponseInfo::ENTRY_USED);
EXPECT_EQ(info.headers->response_code(), 200);
}
}