2022-09-06 19:14:07 -04:00
|
|
|
// Copyright 2014 The Crashpad Authors
|
2014-08-01 12:48:28 -04:00
|
|
|
//
|
|
|
|
// 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_writable.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
2015-02-18 14:15:38 -05:00
|
|
|
#include "util/file/string_file.h"
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2014-10-07 17:28:50 -04:00
|
|
|
namespace crashpad {
|
|
|
|
namespace test {
|
2014-08-01 12:48:28 -04:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class BaseTestMinidumpWritable : public crashpad::internal::MinidumpWritable {
|
|
|
|
public:
|
|
|
|
BaseTestMinidumpWritable()
|
|
|
|
: MinidumpWritable(),
|
|
|
|
children_(),
|
|
|
|
expected_offset_(-1),
|
|
|
|
alignment_(0),
|
|
|
|
phase_(kPhaseEarly),
|
|
|
|
has_alignment_(false),
|
|
|
|
has_phase_(false),
|
|
|
|
verified_(false) {}
|
|
|
|
|
2021-09-20 12:55:12 -07:00
|
|
|
BaseTestMinidumpWritable(const BaseTestMinidumpWritable&) = delete;
|
|
|
|
BaseTestMinidumpWritable& operator=(const BaseTestMinidumpWritable&) = delete;
|
|
|
|
|
2014-08-01 12:48:28 -04:00
|
|
|
~BaseTestMinidumpWritable() { EXPECT_TRUE(verified_); }
|
|
|
|
|
|
|
|
void SetAlignment(size_t alignment) {
|
|
|
|
alignment_ = alignment;
|
|
|
|
has_alignment_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddChild(BaseTestMinidumpWritable* child) { children_.push_back(child); }
|
|
|
|
|
|
|
|
void SetPhaseLate() {
|
|
|
|
phase_ = kPhaseLate;
|
|
|
|
has_phase_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Verify() {
|
|
|
|
verified_ = true;
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(state(), kStateWritten);
|
2014-08-01 12:48:28 -04:00
|
|
|
for (BaseTestMinidumpWritable* child : children_) {
|
|
|
|
child->Verify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-10-14 11:11:57 -04:00
|
|
|
bool Freeze() override {
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(state(), kStateMutable);
|
2014-08-01 12:48:28 -04:00
|
|
|
bool rv = MinidumpWritable::Freeze();
|
|
|
|
EXPECT_TRUE(rv);
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(state(), kStateFrozen);
|
2014-08-01 12:48:28 -04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
size_t Alignment() override {
|
2014-08-01 12:48:28 -04:00
|
|
|
EXPECT_GE(state(), kStateFrozen);
|
|
|
|
return has_alignment_ ? alignment_ : MinidumpWritable::Alignment();
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
std::vector<MinidumpWritable*> Children() override {
|
2014-08-01 12:48:28 -04:00
|
|
|
EXPECT_GE(state(), kStateFrozen);
|
|
|
|
if (!children_.empty()) {
|
|
|
|
std::vector<MinidumpWritable*> children;
|
|
|
|
for (BaseTestMinidumpWritable* child : children_) {
|
|
|
|
children.push_back(child);
|
|
|
|
}
|
|
|
|
return children;
|
|
|
|
}
|
|
|
|
return MinidumpWritable::Children();
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
Phase WritePhase() override {
|
2014-08-01 12:48:28 -04:00
|
|
|
return has_phase_ ? phase_ : MinidumpWritable::Phase();
|
|
|
|
}
|
|
|
|
|
2015-03-06 16:05:34 -08:00
|
|
|
bool WillWriteAtOffsetImpl(FileOffset offset) override {
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(kStateFrozen, state());
|
2014-08-01 12:48:28 -04:00
|
|
|
expected_offset_ = offset;
|
|
|
|
bool rv = MinidumpWritable::WillWriteAtOffsetImpl(offset);
|
|
|
|
EXPECT_TRUE(rv);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
bool WriteObject(FileWriterInterface* file_writer) override {
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(kStateWritable, state());
|
|
|
|
EXPECT_EQ(file_writer->Seek(0, SEEK_CUR), expected_offset_);
|
2014-08-01 12:48:28 -04:00
|
|
|
|
|
|
|
// Subclasses must override this.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<BaseTestMinidumpWritable*> children_;
|
2015-03-06 16:05:34 -08:00
|
|
|
FileOffset expected_offset_;
|
2014-08-01 12:48:28 -04:00
|
|
|
size_t alignment_;
|
|
|
|
Phase phase_;
|
|
|
|
bool has_alignment_;
|
|
|
|
bool has_phase_;
|
|
|
|
bool verified_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class TestStringMinidumpWritable final : public BaseTestMinidumpWritable {
|
|
|
|
public:
|
|
|
|
TestStringMinidumpWritable() : BaseTestMinidumpWritable(), data_() {}
|
|
|
|
|
2021-09-20 12:55:12 -07:00
|
|
|
TestStringMinidumpWritable(const TestStringMinidumpWritable&) = delete;
|
|
|
|
TestStringMinidumpWritable& operator=(const TestStringMinidumpWritable&) =
|
|
|
|
delete;
|
|
|
|
|
2014-08-01 12:48:28 -04:00
|
|
|
~TestStringMinidumpWritable() {}
|
|
|
|
|
|
|
|
void SetData(const std::string& string) { data_ = string; }
|
|
|
|
|
|
|
|
protected:
|
2014-10-14 11:11:57 -04:00
|
|
|
size_t SizeOfObject() override {
|
2014-08-01 12:48:28 -04:00
|
|
|
EXPECT_GE(state(), kStateFrozen);
|
|
|
|
return data_.size();
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
bool WriteObject(FileWriterInterface* file_writer) override {
|
2014-08-01 12:48:28 -04:00
|
|
|
BaseTestMinidumpWritable::WriteObject(file_writer);
|
2014-08-12 10:26:40 -07:00
|
|
|
bool rv = file_writer->Write(&data_[0], data_.size());
|
|
|
|
EXPECT_TRUE(rv);
|
|
|
|
return rv;
|
2014-08-01 12:48:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string data_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(MinidumpWritable, MinidumpWritable) {
|
2015-02-18 14:15:38 -05:00
|
|
|
StringFile string_file;
|
2014-08-01 12:48:28 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("empty");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable string_writable;
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(string_writable.WriteEverything(&string_file));
|
|
|
|
EXPECT_TRUE(string_file.string().empty());
|
2014-08-01 12:48:28 -04:00
|
|
|
string_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("childless");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable string_writable;
|
|
|
|
string_writable.SetData("a");
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(string_writable.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 1u);
|
|
|
|
EXPECT_EQ(string_file.string(), "a");
|
2014-08-01 12:48:28 -04:00
|
|
|
string_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("b");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("c");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 5u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("b\0\0\0c", 5));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("base alignment 2");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("de");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("f");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 5u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("de\0\0f", 5));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("base alignment 3");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("ghi");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("j");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 5u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("ghi\0j", 5));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("base alignment 4");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("klmn");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("o");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 5u);
|
|
|
|
EXPECT_EQ(string_file.string(), "klmno");
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("base alignment 5");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("pqrst");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("u");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 9u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("pqrst\0\0\0u", 9));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("two children");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("parent");
|
|
|
|
TestStringMinidumpWritable child_0;
|
|
|
|
child_0.SetData("child_0");
|
|
|
|
parent.AddChild(&child_0);
|
|
|
|
TestStringMinidumpWritable child_1;
|
|
|
|
child_1.SetData("child_1");
|
|
|
|
parent.AddChild(&child_1);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 23u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("parent\0\0child_0\0child_1", 23));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchild");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("parent");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("child");
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestStringMinidumpWritable grandchild;
|
|
|
|
grandchild.SetData("grandchild");
|
|
|
|
child.AddChild(&grandchild);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 26u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("parent\0\0child\0\0\0grandchild", 26));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchild with empty parent");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("child");
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestStringMinidumpWritable grandchild;
|
|
|
|
grandchild.SetData("grandchild");
|
|
|
|
child.AddChild(&grandchild);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 18u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("child\0\0\0grandchild", 18));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchild with empty child");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("parent");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestStringMinidumpWritable grandchild;
|
|
|
|
grandchild.SetData("grandchild");
|
|
|
|
child.AddChild(&grandchild);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 18u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("parent\0\0grandchild", 18));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchild with empty grandchild");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("parent");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("child");
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestStringMinidumpWritable grandchild;
|
|
|
|
child.AddChild(&grandchild);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 13u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("parent\0\0child", 13));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchild with late-phase grandchild");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("parent");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("child");
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestStringMinidumpWritable grandchild;
|
|
|
|
grandchild.SetData("grandchild");
|
|
|
|
grandchild.SetPhaseLate();
|
|
|
|
child.AddChild(&grandchild);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 26u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("parent\0\0child\0\0\0grandchild", 26));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchild with late-phase child");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("parent");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("child");
|
|
|
|
child.SetPhaseLate();
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestStringMinidumpWritable grandchild;
|
|
|
|
grandchild.SetData("grandchild");
|
|
|
|
child.AddChild(&grandchild);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 25u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("parent\0\0grandchild\0\0child", 25));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("family tree");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("P..");
|
|
|
|
TestStringMinidumpWritable child_0;
|
|
|
|
child_0.SetData("C0.");
|
|
|
|
parent.AddChild(&child_0);
|
|
|
|
TestStringMinidumpWritable child_1;
|
|
|
|
child_1.SetData("C1.");
|
|
|
|
parent.AddChild(&child_1);
|
|
|
|
TestStringMinidumpWritable grandchild_00;
|
|
|
|
grandchild_00.SetData("G00");
|
|
|
|
child_0.AddChild(&grandchild_00);
|
|
|
|
TestStringMinidumpWritable grandchild_01;
|
|
|
|
grandchild_01.SetData("G01");
|
|
|
|
child_0.AddChild(&grandchild_01);
|
|
|
|
TestStringMinidumpWritable grandchild_10;
|
|
|
|
grandchild_10.SetData("G10");
|
|
|
|
child_1.AddChild(&grandchild_10);
|
|
|
|
TestStringMinidumpWritable grandchild_11;
|
|
|
|
grandchild_11.SetData("G11");
|
|
|
|
child_1.AddChild(&grandchild_11);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 27u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("P..\0C0.\0G00\0G01\0C1.\0G10\0G11", 27));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("family tree with C0 late");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("P..");
|
|
|
|
TestStringMinidumpWritable child_0;
|
|
|
|
child_0.SetData("C0.");
|
|
|
|
child_0.SetPhaseLate();
|
|
|
|
parent.AddChild(&child_0);
|
|
|
|
TestStringMinidumpWritable child_1;
|
|
|
|
child_1.SetData("C1.");
|
|
|
|
parent.AddChild(&child_1);
|
|
|
|
TestStringMinidumpWritable grandchild_00;
|
|
|
|
grandchild_00.SetData("G00");
|
|
|
|
child_0.AddChild(&grandchild_00);
|
|
|
|
TestStringMinidumpWritable grandchild_01;
|
|
|
|
grandchild_01.SetData("G01");
|
|
|
|
child_0.AddChild(&grandchild_01);
|
|
|
|
TestStringMinidumpWritable grandchild_10;
|
|
|
|
grandchild_10.SetData("G10");
|
|
|
|
child_1.AddChild(&grandchild_10);
|
|
|
|
TestStringMinidumpWritable grandchild_11;
|
|
|
|
grandchild_11.SetData("G11");
|
|
|
|
child_1.AddChild(&grandchild_11);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 27u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("P..\0G00\0G01\0C1.\0G10\0G11\0C0.", 27));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("family tree with G0 late");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("P..");
|
|
|
|
TestStringMinidumpWritable child_0;
|
|
|
|
child_0.SetData("C0.");
|
|
|
|
parent.AddChild(&child_0);
|
|
|
|
TestStringMinidumpWritable child_1;
|
|
|
|
child_1.SetData("C1.");
|
|
|
|
parent.AddChild(&child_1);
|
|
|
|
TestStringMinidumpWritable grandchild_00;
|
|
|
|
grandchild_00.SetData("G00");
|
|
|
|
grandchild_00.SetPhaseLate();
|
|
|
|
child_0.AddChild(&grandchild_00);
|
|
|
|
TestStringMinidumpWritable grandchild_01;
|
|
|
|
grandchild_01.SetData("G01");
|
|
|
|
grandchild_01.SetPhaseLate();
|
|
|
|
child_0.AddChild(&grandchild_01);
|
|
|
|
TestStringMinidumpWritable grandchild_10;
|
|
|
|
grandchild_10.SetData("G10");
|
|
|
|
child_1.AddChild(&grandchild_10);
|
|
|
|
TestStringMinidumpWritable grandchild_11;
|
|
|
|
grandchild_11.SetData("G11");
|
|
|
|
child_1.AddChild(&grandchild_11);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 27u);
|
|
|
|
EXPECT_EQ(string_file.string(),
|
|
|
|
std::string("P..\0C0.\0C1.\0G10\0G11\0G00\0G01", 27));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("align 1");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("p");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("c");
|
|
|
|
child.SetAlignment(1);
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 2u);
|
|
|
|
EXPECT_EQ(string_file.string(), "pc");
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("align 2");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestStringMinidumpWritable parent;
|
|
|
|
parent.SetData("p");
|
|
|
|
TestStringMinidumpWritable child;
|
|
|
|
child.SetData("c");
|
|
|
|
child.SetAlignment(2);
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
test: Use (actual, [un]expected) in gtest {ASSERT,EXPECT}_{EQ,NE}
gtest used to require (expected, actual) ordering for arguments to
EXPECT_EQ and ASSERT_EQ, and in failed test assertions would identify
each side as “expected” or “actual.” Tests in Crashpad adhered to this
traditional ordering. After a gtest change in February 2016, it is now
agnostic with respect to the order of these arguments.
This change mechanically updates all uses of these macros to (actual,
expected) by reversing them. This provides consistency with our use of
the logging CHECK_EQ and DCHECK_EQ macros, and makes for better
readability by ordinary native speakers. The rough (but working!)
conversion tool is
https://chromium-review.googlesource.com/c/466727/1/rewrite_expectassert_eq.py,
and “git cl format” cleaned up its output.
EXPECT_NE and ASSERT_NE never had a preferred ordering. gtest never made
a judgment that one side or the other needed to provide an “unexpected”
value. Consequently, some code used (unexpected, actual) while other
code used (actual, unexpected). For consistency with the new EXPECT_EQ
and ASSERT_EQ usage, as well as consistency with CHECK_NE and DCHECK_NE,
this change also updates these use sites to (actual, unexpected) where
one side can be called “unexpected” as, for example, std::string::npos
can be. Unfortunately, this portion was a manual conversion.
References:
https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#binary-comparison
https://github.com/google/googletest/commit/77d6b173380332b1c1bc540532641f410ec82d65
https://github.com/google/googletest/pull/713
Change-Id: I978fef7c94183b8b1ef63f12f5ab4d6693626be3
Reviewed-on: https://chromium-review.googlesource.com/466727
Reviewed-by: Scott Graham <scottmg@chromium.org>
2017-04-04 00:35:21 -04:00
|
|
|
EXPECT_EQ(string_file.string().size(), 3u);
|
|
|
|
EXPECT_EQ(string_file.string(), std::string("p\0c", 3));
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename RVAType>
|
|
|
|
class TTestRVAMinidumpWritable final : public BaseTestMinidumpWritable {
|
2014-08-01 12:48:28 -04:00
|
|
|
public:
|
2022-05-31 11:21:19 -06:00
|
|
|
TTestRVAMinidumpWritable() : BaseTestMinidumpWritable(), rva_() {}
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
TTestRVAMinidumpWritable(const TTestRVAMinidumpWritable&) = delete;
|
|
|
|
TTestRVAMinidumpWritable& operator=(const TTestRVAMinidumpWritable&) = delete;
|
2021-09-20 12:55:12 -07:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
~TTestRVAMinidumpWritable() {}
|
2014-08-01 12:48:28 -04:00
|
|
|
|
|
|
|
void SetRVA(MinidumpWritable* other) { other->RegisterRVA(&rva_); }
|
|
|
|
|
|
|
|
protected:
|
2014-10-14 11:11:57 -04:00
|
|
|
size_t SizeOfObject() override {
|
2014-08-01 12:48:28 -04:00
|
|
|
EXPECT_GE(state(), kStateFrozen);
|
|
|
|
return sizeof(rva_);
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
bool WriteObject(FileWriterInterface* file_writer) override {
|
2014-08-01 12:48:28 -04:00
|
|
|
BaseTestMinidumpWritable::WriteObject(file_writer);
|
|
|
|
EXPECT_TRUE(file_writer->Write(&rva_, sizeof(rva_)));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2022-05-31 11:21:19 -06:00
|
|
|
RVAType rva_;
|
2014-08-01 12:48:28 -04:00
|
|
|
};
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename RVAType>
|
|
|
|
RVAType TRVAAtIndex(const std::string& string, size_t index) {
|
|
|
|
return *reinterpret_cast<const RVAType*>(&string[index * sizeof(RVAType)]);
|
2014-08-01 12:48:28 -04:00
|
|
|
}
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename T>
|
|
|
|
struct TestNames {};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct TestNames<RVA> {
|
|
|
|
static constexpr char kName[] = "RVA";
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct TestNames<RVA64> {
|
|
|
|
static constexpr char kName[] = "RVA64";
|
|
|
|
};
|
|
|
|
|
|
|
|
class TestTypeNames {
|
|
|
|
public:
|
|
|
|
template <typename T>
|
|
|
|
static std::string GetName(int) {
|
|
|
|
return std::string(TestNames<T>::kName);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename RVAType>
|
|
|
|
class MinidumpWritable : public ::testing::Test {};
|
|
|
|
|
|
|
|
using RVATypes = ::testing::Types<RVA, RVA64>;
|
|
|
|
TYPED_TEST_SUITE(MinidumpWritable, RVATypes, TestTypeNames);
|
|
|
|
|
|
|
|
TYPED_TEST(MinidumpWritable, RVA) {
|
2015-02-18 14:15:38 -05:00
|
|
|
StringFile string_file;
|
2022-05-31 11:21:19 -06:00
|
|
|
using TestRVAMinidumpWritable = TTestRVAMinidumpWritable<TypeParam>;
|
|
|
|
const auto RVAAtIndex = TRVAAtIndex<TypeParam>;
|
|
|
|
constexpr size_t kRVASize = sizeof(TypeParam);
|
2014-08-01 12:48:28 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("unset");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestRVAMinidumpWritable rva_writable;
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(rva_writable.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 0), 0 * kRVASize);
|
2014-08-01 12:48:28 -04:00
|
|
|
rva_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("self");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestRVAMinidumpWritable rva_writable;
|
|
|
|
rva_writable.SetRVA(&rva_writable);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(rva_writable.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 0), 0 * kRVASize);
|
2014-08-01 12:48:28 -04:00
|
|
|
rva_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child self");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestRVAMinidumpWritable parent;
|
|
|
|
parent.SetRVA(&parent);
|
|
|
|
TestRVAMinidumpWritable child;
|
|
|
|
child.SetRVA(&child);
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), 2 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 0), 0 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 1), 1 * kRVASize);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child only");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestRVAMinidumpWritable parent;
|
|
|
|
TestRVAMinidumpWritable child;
|
|
|
|
parent.SetRVA(&child);
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), 2 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 0), 1 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 1), 0 * kRVASize);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child circular");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestRVAMinidumpWritable parent;
|
|
|
|
TestRVAMinidumpWritable child;
|
|
|
|
parent.SetRVA(&child);
|
|
|
|
child.SetRVA(&parent);
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), 2 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 0), 1 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 1), 0 * kRVASize);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchildren");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestRVAMinidumpWritable parent;
|
|
|
|
TestRVAMinidumpWritable child;
|
|
|
|
parent.SetRVA(&child);
|
|
|
|
parent.AddChild(&child);
|
|
|
|
TestRVAMinidumpWritable grandchild_0;
|
|
|
|
grandchild_0.SetRVA(&child);
|
|
|
|
child.AddChild(&grandchild_0);
|
|
|
|
TestRVAMinidumpWritable grandchild_1;
|
|
|
|
grandchild_1.SetRVA(&child);
|
|
|
|
child.AddChild(&grandchild_1);
|
|
|
|
TestRVAMinidumpWritable grandchild_2;
|
|
|
|
grandchild_2.SetRVA(&child);
|
|
|
|
child.AddChild(&grandchild_2);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), 5 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 0), 1 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 1), 0 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 2), 1 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 3), 1 * kRVASize);
|
|
|
|
EXPECT_EQ(RVAAtIndex(string_file.string(), 4), 1 * kRVASize);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename MinidumpLocationDescriptorType>
|
|
|
|
class TTestLocationDescriptorMinidumpWritable final
|
2014-08-01 12:48:28 -04:00
|
|
|
: public BaseTestMinidumpWritable {
|
|
|
|
public:
|
2022-05-31 11:21:19 -06:00
|
|
|
TTestLocationDescriptorMinidumpWritable()
|
2014-08-01 12:48:28 -04:00
|
|
|
: BaseTestMinidumpWritable(), location_descriptor_(), string_() {}
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
TTestLocationDescriptorMinidumpWritable(
|
|
|
|
const TTestLocationDescriptorMinidumpWritable&) = delete;
|
|
|
|
TTestLocationDescriptorMinidumpWritable& operator=(
|
|
|
|
const TTestLocationDescriptorMinidumpWritable&) = delete;
|
2021-09-20 12:55:12 -07:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
~TTestLocationDescriptorMinidumpWritable() {}
|
2014-08-01 12:48:28 -04:00
|
|
|
|
|
|
|
void SetLocationDescriptor(MinidumpWritable* other) {
|
|
|
|
other->RegisterLocationDescriptor(&location_descriptor_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetString(const std::string& string) { string_ = string; }
|
|
|
|
|
|
|
|
protected:
|
2014-10-14 11:11:57 -04:00
|
|
|
size_t SizeOfObject() override {
|
2014-08-01 12:48:28 -04:00
|
|
|
EXPECT_GE(state(), kStateFrozen);
|
|
|
|
// NUL-terminate.
|
|
|
|
return sizeof(location_descriptor_) + string_.size() + 1;
|
|
|
|
}
|
|
|
|
|
2014-10-14 11:11:57 -04:00
|
|
|
bool WriteObject(FileWriterInterface* file_writer) override {
|
2014-08-01 12:48:28 -04:00
|
|
|
BaseTestMinidumpWritable::WriteObject(file_writer);
|
|
|
|
WritableIoVec iov;
|
|
|
|
iov.iov_base = &location_descriptor_;
|
|
|
|
iov.iov_len = sizeof(location_descriptor_);
|
|
|
|
std::vector<WritableIoVec> iovecs(1, iov);
|
|
|
|
// NUL-terminate.
|
|
|
|
iov.iov_base = &string_[0];
|
|
|
|
iov.iov_len = string_.size() + 1;
|
|
|
|
iovecs.push_back(iov);
|
|
|
|
EXPECT_TRUE(file_writer->WriteIoVec(&iovecs));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2022-05-31 11:21:19 -06:00
|
|
|
MinidumpLocationDescriptorType location_descriptor_;
|
2014-08-01 12:48:28 -04:00
|
|
|
std::string string_;
|
|
|
|
};
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename MinidumpLocationDescriptorType>
|
|
|
|
struct TLocationDescriptorAndData {
|
|
|
|
MinidumpLocationDescriptorType location_descriptor;
|
2022-07-20 10:36:27 -07:00
|
|
|
const char* string;
|
2014-08-01 12:48:28 -04:00
|
|
|
};
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename MinidumpLocationDescriptorType>
|
2022-07-20 10:36:27 -07:00
|
|
|
TLocationDescriptorAndData<MinidumpLocationDescriptorType> TLDDAtIndex(
|
|
|
|
const std::string& str,
|
2022-05-31 11:21:19 -06:00
|
|
|
size_t index) {
|
2022-07-20 10:36:27 -07:00
|
|
|
const MinidumpLocationDescriptorType* location_descriptor =
|
|
|
|
reinterpret_cast<const MinidumpLocationDescriptorType*>(&str[index]);
|
|
|
|
|
|
|
|
const char* string = reinterpret_cast<const char*>(
|
|
|
|
&str[index] +
|
|
|
|
offsetof(TLocationDescriptorAndData<MinidumpLocationDescriptorType>,
|
|
|
|
string));
|
|
|
|
|
|
|
|
return TLocationDescriptorAndData<MinidumpLocationDescriptorType>{
|
|
|
|
*location_descriptor,
|
|
|
|
string,
|
|
|
|
};
|
2014-08-01 12:48:28 -04:00
|
|
|
}
|
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
template <typename MinidumpLocationDescriptorType>
|
|
|
|
class MinidumpWritableLocationDescriptor : public ::testing::Test {};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct TestNames<MINIDUMP_LOCATION_DESCRIPTOR> {
|
|
|
|
static constexpr char kName[] = "MINIDUMP_LOCATION_DESCRIPTOR";
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct TestNames<MINIDUMP_LOCATION_DESCRIPTOR64> {
|
|
|
|
static constexpr char kName[] = "MINIDUMP_LOCATION_DESCRIPTOR64";
|
|
|
|
};
|
|
|
|
|
|
|
|
using MinidumpLocationDescriptorTypes =
|
|
|
|
::testing::Types<MINIDUMP_LOCATION_DESCRIPTOR,
|
|
|
|
MINIDUMP_LOCATION_DESCRIPTOR64>;
|
|
|
|
TYPED_TEST_SUITE(MinidumpWritableLocationDescriptor,
|
|
|
|
MinidumpLocationDescriptorTypes,
|
|
|
|
TestTypeNames);
|
|
|
|
|
|
|
|
TYPED_TEST(MinidumpWritableLocationDescriptor, LocationDescriptor) {
|
2015-02-18 14:15:38 -05:00
|
|
|
StringFile string_file;
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
using LocationDescriptorAndData = TLocationDescriptorAndData<TypeParam>;
|
|
|
|
const auto LDDAtIndex = TLDDAtIndex<TypeParam>;
|
|
|
|
using TestLocationDescriptorMinidumpWritable =
|
|
|
|
TTestLocationDescriptorMinidumpWritable<TypeParam>;
|
|
|
|
constexpr size_t kMinidumpLocationDescriptorSize = sizeof(TypeParam);
|
|
|
|
|
2014-08-01 12:48:28 -04:00
|
|
|
{
|
|
|
|
SCOPED_TRACE("unset");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable location_descriptor_writable;
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(location_descriptor_writable.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), kMinidumpLocationDescriptorSize + 1);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize, 0u);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
2014-08-01 12:48:28 -04:00
|
|
|
location_descriptor_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("self");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable location_descriptor_writable;
|
|
|
|
location_descriptor_writable.SetLocationDescriptor(
|
|
|
|
&location_descriptor_writable);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(location_descriptor_writable.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), kMinidumpLocationDescriptorSize + 1);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 1);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
2014-08-01 12:48:28 -04:00
|
|
|
location_descriptor_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("self with data");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable location_descriptor_writable;
|
|
|
|
location_descriptor_writable.SetLocationDescriptor(
|
|
|
|
&location_descriptor_writable);
|
|
|
|
location_descriptor_writable.SetString("zz");
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(location_descriptor_writable.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(), kMinidumpLocationDescriptorSize + 3);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 3);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
|
|
|
EXPECT_STREQ("zz", ldd.string);
|
2014-08-01 12:48:28 -04:00
|
|
|
location_descriptor_writable.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child self");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable parent;
|
|
|
|
parent.SetLocationDescriptor(&parent);
|
|
|
|
parent.SetString("yy");
|
|
|
|
TestLocationDescriptorMinidumpWritable child;
|
|
|
|
child.SetLocationDescriptor(&child);
|
|
|
|
child.SetString("x");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(),
|
|
|
|
kMinidumpLocationDescriptorSize * 2 + 6);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 3);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
|
|
|
EXPECT_STREQ("yy", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(), kMinidumpLocationDescriptorSize + 4);
|
2022-07-20 10:36:27 -07:00
|
|
|
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 2);
|
2022-07-20 10:36:27 -07:00
|
|
|
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 4);
|
|
|
|
EXPECT_STREQ("x", ldd.string);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child only");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable parent;
|
|
|
|
TestLocationDescriptorMinidumpWritable child;
|
|
|
|
parent.SetLocationDescriptor(&child);
|
|
|
|
parent.SetString("www");
|
|
|
|
child.SetString("vv");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(),
|
|
|
|
kMinidumpLocationDescriptorSize * 2 + 7);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 3);
|
2022-07-20 10:36:27 -07:00
|
|
|
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 4);
|
|
|
|
EXPECT_STREQ("www", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(), kMinidumpLocationDescriptorSize + 4);
|
2022-07-20 10:36:27 -07:00
|
|
|
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize, 0u);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
|
|
|
EXPECT_STREQ("vv", ldd.string);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("parent-child circular");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable parent;
|
|
|
|
TestLocationDescriptorMinidumpWritable child;
|
|
|
|
parent.SetLocationDescriptor(&child);
|
|
|
|
parent.SetString("uuuu");
|
|
|
|
child.SetLocationDescriptor(&parent);
|
|
|
|
child.SetString("tttt");
|
|
|
|
parent.AddChild(&child);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(),
|
|
|
|
kMinidumpLocationDescriptorSize * 2 + 13);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 5);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 8);
|
|
|
|
EXPECT_STREQ("uuuu", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(), kMinidumpLocationDescriptorSize + 8);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 5);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
|
|
|
EXPECT_STREQ("tttt", ldd.string);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
SCOPED_TRACE("grandchildren");
|
2015-02-18 14:15:38 -05:00
|
|
|
string_file.Reset();
|
2014-08-01 12:48:28 -04:00
|
|
|
TestLocationDescriptorMinidumpWritable parent;
|
|
|
|
TestLocationDescriptorMinidumpWritable child;
|
|
|
|
parent.SetLocationDescriptor(&child);
|
|
|
|
parent.SetString("s");
|
|
|
|
parent.AddChild(&child);
|
|
|
|
child.SetString("r");
|
|
|
|
TestLocationDescriptorMinidumpWritable grandchild_0;
|
|
|
|
grandchild_0.SetLocationDescriptor(&child);
|
|
|
|
grandchild_0.SetString("q");
|
|
|
|
child.AddChild(&grandchild_0);
|
|
|
|
TestLocationDescriptorMinidumpWritable grandchild_1;
|
|
|
|
grandchild_1.SetLocationDescriptor(&child);
|
|
|
|
grandchild_1.SetString("p");
|
|
|
|
child.AddChild(&grandchild_1);
|
|
|
|
TestLocationDescriptorMinidumpWritable grandchild_2;
|
|
|
|
grandchild_2.SetLocationDescriptor(&child);
|
|
|
|
grandchild_2.SetString("o");
|
|
|
|
child.AddChild(&grandchild_2);
|
2015-02-18 14:15:38 -05:00
|
|
|
EXPECT_TRUE(parent.WriteEverything(&string_file));
|
2014-08-01 12:48:28 -04:00
|
|
|
|
2022-05-31 11:21:19 -06:00
|
|
|
ASSERT_EQ(string_file.string().size(),
|
|
|
|
kMinidumpLocationDescriptorSize * 5 + 18);
|
2022-07-20 10:36:27 -07:00
|
|
|
LocationDescriptorAndData ldd = LDDAtIndex(string_file.string(), 0);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 2);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 4);
|
|
|
|
EXPECT_STREQ("s", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(), kMinidumpLocationDescriptorSize + 4);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize, 0u);
|
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, 0u);
|
|
|
|
EXPECT_STREQ("r", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(),
|
|
|
|
kMinidumpLocationDescriptorSize * 2 + 8);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 2);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 4);
|
|
|
|
EXPECT_STREQ("q", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(),
|
|
|
|
kMinidumpLocationDescriptorSize * 3 + 12);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 2);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 4);
|
|
|
|
EXPECT_STREQ("p", ldd.string);
|
2022-05-31 11:21:19 -06:00
|
|
|
ldd = LDDAtIndex(string_file.string(),
|
|
|
|
kMinidumpLocationDescriptorSize * 4 + 16);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.DataSize,
|
2022-05-31 11:21:19 -06:00
|
|
|
kMinidumpLocationDescriptorSize + 2);
|
2022-07-20 10:36:27 -07:00
|
|
|
EXPECT_EQ(ldd.location_descriptor.Rva, kMinidumpLocationDescriptorSize + 4);
|
|
|
|
EXPECT_STREQ("o", ldd.string);
|
2014-08-01 12:48:28 -04:00
|
|
|
parent.Verify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2014-10-07 17:28:50 -04:00
|
|
|
} // namespace test
|
|
|
|
} // namespace crashpad
|