1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <tuple>
#include "base/run_loop.h"
#include "base/task/sequenced_task_runner.h"
#include "base/test/bind.h"
#include "build/build_config.h"
#include "components/services/storage/public/mojom/storage_service.mojom.h"
#include "components/services/storage/public/mojom/storage_usage_info.mojom.h"
#include "components/services/storage/public/mojom/test_api.test-mojom.h"
#include "content/browser/dom_storage/dom_storage_context_wrapper.h"
#include "content/browser/storage_partition_impl.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_browser_test_utils.h"
#include "content/shell/browser/shell.h"
namespace content {
namespace {
class StorageServiceRestartBrowserTest : public ContentBrowserTest {
public:
StorageServiceRestartBrowserTest() = default;
DOMStorageContextWrapper* dom_storage() {
auto* partition =
static_cast<StoragePartitionImpl*>(shell()
->web_contents()
->GetBrowserContext()
->GetDefaultStoragePartition());
return partition->GetDOMStorageContext();
}
void WaitForAnyLocalStorageDataAsync(base::OnceClosure callback) {
dom_storage()->GetLocalStorageControl()->GetUsage(base::BindOnce(
[](StorageServiceRestartBrowserTest* test, base::OnceClosure callback,
std::vector<storage::mojom::StorageUsageInfoPtr> usage) {
if (!usage.empty()) {
std::move(callback).Run();
return;
}
base::SequencedTaskRunner::GetCurrentDefault()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&StorageServiceRestartBrowserTest::
WaitForAnyLocalStorageDataAsync,
base::Unretained(test), std::move(callback)),
base::Milliseconds(50));
},
this, std::move(callback)));
}
void WaitForAnyLocalStorageData() {
base::RunLoop loop;
WaitForAnyLocalStorageDataAsync(loop.QuitClosure());
loop.Run();
}
mojo::Remote<storage::mojom::TestApi>& GetTestApi() {
if (!test_api_) {
StoragePartitionImpl::GetStorageServiceForTesting()->BindTestApi(
test_api_.BindNewPipeAndPassReceiver().PassPipe());
}
return test_api_;
}
void CrashStorageServiceAndWaitForRestart() {
mojo::Remote<storage::mojom::StorageService>& service =
StoragePartitionImpl::GetStorageServiceForTesting();
base::RunLoop loop;
service.set_disconnect_handler(base::BindLambdaForTesting([&] {
loop.Quit();
service.reset();
}));
GetTestApi()->CrashNow();
loop.Run();
test_api_.reset();
}
private:
mojo::Remote<storage::mojom::TestApi> test_api_;
};
IN_PROC_BROWSER_TEST_F(StorageServiceRestartBrowserTest, BasicReconnect) {
// Basic smoke test to ensure that we can force-crash the service and
// StoragePartitionImpl will internally re-establish a working connection to
// a new process.
GetTestApi().FlushForTesting();
EXPECT_TRUE(GetTestApi().is_connected());
CrashStorageServiceAndWaitForRestart();
GetTestApi().FlushForTesting();
EXPECT_TRUE(GetTestApi().is_connected());
}
IN_PROC_BROWSER_TEST_F(StorageServiceRestartBrowserTest,
SessionStorageRecovery) {
// Tests that the Session Storage API can recover and continue normal
// operation after a Storage Service crash.
EXPECT_TRUE(
NavigateToURL(shell(), GetTestUrl("dom_storage", "crash_recovery.html")));
std::ignore =
EvalJs(shell()->web_contents(), R"(setSessionStorageValue("foo", 42))");
// Note that for Session Storage we don't need to wait for a commit. This is
// racy, but that's the point: whether or not a commit happens in time, the
// renderer should always retain its local cache of stored values.
CrashStorageServiceAndWaitForRestart();
EXPECT_EQ("42", EvalJs(shell()->web_contents(),
R"(getSessionStorageValue("foo"))"));
}
IN_PROC_BROWSER_TEST_F(StorageServiceRestartBrowserTest, LocalStorageRecovery) {
// Tests that the Local Storage API can recover and continue normal operation
// after a Storage Service crash.
EXPECT_TRUE(
NavigateToURL(shell(), GetTestUrl("dom_storage", "crash_recovery.html")));
std::ignore =
EvalJs(shell()->web_contents(), R"(setLocalStorageValue("foo", 42))");
WaitForAnyLocalStorageData();
CrashStorageServiceAndWaitForRestart();
// Unlike Session Storage, Local Storage clobbers its renderer-side cache when
// the backend connection is lost. Thus, whether the data still exists depends
// on whether it managed to be flushed to disk before crashing, which is
// unpredictable.
EvalJsResult result =
EvalJs(shell()->web_contents(), R"(getLocalStorageValue("foo"))");
ASSERT_THAT(result, content::EvalJsResult::IsOk());
EXPECT_TRUE(result.value.GetString().empty() ||
result.value.GetString() == "42");
// Local Storage should resume working as expected after the service is
// restarted.
std::ignore =
EvalJs(shell()->web_contents(), R"(setLocalStorageValue("foo", 420))");
EXPECT_EQ("420",
EvalJs(shell()->web_contents(), R"(getLocalStorageValue("foo"))"));
}
} // namespace
} // namespace content
|