mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +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
|
@ -66,13 +66,16 @@ void BtRegistryTest::testGetDownloadContext_infoHash()
|
|||
{
|
||||
BtRegistry btRegistry;
|
||||
addTwoDownloadContext(btRegistry);
|
||||
std::shared_ptr<TorrentAttribute> attrs1(new TorrentAttribute());
|
||||
attrs1->infoHash = "hash1";
|
||||
std::shared_ptr<TorrentAttribute> attrs2(new TorrentAttribute());
|
||||
attrs2->infoHash = "hash2";
|
||||
btRegistry.getDownloadContext(1)->setAttribute(CTX_ATTR_BT, attrs1);
|
||||
btRegistry.getDownloadContext(2)->setAttribute(CTX_ATTR_BT, attrs2);
|
||||
|
||||
{
|
||||
auto attrs1 = make_unique<TorrentAttribute>();
|
||||
attrs1->infoHash = "hash1";
|
||||
auto attrs2 = make_unique<TorrentAttribute>();
|
||||
attrs2->infoHash = "hash2";
|
||||
btRegistry.getDownloadContext(1)->setAttribute(CTX_ATTR_BT,
|
||||
std::move(attrs1));
|
||||
btRegistry.getDownloadContext(2)->setAttribute(CTX_ATTR_BT,
|
||||
std::move(attrs2));
|
||||
}
|
||||
CPPUNIT_ASSERT(btRegistry.getDownloadContext("hash1"));
|
||||
CPPUNIT_ASSERT(btRegistry.getDownloadContext("hash1").get() ==
|
||||
btRegistry.getDownloadContext(1).get());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue