mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Use std::vector instead of std::map for ContextAttribute objects
Now key for ContextAttribute object store is int instead of string.
This commit is contained in:
parent
0030025bb6
commit
e2340efe27
25 changed files with 116 additions and 68 deletions
|
@ -53,7 +53,7 @@ void UTMetadataPostDownloadHandlerTest::testCanHandle()
|
|||
CPPUNIT_ASSERT(!handler.canHandle(requestGroup_.get()));
|
||||
|
||||
SharedHandle<TorrentAttribute> attrs(new TorrentAttribute());
|
||||
dctx_->setAttribute(bittorrent::BITTORRENT, attrs);
|
||||
dctx_->setAttribute(CTX_ATTR_BT, attrs);
|
||||
|
||||
CPPUNIT_ASSERT(handler.canHandle(requestGroup_.get()));
|
||||
|
||||
|
@ -84,7 +84,7 @@ void UTMetadataPostDownloadHandlerTest::testGetNextRequestGroups()
|
|||
announceTier.push_back("http://tracker");
|
||||
announceList.push_back(announceTier);
|
||||
attrs->announceList = announceList;
|
||||
dctx_->setAttribute(bittorrent::BITTORRENT, attrs);
|
||||
dctx_->setAttribute(CTX_ATTR_BT, attrs);
|
||||
requestGroup_->setDiskWriterFactory
|
||||
(SharedHandle<DiskWriterFactory>(new ByteArrayDiskWriterFactory()));
|
||||
requestGroup_->initPieceStorage();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue