blob: acd049c55d43a3a46f702c98e78a5664ec7b8939 (
plain)
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
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/run_loop.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/child/webkitplatformsupport_impl.h"
namespace content {
// Derives WebKitPlatformSupportImpl for testing shared timers.
class TestBlinkPlatformImpl : public webkit_glue::WebKitPlatformSupportImpl {
public:
TestBlinkPlatformImpl() : mock_monotonically_increasing_time_(0) {}
// webkit_glue::WebKitPlatformSupportImpl:
virtual base::string16 GetLocalizedString(int) OVERRIDE {
return base::string16();
}
virtual base::StringPiece GetDataResource(int, ui::ScaleFactor) OVERRIDE {
return base::StringPiece();
}
virtual webkit_glue::ResourceLoaderBridge* CreateResourceLoader(
const webkit_glue::ResourceLoaderBridge::RequestInfo&) OVERRIDE {
return NULL;
}
virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketStreamBridge(
blink::WebSocketStreamHandle*,
webkit_glue::WebSocketStreamHandleDelegate*) OVERRIDE {
return NULL;
}
// Returns mock time when enabled.
virtual double monotonicallyIncreasingTime() OVERRIDE {
if (mock_monotonically_increasing_time_ > 0.0)
return mock_monotonically_increasing_time_;
return webkit_glue::WebKitPlatformSupportImpl::
monotonicallyIncreasingTime();
}
virtual void OnStartSharedTimer(base::TimeDelta delay) OVERRIDE {
shared_timer_delay_ = delay;
}
base::TimeDelta shared_timer_delay() { return shared_timer_delay_; }
void set_mock_monotonically_increasing_time(double mock_time) {
mock_monotonically_increasing_time_ = mock_time;
}
private:
base::TimeDelta shared_timer_delay_;
double mock_monotonically_increasing_time_;
DISALLOW_COPY_AND_ASSIGN(TestBlinkPlatformImpl);
};
TEST(BlinkPlatformTest, SuspendResumeSharedTimer) {
base::MessageLoop message_loop;
TestBlinkPlatformImpl platform_impl;
// Set a timer to fire as soon as possible.
platform_impl.setSharedTimerFireInterval(0);
// Suspend timers immediately so the above timer wouldn't be fired.
platform_impl.SuspendSharedTimer();
// The above timer would have posted a task which can be processed out of the
// message loop.
base::RunLoop().RunUntilIdle();
// Set a mock time after 1 second to simulate timers suspended for 1 second.
double new_time = base::Time::Now().ToDoubleT() + 1;
platform_impl.set_mock_monotonically_increasing_time(new_time);
// Resume timers so that the timer set above will be set again to fire
// immediately.
platform_impl.ResumeSharedTimer();
EXPECT_TRUE(base::TimeDelta() == platform_impl.shared_timer_delay());
}
} // namespace content
|