Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1432)

Unified Diff: third_party/crashpad/crashpad/util/win/initial_client_data_test.cc

Issue 2478633002: Update Crashpad to b47bf6c250c6b825dee1c5fbad9152c2c962e828 (Closed)
Patch Set: mac comment 2 Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/util/win/initial_client_data_test.cc
diff --git a/third_party/crashpad/crashpad/util/win/initial_client_data_test.cc b/third_party/crashpad/crashpad/util/win/initial_client_data_test.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5ac7be916135aedfa890a230082f74d1f7ed2fc1
--- /dev/null
+++ b/third_party/crashpad/crashpad/util/win/initial_client_data_test.cc
@@ -0,0 +1,74 @@
+// 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

Powered by Google App Engine
This is Rietveld 408576698