mirror of
https://github.com/chromium/crashpad.git
synced 2025-01-22 07:29:36 +08:00
75 lines
2.5 KiB
C++
75 lines
2.5 KiB
C++
|
// Copyright 2016 The Crashpad Authors. All rights reserved.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
#include "util/win/initial_client_data.h"
|
||
|
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
namespace crashpad {
|
||
|
namespace test {
|
||
|
namespace {
|
||
|
|
||
|
TEST(InitialClientData, Validity) {
|
||
|
InitialClientData icd1;
|
||
|
EXPECT_FALSE(icd1.IsValid());
|
||
|
|
||
|
InitialClientData icd2(
|
||
|
reinterpret_cast<HANDLE>(0x123),
|
||
|
reinterpret_cast<HANDLE>(0x456),
|
||
|
reinterpret_cast<HANDLE>(0x789),
|
||
|
reinterpret_cast<HANDLE>(0xabc),
|
||
|
reinterpret_cast<HANDLE>(0xdef),
|
||
|
0x7fff000012345678ull,
|
||
|
0x100000ull,
|
||
|
0xccccddddeeeeffffull);
|
||
|
EXPECT_TRUE(icd2.IsValid());
|
||
|
}
|
||
|
|
||
|
TEST(InitialClientData, RoundTrip) {
|
||
|
InitialClientData first(
|
||
|
reinterpret_cast<HANDLE>(0x123),
|
||
|
reinterpret_cast<HANDLE>(0x456),
|
||
|
reinterpret_cast<HANDLE>(0x789),
|
||
|
reinterpret_cast<HANDLE>(0xabc),
|
||
|
reinterpret_cast<HANDLE>(0xdef),
|
||
|
0x7fff000012345678ull,
|
||
|
0x100000ull,
|
||
|
0xccccddddeeeeffffull);
|
||
|
|
||
|
std::string as_string = first.StringRepresentation();
|
||
|
EXPECT_EQ(
|
||
|
"0x123,0x456,0x789,0xabc,0xdef,"
|
||
|
"0x7fff000012345678,0x100000,0xccccddddeeeeffff",
|
||
|
as_string);
|
||
|
|
||
|
InitialClientData second;
|
||
|
ASSERT_TRUE(second.InitializeFromString(as_string));
|
||
|
EXPECT_EQ(first.request_crash_dump(), second.request_crash_dump());
|
||
|
EXPECT_EQ(first.request_non_crash_dump(), second.request_non_crash_dump());
|
||
|
EXPECT_EQ(first.non_crash_dump_completed(),
|
||
|
second.non_crash_dump_completed());
|
||
|
EXPECT_EQ(first.first_pipe_instance(), second.first_pipe_instance());
|
||
|
EXPECT_EQ(first.client_process(), second.client_process());
|
||
|
EXPECT_EQ(first.crash_exception_information(),
|
||
|
second.crash_exception_information());
|
||
|
EXPECT_EQ(first.non_crash_exception_information(),
|
||
|
second.non_crash_exception_information());
|
||
|
EXPECT_EQ(first.debug_critical_section_address(),
|
||
|
second.debug_critical_section_address());
|
||
|
}
|
||
|
|
||
|
} // namespace
|
||
|
} // namespace test
|
||
|
} // namespace crashpad
|