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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
Copyright (c) 2013, 2015-2017, 2019, Arvid Norberg
Copyright (c) 2018, Alden Torres
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.hpp"
#include "libtorrent/time.hpp"
#include "libtorrent/aux_/time.hpp"
#include <functional>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <iostream>
using namespace lt;
namespace {
void check_timer_loop(std::mutex& m, time_point& last, std::condition_variable& cv)
{
std::unique_lock<std::mutex> l(m);
cv.wait(l);
l.unlock();
for (int i = 0; i < 10000; ++i)
{
std::lock_guard<std::mutex> ll(m);
time_point now = clock_type::now();
TEST_CHECK(now >= last);
last = now;
}
}
} // anonymous namespace
TORRENT_TEST(time)
{
// make sure the time classes have correct semantics
TEST_EQUAL(total_milliseconds(milliseconds(100)), 100);
TEST_EQUAL(total_milliseconds(milliseconds(1)), 1);
TEST_EQUAL(total_milliseconds(seconds(1)), 1000);
TEST_EQUAL(total_seconds(minutes(1)), 60);
TEST_EQUAL(total_seconds(hours(1)), 3600);
// make sure it doesn't wrap at 32 bit arithmetic
TEST_EQUAL(total_seconds(seconds(281474976)), 281474976);
TEST_EQUAL(total_milliseconds(milliseconds(281474976)), 281474976);
// make sure the timer is monotonic
time_point now = clock_type::now();
time_point last = now;
for (int i = 0; i < 1000; ++i)
{
now = clock_type::now();
TEST_CHECK(now >= last);
last = now;
}
std::mutex m;
std::condition_variable cv;
std::thread t1(&check_timer_loop, std::ref(m), std::ref(last), std::ref(cv));
std::thread t2(&check_timer_loop, std::ref(m), std::ref(last), std::ref(cv));
std::thread t3(&check_timer_loop, std::ref(m), std::ref(last), std::ref(cv));
std::thread t4(&check_timer_loop, std::ref(m), std::ref(last), std::ref(cv));
std::this_thread::sleep_for(lt::milliseconds(100));
cv.notify_all();
t1.join();
t2.join();
t3.join();
t4.join();
}
TORRENT_TEST(test_time_conversion)
{
int success = 0;
const int test_count = 10;
for (int i = 0; i < test_count; ++i)
{
auto now = aux::time_now32() + seconds32(rand() % 1000);
auto ctime = aux::to_time_t(now);
auto converted = aux::from_time_t(ctime);
if (now == converted)
++success;
else
std::cout << "now: " << now.time_since_epoch().count() << " converted: " << converted.time_since_epoch().count() << '\n';
}
// conversion depends on wall clock and may be flaky
TEST_CHECK(success >= test_count - 1);
}
TORRENT_TEST(test_time_conversion_with_offset)
{
int success = 0;
const int test_count = 10;
for (int i = 0; i < test_count; ++i)
{
auto now = aux::time_now32() + seconds32(rand() % 1000);
auto ctime = aux::to_time_t(now);
// offset by 100 seconds
auto converted = aux::from_time_t(ctime + 100);
if (now + seconds32(100) == converted)
++success;
else
std::cout << "now: " << now.time_since_epoch().count() << " converted: " << converted.time_since_epoch().count() << '\n';
}
// conversion depends on wall clock and may be flaky
TEST_CHECK(success >= test_count - 1);
}
|