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

Side by Side Diff: net/quic/quic_clock_test.cc

Issue 16360017: Fix QuicClock::WallNow to return a correct value. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « net/quic/quic_clock.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "net/quic/quic_clock.h" 5 #include "net/quic/quic_clock.h"
6 6
7 #include "testing/gtest/include/gtest/gtest.h" 7 #include "testing/gtest/include/gtest/gtest.h"
8 8
9 namespace net { 9 namespace net {
10 namespace test { 10 namespace test {
(...skipping 11 matching lines...) Expand all
22 22
23 TEST(QuicClockTest, WallNow) { 23 TEST(QuicClockTest, WallNow) {
24 QuicClock clock; 24 QuicClock clock;
25 25
26 base::Time start = base::Time::Now(); 26 base::Time start = base::Time::Now();
27 QuicWallTime now = clock.WallNow(); 27 QuicWallTime now = clock.WallNow();
28 base::Time end = base::Time::Now(); 28 base::Time end = base::Time::Now();
29 29
30 // If end > start, then we can check now is between start and end. 30 // If end > start, then we can check now is between start and end.
31 if (end > start) { 31 if (end > start) {
32 EXPECT_LE(static_cast<uint64>(start.ToInternalValue() / 1000000), 32 EXPECT_LE(static_cast<uint64>(start.ToTimeT()), now.ToUNIXSeconds());
33 now.ToUNIXSeconds()); 33 EXPECT_LE(now.ToUNIXSeconds(), static_cast<uint64>(end.ToTimeT()));
34 EXPECT_LE(now.ToUNIXSeconds(),
35 static_cast<uint64>(end.ToInternalValue() / 1000000));
36 } 34 }
37 } 35 }
38 36
39 } // namespace test 37 } // namespace test
40 } // namespace net 38 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/quic_clock.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698