| OLD | NEW |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with 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 | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. | 13 // limitations under the License. |
| 14 | 14 |
| 15 #include "util/posix/process_util.h" | 15 #include "util/posix/process_util.h" |
| 16 | 16 |
| 17 #include <crt_externs.h> | 17 #include <crt_externs.h> |
| 18 #include <unistd.h> | 18 #include <unistd.h> |
| 19 | 19 |
| 20 #include <string> | 20 #include <string> |
| 21 #include <vector> | 21 #include <vector> |
| 22 | 22 |
| 23 #include "gtest/gtest.h" | 23 #include "gtest/gtest.h" |
| 24 | 24 |
| 25 namespace crashpad { |
| 26 namespace test { |
| 25 namespace { | 27 namespace { |
| 26 | 28 |
| 27 using namespace crashpad; | |
| 28 | |
| 29 TEST(ProcessUtil, ProcessArgumentsForPID) { | 29 TEST(ProcessUtil, ProcessArgumentsForPID) { |
| 30 std::vector<std::string> argv; | 30 std::vector<std::string> argv; |
| 31 ASSERT_TRUE(ProcessArgumentsForPID(getpid(), &argv)); | 31 ASSERT_TRUE(ProcessArgumentsForPID(getpid(), &argv)); |
| 32 | 32 |
| 33 // gtest argv processing scrambles argv, but it leaves argc and argv[0] | 33 // gtest argv processing scrambles argv, but it leaves argc and argv[0] |
| 34 // intact, so test those. | 34 // intact, so test those. |
| 35 | 35 |
| 36 int argc = static_cast<int>(argv.size()); | 36 int argc = static_cast<int>(argv.size()); |
| 37 int expect_argc = *_NSGetArgc(); | 37 int expect_argc = *_NSGetArgc(); |
| 38 EXPECT_EQ(expect_argc, argc); | 38 EXPECT_EQ(expect_argc, argc); |
| 39 | 39 |
| 40 ASSERT_GE(expect_argc, 1); | 40 ASSERT_GE(expect_argc, 1); |
| 41 ASSERT_GE(argc, 1); | 41 ASSERT_GE(argc, 1); |
| 42 | 42 |
| 43 char** expect_argv = *_NSGetArgv(); | 43 char** expect_argv = *_NSGetArgv(); |
| 44 EXPECT_EQ(std::string(expect_argv[0]), argv[0]); | 44 EXPECT_EQ(std::string(expect_argv[0]), argv[0]); |
| 45 } | 45 } |
| 46 | 46 |
| 47 } // namespace | 47 } // namespace |
| 48 } // namespace test |
| 49 } // namespace crashpad |
| OLD | NEW |