Update V8 to version 4.6.72.
[chromium-blink-merge.git] / content / common / sandbox_mac_compiler_unittest.mm
blob08fba20ba23a1305b884a21d5f6e4b373f683033
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/common/sandbox_mac.h"
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <sys/stat.h>
11 #include "base/process/kill.h"
12 #include "base/test/multiprocess_test.h"
13 #include "base/test/test_timeouts.h"
14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "testing/multiprocess_func_list.h"
17 namespace content {
19 class SandboxMacCompilerTest : public base::MultiProcessTest {};
21 MULTIPROCESS_TEST_MAIN(BasicProfileProcess) {
22   std::string profile =
23       "(version 1)"
24       "(allow file-read* file-write* (literal \"/\"))";
26   SandboxCompiler compiler(profile);
28   std::string error;
29   CHECK(compiler.CompileAndApplyProfile(&error));
31   return 0;
34 TEST_F(SandboxMacCompilerTest, BasicProfileTest) {
35   base::Process process = SpawnChild("BasicProfileProcess");
36   ASSERT_TRUE(process.IsValid());
37   int exit_code = 42;
38   EXPECT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_max_timeout(),
39                                              &exit_code));
40   EXPECT_EQ(exit_code, 0);
43 MULTIPROCESS_TEST_MAIN(BasicProfileWithParamProcess) {
44   std::string profile =
45       "(version 1)"
46       "(allow file-read* file-write* (literal (param \"DIR\")))";
48   SandboxCompiler compiler(profile);
49   CHECK(compiler.InsertStringParam("DIR", "/"));
51   std::string error;
52   CHECK(compiler.CompileAndApplyProfile(&error));
54   return 0;
57 TEST_F(SandboxMacCompilerTest, BasicProfileTestWithParam) {
58   base::Process process = SpawnChild("BasicProfileWithParamProcess");
59   ASSERT_TRUE(process.IsValid());
60   int exit_code = 42;
61   EXPECT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_max_timeout(),
62                                              &exit_code));
63   EXPECT_EQ(exit_code, 0);
66 MULTIPROCESS_TEST_MAIN(ProfileFunctionalProcess) {
67   std::string profile =
68       "(version 1)"
69       "(debug deny)"
70       "(allow file-read-data file-read-metadata (literal \"/dev/urandom\"))";
72   SandboxCompiler compiler(profile);
74   std::string error;
75   CHECK(compiler.CompileAndApplyProfile(&error));
77   // The profile compiled and applied successfully, now try and read 1 byte from
78   // /dev/urandom.
79   uint8_t byte;
80   int fd = open("/dev/urandom", O_RDONLY);
81   CHECK_NE(fd, -1);
83   EXPECT_TRUE(read(fd, &byte, sizeof(byte)) == sizeof(byte));
85   return 0;
88 TEST_F(SandboxMacCompilerTest, ProfileFunctionalityTest) {
89   base::Process process = SpawnChild("ProfileFunctionalProcess");
90   ASSERT_TRUE(process.IsValid());
91   int exit_code = 42;
92   EXPECT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_max_timeout(),
93                                              &exit_code));
94   EXPECT_EQ(exit_code, 0);
97 MULTIPROCESS_TEST_MAIN(ProfileFunctionalTestWithParamsProcess) {
98   std::string profile =
99       "(version 1)"
100       "(debug deny)"
101       "(if (string=? (param \"ALLOW_FILE\") \"TRUE\")"
102       "    (allow file-read-data file-read-metadata (literal (param "
103       "\"URANDOM\"))))";
105   SandboxCompiler compiler(profile);
107   CHECK(compiler.InsertBooleanParam("ALLOW_FILE", true));
108   CHECK(compiler.InsertStringParam("URANDOM", "/dev/urandom"));
110   std::string error;
111   CHECK(compiler.CompileAndApplyProfile(&error));
113   // The profile compiled and applied successfully, now try and read 1 byte from
114   // /dev/urandom.
115   uint8_t byte;
116   int fd = open("/dev/urandom", O_RDONLY);
117   CHECK_NE(fd, -1);
119   EXPECT_TRUE(read(fd, &byte, sizeof(byte)) == sizeof(byte));
121   // Make sure the sandbox isn't overly permissive.
122   struct stat st;
123   EXPECT_EQ(stat("/", &st), -1);
125   return 0;
128 TEST_F(SandboxMacCompilerTest, ProfileFunctionalityTestWithParams) {
129   base::Process process = SpawnChild("ProfileFunctionalTestWithParamsProcess");
130   ASSERT_TRUE(process.IsValid());
131   int exit_code = 42;
132   EXPECT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_max_timeout(),
133                                              &exit_code));
134   EXPECT_EQ(exit_code, 0);
137 MULTIPROCESS_TEST_MAIN(ProfileFunctionalityTestErrorProcess) {
138   std::string profile = "(+ 5 a)";
140   SandboxCompiler compiler(profile);
142   // Make sure that this invalid profile results in an error returned.
143   std::string error;
144   CHECK_EQ(error, "");
145   CHECK(!compiler.CompileAndApplyProfile(&error));
146   CHECK_NE(error, "");
148   return 0;
151 TEST_F(SandboxMacCompilerTest, ProfileFunctionalityTestError) {
152   base::Process process = SpawnChild("ProfileFunctionalityTestErrorProcess");
153   ASSERT_TRUE(process.IsValid());
154   int exit_code = 42;
155   EXPECT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_max_timeout(),
156                                              &exit_code));
157   EXPECT_EQ(exit_code, 0);
160 }  // namespace content