mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Fixed examples for metalink
This commit is contained in:
parent
77a3820920
commit
6303da136a
5 changed files with 45 additions and 12 deletions
|
@ -1,4 +1,7 @@
|
|||
#include "RequestGroupMan.h"
|
||||
#include "ConsoleDownloadEngine.h"
|
||||
#include "CUIDCounter.h"
|
||||
#include "prefs.h"
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
using namespace std;
|
||||
|
@ -7,13 +10,19 @@ class RequestGroupManTest : public CppUnit::TestFixture {
|
|||
|
||||
CPPUNIT_TEST_SUITE(RequestGroupManTest);
|
||||
CPPUNIT_TEST(testIsSameFileBeingDownloaded);
|
||||
CPPUNIT_TEST(testGetInitialCommands);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
|
||||
public:
|
||||
void setUp() {}
|
||||
void setUp()
|
||||
{
|
||||
CUIDCounterHandle counter = new CUIDCounter();
|
||||
CUIDCounterSingletonHolder::instance(counter);
|
||||
}
|
||||
|
||||
void testIsSameFileBeingDownloaded();
|
||||
void testGetInitialCommands();
|
||||
};
|
||||
|
||||
|
||||
|
@ -45,3 +54,24 @@ void RequestGroupManTest::testIsSameFileBeingDownloaded()
|
|||
CPPUNIT_ASSERT(!gm.isSameFileBeingDownloaded(rg1.get()));
|
||||
|
||||
}
|
||||
|
||||
void RequestGroupManTest::testGetInitialCommands()
|
||||
{
|
||||
Option option;
|
||||
option.put(PREF_SPLIT, "1");
|
||||
option.put(PREF_TIMEOUT, "10");
|
||||
RequestGroupMan gm;
|
||||
|
||||
RequestGroupHandle rg1 = new RequestGroup("aria2.tar.bz2.metalink",
|
||||
&option);
|
||||
RequestGroupHandle rg2 = new RequestGroup("http://localhost/aria2.tar.bz2",
|
||||
&option);
|
||||
|
||||
gm.addRequestGroup(rg1);
|
||||
gm.addRequestGroup(rg2);
|
||||
|
||||
ConsoleDownloadEngine e;
|
||||
e.option = &option;
|
||||
Commands commands = gm.getInitialCommands(&e);
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1, commands.size());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue