mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
DownloadContext::attrs_ now holds std::unique_ptr
DownloadContext::getAttribute() returns a raw pointer.
This commit is contained in:
parent
1a299c4d7c
commit
bef6236da8
29 changed files with 146 additions and 157 deletions
|
@ -97,8 +97,7 @@ void HandshakeExtensionMessageTest::testDoReceivedAction()
|
|||
RequestGroup rg(GroupId::create(), op);
|
||||
rg.setDownloadContext(dctx);
|
||||
|
||||
std::shared_ptr<TorrentAttribute> attrs(new TorrentAttribute());
|
||||
dctx->setAttribute(CTX_ATTR_BT, attrs);
|
||||
dctx->setAttribute(CTX_ATTR_BT, make_unique<TorrentAttribute>());
|
||||
dctx->markTotalLengthIsUnknown();
|
||||
|
||||
std::shared_ptr<Peer> peer(new Peer("192.168.0.1", 0));
|
||||
|
@ -122,6 +121,7 @@ void HandshakeExtensionMessageTest::testDoReceivedAction()
|
|||
peer->getExtensionMessageID
|
||||
(ExtensionMessageRegistry::UT_METADATA));
|
||||
CPPUNIT_ASSERT(peer->isSeeder());
|
||||
auto attrs = bittorrent::getTorrentAttrs(dctx);
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1024, attrs->metadataSize);
|
||||
CPPUNIT_ASSERT_EQUAL((int64_t)1024, dctx->getTotalLength());
|
||||
CPPUNIT_ASSERT(dctx->knowsTotalLength());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue