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