1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00
transmission/tests/libtransmission/history-test.cc
2022-08-08 13:05:39 -05:00

24 lines
723 B
C++

// This file Copyright (C) 2013-2022 Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#include "transmission.h"
#include "history.h"
#include "gtest/gtest.h"
TEST(History, recentHistory)
{
auto h = tr_recentHistory<size_t, 60>{};
h.add(10000, 1);
EXPECT_EQ(0U, h.count(12000, 1000));
EXPECT_EQ(1U, h.count(12000, 3000));
EXPECT_EQ(1U, h.count(12000, 5000));
h.add(20000, 1);
EXPECT_EQ(0U, h.count(22000, 1000));
EXPECT_EQ(1U, h.count(22000, 3000));
EXPECT_EQ(2U, h.count(22000, 15000));
EXPECT_EQ(2U, h.count(22000, 20000));
}