mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-28 07:48:14 +08:00
4b450c8137
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
77d6b17338
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>
171 lines
4.7 KiB
C++
171 lines
4.7 KiB
C++
// Copyright 2015 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "test/multiprocess_exec.h"
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "base/logging.h"
|
|
#include "base/strings/utf_string_conversions.h"
|
|
#include "gtest/gtest.h"
|
|
#include "util/win/command_line.h"
|
|
|
|
namespace crashpad {
|
|
namespace test {
|
|
|
|
namespace internal {
|
|
|
|
struct MultiprocessInfo {
|
|
MultiprocessInfo() {}
|
|
ScopedFileHANDLE pipe_c2p_read;
|
|
ScopedFileHANDLE pipe_c2p_write;
|
|
ScopedFileHANDLE pipe_p2c_read;
|
|
ScopedFileHANDLE pipe_p2c_write;
|
|
PROCESS_INFORMATION process_info;
|
|
};
|
|
|
|
} // namespace internal
|
|
|
|
Multiprocess::Multiprocess()
|
|
: info_(nullptr),
|
|
code_(EXIT_SUCCESS),
|
|
reason_(kTerminationNormal) {
|
|
}
|
|
|
|
void Multiprocess::Run() {
|
|
// Set up and spawn the child process.
|
|
ASSERT_NO_FATAL_FAILURE(PreFork());
|
|
RunChild();
|
|
|
|
// And then run the parent actions in this process.
|
|
RunParent();
|
|
|
|
// Reap the child.
|
|
WaitForSingleObject(info_->process_info.hProcess, INFINITE);
|
|
CloseHandle(info_->process_info.hThread);
|
|
CloseHandle(info_->process_info.hProcess);
|
|
}
|
|
|
|
Multiprocess::~Multiprocess() {
|
|
delete info_;
|
|
}
|
|
|
|
void Multiprocess::PreFork() {
|
|
NOTREACHED();
|
|
}
|
|
|
|
FileHandle Multiprocess::ReadPipeHandle() const {
|
|
// This is the parent case, it's stdin in the child.
|
|
return info_->pipe_c2p_read.get();
|
|
}
|
|
|
|
FileHandle Multiprocess::WritePipeHandle() const {
|
|
// This is the parent case, it's stdout in the child.
|
|
return info_->pipe_p2c_write.get();
|
|
}
|
|
|
|
void Multiprocess::CloseReadPipe() {
|
|
info_->pipe_c2p_read.reset();
|
|
}
|
|
|
|
void Multiprocess::CloseWritePipe() {
|
|
info_->pipe_p2c_write.reset();
|
|
}
|
|
|
|
void Multiprocess::RunParent() {
|
|
MultiprocessParent();
|
|
|
|
info_->pipe_c2p_read.reset();
|
|
info_->pipe_p2c_write.reset();
|
|
}
|
|
|
|
void Multiprocess::RunChild() {
|
|
MultiprocessChild();
|
|
|
|
info_->pipe_c2p_write.reset();
|
|
info_->pipe_p2c_read.reset();
|
|
}
|
|
|
|
MultiprocessExec::MultiprocessExec()
|
|
: Multiprocess(), command_(), arguments_(), command_line_() {
|
|
}
|
|
|
|
void MultiprocessExec::SetChildCommand(
|
|
const std::string& command,
|
|
const std::vector<std::string>* arguments) {
|
|
command_ = command;
|
|
if (arguments) {
|
|
arguments_ = *arguments;
|
|
} else {
|
|
arguments_.clear();
|
|
}
|
|
}
|
|
|
|
MultiprocessExec::~MultiprocessExec() {
|
|
}
|
|
|
|
void MultiprocessExec::PreFork() {
|
|
ASSERT_FALSE(command_.empty());
|
|
|
|
command_line_.clear();
|
|
AppendCommandLineArgument(base::UTF8ToUTF16(command_), &command_line_);
|
|
for (size_t i = 0; i < arguments_.size(); ++i) {
|
|
AppendCommandLineArgument(base::UTF8ToUTF16(arguments_[i]), &command_line_);
|
|
}
|
|
|
|
// Make pipes for child-to-parent and parent-to-child communication. Mark them
|
|
// as inheritable via the SECURITY_ATTRIBUTES, but use SetHandleInformation to
|
|
// ensure that the parent sides are not inherited.
|
|
ASSERT_EQ(info(), nullptr);
|
|
set_info(new internal::MultiprocessInfo());
|
|
|
|
SECURITY_ATTRIBUTES security_attributes = {0};
|
|
security_attributes.nLength = sizeof(SECURITY_ATTRIBUTES);
|
|
security_attributes.bInheritHandle = TRUE;
|
|
|
|
HANDLE c2p_read, c2p_write;
|
|
PCHECK(CreatePipe(&c2p_read, &c2p_write, &security_attributes, 0));
|
|
PCHECK(SetHandleInformation(c2p_read, HANDLE_FLAG_INHERIT, 0));
|
|
info()->pipe_c2p_read.reset(c2p_read);
|
|
info()->pipe_c2p_write.reset(c2p_write);
|
|
|
|
HANDLE p2c_read, p2c_write;
|
|
PCHECK(CreatePipe(&p2c_read, &p2c_write, &security_attributes, 0));
|
|
PCHECK(SetHandleInformation(p2c_write, HANDLE_FLAG_INHERIT, 0));
|
|
info()->pipe_p2c_read.reset(p2c_read);
|
|
info()->pipe_p2c_write.reset(p2c_write);
|
|
}
|
|
|
|
void MultiprocessExec::MultiprocessChild() {
|
|
STARTUPINFO startup_info = {0};
|
|
startup_info.cb = sizeof(startup_info);
|
|
startup_info.hStdInput = info()->pipe_p2c_read.get();
|
|
startup_info.hStdOutput = info()->pipe_c2p_write.get();
|
|
startup_info.hStdError = GetStdHandle(STD_ERROR_HANDLE);
|
|
startup_info.dwFlags = STARTF_USESTDHANDLES;
|
|
PCHECK(CreateProcess(base::UTF8ToUTF16(command_).c_str(),
|
|
&command_line_[0], // This cannot be constant, per MSDN.
|
|
nullptr,
|
|
nullptr,
|
|
TRUE,
|
|
0,
|
|
nullptr,
|
|
nullptr,
|
|
&startup_info,
|
|
&info()->process_info));
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace crashpad
|