2022-09-06 19:14:07 -04:00
|
|
|
// Copyright 2014 The Crashpad Authors
|
2014-09-03 18:24:29 -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.
|
|
|
|
|
test: Move util/test to its own top-level directory, test.
After 9e79ea1da719, it no longer makes sense for crashpad_util_test_lib
to “hide” in util/util_test.gyp. All of util/test is moved to its own
top-level directory, test, which all other test code is allowed to
depend on. test, too, is allowed to depend on all other non-test code.
In a future change, when crashpad_util_test_lib gains a dependency on
crashpad_client, it won’t look so weird for something in util (even
though it’s in util/test) to depend on something in client, because the
thing that needs to depend on client will live in test, not util.
BUG=crashpad:33
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/1051533002
2015-03-31 17:44:14 -04:00
|
|
|
#include "test/multiprocess_exec.h"
|
2014-09-03 18:24:29 -04:00
|
|
|
|
2018-01-25 14:47:28 -08:00
|
|
|
#include "base/logging.h"
|
2015-01-28 14:49:42 -08:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
|
|
|
#include "build/build_config.h"
|
2014-09-03 18:24:29 -04:00
|
|
|
#include "gtest/gtest.h"
|
2017-04-03 13:53:11 -04:00
|
|
|
#include "test/test_paths.h"
|
2014-12-17 14:35:18 -08:00
|
|
|
#include "util/file/file_io.h"
|
2014-09-03 18:24:29 -04:00
|
|
|
|
2014-10-07 17:28:50 -04:00
|
|
|
namespace crashpad {
|
|
|
|
namespace test {
|
2014-09-03 18:24:29 -04:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class TestMultiprocessExec final : public MultiprocessExec {
|
|
|
|
public:
|
|
|
|
TestMultiprocessExec() : MultiprocessExec() {}
|
|
|
|
|
2021-09-20 12:55:12 -07:00
|
|
|
TestMultiprocessExec(const TestMultiprocessExec&) = delete;
|
|
|
|
TestMultiprocessExec& operator=(const TestMultiprocessExec&) = delete;
|
|
|
|
|
2014-09-03 18:24:29 -04:00
|
|
|
~TestMultiprocessExec() {}
|
|
|
|
|
|
|
|
private:
|
2014-10-14 11:11:57 -04:00
|
|
|
void MultiprocessParent() override {
|
2015-01-28 14:49:42 -08:00
|
|
|
// Use Logging*File() instead of Checked*File() so that the test can fail
|
2020-05-06 20:39:19 -04:00
|
|
|
// gracefully with a Google Test assertion if the child does not execute
|
|
|
|
// properly.
|
2014-12-15 16:40:16 -05:00
|
|
|
|
2014-09-03 18:24:29 -04:00
|
|
|
char c = 'z';
|
2015-01-28 14:49:42 -08:00
|
|
|
ASSERT_TRUE(LoggingWriteFile(WritePipeHandle(), &c, 1));
|
2014-09-03 18:24:29 -04:00
|
|
|
|
Make file_io reads more rational and predictable
ReadFile() attempted to continue reading after a short read. In most
cases, this is fine. However, ReadFile() would keep trying to fill a
partially-filled buffer until experiencing a 0-length read(), signaling
end-of-file. For certain weird file descriptors like terminal input, EOF
is an ephemeral condition, and attempting to read beyond EOF doesn’t
actually return 0 (EOF) provided that they remain open, it will block
waiting for more input. Consequently, ReadFile() and anything based on
ReadFile() had an undocumented and quirky interface, which was that any
short read that it returned (not an underlying short read) actually
indicated EOF.
This facet of ReadFile() was unexpected, so it’s being removed. The new
behavior is that ReadFile() will return an underlying short read. The
behavior of FileReaderInterface::Read() is updated in accordance with
this change.
Upon experiencing a short read, the caller can determine the best
action. Most callers were already prepared for this behavior. Outside of
util/file, only crashpad_database_util properly implemented EOF
detection according to previous semantics, and adapting it to new
semantics is trivial.
Callers who require an exact-length read can use the new
ReadFileExactly(), or the newly renamed LoggingReadFileExactly() or
CheckedReadFileExactly(). These functions will retry following a short
read. The renamed functions were previously called LoggingReadFile() and
CheckedReadFile(), but those names implied that they were simply
wrapping ReadFile(), which is not the case. They wrapped ReadFile() and
further, insisted on a full read. Since ReadFile()’s semantics are now
changing but these functions’ are not, they’re now even more distinct
from ReadFile(), and must be renamed to avoid confusion.
Test: *
Change-Id: I06b77e0d6ad8719bd2eb67dab93a8740542dd908
Reviewed-on: https://chromium-review.googlesource.com/456676
Reviewed-by: Robert Sesek <rsesek@chromium.org>
2017-03-16 13:36:38 -04:00
|
|
|
ASSERT_TRUE(LoggingReadFileExactly(ReadPipeHandle(), &c, 1));
|
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(c, 'Z');
|
2014-09-03 18:24:29 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(MultiprocessExec, MultiprocessExec) {
|
|
|
|
TestMultiprocessExec multiprocess_exec;
|
2017-11-01 10:37:01 -04:00
|
|
|
base::FilePath child_test_executable = TestPaths::BuildArtifact(
|
|
|
|
FILE_PATH_LITERAL("test"),
|
|
|
|
FILE_PATH_LITERAL("multiprocess_exec_test_child"),
|
|
|
|
TestPaths::FileType::kExecutable);
|
2014-10-14 11:10:45 -04:00
|
|
|
multiprocess_exec.SetChildCommand(child_test_executable, nullptr);
|
2014-09-03 18:24:29 -04:00
|
|
|
multiprocess_exec.Run();
|
|
|
|
}
|
|
|
|
|
2018-01-25 14:47:28 -08:00
|
|
|
|
|
|
|
CRASHPAD_CHILD_TEST_MAIN(SimpleMultiprocess) {
|
|
|
|
char c;
|
|
|
|
CheckedReadFileExactly(StdioFileHandle(StdioStream::kStandardInput), &c, 1);
|
|
|
|
LOG_IF(FATAL, c != 'z');
|
|
|
|
|
|
|
|
c = 'Z';
|
|
|
|
CheckedWriteFile(StdioFileHandle(StdioStream::kStandardOutput), &c, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(MultiprocessExec, MultiprocessExecSimpleChild) {
|
|
|
|
TestMultiprocessExec exec;
|
|
|
|
exec.SetChildTestMainFunction("SimpleMultiprocess");
|
|
|
|
exec.Run();
|
2019-02-11 10:59:14 -05:00
|
|
|
}
|
2018-01-25 14:47:28 -08:00
|
|
|
|
|
|
|
CRASHPAD_CHILD_TEST_MAIN(SimpleMultiprocessReturnsNonZero) {
|
|
|
|
return 123;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TestMultiprocessExecEmpty final : public MultiprocessExec {
|
|
|
|
public:
|
|
|
|
TestMultiprocessExecEmpty() = default;
|
2021-09-20 12:55:12 -07:00
|
|
|
|
|
|
|
TestMultiprocessExecEmpty(const TestMultiprocessExecEmpty&) = delete;
|
|
|
|
TestMultiprocessExecEmpty& operator=(const TestMultiprocessExecEmpty&) =
|
|
|
|
delete;
|
|
|
|
|
2018-01-25 14:47:28 -08:00
|
|
|
~TestMultiprocessExecEmpty() = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void MultiprocessParent() override {}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(MultiprocessExec, MultiprocessExecSimpleChildReturnsNonZero) {
|
|
|
|
TestMultiprocessExecEmpty exec;
|
|
|
|
exec.SetChildTestMainFunction("SimpleMultiprocessReturnsNonZero");
|
|
|
|
exec.SetExpectedChildTermination(
|
|
|
|
Multiprocess::TerminationReason::kTerminationNormal, 123);
|
|
|
|
exec.Run();
|
2019-02-11 10:59:14 -05:00
|
|
|
}
|
2018-01-25 14:47:28 -08:00
|
|
|
|
2022-01-19 15:00:24 -05:00
|
|
|
#if !BUILDFLAG(IS_WIN)
|
2018-02-22 12:45:42 -08:00
|
|
|
|
|
|
|
CRASHPAD_CHILD_TEST_MAIN(BuiltinTrapChild) {
|
|
|
|
__builtin_trap();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
class TestBuiltinTrapTermination final : public MultiprocessExec {
|
|
|
|
public:
|
|
|
|
TestBuiltinTrapTermination() {
|
|
|
|
SetChildTestMainFunction("BuiltinTrapChild");
|
|
|
|
SetExpectedChildTerminationBuiltinTrap();
|
|
|
|
}
|
|
|
|
|
2021-09-20 12:55:12 -07:00
|
|
|
TestBuiltinTrapTermination(const TestBuiltinTrapTermination&) = delete;
|
|
|
|
TestBuiltinTrapTermination& operator=(const TestBuiltinTrapTermination&) =
|
|
|
|
delete;
|
|
|
|
|
2018-02-22 12:45:42 -08:00
|
|
|
~TestBuiltinTrapTermination() = default;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void MultiprocessParent() override {}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(MultiprocessExec, BuiltinTrapTermination) {
|
|
|
|
TestBuiltinTrapTermination test;
|
|
|
|
test.Run();
|
|
|
|
}
|
|
|
|
|
2022-01-19 15:00:24 -05:00
|
|
|
#endif // !BUILDFLAG(IS_WIN)
|
2018-02-22 12:45:42 -08:00
|
|
|
|
2014-09-03 18:24:29 -04:00
|
|
|
} // namespace
|
2014-10-07 17:28:50 -04:00
|
|
|
} // namespace test
|
|
|
|
} // namespace crashpad
|