mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

In order to eliminate the WebRTC Subtree mirror in Chromium, WebRTC is moving the content of the src/webrtc directory up to the src/ directory. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iac59c5b51b950f174119565bac87955a7994bc38 Reviewed-on: https://webrtc-review.googlesource.com/1560 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19845}
73 lines
2.5 KiB
C++
73 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#include "webrtc/modules/rtp_rtcp/source/time_util.h"
|
|
|
|
#include "webrtc/test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
TEST(TimeUtilTest, CompactNtp) {
|
|
const uint32_t kNtpSec = 0x12345678;
|
|
const uint32_t kNtpFrac = 0x23456789;
|
|
const NtpTime kNtp(kNtpSec, kNtpFrac);
|
|
const uint32_t kNtpMid = 0x56782345;
|
|
EXPECT_EQ(kNtpMid, CompactNtp(kNtp));
|
|
}
|
|
|
|
TEST(TimeUtilTest, CompactNtpRttToMs) {
|
|
const NtpTime ntp1(0x12345, 0x23456);
|
|
const NtpTime ntp2(0x12654, 0x64335);
|
|
int64_t ms_diff = ntp2.ToMs() - ntp1.ToMs();
|
|
uint32_t ntp_diff = CompactNtp(ntp2) - CompactNtp(ntp1);
|
|
|
|
int64_t ntp_to_ms_diff = CompactNtpRttToMs(ntp_diff);
|
|
|
|
EXPECT_NEAR(ms_diff, ntp_to_ms_diff, 1);
|
|
}
|
|
|
|
TEST(TimeUtilTest, CompactNtpRttToMsWithWrap) {
|
|
const NtpTime ntp1(0x1ffff, 0x23456);
|
|
const NtpTime ntp2(0x20000, 0x64335);
|
|
int64_t ms_diff = ntp2.ToMs() - ntp1.ToMs();
|
|
|
|
// While ntp2 > ntp1, there compact ntp presentation happen to be opposite.
|
|
// That shouldn't be a problem as long as unsigned arithmetic is used.
|
|
ASSERT_GT(ntp2.ToMs(), ntp1.ToMs());
|
|
ASSERT_LT(CompactNtp(ntp2), CompactNtp(ntp1));
|
|
|
|
uint32_t ntp_diff = CompactNtp(ntp2) - CompactNtp(ntp1);
|
|
int64_t ntp_to_ms_diff = CompactNtpRttToMs(ntp_diff);
|
|
|
|
EXPECT_NEAR(ms_diff, ntp_to_ms_diff, 1);
|
|
}
|
|
|
|
TEST(TimeUtilTest, CompactNtpRttToMsLarge) {
|
|
const NtpTime ntp1(0x10000, 0x00006);
|
|
const NtpTime ntp2(0x17fff, 0xffff5);
|
|
int64_t ms_diff = ntp2.ToMs() - ntp1.ToMs();
|
|
// Ntp difference close to 2^15 seconds should convert correctly too.
|
|
ASSERT_NEAR(ms_diff, ((1 << 15) - 1) * 1000, 1);
|
|
uint32_t ntp_diff = CompactNtp(ntp2) - CompactNtp(ntp1);
|
|
int64_t ntp_to_ms_diff = CompactNtpRttToMs(ntp_diff);
|
|
|
|
EXPECT_NEAR(ms_diff, ntp_to_ms_diff, 1);
|
|
}
|
|
|
|
TEST(TimeUtilTest, CompactNtpRttToMsNegative) {
|
|
const NtpTime ntp1(0x20000, 0x23456);
|
|
const NtpTime ntp2(0x1ffff, 0x64335);
|
|
int64_t ms_diff = ntp2.ToMs() - ntp1.ToMs();
|
|
ASSERT_GT(0, ms_diff);
|
|
// Ntp difference close to 2^16 seconds should be treated as negative.
|
|
uint32_t ntp_diff = CompactNtp(ntp2) - CompactNtp(ntp1);
|
|
int64_t ntp_to_ms_diff = CompactNtpRttToMs(ntp_diff);
|
|
EXPECT_EQ(1, ntp_to_ms_diff);
|
|
}
|
|
} // namespace webrtc
|