mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Added vbegin() and vend() for fixed sized array. * src/DownloadHandlerConstants.cc * src/FeatureConfig.cc * src/OptionHandlerFactory.cc * src/ServerStat.cc * src/TimeA2.cc * src/XmlRpcMethod.cc * src/array_fun.h * src/download_helper.cc * src/messageDigest.cc * src/util.cc * test/BittorrentHelperTest.cc * test/DHTRoutingTableDeserializerTest.cc * test/DHTRoutingTableSerializerTest.cc * test/DefaultBtAnnounceTest.cc * test/DefaultBtProgressInfoFileTest.cc * test/DownloadContextTest.cc * test/DownloadHelperTest.cc * test/FeatureConfigTest.cc * test/FeedbackURISelectorTest.cc * test/HttpRequestTest.cc * test/InOrderURISelectorTest.cc * test/MSEHandshakeTest.cc * test/MultiDiskAdaptorTest.cc * test/MultiFileAllocationIteratorTest.cc * test/PriorityPieceSelectorTest.cc * test/RequestGroupManTest.cc * test/UtilTest.cc * test/XmlRpcMethodTest.cc * test/a2algoTest.cc * test/array_funTest.cc
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
#include "PriorityPieceSelector.h"
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "array_fun.h"
|
|
#include "BitfieldMan.h"
|
|
#include "MockPieceSelector.h"
|
|
|
|
namespace aria2 {
|
|
|
|
class PriorityPieceSelectorTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(PriorityPieceSelectorTest);
|
|
CPPUNIT_TEST(testSelect);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void testSelect();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(PriorityPieceSelectorTest);
|
|
|
|
void PriorityPieceSelectorTest::testSelect()
|
|
{
|
|
size_t pieceLength = 1024;
|
|
size_t A[] = { 1,200};
|
|
BitfieldMan bf(pieceLength, pieceLength*256);
|
|
for(size_t i = 0; i < arrayLength(A); ++i) {
|
|
bf.setBit(A[i]);
|
|
}
|
|
PriorityPieceSelector selector
|
|
(SharedHandle<PieceSelector>(new MockPieceSelector()));
|
|
selector.setPriorityPiece(vbegin(A), vend(A));
|
|
|
|
size_t index;
|
|
CPPUNIT_ASSERT(selector.select(index, bf.getBitfield(), bf.countBlock()));
|
|
CPPUNIT_ASSERT_EQUAL((size_t)1, index);
|
|
bf.unsetBit(1);
|
|
CPPUNIT_ASSERT(selector.select(index, bf.getBitfield(), bf.countBlock()));
|
|
CPPUNIT_ASSERT_EQUAL((size_t)200, index);
|
|
bf.unsetBit(200);
|
|
CPPUNIT_ASSERT(!selector.select(index, bf.getBitfield(), bf.countBlock()));
|
|
}
|
|
|
|
} // namespace aria2
|