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"
|
2017-03-09 00:32:58 +01:00
|
|
|
#include "libtorrent/write_resume_data.hpp"
|
2016-07-02 22:20:12 +02:00
|
|
|
#include "settings.hpp"
|
|
|
|
|
2017-04-12 20:05:53 +02:00
|
|
|
using namespace lt;
|
2016-07-02 22:20:12 +02:00
|
|
|
|
|
|
|
TORRENT_TEST(seed_and_suggest_mode)
|
|
|
|
{
|
2017-03-09 00:32:58 +01:00
|
|
|
add_torrent_params 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) {
|
2017-07-26 23:56:17 +02:00
|
|
|
params.flags |= torrent_flags::seed_mode;
|
2016-07-02 22:20:12 +02:00
|
|
|
}
|
|
|
|
// on alert
|
|
|
|
, [&](lt::alert const* a, lt::session&)
|
|
|
|
{
|
|
|
|
auto* sr = alert_cast<save_resume_data_alert>(a);
|
|
|
|
if (sr == nullptr) return;
|
|
|
|
|
2017-03-09 00:32:58 +01:00
|
|
|
resume_data = sr->params;
|
2016-07-02 22:20:12 +02:00
|
|
|
}
|
|
|
|
// 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;
|
|
|
|
});
|
|
|
|
|
2017-03-09 00:32:58 +01:00
|
|
|
printf("save-resume: %s\n", write_resume_data(resume_data).to_string().c_str());
|
2017-07-26 23:56:17 +02:00
|
|
|
TEST_CHECK(resume_data.flags & torrent_flags::seed_mode);
|
2016-07-02 22:20:12 +02:00
|
|
|
|
|
|
|
// there should not be any pieces in a seed-mode torrent
|
2017-03-09 00:32:58 +01:00
|
|
|
auto const pieces = resume_data.have_pieces;
|
|
|
|
for (bool const c : pieces)
|
2016-07-02 22:20:12 +02:00
|
|
|
{
|
2017-03-09 00:32:58 +01:00
|
|
|
TEST_CHECK(c);
|
2016-07-02 22:20:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|