blob: 3af6d55dcae2fb82a864f55b5a1461d07a31b392 [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.skyframe;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertThrows;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.devtools.build.lib.analysis.PlatformConfiguration;
import com.google.devtools.build.lib.analysis.PlatformOptions;
import com.google.devtools.build.lib.analysis.config.BuildOptions;
import com.google.devtools.build.lib.analysis.config.CompilationMode;
import com.google.devtools.build.lib.analysis.config.CoreOptions;
import com.google.devtools.build.lib.analysis.config.FragmentClassSet;
import com.google.devtools.build.lib.analysis.config.FragmentOptions;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.lib.vfs.PathFragment;
import com.google.devtools.common.options.OptionsParsingException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for {@link PlatformMappingValue}. */
@RunWith(JUnit4.class)
public final class PlatformMappingValueTest {
// We don't actually care about the contents of this set other than that it is passed intact
// through the mapping logic. The platform fragment in it is purely an example, it could be any
// set of fragments.
private static final FragmentClassSet PLATFORM_FRAGMENT_CLASS =
FragmentClassSet.of(ImmutableSet.of(PlatformConfiguration.class));
private static final ImmutableSet<Class<? extends FragmentOptions>>
BUILD_CONFIG_PLATFORM_OPTIONS = ImmutableSet.of(CoreOptions.class, PlatformOptions.class);
private static final Label PLATFORM1 = Label.parseAbsoluteUnchecked("//platforms:one");
private static final Label PLATFORM2 = Label.parseAbsoluteUnchecked("//platforms:two");
private static final BuildOptions DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS =
BuildOptions.getDefaultBuildOptionsForFragments(BUILD_CONFIG_PLATFORM_OPTIONS);
private static final Label DEFAULT_TARGET_PLATFORM =
Label.parseAbsoluteUnchecked("@local_config_platform//:host");
@Test
public void testMapNoMappings() throws OptionsParsingException {
PlatformMappingValue mappingValue =
new PlatformMappingValue(
ImmutableMap.of(), ImmutableMap.of(), BUILD_CONFIG_PLATFORM_OPTIONS);
BuildConfigurationValue.Key key =
BuildConfigurationValue.keyWithoutPlatformMapping(
PLATFORM_FRAGMENT_CLASS, DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS);
BuildConfigurationValue.Key mapped = mappingValue.map(key);
assertThat(mapped.getOptions().get(PlatformOptions.class).platforms)
.containsExactly(DEFAULT_TARGET_PLATFORM);
}
@Test
public void testMapPlatformToFlags() throws Exception {
ImmutableMap<Label, ImmutableSet<String>> platformsToFlags =
ImmutableMap.of(PLATFORM1, ImmutableSet.of("--cpu=one", "--compilation_mode=dbg"));
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, ImmutableMap.of(), BUILD_CONFIG_PLATFORM_OPTIONS);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(PlatformOptions.class).platforms = ImmutableList.of(PLATFORM1);
BuildConfigurationValue.Key mapped = mappingValue.map(keyForOptions(modifiedOptions));
assertThat(mapped.getFragments()).isEqualTo(PLATFORM_FRAGMENT_CLASS);
assertThat(mapped.getOptions().get(CoreOptions.class).cpu).isEqualTo("one");
}
@Test
public void testMapFlagsToPlatform() throws Exception {
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms =
ImmutableMap.of(ImmutableSet.of("--cpu=one", "--compilation_mode=dbg"), PLATFORM1);
PlatformMappingValue mappingValue =
new PlatformMappingValue(
ImmutableMap.of(), flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "one";
modifiedOptions.get(CoreOptions.class).compilationMode = CompilationMode.DBG;
BuildConfigurationValue.Key mapped = mappingValue.map(keyForOptions(modifiedOptions));
assertThat(mapped.getFragments()).isEqualTo(PLATFORM_FRAGMENT_CLASS);
assertThat(mapped.getOptions().get(PlatformOptions.class).platforms).containsExactly(PLATFORM1);
}
@Test
public void testMapFlagsToPlatformPriority() throws Exception {
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms =
ImmutableMap.of(
ImmutableSet.of("--cpu=foo", "--compilation_mode=dbg"), PLATFORM1,
ImmutableSet.of("--cpu=foo"), PLATFORM2);
PlatformMappingValue mappingValue =
new PlatformMappingValue(
ImmutableMap.of(), flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "foo";
BuildConfigurationValue.Key mapped = mappingValue.map(keyForOptions(modifiedOptions));
assertThat(mapped.getOptions().get(PlatformOptions.class).platforms).containsExactly(PLATFORM2);
}
@Test
public void testMapFlagsToPlatformNoneMatching() throws Exception {
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms =
ImmutableMap.of(ImmutableSet.of("--cpu=foo", "--compilation_mode=dbg"), PLATFORM1);
PlatformMappingValue mappingValue =
new PlatformMappingValue(
ImmutableMap.of(), flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "bar";
BuildConfigurationValue.Key mapped = mappingValue.map(keyForOptions(modifiedOptions));
assertThat(mapped.getOptions().get(PlatformOptions.class).platforms)
.containsExactly(DEFAULT_TARGET_PLATFORM);
}
@Test
public void testMapNoPlatformOptions() throws Exception {
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms =
ImmutableMap.of(ImmutableSet.of("--cpu=one"), PLATFORM1);
PlatformMappingValue mappingValue =
new PlatformMappingValue(
ImmutableMap.of(), flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS);
BuildOptions options = BuildOptions.of(ImmutableList.of(CoreOptions.class));
assertThrows(IllegalArgumentException.class, () -> mappingValue.map(keyForOptions(options)));
}
@Test
public void testMapNoMappingIfPlatformIsSetButNotMatching() throws Exception {
ImmutableMap<Label, ImmutableSet<String>> platformsToFlags =
ImmutableMap.of(PLATFORM1, ImmutableSet.of("--cpu=one", "--compilation_mode=dbg"));
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms =
ImmutableMap.of(ImmutableSet.of("--cpu=one"), PLATFORM1);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "one";
modifiedOptions.get(PlatformOptions.class).platforms = ImmutableList.of(PLATFORM2);
PlatformMappingValue mappingValue =
new PlatformMappingValue(platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS);
BuildConfigurationValue.Key mapped = mappingValue.map(keyForOptions(modifiedOptions));
assertThat(keyForOptions(modifiedOptions)).isEqualTo(mapped);
}
@Test
public void testMapNoMappingIfPlatformIsSetAndNoPlatformMapping() throws Exception {
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms =
ImmutableMap.of(ImmutableSet.of("--cpu=one"), PLATFORM1);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "one";
modifiedOptions.get(PlatformOptions.class).platforms = ImmutableList.of(PLATFORM2);
PlatformMappingValue mappingValue =
new PlatformMappingValue(
ImmutableMap.of(), flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS);
BuildConfigurationValue.Key mapped = mappingValue.map(keyForOptions(modifiedOptions));
assertThat(keyForOptions(modifiedOptions)).isEqualTo(mapped);
}
@Test
public void testDefaultKey() {
PlatformMappingValue.Key key = PlatformMappingValue.Key.create(null);
assertThat(key.getWorkspaceRelativeMappingPath())
.isEqualTo(PlatformOptions.DEFAULT_PLATFORM_MAPPINGS);
assertThat(key.wasExplicitlySetByUser()).isFalse();
}
@Test
public void testCustomKey() {
PlatformMappingValue.Key key = PlatformMappingValue.Key.create(PathFragment.create("my/path"));
assertThat(key.getWorkspaceRelativeMappingPath()).isEqualTo(PathFragment.create("my/path"));
assertThat(key.wasExplicitlySetByUser()).isTrue();
}
private static BuildConfigurationValue.Key keyForOptions(BuildOptions modifiedOptions) {
return BuildConfigurationValue.keyWithoutPlatformMapping(
PLATFORM_FRAGMENT_CLASS, modifiedOptions);
}
}