blob: 8c7e2df4c66a2959536e2a6b9be95878b9cedd64 [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.worker;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSortedMap;
import com.google.common.hash.HashCode;
import com.google.devtools.build.lib.actions.ExecutionRequirements.WorkerProtocolFormat;
import com.google.devtools.build.lib.vfs.DigestHashFunction;
import com.google.devtools.build.lib.vfs.FileSystem;
import com.google.devtools.build.lib.vfs.inmemoryfs.InMemoryFileSystem;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests for {@link WorkerKey}. */
@RunWith(JUnit4.class)
public class WorkerKeyTest {
final FileSystem fs = new InMemoryFileSystem(DigestHashFunction.SHA256);
private WorkerKey makeWorkerKey(boolean multiplex, boolean dynamic) {
return new WorkerKey(
/* args= */ ImmutableList.of("arg1", "arg2", "arg3"),
/* env= */ ImmutableMap.of("env1", "foo", "env2", "bar"),
/* execRoot= */ fs.getPath("/outputbase/execroot/workspace"),
/* mnemonic= */ "dummy",
/* workerFilesCombinedHash= */ HashCode.fromInt(0),
/* workerFilesWithHashes= */ ImmutableSortedMap.of(),
/* isSpeculative= */ dynamic,
/* proxied= */ multiplex,
/* cancellable=*/ false,
WorkerProtocolFormat.PROTO);
}
@Test
public void testWorkerKeyGetter() {
WorkerKey keyNomultiNodynamic = makeWorkerKey(false, false);
assertThat(keyNomultiNodynamic.isSpeculative()).isFalse();
assertThat(keyNomultiNodynamic.getProxied()).isFalse();
assertThat(keyNomultiNodynamic.isMultiplex()).isFalse();
assertThat(keyNomultiNodynamic.getWorkerTypeName()).isEqualTo("worker");
WorkerKey keyMultiNoDynamic = makeWorkerKey(true, false);
assertThat(keyMultiNoDynamic.isSpeculative()).isFalse();
assertThat(keyMultiNoDynamic.getProxied()).isTrue();
assertThat(keyMultiNoDynamic.isMultiplex()).isTrue();
assertThat(keyMultiNoDynamic.getWorkerTypeName()).isEqualTo("multiplex-worker");
WorkerKey keyNoMultiDynamic = makeWorkerKey(false, true);
assertThat(keyNoMultiDynamic.isSpeculative()).isTrue();
assertThat(keyNoMultiDynamic.getProxied()).isFalse();
assertThat(keyNoMultiDynamic.isMultiplex()).isFalse();
assertThat(keyNoMultiDynamic.getWorkerTypeName()).isEqualTo("worker");
WorkerKey keyMultiDynamic = makeWorkerKey(true, true);
assertThat(keyMultiDynamic.isSpeculative()).isTrue();
assertThat(keyMultiDynamic.getProxied()).isTrue();
assertThat(keyMultiDynamic.isMultiplex()).isFalse();
assertThat(keyMultiDynamic.getWorkerTypeName()).isEqualTo("worker");
// Hash code contains args, env, execRoot, proxied, and mnemonic.
assertThat(keyMultiDynamic.hashCode()).isEqualTo(1605714200);
assertThat(keyMultiDynamic.getProtocolFormat()).isEqualTo(WorkerProtocolFormat.PROTO);
}
@Test
public void testWorkerKeyEquality() {
WorkerKey workerKey = makeWorkerKey(true, true);
WorkerKey workerKeyWithSameFields =
new WorkerKey(
workerKey.getArgs(),
workerKey.getEnv(),
workerKey.getExecRoot(),
workerKey.getMnemonic(),
workerKey.getWorkerFilesCombinedHash(),
workerKey.getWorkerFilesWithHashes(),
workerKey.isSpeculative(),
workerKey.getProxied(),
workerKey.isCancellable(),
workerKey.getProtocolFormat());
assertThat(workerKey).isEqualTo(workerKeyWithSameFields);
}
@Test
public void testWorkerKeyInequality_protocol() {
WorkerKey workerKey = makeWorkerKey(true, true);
WorkerKey workerKeyWithDifferentProtocol =
new WorkerKey(
workerKey.getArgs(),
workerKey.getEnv(),
workerKey.getExecRoot(),
workerKey.getMnemonic(),
workerKey.getWorkerFilesCombinedHash(),
workerKey.getWorkerFilesWithHashes(),
workerKey.isSpeculative(),
workerKey.getProxied(),
workerKey.isCancellable(),
WorkerProtocolFormat.JSON);
assertThat(workerKey).isNotEqualTo(workerKeyWithDifferentProtocol);
}
}