2014-09-03 18:24:29 -04:00
|
|
|
// Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
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
|
|
|
|
2016-01-06 12:22:50 -05:00
|
|
|
#include "base/macros.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"
|
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/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() {}
|
|
|
|
|
|
|
|
~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
|
2014-12-15 16:40:16 -05:00
|
|
|
// gracefully with a gtest assertion if the child does not execute properly.
|
|
|
|
|
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
|
|
|
|
2015-01-28 14:49:42 -08:00
|
|
|
ASSERT_TRUE(LoggingReadFile(ReadPipeHandle(), &c, 1));
|
2014-09-03 18:24:29 -04:00
|
|
|
EXPECT_EQ('Z', c);
|
|
|
|
}
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TestMultiprocessExec);
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST(MultiprocessExec, MultiprocessExec) {
|
|
|
|
TestMultiprocessExec multiprocess_exec;
|
2015-03-09 15:13:13 -04:00
|
|
|
base::FilePath test_executable = Paths::Executable();
|
2015-01-28 14:49:42 -08:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
std::string child_test_executable = test_executable.value();
|
|
|
|
#elif defined(OS_WIN)
|
2014-09-03 18:24:29 -04:00
|
|
|
std::string child_test_executable =
|
2015-01-28 14:49:42 -08:00
|
|
|
base::UTF16ToUTF8(test_executable.RemoveFinalExtension().value());
|
|
|
|
#endif // OS_POSIX
|
|
|
|
child_test_executable += "_multiprocess_exec_test_child";
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
child_test_executable += ".exe";
|
|
|
|
#endif
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2014-10-07 17:28:50 -04:00
|
|
|
} // namespace test
|
|
|
|
} // namespace crashpad
|