blob: 155fe1b5551d7ff489ee88e207efc622a8f11f20 [file] [log] [blame]
// Copyright 2019 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.sandbox;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.lib.vfs.PathFragment;
import java.io.IOException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* {@inheritDoc}
*
* <p><b>Important:</b> If you modify any aspects of the golden data of these tests, you must run
* the {@link RealSandboxfsProcessIntegrationTest} test against the version of sandboxfs tested here
* to ensure that the golden data represents reality.
*/
@RunWith(JUnit4.class)
public class RealSandboxfs02ProcessTest extends BaseRealSandboxfsProcessTest {
public RealSandboxfs02ProcessTest() {
super("0.2.0", RealSandboxfsProcess.ALLOW_FLAG + "\n" + FAKE_MOUNT_POINT + "\n");
}
@Test
public void testNoActivity() throws IOException {
SandboxfsProcess process = createAndStartFakeSandboxfs(ImmutableList.of("{\"id\":\"empty\"}"));
String expectedRequests = "{\"C\":{\"i\":\"empty\",\"m\":[]}}";
verifyFakeSandboxfsExecution(process, expectedRequests);
}
@Test
public void testCreateAndDestroySandboxes() throws IOException {
SandboxfsProcess process =
createAndStartFakeSandboxfs(
ImmutableList.of(
"{\"id\":\"empty\"}",
"{\"id\":\"sandbox1\"}",
"{\"id\":\"sandbox2\"}",
"{\"id\":\"sandbox1\"}",
"{\"id\":\"sandbox3\"}"));
process.createSandbox("sandbox1", (mapper) -> {});
process.createSandbox(
"sandbox2",
(mapper) -> {
mapper.map(PathFragment.create("/"), PathFragment.create("/some/path"), true);
mapper.map(PathFragment.create("/a/b/c"), PathFragment.create("/other"), false);
});
process.destroySandbox("sandbox1");
process.createSandbox(
"sandbox3",
(mapper) -> {
// Reuse a previous prefix.
mapper.map(PathFragment.create("/a/b/c"), PathFragment.create("/"), true);
// And create a new prefix to ensure identifiers are not reset.
mapper.map(PathFragment.create("/a/b"), PathFragment.create("/"), false);
});
String expectedRequests =
"{\"C\":{\"i\":\"empty\",\"m\":[]}}"
+ "{\"C\":{\"i\":\"sandbox1\",\"m\":[]}}"
+ "{\"C\":{\"i\":\"sandbox2\",\"m\":["
+ "{\"x\":1,\"p\":\"\",\"y\":2,\"u\":\"path\",\"w\":true},"
+ "{\"x\":3,\"p\":\"c\",\"y\":4,\"u\":\"other\"}"
+ "],"
+ "\"q\":{\"1\":\"/\",\"2\":\"/some\",\"3\":\"/a/b\",\"4\":\"/\"}"
+ "}}"
+ "{\"D\":\"sandbox1\"}"
+ "{\"C\":{\"i\":\"sandbox3\",\"m\":["
+ "{\"x\":3,\"p\":\"c\",\"y\":1,\"u\":\"\",\"w\":true},"
+ "{\"x\":5,\"p\":\"b\",\"y\":1,\"u\":\"\"}"
+ "],"
+ "\"q\":{\"5\":\"/a\"}"
+ "}}";
verifyFakeSandboxfsExecution(process, expectedRequests);
}
}