blob: 603b6942f803581bee86097ad21b6499901a86ee [file] [log] [blame]
// Copyright 2023 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.exec;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableMap;
import com.google.devtools.build.lib.actions.ActionInput;
import com.google.devtools.build.lib.actions.Artifact;
import com.google.devtools.build.lib.actions.util.ActionsTestUtil;
import com.google.devtools.build.lib.collect.nestedset.NestedSet;
import com.google.devtools.build.lib.collect.nestedset.NestedSetBuilder;
import com.google.devtools.build.lib.exec.Protos.File;
import com.google.devtools.build.lib.exec.Protos.SpawnExec;
import com.google.devtools.build.lib.exec.util.SpawnBuilder;
import com.google.devtools.build.lib.remote.options.RemoteOptions;
import com.google.devtools.build.lib.vfs.DigestHashFunction;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.lib.vfs.SyscallCache;
import com.google.devtools.common.options.Options;
import com.google.testing.junit.testparameterinjector.TestParameter;
import com.google.testing.junit.testparameterinjector.TestParameterInjector;
import java.io.IOException;
import java.util.ArrayList;
import org.junit.Test;
import org.junit.runner.RunWith;
/** Tests for {@link CompactSpawnLogContext}. */
@RunWith(TestParameterInjector.class)
public final class CompactSpawnLogContextTest extends SpawnLogContextTestBase {
private final Path logPath = fs.getPath("/log");
@Test
public void testTransitiveNestedSet(@TestParameter InputsMode inputsMode) throws Exception {
Artifact file1 = ActionsTestUtil.createArtifact(rootDir, "file1");
Artifact file2 = ActionsTestUtil.createArtifact(rootDir, "file2");
Artifact file3 = ActionsTestUtil.createArtifact(rootDir, "file3");
writeFile(file1, "abc");
writeFile(file2, "def");
writeFile(file3, "ghi");
NestedSet<ActionInput> inputs =
NestedSetBuilder.<ActionInput>stableOrder()
.add(file1)
.addTransitive(
NestedSetBuilder.<ActionInput>stableOrder().add(file2).add(file3).build())
.build();
assertThat(inputs.getLeaves()).hasSize(1);
assertThat(inputs.getNonLeaves()).hasSize(1);
SpawnBuilder spawn = defaultSpawnBuilder().withInputs(inputs);
if (inputsMode.isTool()) {
spawn = spawn.withTools(inputs);
}
SpawnLogContext context = createSpawnLogContext();
context.logSpawn(
spawn.build(),
createInputMetadataProvider(file1, file2, file3),
createInputMap(file1, file2, file3),
fs,
defaultTimeout(),
defaultSpawnResult());
closeAndAssertLog(
context,
defaultSpawnExecBuilder()
.addInputs(
File.newBuilder()
.setPath("file1")
.setDigest(getDigest("abc"))
.setIsTool(inputsMode.isTool()))
.addInputs(
File.newBuilder()
.setPath("file2")
.setDigest(getDigest("def"))
.setIsTool(inputsMode.isTool()))
.addInputs(
File.newBuilder()
.setPath("file3")
.setDigest(getDigest("ghi"))
.setIsTool(inputsMode.isTool()))
.build());
}
@Override
protected SpawnLogContext createSpawnLogContext(ImmutableMap<String, String> platformProperties)
throws IOException, InterruptedException {
RemoteOptions remoteOptions = Options.getDefaults(RemoteOptions.class);
remoteOptions.remoteDefaultExecProperties = platformProperties.entrySet().asList();
return new CompactSpawnLogContext(
logPath,
execRoot.asFragment(),
remoteOptions,
DigestHashFunction.SHA256,
SyscallCache.NO_CACHE);
}
@Override
protected void closeAndAssertLog(SpawnLogContext context, SpawnExec... expected)
throws IOException, InterruptedException {
context.close();
ArrayList<SpawnExec> actual = new ArrayList<>();
try (SpawnLogReconstructor reconstructor =
new SpawnLogReconstructor(logPath.getInputStream())) {
SpawnExec ex;
while ((ex = reconstructor.read()) != null) {
actual.add(ex);
}
}
assertThat(actual).containsExactlyElementsIn(expected).inOrder();
}
}