2017-03-01 00:06:02 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2008, Arvid Norberg
|
|
|
|
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 "setup_swarm.hpp"
|
|
|
|
#include "test.hpp"
|
|
|
|
#include "utils.hpp"
|
|
|
|
#include "libtorrent/alert.hpp"
|
|
|
|
#include "libtorrent/alert_types.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/session_stats.hpp"
|
2017-03-08 02:17:35 +01:00
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2017-03-01 00:06:02 +01:00
|
|
|
|
2017-04-12 20:05:53 +02:00
|
|
|
using namespace lt;
|
2017-03-01 00:06:02 +01:00
|
|
|
|
2017-04-09 00:24:50 +02:00
|
|
|
// the disk I/O thread is not simulated with high enough fidelity for this to
|
|
|
|
// work
|
|
|
|
/*
|
2017-03-01 00:06:02 +01:00
|
|
|
TORRENT_TEST(close_file_interval)
|
|
|
|
{
|
|
|
|
bool ran_to_completion = false;
|
|
|
|
|
|
|
|
// with seed mode
|
|
|
|
setup_swarm(2, swarm_test::download
|
|
|
|
// add session
|
|
|
|
, [](lt::settings_pack& pack) {
|
|
|
|
pack.set_int(settings_pack::close_file_interval, 20);
|
|
|
|
}
|
|
|
|
// add torrent
|
|
|
|
, [](lt::add_torrent_params&) {}
|
|
|
|
// on alert
|
|
|
|
, [](lt::alert const* a, lt::session& ses) {}
|
|
|
|
// terminate
|
|
|
|
, [&](int ticks, lt::session& ses) -> bool
|
|
|
|
{
|
|
|
|
// terminate after 40 seconds
|
2017-03-09 00:01:59 +01:00
|
|
|
if (ticks > 24)
|
2017-03-01 00:06:02 +01:00
|
|
|
{
|
|
|
|
ran_to_completion = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle h = ses.get_torrents().front();
|
2017-04-13 16:42:32 +02:00
|
|
|
std::vector<open_file_state> const file_status = h.file_status();
|
2017-03-01 00:06:02 +01:00
|
|
|
printf("%d: %d files\n", ticks, int(file_status.size()));
|
|
|
|
if (ticks > 0 && ticks < 19)
|
|
|
|
{
|
|
|
|
TEST_EQUAL(file_status.size(), 1);
|
|
|
|
}
|
|
|
|
else if (ticks > 21)
|
|
|
|
{
|
|
|
|
// the close file timer shuold have kicked in at 20 seconds
|
|
|
|
// and closed the file
|
|
|
|
TEST_EQUAL(file_status.size(), 0);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
TEST_CHECK(ran_to_completion);
|
|
|
|
}
|
2017-04-09 00:24:50 +02:00
|
|
|
*/
|
2017-03-01 00:06:02 +01:00
|
|
|
|
2017-03-08 02:17:35 +01:00
|
|
|
TORRENT_TEST(file_pool_size)
|
|
|
|
{
|
|
|
|
bool ran_to_completion = false;
|
|
|
|
int max_files = 0;
|
|
|
|
|
|
|
|
setup_swarm(2, swarm_test::download
|
|
|
|
// add session
|
|
|
|
, [](lt::settings_pack& pack)
|
|
|
|
{
|
|
|
|
pack.set_int(lt::settings_pack::file_pool_size, 5);
|
|
|
|
}
|
|
|
|
// add torrent
|
|
|
|
, [](lt::add_torrent_params& atp) {
|
|
|
|
// we need a torrent with lots of files in it, to hit the
|
|
|
|
// file_size_limit we set.
|
|
|
|
file_storage fs;
|
|
|
|
for (int i = 0; i < 0x10 * 9; ++i)
|
|
|
|
{
|
|
|
|
char filename[50];
|
|
|
|
snprintf(filename, sizeof(filename), "root/file-%d", i);
|
|
|
|
fs.add_file(filename, 0x400);
|
|
|
|
}
|
2017-03-14 17:55:13 +01:00
|
|
|
atp.ti = std::make_shared<torrent_info>(*atp.ti);
|
2017-03-08 02:17:35 +01:00
|
|
|
atp.ti->remap_files(fs);
|
|
|
|
}
|
|
|
|
// on alert
|
2018-11-16 16:19:12 +01:00
|
|
|
, [&](lt::alert const*, lt::session&) {}
|
2017-03-08 02:17:35 +01:00
|
|
|
// terminate
|
|
|
|
, [&](int ticks, lt::session& ses) -> bool
|
|
|
|
{
|
|
|
|
if (ticks > 80)
|
|
|
|
{
|
|
|
|
TEST_ERROR("timeout");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-13 16:42:32 +02:00
|
|
|
std::vector<open_file_state> const status = ses.get_torrents().at(0).file_status();
|
2017-03-08 02:17:35 +01:00
|
|
|
printf("open files: %d\n", int(status.size()));
|
|
|
|
max_files = std::max(max_files, int(status.size()));
|
|
|
|
if (!is_seed(ses)) return false;
|
|
|
|
printf("completed in %d ticks\n", ticks);
|
|
|
|
ran_to_completion = true;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
TEST_CHECK(max_files <= 5);
|
|
|
|
TEST_CHECK(max_files >= 4);
|
|
|
|
TEST_CHECK(ran_to_completion);
|
|
|
|
}
|
|
|
|
|