mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 09:33:20 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
113
modules/rostests/drivers/tcpip/InterfaceInfo.c
Normal file
113
modules/rostests/drivers/tcpip/InterfaceInfo.c
Normal file
|
@ -0,0 +1,113 @@
|
|||
/*
|
||||
* PROJECT: ReactOS kernel-mode tests
|
||||
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
||||
* PURPOSE: User mode part of the TcpIp.sys test suite
|
||||
* PROGRAMMER: Jérôme Gardou <jerome.gardou@reactos.org>
|
||||
*/
|
||||
|
||||
#include <apitest.h>
|
||||
|
||||
#include <ipexport.h>
|
||||
#include <winioctl.h>
|
||||
#include <tcpioctl.h>
|
||||
#include <tcpip_undoc.h>
|
||||
|
||||
START_TEST(InterfaceInfo)
|
||||
{
|
||||
IP_INTERFACE_INFO* pInterfaceInfo;
|
||||
IP_INTERFACE_INFO InterfaceInfo;
|
||||
HANDLE FileHandle;
|
||||
DWORD BufferSize;
|
||||
BOOL Result;
|
||||
DWORD Error;
|
||||
ULONG i;
|
||||
|
||||
/* Open a control channel file for TCP */
|
||||
FileHandle = CreateFileW(
|
||||
L"\\\\.\\Tcp",
|
||||
FILE_READ_DATA | FILE_WRITE_DATA,
|
||||
FILE_SHARE_READ | FILE_SHARE_WRITE,
|
||||
NULL,
|
||||
OPEN_EXISTING,
|
||||
FILE_FLAG_OVERLAPPED,
|
||||
NULL);
|
||||
ok(FileHandle != INVALID_HANDLE_VALUE, "CreateFile failed, GLE %lu\n", GetLastError());
|
||||
|
||||
/* Try the IOCTL */
|
||||
BufferSize = 0;
|
||||
pInterfaceInfo = &InterfaceInfo;
|
||||
Result = DeviceIoControl(
|
||||
FileHandle,
|
||||
IOCTL_IP_INTERFACE_INFO,
|
||||
NULL,
|
||||
0,
|
||||
pInterfaceInfo,
|
||||
sizeof(InterfaceInfo),
|
||||
&BufferSize,
|
||||
NULL);
|
||||
Error = GetLastError();
|
||||
ok(!Result, "DeviceIoControl succeeded.\n");
|
||||
ok_long(Error, ERROR_INVALID_FUNCTION);
|
||||
ok_long(BufferSize, 0);
|
||||
|
||||
CloseHandle(FileHandle);
|
||||
|
||||
/* This IOCTL only works with \Device\Ip */
|
||||
FileHandle = CreateFileW(
|
||||
L"\\\\.\\Ip",
|
||||
FILE_READ_DATA | FILE_WRITE_DATA,
|
||||
FILE_SHARE_READ | FILE_SHARE_WRITE,
|
||||
NULL,
|
||||
OPEN_EXISTING,
|
||||
FILE_FLAG_OVERLAPPED,
|
||||
NULL);
|
||||
ok(FileHandle != INVALID_HANDLE_VALUE, "CreateFile failed, GLE %lu\n", GetLastError());
|
||||
|
||||
/* Get the buffer size. */
|
||||
BufferSize = 0;
|
||||
pInterfaceInfo = &InterfaceInfo;
|
||||
Result = DeviceIoControl(
|
||||
FileHandle,
|
||||
IOCTL_IP_INTERFACE_INFO,
|
||||
NULL,
|
||||
0,
|
||||
pInterfaceInfo,
|
||||
sizeof(InterfaceInfo),
|
||||
&BufferSize,
|
||||
NULL);
|
||||
ok(Result, "DeviceIoControl failed, GLE %lu.\n", GetLastError());
|
||||
ok(BufferSize != 0, "Buffer size is zero.\n");
|
||||
trace("Buffer size is %lu.\n", BufferSize);
|
||||
|
||||
if (BufferSize > sizeof(InterfaceInfo))
|
||||
{
|
||||
pInterfaceInfo = HeapAlloc(GetProcessHeap(), 0, BufferSize);
|
||||
ok(pInterfaceInfo != NULL, "HeapAlloc failed.\n");
|
||||
|
||||
/* Send IOCTL to fill the buffer in. */
|
||||
Result = DeviceIoControl(
|
||||
FileHandle,
|
||||
IOCTL_IP_INTERFACE_INFO,
|
||||
NULL,
|
||||
0,
|
||||
pInterfaceInfo,
|
||||
BufferSize,
|
||||
&BufferSize,
|
||||
NULL);
|
||||
ok(Result, "DeviceIoControl failed, GLE %lu.\n", GetLastError());
|
||||
}
|
||||
|
||||
if (Result && BufferSize >= RTL_SIZEOF_THROUGH_FIELD(IP_INTERFACE_INFO, NumAdapters))
|
||||
{
|
||||
/* Nothing much to test. Just print out the adapters we got */
|
||||
trace("We got %ld adapters.\n", pInterfaceInfo->NumAdapters);
|
||||
for (i = 0; i < pInterfaceInfo->NumAdapters; i++)
|
||||
{
|
||||
trace("\tIndex %lu, name %S\n", pInterfaceInfo->Adapter[i].Index, pInterfaceInfo->Adapter[i].Name);
|
||||
}
|
||||
}
|
||||
|
||||
if (pInterfaceInfo != &InterfaceInfo)
|
||||
HeapFree(GetProcessHeap(), 0, pInterfaceInfo);
|
||||
CloseHandle(FileHandle);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue