blob: fdcf8ff72feda0c9d3ff709f3edc0f19d2e00d1d (
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
52
53
54
55
|
// Copyright 2017 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/win/scoped_hstring.h"
#include <winstring.h>
#include "base/strings/utf_string_conversions.h"
#include "base/win/core_winrt_util.h"
#include "base/win/windows_version.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
namespace win {
namespace {
constexpr wchar_t kTestString1[] = L"123";
constexpr wchar_t kTestString2[] = L"456789";
} // namespace
TEST(ScopedHStringTest, Init) {
// ScopedHString requires WinRT core functions, which are not available in
// older versions.
if (GetVersion() < VERSION_WIN8) {
EXPECT_FALSE(ScopedHString::ResolveCoreWinRTStringDelayload());
return;
}
EXPECT_TRUE(ScopedHString::ResolveCoreWinRTStringDelayload());
ScopedHString hstring = ScopedHString::Create(kTestString1);
std::string buffer = hstring.GetAsUTF8();
EXPECT_EQ(kTestString1, base::UTF8ToWide(buffer));
base::StringPiece16 contents = hstring.Get();
EXPECT_EQ(kTestString1, contents);
hstring.reset();
EXPECT_TRUE(hstring == NULL);
EXPECT_EQ(NULL, hstring.get());
ScopedHString hstring2 = ScopedHString::Create(kTestString2);
hstring.swap(hstring2);
EXPECT_TRUE(hstring2 == NULL);
buffer = hstring.GetAsUTF8();
EXPECT_EQ(kTestString2, base::UTF8ToWide(buffer));
contents = hstring.Get();
EXPECT_EQ(kTestString2, contents);
}
} // namespace win
} // namespace base
|