[5/5] netprofm: Add a couple of tests for INetworkListManager.

Hans Leidekker hans at codeweavers.com
Mon Apr 7 07:58:48 CDT 2014


---
 configure.ac                    |  1 +
 dlls/netprofm/tests/Makefile.in |  5 ++++
 dlls/netprofm/tests/list.c      | 66 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+)
 create mode 100644 dlls/netprofm/tests/Makefile.in
 create mode 100644 dlls/netprofm/tests/list.c

diff --git a/configure.ac b/configure.ac
index fbdc269..f244c9a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3032,6 +3032,7 @@ WINE_CONFIG_TEST(dlls/netapi32/tests)
 WINE_CONFIG_DLL(netcfgx,,[clean])
 WINE_CONFIG_TEST(dlls/netcfgx/tests)
 WINE_CONFIG_DLL(netprofm)
+WINE_CONFIG_TEST(dlls/netprofm/tests)
 WINE_CONFIG_DLL(newdev,,[implib])
 WINE_CONFIG_DLL(normaliz,,[implib])
 WINE_CONFIG_DLL(npmshtml)
diff --git a/dlls/netprofm/tests/Makefile.in b/dlls/netprofm/tests/Makefile.in
new file mode 100644
index 0000000..45b8809
--- /dev/null
+++ b/dlls/netprofm/tests/Makefile.in
@@ -0,0 +1,5 @@
+TESTDLL   = netprofm.dll
+IMPORTS   = ole32
+
+C_SRCS = \
+	list.c
diff --git a/dlls/netprofm/tests/list.c b/dlls/netprofm/tests/list.c
new file mode 100644
index 0000000..9ac427e
--- /dev/null
+++ b/dlls/netprofm/tests/list.c
@@ -0,0 +1,66 @@
+/*
+ * Copyright 2014 Hans Leidekker for CodeWeavers
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include <stdio.h>
+#include "windows.h"
+#define COBJMACROS
+#include "initguid.h"
+#include "objbase.h"
+#include "netlistmgr.h"
+#include "wine/test.h"
+
+static void test_INetworkListManager( void )
+{
+    INetworkListManager *mgr;
+    NLM_CONNECTIVITY connectivity;
+    VARIANT_BOOL connected;
+    HRESULT hr;
+
+    hr = CoCreateInstance( &CLSID_NetworkListManager, NULL, CLSCTX_INPROC_SERVER,
+                           &IID_INetworkListManager, (void **)&mgr );
+    if (hr != S_OK)
+    {
+        win_skip( "can't create instance of NetworkListManager\n" );
+        return;
+    }
+
+    connectivity = 0xdeadbeef;
+    hr = INetworkListManager_GetConnectivity( mgr, &connectivity );
+    ok( hr == S_OK, "got %08x\n", hr );
+    ok( connectivity != 0xdeadbeef, "unchanged value\n" );
+    trace( "GetConnectivity: %08x\n", connectivity );
+
+    connected = 0xdead;
+    hr = INetworkListManager_IsConnected( mgr, &connected );
+    ok( hr == S_OK, "got %08x\n", hr );
+    ok( connected == VARIANT_TRUE || connected == VARIANT_FALSE, "expected boolean value\n" );
+
+    connected = 0xdead;
+    hr = INetworkListManager_IsConnectedToInternet( mgr, &connected );
+    ok( hr == S_OK, "got %08x\n", hr );
+    ok( connected == VARIANT_TRUE || connected == VARIANT_FALSE, "expected boolean value\n" );
+
+    INetworkListManager_Release( mgr );
+}
+
+START_TEST( list )
+{
+    CoInitialize( NULL );
+    test_INetworkListManager();
+    CoUninitialize();
+}
-- 
1.9.1





More information about the wine-patches mailing list