forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathalias_unittest.cc
28 lines (23 loc) · 1.01 KB
/
alias_unittest.cc
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
// Copyright 2018 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 <memory>
#include <string>
#include "base/debug/alias.h"
#include "testing/gtest/include/gtest/gtest.h"
TEST(DebugAlias, Test) {
std::unique_ptr<std::string> input =
std::make_unique<std::string>("string contents");
// Verify the contents get copied + the new local variable has the right type.
DEBUG_ALIAS_FOR_CSTR(copy1, input->c_str(), 100 /* > input->size() */);
static_assert(sizeof(copy1) == 100,
"Verification that copy1 has expected size");
EXPECT_STREQ("string contents", copy1);
// Verify that the copy is properly null-terminated even when it is smaller
// than the input string.
DEBUG_ALIAS_FOR_CSTR(copy2, input->c_str(), 3 /* < input->size() */);
static_assert(sizeof(copy2) == 3,
"Verification that copy2 has expected size");
EXPECT_STREQ("st", copy2);
EXPECT_EQ('\0', copy2[2]);
}