mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 20:32:32 +00:00
[IPHLPAPI_APITEST]
Rewrite the two existing tests for ICMP and add a third one (for IPv6). Patch by Tim Crawford. ROSTESTS-212 #resolve #comment Commited in r70367. Thanks! svn path=/trunk/; revision=70367
This commit is contained in:
parent
42f54fdc45
commit
df6860337a
1 changed files with 71 additions and 26 deletions
|
@ -1,21 +1,8 @@
|
||||||
/*
|
/*
|
||||||
* Unit test suite for Icmp functions
|
* PROJECT: ReactOS API Tests
|
||||||
*
|
* LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory
|
||||||
* Copyright 2006 Steven Edwards
|
* PURPOSE: Tests for ICMP functions
|
||||||
*
|
* PROGRAMMERS: Tim Crawford
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2.1 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <apitest.h>
|
#include <apitest.h>
|
||||||
|
@ -23,23 +10,81 @@
|
||||||
#include <iphlpapi.h>
|
#include <iphlpapi.h>
|
||||||
#include <icmpapi.h>
|
#include <icmpapi.h>
|
||||||
|
|
||||||
HANDLE handle;
|
static
|
||||||
|
void
|
||||||
static void test_IcmpCreateFile(void)
|
test_IcmpCreateFile(void)
|
||||||
{
|
{
|
||||||
handle=IcmpCreateFile();
|
HANDLE hIcmp;
|
||||||
ok(handle!=INVALID_HANDLE_VALUE,"Failed to create icmp file handle\n");
|
|
||||||
|
SetLastError(0xDEADBEEF);
|
||||||
|
hIcmp = IcmpCreateFile();
|
||||||
|
ok(hIcmp != INVALID_HANDLE_VALUE, "IcmpCreateFile failed unexpectedly: %lu\n", GetLastError());
|
||||||
|
|
||||||
|
if (hIcmp != INVALID_HANDLE_VALUE)
|
||||||
|
IcmpCloseHandle(hIcmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void test_IcmpCloseHandle(void)
|
static
|
||||||
|
void
|
||||||
|
test_Icmp6CreateFile(void)
|
||||||
{
|
{
|
||||||
BOOL result;
|
HANDLE hIcmp;
|
||||||
result=IcmpCloseHandle(handle);
|
|
||||||
ok(result!=FALSE,"Failed to close icmp file handle\n");
|
SetLastError(0xDEADBEEF);
|
||||||
|
hIcmp = Icmp6CreateFile();
|
||||||
|
|
||||||
|
if (GetLastError() == ERROR_FILE_NOT_FOUND)
|
||||||
|
{
|
||||||
|
/* On Windows Server 2003, the IPv6 protocol must be installed. */
|
||||||
|
skip("IPv6 is not available.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ok(hIcmp != INVALID_HANDLE_VALUE, "Icmp6CreateFile failed unexpectedly: %lu\n", GetLastError());
|
||||||
|
|
||||||
|
if (hIcmp != INVALID_HANDLE_VALUE)
|
||||||
|
IcmpCloseHandle(hIcmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
static
|
||||||
|
void
|
||||||
|
test_IcmpCloseHandle(void)
|
||||||
|
{
|
||||||
|
HANDLE hIcmp;
|
||||||
|
BOOL bRet;
|
||||||
|
|
||||||
|
SetLastError(0xDEADBEEF);
|
||||||
|
hIcmp = IcmpCreateFile();
|
||||||
|
if (hIcmp != INVALID_HANDLE_VALUE)
|
||||||
|
{
|
||||||
|
bRet = IcmpCloseHandle(hIcmp);
|
||||||
|
ok(bRet, "IcmpCloseHandle failed unexpectedly: %lu\n", GetLastError());
|
||||||
|
}
|
||||||
|
|
||||||
|
SetLastError(0xDEADBEEF);
|
||||||
|
hIcmp = Icmp6CreateFile();
|
||||||
|
if (hIcmp != INVALID_HANDLE_VALUE)
|
||||||
|
{
|
||||||
|
bRet = IcmpCloseHandle(hIcmp);
|
||||||
|
ok(bRet, "IcmpCloseHandle failed unexpectedly: %lu\n", GetLastError());
|
||||||
|
}
|
||||||
|
|
||||||
|
hIcmp = INVALID_HANDLE_VALUE;
|
||||||
|
SetLastError(0xDEADBEEF);
|
||||||
|
bRet = IcmpCloseHandle(hIcmp);
|
||||||
|
ok(!bRet, "IcmpCloseHandle succeeded unexpectedly\n");
|
||||||
|
ok_err(ERROR_INVALID_HANDLE);
|
||||||
|
|
||||||
|
hIcmp = NULL;
|
||||||
|
SetLastError(0xDEADBEEF);
|
||||||
|
bRet = IcmpCloseHandle(hIcmp);
|
||||||
|
ok(!bRet, "IcmpCloseHandle succeeded unexpectedly\n");
|
||||||
|
ok_err(ERROR_INVALID_HANDLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST(icmp)
|
START_TEST(icmp)
|
||||||
{
|
{
|
||||||
test_IcmpCreateFile();
|
test_IcmpCreateFile();
|
||||||
|
test_Icmp6CreateFile();
|
||||||
test_IcmpCloseHandle();
|
test_IcmpCloseHandle();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue