2008-08-04 17:06:47 +00:00
|
|
|
#include "InOrderURISelector.h"
|
2009-06-29 08:42:58 +00:00
|
|
|
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
2008-08-04 17:06:47 +00:00
|
|
|
#include "Exception.h"
|
|
|
|
#include "Util.h"
|
|
|
|
#include "array_fun.h"
|
2009-06-29 08:42:58 +00:00
|
|
|
#include "FileEntry.h"
|
2008-08-04 17:06:47 +00:00
|
|
|
|
|
|
|
namespace aria2 {
|
|
|
|
|
|
|
|
class InOrderURISelectorTest:public CppUnit::TestFixture {
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(InOrderURISelectorTest);
|
|
|
|
CPPUNIT_TEST(testSelect);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
private:
|
2009-06-29 08:42:58 +00:00
|
|
|
FileEntry _fileEntry;
|
2008-08-04 17:06:47 +00:00
|
|
|
|
|
|
|
SharedHandle<InOrderURISelector> sel;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void setUp()
|
|
|
|
{
|
|
|
|
static const char* urisSrc[] = {
|
|
|
|
"http://alpha/file",
|
|
|
|
"ftp://alpha/file",
|
|
|
|
"http://bravo/file"
|
|
|
|
};
|
2009-06-29 08:42:58 +00:00
|
|
|
std::deque<std::string> uris;
|
2008-08-04 17:06:47 +00:00
|
|
|
uris.assign(&urisSrc[0], &urisSrc[arrayLength(urisSrc)]);
|
|
|
|
|
2009-06-29 08:42:58 +00:00
|
|
|
_fileEntry.setUris(uris);
|
|
|
|
|
2008-08-04 17:06:47 +00:00
|
|
|
sel.reset(new InOrderURISelector());
|
|
|
|
}
|
|
|
|
|
|
|
|
void tearDown() {}
|
|
|
|
|
|
|
|
void testSelect();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(InOrderURISelectorTest);
|
|
|
|
|
|
|
|
void InOrderURISelectorTest::testSelect()
|
|
|
|
{
|
2009-06-29 08:42:58 +00:00
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://alpha/file"),
|
|
|
|
sel->select(&_fileEntry));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("ftp://alpha/file"),
|
|
|
|
sel->select(&_fileEntry));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string("http://bravo/file"),
|
|
|
|
sel->select(&_fileEntry));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(std::string(""), sel->select(&_fileEntry));
|
2008-08-04 17:06:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace aria2
|