OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #include "util/test/mac/mach_multiprocess.h" |
| 16 |
| 17 #include "base/basictypes.h" |
| 18 #include "gtest/gtest.h" |
| 19 #include "util/file/fd_io.h" |
| 20 #include "util/test/errors.h" |
| 21 |
| 22 namespace { |
| 23 |
| 24 using namespace crashpad; |
| 25 using namespace crashpad::test; |
| 26 |
| 27 class TestMachMultiprocess final : public MachMultiprocess { |
| 28 public: |
| 29 TestMachMultiprocess() : MachMultiprocess() {} |
| 30 |
| 31 ~TestMachMultiprocess() {} |
| 32 |
| 33 protected: |
| 34 // The base class will have already exercised the Mach ports for IPC and the |
| 35 // child task port. Just make sure that the pipe is set up correctly. |
| 36 virtual void Parent() override { |
| 37 int fd = PipeFD(); |
| 38 |
| 39 char c; |
| 40 ssize_t rv = ReadFD(fd, &c, 1); |
| 41 ASSERT_EQ(1, rv) << ErrnoMessage("read"); |
| 42 EXPECT_EQ('M', c); |
| 43 |
| 44 // The child will close its end of the pipe and exit. Make sure that the |
| 45 // parent sees EOF. |
| 46 rv = ReadFD(fd, &c, 1); |
| 47 ASSERT_EQ(0, rv) << ErrnoMessage("read"); |
| 48 } |
| 49 |
| 50 virtual void Child() override { |
| 51 int fd = PipeFD(); |
| 52 |
| 53 char c = 'M'; |
| 54 ssize_t rv = WriteFD(fd, &c, 1); |
| 55 ASSERT_EQ(1, rv) << ErrnoMessage("write"); |
| 56 } |
| 57 |
| 58 private: |
| 59 DISALLOW_COPY_AND_ASSIGN(TestMachMultiprocess); |
| 60 }; |
| 61 |
| 62 TEST(MachMultiprocess, MachMultiprocess) { |
| 63 TestMachMultiprocess mach_multiprocess; |
| 64 mach_multiprocess.Run(); |
| 65 } |
| 66 |
| 67 } // namespace |
OLD | NEW |