blob: 91f592acf0ab56a9f6baf2a8112a3d109b238fb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// 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 "base/scoped_comptr.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "chrome/common/win_util.h"
#if defined(OS_WIN)
#include <shlobj.h>
TEST(ScopedComPtrTest, ScopedComPtr) {
EXPECT_TRUE(memcmp(&scoped_comptr<IUnknown>::iid(), &IID_IUnknown,
sizeof(IID)) == 0);
EXPECT_TRUE(SUCCEEDED(::CoInitialize(NULL)));
{
scoped_comptr<IUnknown> unk;
EXPECT_TRUE(SUCCEEDED(unk.CreateInstance(CLSID_ShellLink)));
scoped_comptr<IUnknown> unk2;
unk2.Attach(unk.Detach());
EXPECT_TRUE(unk == NULL);
EXPECT_TRUE(unk2 != NULL);
scoped_comptr<IMalloc> mem_alloc;
EXPECT_TRUE(SUCCEEDED(CoGetMalloc(1, mem_alloc.Receive())));
// test scoped_comptr& constructor
scoped_comptr<IMalloc> copy1(mem_alloc);
EXPECT_TRUE(copy1.IsSameObject(mem_alloc));
EXPECT_FALSE(copy1.IsSameObject(unk2)); // unk2 is valid but different
EXPECT_FALSE(copy1.IsSameObject(unk)); // unk is NULL
copy1.Release();
EXPECT_FALSE(copy1.IsSameObject(unk2)); // unk2 is valid, copy1 is not
// test Interface* constructor
scoped_comptr<IMalloc> copy2(static_cast<IMalloc*>(mem_alloc));
EXPECT_TRUE(copy2.IsSameObject(mem_alloc));
EXPECT_TRUE(SUCCEEDED(unk.QueryFrom(mem_alloc)));
EXPECT_TRUE(unk != NULL);
unk.Release();
EXPECT_TRUE(unk == NULL);
EXPECT_TRUE(unk.IsSameObject(copy1)); // both are NULL
}
::CoUninitialize();
}
#endif // defined(OS_WIN)
|