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

Side by Side Diff: third_party/WebKit/Source/web/tests/VirtualTimeTest.cpp

Issue 2109843003: Adds enableVirtualTime and setVirtualTimePolicy To Emulation domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test crash Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "platform/testing/UnitTestHelpers.h" 5 #include "platform/testing/UnitTestHelpers.h"
6 #include "public/platform/Platform.h" 6 #include "public/platform/Platform.h"
7 #include "public/platform/WebViewScheduler.h" 7 #include "public/platform/WebViewScheduler.h"
8 #include "public/web/WebLocalFrame.h" 8 #include "public/web/WebLocalFrame.h"
9 #include "public/web/WebScriptExecutionCallback.h" 9 #include "public/web/WebScriptExecutionCallback.h"
10 #include "public/web/WebScriptSource.h" 10 #include "public/web/WebScriptSource.h"
11 #include "public/web/WebView.h" 11 #include "public/web/WebView.h"
12 #include "web/tests/sim/SimRequest.h"
12 #include "web/tests/sim/SimTest.h" 13 #include "web/tests/sim/SimTest.h"
13 14
14 namespace blink { 15 namespace blink {
15 16
16 namespace { 17 namespace {
17 class ScriptExecutionCallbackHelper : public WebScriptExecutionCallback { 18 class ScriptExecutionCallbackHelper : public WebScriptExecutionCallback {
18 public: 19 public:
19 const String result() const { return m_result; } 20 const String result() const { return m_result; }
20 21
21 private: 22 private:
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 "timerFn(1, 'c');"); 99 "timerFn(1, 'c');");
99 100
100 EXPECT_EQ("", ExecuteJavaScript("run_order.join(', ')")); 101 EXPECT_EQ("", ExecuteJavaScript("run_order.join(', ')"));
101 102
102 webView().scheduler()->setAllowVirtualTimeToAdvance(true); 103 webView().scheduler()->setAllowVirtualTimeToAdvance(true);
103 testing::runPendingTasks(); 104 testing::runPendingTasks();
104 105
105 EXPECT_EQ("c, b, a", ExecuteJavaScript("run_order.join(', ')")); 106 EXPECT_EQ("c, b, a", ExecuteJavaScript("run_order.join(', ')"));
106 } 107 }
107 108
109 TEST_F(VirtualTimeTest, VirtualTimeNotAllowedToAdvanceWhileResourcesLoading)
110 {
111 webView().scheduler()->enableVirtualTime();
112 webView().scheduler()->setVirtualTimePolicy(WebViewScheduler::VirtualTimePol icy::PAUSE_IF_NETWORK_FETCHES_PENDING);
113
114 EXPECT_TRUE(webView().scheduler()->virtualTimeAllowedToAdvance());
115
116 SimRequest mainResource("https://example.com/test.html", "text/html");
117 SimRequest cssResource("https://example.com/test.css", "text/css");
118
119 // Not loading, virtual time should be able to advance.
120 EXPECT_TRUE(webView().scheduler()->virtualTimeAllowedToAdvance());
121
122 // Loading, virtual time should not advance.
123 loadURL("https://example.com/test.html");
124 EXPECT_FALSE(webView().scheduler()->virtualTimeAllowedToAdvance());
125
126 mainResource.start();
127
128 // Still Loading, virtual time should not advance.
129 mainResource.write("<!DOCTYPE html><link rel=stylesheet href=test.css>");
130 EXPECT_FALSE(webView().scheduler()->virtualTimeAllowedToAdvance());
131
132 // Still Loading, virtual time should not advance.
133 cssResource.start();
134 cssResource.write("a { color: red; }");
135 EXPECT_FALSE(webView().scheduler()->virtualTimeAllowedToAdvance());
136
137 // Still Loading, virtual time should not advance.
138 cssResource.finish();
139 EXPECT_FALSE(webView().scheduler()->virtualTimeAllowedToAdvance());
140
141 // Still Loading, virtual time should not advance.
142 mainResource.write("<body>");
143 EXPECT_FALSE(webView().scheduler()->virtualTimeAllowedToAdvance());
144
145 // Finished loading, virtual time should be able to advance.
146 mainResource.finish();
147 EXPECT_TRUE(webView().scheduler()->virtualTimeAllowedToAdvance());
148 }
149
108 } // namespace blink 150 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698