mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Added checkRequiredInteger() to check integer param is in valid range.
Ensure that fileIndex in aria2.changeUri RPC method is greater than or equal to 1.
This commit is contained in:
parent
ad11d746f0
commit
f4e0eae904
3 changed files with 39 additions and 5 deletions
|
@ -999,6 +999,12 @@ void RpcMethodTest::testChangeUri_fail()
|
|||
RpcResponse res = m.execute(req, e_.get());
|
||||
CPPUNIT_ASSERT_EQUAL(0, res.code);
|
||||
|
||||
req.params->set(1, Integer::g(0));
|
||||
res = m.execute(req, e_.get());
|
||||
// RPC request fails because 2nd argument is less than 1.
|
||||
CPPUNIT_ASSERT_EQUAL(1, res.code);
|
||||
|
||||
req.params->set(1, Integer::g(1));
|
||||
req.params->set(0, String::g("2"));
|
||||
res = m.execute(req, e_.get());
|
||||
// RPC request fails because GID#2 does not exist.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue