2014-10-17 18:00:41 -04:00
|
|
|
|
// Copyright 2014 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 "minidump/minidump_crashpad_info_writer.h"
|
|
|
|
|
|
2015-02-04 17:30:03 -08:00
|
|
|
|
#include <windows.h>
|
2014-10-17 18:00:41 -04:00
|
|
|
|
#include <dbghelp.h>
|
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
#include <map>
|
|
|
|
|
#include <string>
|
2015-12-09 17:36:32 -05:00
|
|
|
|
#include <utility>
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
2016-04-25 12:13:07 -07:00
|
|
|
|
#include "base/memory/ptr_util.h"
|
2014-10-17 18:00:41 -04:00
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
#include "minidump/minidump_extensions.h"
|
|
|
|
|
#include "minidump/minidump_file_writer.h"
|
2014-10-24 14:58:53 -04:00
|
|
|
|
#include "minidump/minidump_module_crashpad_info_writer.h"
|
2015-02-17 17:38:02 -05:00
|
|
|
|
#include "minidump/minidump_simple_string_dictionary_writer.h"
|
2014-10-20 12:11:14 -04:00
|
|
|
|
#include "minidump/test/minidump_file_writer_test_util.h"
|
2014-11-07 11:38:13 -05:00
|
|
|
|
#include "minidump/test/minidump_string_writer_test_util.h"
|
2014-10-22 18:35:18 -04:00
|
|
|
|
#include "minidump/test/minidump_writable_test_util.h"
|
2014-11-07 11:38:13 -05:00
|
|
|
|
#include "snapshot/test/test_module_snapshot.h"
|
|
|
|
|
#include "snapshot/test/test_process_snapshot.h"
|
2015-02-18 14:15:38 -05:00
|
|
|
|
#include "util/file/string_file.h"
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
|
|
|
|
namespace crashpad {
|
|
|
|
|
namespace test {
|
|
|
|
|
namespace {
|
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
void GetCrashpadInfoStream(
|
|
|
|
|
const std::string& file_contents,
|
|
|
|
|
const MinidumpCrashpadInfo** crashpad_info,
|
|
|
|
|
const MinidumpSimpleStringDictionary** simple_annotations,
|
|
|
|
|
const MinidumpModuleCrashpadInfoList** module_list) {
|
2014-10-21 14:15:07 -04:00
|
|
|
|
const MINIDUMP_DIRECTORY* directory;
|
2014-10-17 18:00:41 -04:00
|
|
|
|
const MINIDUMP_HEADER* header =
|
2014-10-21 14:15:07 -04:00
|
|
|
|
MinidumpHeaderAtStart(file_contents, &directory);
|
2014-10-17 18:00:41 -04:00
|
|
|
|
ASSERT_NO_FATAL_FAILURE(VerifyMinidumpHeader(header, 1, 0));
|
2014-10-21 14:15:07 -04:00
|
|
|
|
ASSERT_TRUE(directory);
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2014-10-21 14:15:07 -04:00
|
|
|
|
ASSERT_EQ(kMinidumpStreamTypeCrashpadInfo, directory[0].StreamType);
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2014-10-22 18:35:18 -04:00
|
|
|
|
*crashpad_info = MinidumpWritableAtLocationDescriptor<MinidumpCrashpadInfo>(
|
|
|
|
|
file_contents, directory[0].Location);
|
|
|
|
|
ASSERT_TRUE(*crashpad_info);
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
*simple_annotations =
|
|
|
|
|
MinidumpWritableAtLocationDescriptor<MinidumpSimpleStringDictionary>(
|
|
|
|
|
file_contents, (*crashpad_info)->simple_annotations);
|
|
|
|
|
|
2014-10-24 14:44:55 -04:00
|
|
|
|
*module_list =
|
|
|
|
|
MinidumpWritableAtLocationDescriptor<MinidumpModuleCrashpadInfoList>(
|
|
|
|
|
file_contents, (*crashpad_info)->module_list);
|
2014-10-17 18:00:41 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(MinidumpCrashpadInfoWriter, Empty) {
|
|
|
|
|
MinidumpFileWriter minidump_file_writer;
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto crashpad_info_writer =
|
|
|
|
|
base::WrapUnique(new MinidumpCrashpadInfoWriter());
|
2014-11-07 11:38:13 -05:00
|
|
|
|
EXPECT_FALSE(crashpad_info_writer->IsUseful());
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2017-03-15 15:35:36 -04:00
|
|
|
|
ASSERT_TRUE(minidump_file_writer.AddStream(std::move(crashpad_info_writer)));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2015-02-18 14:15:38 -05:00
|
|
|
|
StringFile string_file;
|
|
|
|
|
ASSERT_TRUE(minidump_file_writer.WriteEverything(&string_file));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2015-02-05 08:48:24 -08:00
|
|
|
|
const MinidumpCrashpadInfo* crashpad_info = nullptr;
|
2015-02-17 17:38:02 -05:00
|
|
|
|
const MinidumpSimpleStringDictionary* simple_annotations = nullptr;
|
|
|
|
|
const MinidumpModuleCrashpadInfoList* module_list = nullptr;
|
|
|
|
|
|
|
|
|
|
ASSERT_NO_FATAL_FAILURE(GetCrashpadInfoStream(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), &crashpad_info, &simple_annotations, &module_list));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
|
|
|
|
EXPECT_EQ(MinidumpCrashpadInfo::kVersion, crashpad_info->version);
|
2015-03-13 13:00:56 -04:00
|
|
|
|
EXPECT_EQ(UUID(), crashpad_info->report_id);
|
2015-03-11 17:10:50 -04:00
|
|
|
|
EXPECT_EQ(UUID(), crashpad_info->client_id);
|
|
|
|
|
EXPECT_FALSE(simple_annotations);
|
|
|
|
|
EXPECT_FALSE(module_list);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-13 13:00:56 -04:00
|
|
|
|
TEST(MinidumpCrashpadInfoWriter, ReportAndClientID) {
|
2015-03-11 17:10:50 -04:00
|
|
|
|
MinidumpFileWriter minidump_file_writer;
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto crashpad_info_writer =
|
|
|
|
|
base::WrapUnique(new MinidumpCrashpadInfoWriter());
|
2015-03-11 17:10:50 -04:00
|
|
|
|
|
2015-03-13 13:00:56 -04:00
|
|
|
|
UUID report_id;
|
|
|
|
|
ASSERT_TRUE(
|
|
|
|
|
report_id.InitializeFromString("01234567-89ab-cdef-0123-456789abcdef"));
|
|
|
|
|
crashpad_info_writer->SetReportID(report_id);
|
|
|
|
|
|
2015-03-11 17:10:50 -04:00
|
|
|
|
UUID client_id;
|
|
|
|
|
ASSERT_TRUE(
|
|
|
|
|
client_id.InitializeFromString("00112233-4455-6677-8899-aabbccddeeff"));
|
|
|
|
|
crashpad_info_writer->SetClientID(client_id);
|
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(crashpad_info_writer->IsUseful());
|
|
|
|
|
|
2017-03-15 15:35:36 -04:00
|
|
|
|
ASSERT_TRUE(minidump_file_writer.AddStream(std::move(crashpad_info_writer)));
|
2015-03-11 17:10:50 -04:00
|
|
|
|
|
|
|
|
|
StringFile string_file;
|
|
|
|
|
ASSERT_TRUE(minidump_file_writer.WriteEverything(&string_file));
|
|
|
|
|
|
|
|
|
|
const MinidumpCrashpadInfo* crashpad_info = nullptr;
|
|
|
|
|
const MinidumpSimpleStringDictionary* simple_annotations = nullptr;
|
|
|
|
|
const MinidumpModuleCrashpadInfoList* module_list = nullptr;
|
|
|
|
|
|
|
|
|
|
ASSERT_NO_FATAL_FAILURE(GetCrashpadInfoStream(
|
|
|
|
|
string_file.string(), &crashpad_info, &simple_annotations, &module_list));
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(MinidumpCrashpadInfo::kVersion, crashpad_info->version);
|
2015-03-13 13:00:56 -04:00
|
|
|
|
EXPECT_EQ(report_id, crashpad_info->report_id);
|
2015-03-11 17:10:50 -04:00
|
|
|
|
EXPECT_EQ(client_id, crashpad_info->client_id);
|
2015-02-17 17:38:02 -05:00
|
|
|
|
EXPECT_FALSE(simple_annotations);
|
|
|
|
|
EXPECT_FALSE(module_list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(MinidumpCrashpadInfoWriter, SimpleAnnotations) {
|
|
|
|
|
MinidumpFileWriter minidump_file_writer;
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto crashpad_info_writer =
|
|
|
|
|
base::WrapUnique(new MinidumpCrashpadInfoWriter());
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
|
|
|
|
const char kKey[] =
|
|
|
|
|
"a thing that provides a means of gaining access to or understanding "
|
|
|
|
|
"something";
|
|
|
|
|
const char kValue[] =
|
|
|
|
|
"the numerical amount denoted by an algebraic term; a magnitude, "
|
|
|
|
|
"quantity, or number";
|
|
|
|
|
auto simple_string_dictionary_writer =
|
2016-04-25 12:13:07 -07:00
|
|
|
|
base::WrapUnique(new MinidumpSimpleStringDictionaryWriter());
|
2015-02-17 17:38:02 -05:00
|
|
|
|
auto simple_string_dictionary_entry_writer =
|
2016-04-25 12:13:07 -07:00
|
|
|
|
base::WrapUnique(new MinidumpSimpleStringDictionaryEntryWriter());
|
2015-02-17 17:38:02 -05:00
|
|
|
|
simple_string_dictionary_entry_writer->SetKeyValue(kKey, kValue);
|
|
|
|
|
simple_string_dictionary_writer->AddEntry(
|
2015-12-09 17:36:32 -05:00
|
|
|
|
std::move(simple_string_dictionary_entry_writer));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
crashpad_info_writer->SetSimpleAnnotations(
|
2015-12-09 17:36:32 -05:00
|
|
|
|
std::move(simple_string_dictionary_writer));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
|
|
|
|
EXPECT_TRUE(crashpad_info_writer->IsUseful());
|
|
|
|
|
|
2017-03-15 15:35:36 -04:00
|
|
|
|
ASSERT_TRUE(minidump_file_writer.AddStream(std::move(crashpad_info_writer)));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
2015-02-18 14:15:38 -05:00
|
|
|
|
StringFile string_file;
|
|
|
|
|
ASSERT_TRUE(minidump_file_writer.WriteEverything(&string_file));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
|
|
|
|
const MinidumpCrashpadInfo* crashpad_info = nullptr;
|
|
|
|
|
const MinidumpSimpleStringDictionary* simple_annotations = nullptr;
|
2015-02-05 08:48:24 -08:00
|
|
|
|
const MinidumpModuleCrashpadInfoList* module_list = nullptr;
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2014-10-24 14:44:55 -04:00
|
|
|
|
ASSERT_NO_FATAL_FAILURE(GetCrashpadInfoStream(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), &crashpad_info, &simple_annotations, &module_list));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2014-10-24 14:44:55 -04:00
|
|
|
|
EXPECT_EQ(MinidumpCrashpadInfo::kVersion, crashpad_info->version);
|
|
|
|
|
EXPECT_FALSE(module_list);
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
|
|
|
|
ASSERT_TRUE(simple_annotations);
|
|
|
|
|
ASSERT_EQ(1u, simple_annotations->count);
|
|
|
|
|
EXPECT_EQ(kKey,
|
|
|
|
|
MinidumpUTF8StringAtRVAAsString(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), simple_annotations->entries[0].key));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
EXPECT_EQ(kValue,
|
|
|
|
|
MinidumpUTF8StringAtRVAAsString(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), simple_annotations->entries[0].value));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-24 14:44:55 -04:00
|
|
|
|
TEST(MinidumpCrashpadInfoWriter, CrashpadModuleList) {
|
|
|
|
|
const uint32_t kMinidumpModuleListIndex = 3;
|
|
|
|
|
|
2014-10-17 18:00:41 -04:00
|
|
|
|
MinidumpFileWriter minidump_file_writer;
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto crashpad_info_writer =
|
|
|
|
|
base::WrapUnique(new MinidumpCrashpadInfoWriter());
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2014-10-27 15:01:39 -04:00
|
|
|
|
auto module_list_writer =
|
2016-04-25 12:13:07 -07:00
|
|
|
|
base::WrapUnique(new MinidumpModuleCrashpadInfoListWriter());
|
|
|
|
|
auto module_writer = base::WrapUnique(new MinidumpModuleCrashpadInfoWriter());
|
2015-12-09 17:36:32 -05:00
|
|
|
|
module_list_writer->AddModule(std::move(module_writer),
|
|
|
|
|
kMinidumpModuleListIndex);
|
|
|
|
|
crashpad_info_writer->SetModuleList(std::move(module_list_writer));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2014-11-07 11:38:13 -05:00
|
|
|
|
EXPECT_TRUE(crashpad_info_writer->IsUseful());
|
|
|
|
|
|
2017-03-15 15:35:36 -04:00
|
|
|
|
ASSERT_TRUE(minidump_file_writer.AddStream(std::move(crashpad_info_writer)));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2015-02-18 14:15:38 -05:00
|
|
|
|
StringFile string_file;
|
|
|
|
|
ASSERT_TRUE(minidump_file_writer.WriteEverything(&string_file));
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
2015-02-05 08:48:24 -08:00
|
|
|
|
const MinidumpCrashpadInfo* crashpad_info = nullptr;
|
2015-02-17 17:38:02 -05:00
|
|
|
|
const MinidumpSimpleStringDictionary* simple_annotations = nullptr;
|
|
|
|
|
const MinidumpModuleCrashpadInfoList* module_list = nullptr;
|
2014-10-17 18:00:41 -04:00
|
|
|
|
|
|
|
|
|
ASSERT_NO_FATAL_FAILURE(GetCrashpadInfoStream(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), &crashpad_info, &simple_annotations, &module_list));
|
2014-10-24 14:44:55 -04:00
|
|
|
|
|
|
|
|
|
EXPECT_EQ(MinidumpCrashpadInfo::kVersion, crashpad_info->version);
|
2015-02-17 17:38:02 -05:00
|
|
|
|
EXPECT_FALSE(simple_annotations);
|
|
|
|
|
|
2014-10-24 14:44:55 -04:00
|
|
|
|
ASSERT_TRUE(module_list);
|
|
|
|
|
ASSERT_EQ(1u, module_list->count);
|
|
|
|
|
|
2015-03-04 10:53:34 -05:00
|
|
|
|
EXPECT_EQ(kMinidumpModuleListIndex,
|
|
|
|
|
module_list->modules[0].minidump_module_list_index);
|
2014-10-24 14:44:55 -04:00
|
|
|
|
const MinidumpModuleCrashpadInfo* module =
|
|
|
|
|
MinidumpWritableAtLocationDescriptor<MinidumpModuleCrashpadInfo>(
|
2015-03-04 10:53:34 -05:00
|
|
|
|
string_file.string(), module_list->modules[0].location);
|
2014-10-24 14:44:55 -04:00
|
|
|
|
ASSERT_TRUE(module);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(MinidumpModuleCrashpadInfo::kVersion, module->version);
|
2014-11-07 11:38:13 -05:00
|
|
|
|
EXPECT_EQ(0u, module->list_annotations.DataSize);
|
|
|
|
|
EXPECT_EQ(0u, module->list_annotations.Rva);
|
2014-10-24 14:44:55 -04:00
|
|
|
|
EXPECT_EQ(0u, module->simple_annotations.DataSize);
|
|
|
|
|
EXPECT_EQ(0u, module->simple_annotations.Rva);
|
2014-10-17 18:00:41 -04:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-07 11:38:13 -05:00
|
|
|
|
TEST(MinidumpCrashpadInfoWriter, InitializeFromSnapshot) {
|
2015-03-13 13:00:56 -04:00
|
|
|
|
UUID report_id;
|
|
|
|
|
ASSERT_TRUE(
|
|
|
|
|
report_id.InitializeFromString("fedcba98-7654-3210-fedc-ba9876543210"));
|
|
|
|
|
|
2015-03-11 17:10:50 -04:00
|
|
|
|
UUID client_id;
|
|
|
|
|
ASSERT_TRUE(
|
|
|
|
|
client_id.InitializeFromString("fedcba98-7654-3210-0123-456789abcdef"));
|
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
const char kKey[] = "version";
|
|
|
|
|
const char kValue[] = "40.0.2214.111";
|
2014-11-07 11:38:13 -05:00
|
|
|
|
const char kEntry[] = "This is a simple annotation in a list.";
|
|
|
|
|
|
|
|
|
|
// Test with a useless module, one that doesn’t carry anything that would
|
|
|
|
|
// require MinidumpCrashpadInfo or any child object.
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto process_snapshot = base::WrapUnique(new TestProcessSnapshot());
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto module_snapshot = base::WrapUnique(new TestModuleSnapshot());
|
2015-12-09 17:36:32 -05:00
|
|
|
|
process_snapshot->AddModule(std::move(module_snapshot));
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
2016-04-25 12:13:07 -07:00
|
|
|
|
auto info_writer = base::WrapUnique(new MinidumpCrashpadInfoWriter());
|
2014-11-07 11:38:13 -05:00
|
|
|
|
info_writer->InitializeFromSnapshot(process_snapshot.get());
|
|
|
|
|
EXPECT_FALSE(info_writer->IsUseful());
|
|
|
|
|
|
|
|
|
|
// Try again with a useful module.
|
|
|
|
|
process_snapshot.reset(new TestProcessSnapshot());
|
|
|
|
|
|
2015-03-13 13:00:56 -04:00
|
|
|
|
process_snapshot->SetReportID(report_id);
|
2015-03-11 17:10:50 -04:00
|
|
|
|
process_snapshot->SetClientID(client_id);
|
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
std::map<std::string, std::string> annotations_simple_map;
|
|
|
|
|
annotations_simple_map[kKey] = kValue;
|
|
|
|
|
process_snapshot->SetAnnotationsSimpleMap(annotations_simple_map);
|
|
|
|
|
|
2014-11-07 11:38:13 -05:00
|
|
|
|
module_snapshot.reset(new TestModuleSnapshot());
|
|
|
|
|
std::vector<std::string> annotations_list(1, std::string(kEntry));
|
|
|
|
|
module_snapshot->SetAnnotationsVector(annotations_list);
|
2015-12-09 17:36:32 -05:00
|
|
|
|
process_snapshot->AddModule(std::move(module_snapshot));
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
|
|
|
|
info_writer.reset(new MinidumpCrashpadInfoWriter());
|
|
|
|
|
info_writer->InitializeFromSnapshot(process_snapshot.get());
|
|
|
|
|
EXPECT_TRUE(info_writer->IsUseful());
|
|
|
|
|
|
|
|
|
|
MinidumpFileWriter minidump_file_writer;
|
2017-03-15 15:35:36 -04:00
|
|
|
|
ASSERT_TRUE(minidump_file_writer.AddStream(std::move(info_writer)));
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
2015-02-18 14:15:38 -05:00
|
|
|
|
StringFile string_file;
|
|
|
|
|
ASSERT_TRUE(minidump_file_writer.WriteEverything(&string_file));
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
2015-02-05 08:48:24 -08:00
|
|
|
|
const MinidumpCrashpadInfo* info = nullptr;
|
2015-02-17 17:38:02 -05:00
|
|
|
|
const MinidumpSimpleStringDictionary* simple_annotations;
|
2014-11-07 11:38:13 -05:00
|
|
|
|
const MinidumpModuleCrashpadInfoList* module_list;
|
|
|
|
|
ASSERT_NO_FATAL_FAILURE(GetCrashpadInfoStream(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), &info, &simple_annotations, &module_list));
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
|
|
|
|
EXPECT_EQ(MinidumpCrashpadInfo::kVersion, info->version);
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
2015-03-13 13:00:56 -04:00
|
|
|
|
EXPECT_EQ(report_id, info->report_id);
|
2015-03-11 17:10:50 -04:00
|
|
|
|
EXPECT_EQ(client_id, info->client_id);
|
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
ASSERT_TRUE(simple_annotations);
|
|
|
|
|
ASSERT_EQ(1u, simple_annotations->count);
|
|
|
|
|
EXPECT_EQ(kKey,
|
|
|
|
|
MinidumpUTF8StringAtRVAAsString(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), simple_annotations->entries[0].key));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
EXPECT_EQ(kValue,
|
|
|
|
|
MinidumpUTF8StringAtRVAAsString(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), simple_annotations->entries[0].value));
|
2015-02-17 17:38:02 -05:00
|
|
|
|
|
2014-11-07 11:38:13 -05:00
|
|
|
|
ASSERT_TRUE(module_list);
|
|
|
|
|
ASSERT_EQ(1u, module_list->count);
|
|
|
|
|
|
2015-03-04 10:53:34 -05:00
|
|
|
|
EXPECT_EQ(0u, module_list->modules[0].minidump_module_list_index);
|
2014-11-07 11:38:13 -05:00
|
|
|
|
const MinidumpModuleCrashpadInfo* module =
|
|
|
|
|
MinidumpWritableAtLocationDescriptor<MinidumpModuleCrashpadInfo>(
|
2015-03-04 10:53:34 -05:00
|
|
|
|
string_file.string(), module_list->modules[0].location);
|
2014-11-07 11:38:13 -05:00
|
|
|
|
ASSERT_TRUE(module);
|
|
|
|
|
|
|
|
|
|
EXPECT_EQ(MinidumpModuleCrashpadInfo::kVersion, module->version);
|
|
|
|
|
|
|
|
|
|
const MinidumpRVAList* list_annotations =
|
|
|
|
|
MinidumpWritableAtLocationDescriptor<MinidumpRVAList>(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), module->list_annotations);
|
2014-11-07 11:38:13 -05:00
|
|
|
|
ASSERT_TRUE(list_annotations);
|
|
|
|
|
|
|
|
|
|
ASSERT_EQ(1u, list_annotations->count);
|
|
|
|
|
EXPECT_EQ(kEntry,
|
2015-02-18 14:15:38 -05:00
|
|
|
|
MinidumpUTF8StringAtRVAAsString(string_file.string(),
|
2015-02-17 17:38:02 -05:00
|
|
|
|
list_annotations->children[0]));
|
2014-11-07 11:38:13 -05:00
|
|
|
|
|
2015-02-17 17:38:02 -05:00
|
|
|
|
const MinidumpSimpleStringDictionary* module_simple_annotations =
|
2014-11-07 11:38:13 -05:00
|
|
|
|
MinidumpWritableAtLocationDescriptor<MinidumpSimpleStringDictionary>(
|
2015-02-18 14:15:38 -05:00
|
|
|
|
string_file.string(), module->simple_annotations);
|
2015-02-17 17:38:02 -05:00
|
|
|
|
EXPECT_FALSE(module_simple_annotations);
|
2014-11-07 11:38:13 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-17 18:00:41 -04:00
|
|
|
|
} // namespace
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace crashpad
|