blob: d94dd220b514a45109c10bc7a63af9a7f9c4d2f7 (
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
|
// Copyright (c) 2011 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 <math.h>
#include <stdlib.h>
#include "testing/gtest/include/gtest/gtest.h"
#include "ppapi/shared_impl/time_conversion.h"
namespace ppapi {
// Slop we'll allow in two Time "internal values" to consider them equal.
// Double conversion can introduce rounding errors. The internal values are in
// microseconds, so an error here is very small.
static const int kTimeInternalValueSlop = 2;
// Same as above in double-precision seconds units.
static const double kTimeSecondsSlop =
static_cast<double>(kTimeInternalValueSlop) /
base::Time::kMicrosecondsPerSecond;
// Fails on linux. http://crbug.com/88971
#if defined(OS_LINUX)
#define MAYBE_Time FAILS_Time
#else
#define MAYBE_Time Time
#endif
TEST(TimeConversion, MAYBE_Time) {
// Should be able to round-trip.
base::Time now = base::Time::Now();
base::Time converted = ppapi::PPTimeToTime(TimeToPPTime(now));
EXPECT_GE(kTimeInternalValueSlop,
abs(static_cast<int>((converted - now).ToInternalValue())));
// Units should be in seconds.
base::Time one_second_from_now = now + base::TimeDelta::FromSeconds(1);
EXPECT_EQ(1.0, ppapi::TimeToPPTime(one_second_from_now) -
ppapi::TimeToPPTime(now));
}
TEST(TimeConversion, EventTime) {
// Should be able to round-trip.
base::Time now = base::Time::Now();
double event_now = now.ToDoubleT();
double converted =
ppapi::EventTimeToPPTimeTicks(ppapi::PPTimeTicksToEventTime(event_now));
EXPECT_GE(kTimeSecondsSlop, fabs(converted - event_now));
// Units should be in seconds.
base::Time one_second_from_now = now + base::TimeDelta::FromSeconds(1);
double event_one_second_from_now = one_second_from_now.ToDoubleT();
EXPECT_GE(kTimeSecondsSlop,
1.0 - ppapi::EventTimeToPPTimeTicks(event_one_second_from_now) -
ppapi::EventTimeToPPTimeTicks(event_now));
}
} // namespace ppapi
|