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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
/*
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 "libtorrent/session.hpp"
#include "libtorrent/torrent_handle.hpp"
#include "libtorrent/settings_pack.hpp"
#include "libtorrent/alert_types.hpp"
#include "libtorrent/deadline_timer.hpp"
#include "settings.hpp"
#include "fake_peer.hpp"
#include "utils.hpp"
#include "create_torrent.hpp"
#include "simulator/simulator.hpp"
#include "simulator/utils.hpp"
#include <iostream>
using namespace sim;
using namespace lt;
using sim::asio::ip::address_v4;
// this is the general template for these tests. create the session with custom
// settings (Settings), set up the test, by adding torrents with certain
// arguments (Setup), run the test and verify the end state (Test)
template <typename Setup, typename Torrent, typename Test, typename Check>
void run_test(Setup const& setup, Torrent const& torrent
, Test const& test, Check const& check)
{
// setup the simulation
sim::default_config network_cfg;
sim::simulation sim{network_cfg};
std::unique_ptr<sim::asio::io_context> ios = make_io_context(sim, 0);
lt::session_proxy zombie;
// setup settings pack to use for the session (customization point)
lt::settings_pack pack = settings();
// create session
std::shared_ptr<lt::session> ses = std::make_shared<lt::session>(pack, *ios);
setup(*ses);
fake_peer p1(sim, "60.0.0.0");
fake_peer p2(sim, "60.0.0.1");
fake_peer p3(sim, "60.0.0.2");
std::array<fake_peer*, 3> test_peers = {{ &p1, &p2, &p3 }};
// add torrent
lt::add_torrent_params params = ::create_torrent(0, false);
params.flags &= ~lt::torrent_flags::auto_managed;
params.flags &= ~lt::torrent_flags::paused;
ses->async_add_torrent(std::move(params));
lt::torrent_handle h;
print_alerts(*ses, [&](lt::session& ses, lt::alert const* a) {
auto at = lt::alert_cast<add_torrent_alert>(a);
if (at == nullptr) return;
h = at->handle;
// disable the print_alert object from polling any more alerts
ses.set_alert_notify([]{});
torrent(ses, h, test_peers);
});
sim::timer t1(sim, lt::seconds(5)
, [&](boost::system::error_code const&)
{
test(*ses, h, test_peers);
});
// set up a timer to fire later, to verify everything we expected to happen
// happened
sim::timer t2(sim, lt::seconds(10)
, [&](boost::system::error_code const&)
{
check(*ses, h, test_peers);
// shut down
zombie = ses->abort();
ses.reset();
});
sim.run();
}
// make sure the torrent disconnects all its peers when it's paused
TORRENT_TEST(torrent_paused_disconnect)
{
run_test(
[](lt::session&) {},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
add_fake_peers(h, 3);
},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>& test_peers) {
check_accepted(test_peers, {{true, true, true}});
check_connected(test_peers, {{true, true, true}});
check_disconnected(test_peers, {{false, false, false}});
h.pause();
},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>& test_peers) {
check_disconnected(test_peers, {{true, true, true}});
TEST_CHECK(h.status().flags & torrent_flags::paused);
});
}
// make sure the torrent disconnects all its peers when the session is paused
TORRENT_TEST(session_paused_disconnect)
{
run_test(
[](lt::session&) {},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
add_fake_peers(h, 3);
},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>& test_peers) {
check_accepted(test_peers, {{true, true, true}});
check_connected(test_peers, {{true, true, true}});
check_disconnected(test_peers, {{false, false, false}});
ses.pause();
},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>& test_peers) {
check_disconnected(test_peers, {{true, true, true}});
// the torrent isn't paused, the session is
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
});
}
// make sure a torrent is not connecting to any peers when added to a paused
// session
TORRENT_TEST(paused_session_add_torrent)
{
run_test(
[](lt::session& ses) { ses.pause(); },
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
add_fake_peers(h, 3);
},
[](lt::session&, lt::torrent_handle, std::array<fake_peer*, 3>& test_peers) {
check_accepted(test_peers, {{false, false, false}});
},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
// the torrent isn't paused, the session is
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
});
}
// make sure the torrent isn't connecting to peers when it's paused
TORRENT_TEST(paused_torrent_add_peers)
{
run_test(
[](lt::session&) {},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
h.pause();
add_fake_peers(h, 3);
},
[](lt::session&, lt::torrent_handle, std::array<fake_peer*, 3>& test_peers) {
check_accepted(test_peers, {{false, false, false}});
},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(h.status().flags & torrent_flags::paused);
});
}
// make sure we post the torrent_paused alert when pausing a torrent
TORRENT_TEST(torrent_paused_alert)
{
run_test(
[](lt::session&) {},
[](lt::session&, lt::torrent_handle, std::array<fake_peer*, 3>&) {},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
h.pause();
},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(h.status().flags & torrent_flags::paused);
std::vector<lt::alert*> alerts;
ses.pop_alerts(&alerts);
lt::time_point start_time = alerts[0]->timestamp();
int num_resume = 0;
int num_paused = 0;
for (alert* a : alerts)
{
std::printf("%-3d %s\n", int(duration_cast<lt::seconds>(a->timestamp()
- start_time).count()), a->message().c_str());
if (lt::alert_cast<torrent_resumed_alert>(a)) ++num_resume;
if (lt::alert_cast<torrent_paused_alert>(a)) ++num_paused;
}
TEST_EQUAL(num_resume, 0);
TEST_EQUAL(num_paused, 1);
});
}
// make sure we post the torrent_paused alert when pausing the session
TORRENT_TEST(session_paused_alert)
{
run_test(
[](lt::session&) {},
[](lt::session&, lt::torrent_handle, std::array<fake_peer*, 3>&) {},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
ses.pause();
},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
std::vector<lt::alert*> alerts;
ses.pop_alerts(&alerts);
lt::time_point start_time = alerts[0]->timestamp();
int num_resume = 0;
int num_paused = 0;
for (alert* a : alerts)
{
std::printf("%-3d %s\n", int(duration_cast<lt::seconds>(a->timestamp()
- start_time).count()), a->message().c_str());
if (lt::alert_cast<torrent_resumed_alert>(a)) ++num_resume;
if (lt::alert_cast<torrent_paused_alert>(a)) ++num_paused;
}
TEST_EQUAL(num_resume, 0);
TEST_EQUAL(num_paused, 1);
});
}
// make sure we post both the paused and resumed alert when pausing and resuming
// the session.
TORRENT_TEST(session_pause_resume)
{
run_test(
[](lt::session&) {},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
ses.pause();
},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
ses.resume();
},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
std::vector<lt::alert*> alerts;
ses.pop_alerts(&alerts);
lt::time_point start_time = alerts[0]->timestamp();
int num_resume = 0;
int num_paused = 0;
for (alert* a : alerts)
{
std::printf("%-3d %s\n", int(duration_cast<lt::seconds>(a->timestamp()
- start_time).count()), a->message().c_str());
if (lt::alert_cast<torrent_resumed_alert>(a)) ++num_resume;
if (lt::alert_cast<torrent_paused_alert>(a)) ++num_paused;
}
TEST_EQUAL(num_resume, 1);
TEST_EQUAL(num_paused, 1);
});
}
// make sure peers added to a (non-paused) torrent in a paused session are
// connected once the session is resumed
TORRENT_TEST(session_pause_resume_connect)
{
run_test(
[](lt::session&) {},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>&) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
ses.pause();
add_fake_peers(h, 3);
},
[](lt::session& ses, lt::torrent_handle h, std::array<fake_peer*, 3>& test_peers) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
check_accepted(test_peers, {{false, false, false}});
ses.resume();
},
[](lt::session&, lt::torrent_handle h, std::array<fake_peer*, 3>& test_peers) {
TEST_CHECK(!(h.status().flags & torrent_flags::paused));
check_accepted(test_peers, {{true, true, true}});
});
}
|