blob: 99f13f931fd93cb44cfaecedc32996dc0ce0d265 [file] [log] [blame]
// Copyright 2017 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.rules.cpp;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Iterables;
import com.google.devtools.build.lib.analysis.ConfiguredTarget;
import com.google.devtools.build.lib.analysis.util.BuildViewTestCase;
import com.google.devtools.build.lib.analysis.util.ScratchAttributeWriter;
import com.google.devtools.build.lib.cmdline.Label;
import com.google.devtools.build.lib.packages.util.MockPlatformSupport;
import com.google.devtools.build.lib.testutil.TestConstants;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests for platform-based toolchain selection in the c++ rules. */
@RunWith(JUnit4.class)
public class CcToolchainSelectionTest extends BuildViewTestCase {
@Before
public void setup() throws Exception {
MockPlatformSupport.addMockK8Platform(
mockToolsConfig, analysisMock.ccSupport().getMockCrosstoolLabel());
}
private static final String CPP_TOOLCHAIN_TYPE =
TestConstants.TOOLS_REPOSITORY + "//tools/cpp:toolchain_type";
@Test
public void testResolvedCcToolchain() throws Exception {
useConfiguration(
"--incompatible_enable_cc_toolchain_resolution",
"--experimental_platforms=//mock_platform:mock-k8-platform",
"--extra_toolchains=//mock_platform:toolchain_cc-compiler-k8");
ConfiguredTarget target =
ScratchAttributeWriter.fromLabelString(this, "cc_library", "//lib")
.setList("srcs", "a.cc")
.write();
CcToolchainProvider toolchain =
(CcToolchainProvider)
getRuleContext(target)
.getToolchainContext()
.forToolchainType(Label.parseAbsolute(CPP_TOOLCHAIN_TYPE, ImmutableMap.of()));
assertThat(Iterables.getOnlyElement(toolchain.getCompilerFiles()).getExecPathString())
.endsWith("k8");
}
@Test
public void testToolchainSelectionWithPlatforms() throws Exception {
useConfiguration(
"--incompatible_enable_cc_toolchain_resolution",
"--experimental_platforms=//mock_platform:mock-k8-platform",
"--extra_toolchains=//mock_platform:toolchain_cc-compiler-k8");
ConfiguredTarget target =
ScratchAttributeWriter.fromLabelString(this, "cc_library", "//lib")
.setList("srcs", "a.cc")
.write();
CcToolchainProvider toolchain =
(CcToolchainProvider)
getRuleContext(target)
.getToolchainContext()
.forToolchainType(Label.parseAbsolute(CPP_TOOLCHAIN_TYPE, ImmutableMap.of()));
assertThat(toolchain.getToolchainIdentifier()).endsWith("k8");
}
@Test
public void testIncompleteCcToolchain() throws Exception {
mockToolsConfig.create(
"incomplete_toolchain/BUILD",
"toolchain(",
" name = 'incomplete_toolchain_cc-compiler-piii',",
" toolchain_type = '" + CPP_TOOLCHAIN_TYPE + "',",
" toolchain = ':incomplete_cc-compiler-piii',",
" target_compatible_with = ['//mock_platform:mock_value']",
")",
"cc_toolchain(",
" name = 'incomplete_cc-compiler-piii',",
" cpu = 'piii',",
" ar_files = 'ar-piii',",
" as_files = 'as-piii',",
" compiler_files = 'compile-piii',",
" dwp_files = 'dwp-piii',",
" linker_files = 'link-piii',",
" strip_files = ':dummy_filegroup',",
" objcopy_files = 'objcopy-piii',",
" all_files = ':dummy_filegroup',",
")",
"filegroup(name = 'dummy_filegroup')");
useConfiguration(
"--incompatible_enable_cc_toolchain_resolution",
"--experimental_platforms=//mock_platform:mock-piii-platform",
"--extra_toolchains=//incomplete_toolchain:incomplete_toolchain_cc-compiler-piii");
// should not throw.
}
}