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/posix/process_util.h" |
| 16 |
| 17 #include <crt_externs.h> |
| 18 #include <unistd.h> |
| 19 |
| 20 #include <string> |
| 21 #include <vector> |
| 22 |
| 23 #include "gtest/gtest.h" |
| 24 |
| 25 namespace { |
| 26 |
| 27 using namespace crashpad; |
| 28 |
| 29 TEST(ProcessUtil, ProcessArgumentsForPID) { |
| 30 std::vector<std::string> argv; |
| 31 ASSERT_TRUE(ProcessArgumentsForPID(getpid(), &argv)); |
| 32 |
| 33 // gtest argv processing scrambles argv, but it leaves argc and argv[0] |
| 34 // intact, so test those. |
| 35 |
| 36 int argc = static_cast<int>(argv.size()); |
| 37 int expect_argc = *_NSGetArgc(); |
| 38 EXPECT_EQ(expect_argc, argc); |
| 39 |
| 40 ASSERT_GE(expect_argc, 1); |
| 41 ASSERT_GE(argc, 1); |
| 42 |
| 43 char** expect_argv = *_NSGetArgv(); |
| 44 EXPECT_EQ(std::string(expect_argv[0]), argv[0]); |
| 45 } |
| 46 |
| 47 } // namespace |
OLD | NEW |