2016-07-02 22:20:12 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2016, 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_types.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "settings.hpp"
|
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
TORRENT_TEST(seed_and_suggest_mode)
|
|
|
|
{
|
2016-09-01 03:42:18 +02:00
|
|
|
std::shared_ptr<entry> resume_data;
|
2016-07-02 22:20:12 +02:00
|
|
|
|
|
|
|
// with seed mode
|
|
|
|
setup_swarm(2, swarm_test::upload
|
|
|
|
// add session
|
|
|
|
, [](lt::settings_pack& pack) {
|
|
|
|
pack.set_int(settings_pack::suggest_mode, settings_pack::suggest_read_cache);
|
|
|
|
}
|
|
|
|
// add torrent
|
|
|
|
, [](lt::add_torrent_params& params) {
|
|
|
|
params.flags |= add_torrent_params::flag_seed_mode;
|
|
|
|
}
|
|
|
|
// on alert
|
|
|
|
, [&](lt::alert const* a, lt::session&)
|
|
|
|
{
|
|
|
|
auto* sr = alert_cast<save_resume_data_alert>(a);
|
|
|
|
if (sr == nullptr) return;
|
|
|
|
|
|
|
|
resume_data = sr->resume_data;
|
|
|
|
}
|
|
|
|
// terminate
|
|
|
|
, [](int ticks, lt::session& ses) -> bool
|
|
|
|
{
|
|
|
|
if (ticks < 5) return false;
|
|
|
|
if (ticks == 5)
|
|
|
|
{
|
|
|
|
ses.get_torrents()[0].save_resume_data();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
printf("save-resume: %s\n", resume_data->to_string().c_str());
|
|
|
|
TEST_CHECK((*resume_data)["seed_mode"] == 1);
|
|
|
|
|
|
|
|
// there should not be any pieces in a seed-mode torrent
|
|
|
|
entry const* pieces = resume_data->find_key("pieces");
|
|
|
|
TEST_CHECK(pieces != nullptr);
|
|
|
|
std::string piece_str = pieces->string();
|
|
|
|
for (char c : piece_str)
|
|
|
|
{
|
|
|
|
TEST_CHECK(c & 0x1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|