blob: d4e33e517724356e98000e2493fc3db3c548d67b [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.config;
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.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.FragmentOptions;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.lib.cmdline.RepositoryMapping;
import com.google.devtools.build.lib.cmdline.RepositoryName;
import com.google.devtools.build.lib.skyframe.config.PlatformMappingValue.NativeAndStarlarkFlags;
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 {
private static final ImmutableSet<Class<? extends FragmentOptions>>
BUILD_CONFIG_PLATFORM_OPTIONS = ImmutableSet.of(CoreOptions.class, PlatformOptions.class);
private static final Label PLATFORM1 = Label.parseCanonicalUnchecked("//platforms:one");
private static final Label PLATFORM2 = Label.parseCanonicalUnchecked("@dep~1.0//platforms:two");
private static final RepositoryMapping REPO_MAPPING =
RepositoryMapping.create(
ImmutableMap.of(
"", RepositoryName.MAIN, "dep", RepositoryName.createUnvalidated("dep~1.0")),
RepositoryName.MAIN);
private static final BuildOptions DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS =
BuildOptions.getDefaultBuildOptionsForFragments(BUILD_CONFIG_PLATFORM_OPTIONS);
private static final Label DEFAULT_TARGET_PLATFORM =
Label.parseCanonicalUnchecked("@local_config_platform//:host");
@Test
public void testMapNoMappings() throws OptionsParsingException {
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags = ImmutableMap.of();
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions mapped = mappingValue.map(DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS);
assertThat(mapped.get(PlatformOptions.class).platforms)
.containsExactly(DEFAULT_TARGET_PLATFORM);
}
@Test
public void testMapPlatformToFlags() throws Exception {
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags =
ImmutableMap.of(
PLATFORM1,
NativeAndStarlarkFlags.create(
ImmutableSet.of("--cpu=one", "--compilation_mode=dbg"), ImmutableMap.of()));
ImmutableMap<ImmutableSet<String>, Label> flagsToPlatforms = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(PlatformOptions.class).platforms = ImmutableList.of(PLATFORM1);
BuildOptions mapped = mappingValue.map(modifiedOptions);
assertThat(mapped.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);
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "one";
modifiedOptions.get(CoreOptions.class).compilationMode = CompilationMode.DBG;
BuildOptions mapped = mappingValue.map(modifiedOptions);
assertThat(mapped.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);
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "foo";
BuildOptions mapped = mappingValue.map(modifiedOptions);
assertThat(mapped.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);
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions modifiedOptions = DEFAULT_BUILD_CONFIG_PLATFORM_OPTIONS.clone();
modifiedOptions.get(CoreOptions.class).cpu = "bar";
BuildOptions mapped = mappingValue.map(modifiedOptions);
assertThat(mapped.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);
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions options = BuildOptions.of(ImmutableList.of());
assertThrows(IllegalArgumentException.class, () -> mappingValue.map(options));
}
@Test
public void testMapNoMappingIfPlatformIsSetButNotMatching() throws Exception {
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags =
ImmutableMap.of(
PLATFORM1,
NativeAndStarlarkFlags.create(
ImmutableSet.of("--cpu=one", "--compilation_mode=dbg"), ImmutableMap.of()));
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,
RepositoryMapping.ALWAYS_FALLBACK);
BuildOptions mapped = mappingValue.map(modifiedOptions);
assertThat(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);
ImmutableMap<Label, NativeAndStarlarkFlags> platformsToFlags = ImmutableMap.of();
PlatformMappingValue mappingValue =
new PlatformMappingValue(
platformsToFlags, flagsToPlatforms, BUILD_CONFIG_PLATFORM_OPTIONS, REPO_MAPPING);
BuildOptions mapped = mappingValue.map(modifiedOptions);
assertThat(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();
}
}