mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
2010-06-18 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Introduced ValueBase class, which is a replacement of BDE. In this change ValueBase is used instead of BDE except DHT messages, UTMetadata messages and XML-RPC. They'll be replaced in the later commits. DownloadContext::_attrs is now ContextAttribute rather than BDE. * src/ActivePeerConnectionCommand.cc * src/AnnounceList.cc * src/AnnounceList.h * src/BtDependency.cc * src/BtRegistry.cc * src/BtSetup.cc * src/ConsoleStatCalc.cc * src/ContextAttribute.h * src/DefaultBtAnnounce.cc * src/DefaultBtInteractive.cc * src/DownloadContext.cc * src/DownloadContext.h * src/HandshakeExtensionMessage.cc * src/InitiateConnectionCommand.cc * src/LpdReceiveMessageCommand.cc * src/MSEHandshake.cc * src/Makefile.am * src/Makefile.in * src/PeerInteractionCommand.cc * src/PeerListProcessor.h * src/ProtocolDetector.cc * src/RequestGroup.cc * src/RequestGroupMan.cc * src/TorrentAttribute.h * src/TrackerWatcherCommand.cc * src/UTMetadataDataExtensionMessage.cc * src/UTMetadataPostDownloadHandler.cc * src/UTMetadataRequestExtensionMessage.cc * src/ValueBase.cc * src/ValueBase.h * src/XmlRpcMethodImpl.cc * src/XmlRpcMethodImpl.h * src/bencode2.cc * src/bencode2.h * src/bittorrent_helper.cc * src/bittorrent_helper.h * src/download_helper.cc * src/magnet.cc * src/magnet.h * test/AnnounceListTest.cc * test/Bencode2Test.cc * test/BencodeTest.cc * test/BittorrentHelperTest.cc * test/BtDependencyTest.cc * test/BtRegistryTest.cc * test/DefaultBtAnnounceTest.cc * test/DefaultBtProgressInfoFileTest.cc * test/HandshakeExtensionMessageTest.cc * test/MSEHandshakeTest.cc * test/MagnetTest.cc * test/Makefile.am * test/Makefile.in * test/RequestGroupManTest.cc * test/UTMetadataDataExtensionMessageTest.cc * test/UTMetadataPostDownloadHandlerTest.cc * test/UTMetadataRequestExtensionMessageTest.cc * test/ValueBaseTest.cc * test/XmlRpcMethodTest.cc
This commit is contained in:
parent
98dc02192d
commit
8ba97188ce
59 changed files with 2303 additions and 641 deletions
|
@ -15,6 +15,7 @@
|
|||
#include "UTMetadataDataExtensionMessage.h"
|
||||
#include "PieceStorage.h"
|
||||
#include "extension_message_test_helper.h"
|
||||
#include "DlAbortEx.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
|
@ -39,7 +40,7 @@ public:
|
|||
_messageFactory.reset(new WrapExtBtMessageFactory());
|
||||
_dispatcher.reset(new MockBtMessageDispatcher());
|
||||
_dctx.reset(new DownloadContext());
|
||||
BDE attrs = BDE::dict();
|
||||
SharedHandle<TorrentAttribute> attrs(new TorrentAttribute());
|
||||
_dctx->setAttribute(bittorrent::BITTORRENT, attrs);
|
||||
_peer.reset(new Peer("host", 6880));
|
||||
_peer->allocateSessionResource(0, 0);
|
||||
|
@ -124,11 +125,11 @@ void UTMetadataRequestExtensionMessageTest::testDoReceivedAction_data()
|
|||
msg.setBtMessageDispatcher(_dispatcher);
|
||||
|
||||
size_t metadataSize = METADATA_PIECE_SIZE*2;
|
||||
BDE& attrs = _dctx->getAttribute(bittorrent::BITTORRENT);
|
||||
SharedHandle<TorrentAttribute> attrs = bittorrent::getTorrentAttrs(_dctx);
|
||||
std::string first(METADATA_PIECE_SIZE, '0');
|
||||
std::string second(METADATA_PIECE_SIZE, '1');
|
||||
attrs[bittorrent::METADATA] = first+second;
|
||||
attrs[bittorrent::METADATA_SIZE] = metadataSize;
|
||||
attrs->metadata = first+second;
|
||||
attrs->metadataSize = metadataSize;
|
||||
|
||||
msg.doReceivedAction();
|
||||
|
||||
|
@ -147,8 +148,8 @@ void UTMetadataRequestExtensionMessageTest::testDoReceivedAction_data()
|
|||
|
||||
metadataSize += 100;
|
||||
std::string third(100, '2');
|
||||
attrs[bittorrent::METADATA] = attrs[bittorrent::METADATA].s()+third;
|
||||
attrs[bittorrent::METADATA_SIZE] = metadataSize;
|
||||
attrs->metadata = first+second+third;
|
||||
attrs->metadataSize = metadataSize;
|
||||
|
||||
msg.doReceivedAction();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue