Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: LayoutTests/http/tests/inspector/cache-storage/cache-data.html

Issue 1044203004: [Storage] Cache storage inspection on all the frames! (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: comments and rebase Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/inspector/cache-storage/cache-data.html
diff --git a/LayoutTests/http/tests/inspector/cache-storage/cache-data.html b/LayoutTests/http/tests/inspector/cache-storage/cache-data.html
new file mode 100644
index 0000000000000000000000000000000000000000..f1566961fc34f72d857d989d6142b905854ea194
--- /dev/null
+++ b/LayoutTests/http/tests/inspector/cache-storage/cache-data.html
@@ -0,0 +1,42 @@
+<html>
+<head>
+<script src="../inspector-test.js"></script>
+<script src="cache-storage-test.js"></script>
+<script>
+function test()
+{
+ var cacheStorageModel = WebInspector.ServiceWorkerCacheModel.fromTarget(WebInspector.targetManager.mainTarget());
+ cacheStorageModel.enable();
+
+ function errorAndExit(error)
+ {
+ if (error)
+ InspectorTest.addResult(error);
+ InspectorTest.completeTest();
+ }
+
+ function main()
+ {
+ InspectorTest.clearAllCaches()
+ .then(InspectorTest.dumpCacheTree)
+ .then(InspectorTest.createCache.bind(this, "testCache1"))
+ .then(InspectorTest.createCache.bind(this, "testCache2"))
+ .then(InspectorTest.dumpCacheTree)
+ .then(InspectorTest.addCacheEntry.bind(this, "testCache1", "http://fake.request.com/1", "OK"))
+ .then(InspectorTest.addCacheEntry.bind(this, "testCache1", "http://fake.request.com/2", "Not Found"))
+ .then(InspectorTest.addCacheEntry.bind(this, "testCache2", "http://fake.request2.com/1", "OK"))
+ .then(InspectorTest.addCacheEntry.bind(this, "testCache2", "http://fake.request2.com/2", "Not Found"))
+ .then(InspectorTest.dumpCacheTree)
+ .then(InspectorTest.clearAllCaches)
+ .then(InspectorTest.completeTest)
+ .catch(errorAndExit);
+ }
+
+ InspectorTest.waitForCacheRefresh(main);
+}
+</script>
+</head>
+<body onload="runTest()">
+<p>Tests that cache data is correctly populated in the Inspector.</p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698