| OLD | NEW |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. | 13 // limitations under the License. |
| 14 | 14 |
| 15 #include "minidump/minidump_misc_info_writer.h" | 15 #include "minidump/minidump_misc_info_writer.h" |
| 16 | 16 |
| 17 #include <dbghelp.h> | 17 #include <dbghelp.h> |
| 18 #include <string.h> | 18 #include <string.h> |
| 19 | 19 |
| 20 #include <string> | 20 #include <string> |
| 21 | 21 |
| 22 #include "base/basictypes.h" | 22 #include "base/basictypes.h" |
| 23 #include "base/strings/string16.h" | 23 #include "base/strings/string16.h" |
| 24 #include "base/strings/utf_string_conversions.h" | 24 #include "base/strings/utf_string_conversions.h" |
| 25 #include "gtest/gtest.h" | 25 #include "gtest/gtest.h" |
| 26 #include "minidump/minidump_file_writer.h" | 26 #include "minidump/minidump_file_writer.h" |
| 27 #include "minidump/minidump_test_util.h" |
| 27 #include "util/file/string_file_writer.h" | 28 #include "util/file/string_file_writer.h" |
| 28 #include "util/stdlib/strlcpy.h" | 29 #include "util/stdlib/strlcpy.h" |
| 29 | 30 |
| 30 namespace { | 31 namespace { |
| 31 | 32 |
| 32 using namespace crashpad; | 33 using namespace crashpad; |
| 34 using namespace crashpad::test; |
| 33 | 35 |
| 34 template <typename T> | 36 template <typename T> |
| 35 void GetMiscInfoStream(const std::string& file_contents, const T** misc_info) { | 37 void GetMiscInfoStream(const std::string& file_contents, const T** misc_info) { |
| 36 const size_t kDirectoryOffset = sizeof(MINIDUMP_HEADER); | 38 const size_t kDirectoryOffset = sizeof(MINIDUMP_HEADER); |
| 37 const size_t kMiscInfoStreamOffset = | 39 const size_t kMiscInfoStreamOffset = |
| 38 kDirectoryOffset + sizeof(MINIDUMP_DIRECTORY); | 40 kDirectoryOffset + sizeof(MINIDUMP_DIRECTORY); |
| 39 const size_t kMiscInfoStreamSize = sizeof(T); | 41 const size_t kMiscInfoStreamSize = sizeof(T); |
| 40 const size_t kFileSize = kMiscInfoStreamOffset + kMiscInfoStreamSize; | 42 const size_t kFileSize = kMiscInfoStreamOffset + kMiscInfoStreamSize; |
| 41 | 43 |
| 42 ASSERT_EQ(kFileSize, file_contents.size()); | 44 ASSERT_EQ(kFileSize, file_contents.size()); |
| 43 | 45 |
| 44 const MINIDUMP_HEADER* header = | 46 const MINIDUMP_HEADER* header = |
| 45 reinterpret_cast<const MINIDUMP_HEADER*>(&file_contents[0]); | 47 reinterpret_cast<const MINIDUMP_HEADER*>(&file_contents[0]); |
| 46 | 48 |
| 47 EXPECT_EQ(static_cast<uint32_t>(MINIDUMP_SIGNATURE), header->Signature); | 49 VerifyMinidumpHeader(header, 1, 0); |
| 48 EXPECT_EQ(static_cast<uint32_t>(MINIDUMP_VERSION), header->Version); | 50 if (testing::Test::HasFatalFailure()) { |
| 49 ASSERT_EQ(1u, header->NumberOfStreams); | 51 return; |
| 50 ASSERT_EQ(kDirectoryOffset, header->StreamDirectoryRva); | 52 } |
| 51 EXPECT_EQ(0u, header->CheckSum); | |
| 52 EXPECT_EQ(0u, header->TimeDateStamp); | |
| 53 EXPECT_EQ(MiniDumpNormal, header->Flags); | |
| 54 | 53 |
| 55 const MINIDUMP_DIRECTORY* directory = | 54 const MINIDUMP_DIRECTORY* directory = |
| 56 reinterpret_cast<const MINIDUMP_DIRECTORY*>( | 55 reinterpret_cast<const MINIDUMP_DIRECTORY*>( |
| 57 &file_contents[kDirectoryOffset]); | 56 &file_contents[kDirectoryOffset]); |
| 58 | 57 |
| 59 ASSERT_EQ(kMinidumpStreamTypeMiscInfo, directory->StreamType); | 58 ASSERT_EQ(kMinidumpStreamTypeMiscInfo, directory->StreamType); |
| 60 ASSERT_EQ(kMiscInfoStreamSize, directory->Location.DataSize); | 59 ASSERT_EQ(kMiscInfoStreamSize, directory->Location.DataSize); |
| 61 ASSERT_EQ(kMiscInfoStreamOffset, directory->Location.Rva); | 60 ASSERT_EQ(kMiscInfoStreamOffset, directory->Location.Rva); |
| 62 | 61 |
| 63 *misc_info = | 62 *misc_info = |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 arraysize(expected.BuildString)); | 649 arraysize(expected.BuildString)); |
| 651 string16 debug_build_string_utf16 = base::UTF8ToUTF16(kDebugBuildString); | 650 string16 debug_build_string_utf16 = base::UTF8ToUTF16(kDebugBuildString); |
| 652 c16lcpy(expected.DbgBldStr, | 651 c16lcpy(expected.DbgBldStr, |
| 653 debug_build_string_utf16.c_str(), | 652 debug_build_string_utf16.c_str(), |
| 654 arraysize(expected.DbgBldStr)); | 653 arraysize(expected.DbgBldStr)); |
| 655 | 654 |
| 656 ExpectMiscInfoEqual(&expected, observed); | 655 ExpectMiscInfoEqual(&expected, observed); |
| 657 } | 656 } |
| 658 | 657 |
| 659 } // namespace | 658 } // namespace |
| OLD | NEW |