| // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <windows.h> |
| |
| #include "testing/gtest/include/gtest/gtest.h" |
| #include "base/wmi_util.h" |
| |
| TEST(WMIUtilTest, TestLocalConnectionSecurityBlanket) { |
| ::CoInitialize(NULL); |
| IWbemServices* services = NULL; |
| EXPECT_TRUE(WMIUtil::CreateLocalConnection(true, &services)); |
| ASSERT_TRUE(NULL != services); |
| ULONG refs = services->Release(); |
| EXPECT_EQ(refs, 0); |
| ::CoUninitialize(); |
| } |
| |
| TEST(WMIUtilTest, TestLocalConnectionNoSecurityBlanket) { |
| ::CoInitialize(NULL); |
| IWbemServices* services = NULL; |
| EXPECT_TRUE(WMIUtil::CreateLocalConnection(false, &services)); |
| ASSERT_TRUE(NULL != services); |
| ULONG refs = services->Release(); |
| EXPECT_EQ(refs, 0); |
| ::CoUninitialize(); |
| } |
| |
| TEST(WMIUtilTest, TestCreateClassMethod) { |
| ::CoInitialize(NULL); |
| IWbemServices* wmi_services = NULL; |
| EXPECT_TRUE(WMIUtil::CreateLocalConnection(true, &wmi_services)); |
| ASSERT_TRUE(NULL != wmi_services); |
| IWbemClassObject* class_method = NULL; |
| EXPECT_TRUE(WMIUtil::CreateClassMethodObject(wmi_services, |
| L"Win32_ShortcutFile", |
| L"Rename", &class_method)); |
| ASSERT_TRUE(NULL != class_method); |
| ULONG refs = class_method->Release(); |
| EXPECT_EQ(refs, 0); |
| refs = wmi_services->Release(); |
| EXPECT_EQ(refs, 0); |
| ::CoUninitialize(); |
| } |
| |
| // Creates an instance of cmd which executes 'echo' and exits immediately. |
| TEST(WMIUtilTest, TestLaunchProcess) { |
| ::CoInitialize(NULL); |
| int pid = 0; |
| bool result = WMIProcessUtil::Launch(L"cmd.exe /c echo excelent!", &pid); |
| EXPECT_TRUE(result); |
| EXPECT_GT(pid, 0); |
| ::CoUninitialize(); |
| } |