// 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.platform; import static com.google.common.truth.Truth.assertThat; import com.google.devtools.build.lib.analysis.ConfiguredTarget; import com.google.devtools.build.lib.analysis.platform.ConstraintSettingInfo; import com.google.devtools.build.lib.analysis.platform.ConstraintValueInfo; import com.google.devtools.build.lib.analysis.platform.PlatformInfo; import com.google.devtools.build.lib.analysis.platform.PlatformProviderUtils; import com.google.devtools.build.lib.analysis.util.BuildViewTestCase; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** Tests of {@link Platform}. */ @RunWith(JUnit4.class) public class PlatformTest extends BuildViewTestCase { @Rule public ExpectedException expectedException = ExpectedException.none(); @Before public void createPlatform() throws Exception { scratch.file( "constraint/BUILD", "constraint_setting(name = 'basic')", "constraint_value(name = 'foo',", " constraint_setting = ':basic',", " )", "platform(name = 'plat1',", " constraint_values = [", " ':foo',", " ])"); } @Test public void testPlatform() throws Exception { ConfiguredTarget platform = getConfiguredTarget("//constraint:plat1"); assertThat(platform).isNotNull(); PlatformInfo provider = PlatformProviderUtils.platform(platform); assertThat(provider).isNotNull(); assertThat(provider.constraints()).hasSize(1); ConstraintSettingInfo constraintSetting = ConstraintSettingInfo.create(makeLabel("//constraint:basic")); ConstraintValueInfo constraintValue = ConstraintValueInfo.create(constraintSetting, makeLabel("//constraint:foo")); assertThat(provider.constraints()).containsExactly(constraintValue); assertThat(provider.remoteExecutionProperties()).isEmpty(); } @Test public void testPlatform_autoconfig() throws Exception { useConfiguration("--host_cpu=piii", "--cpu=k8"); scratch.file( "autoconfig/BUILD", "constraint_setting(name = 'cpu')", "constraint_value(name = 'x86_32', constraint_setting = ':cpu')", "constraint_value(name = 'x86_64', constraint_setting = ':cpu')", "constraint_value(name = 'another_cpu', constraint_setting = ':cpu')", "constraint_setting(name = 'os')", "constraint_value(name = 'linux', constraint_setting = ':os')", "constraint_value(name = 'another_os', constraint_setting = ':os')", "platform(name = 'host_platform',", " host_platform = True,", " cpu_constraints = [':x86_32', 'x86_64', ':another_cpu'],", " os_constraints = [':linux', ':another_os'],", ")", "platform(name = 'target_platform',", " target_platform = True,", " cpu_constraints = [':x86_32', 'x86_64', ':another_cpu'],", " os_constraints = [':linux', ':another_os'],", ")"); // Check the host platform. ConfiguredTarget hostPlatform = getConfiguredTarget("//autoconfig:host_platform"); assertThat(hostPlatform).isNotNull(); PlatformInfo hostPlatformProvider = PlatformProviderUtils.platform(hostPlatform); assertThat(hostPlatformProvider).isNotNull(); // Check the CPU and OS. ConstraintSettingInfo cpuConstraint = ConstraintSettingInfo.create(makeLabel("//autoconfig:cpu")); ConstraintSettingInfo osConstraint = ConstraintSettingInfo.create(makeLabel("//autoconfig:os")); assertThat(hostPlatformProvider.constraints()) .containsExactly( ConstraintValueInfo.create(cpuConstraint, makeLabel("//autoconfig:x86_32")), ConstraintValueInfo.create(osConstraint, makeLabel("//autoconfig:linux"))); // Check the target platform. ConfiguredTarget targetPlatform = getConfiguredTarget("//autoconfig:target_platform"); assertThat(targetPlatform).isNotNull(); PlatformInfo targetPlatformProvider = PlatformProviderUtils.platform(targetPlatform); assertThat(targetPlatformProvider).isNotNull(); // Check the CPU and OS. assertThat(targetPlatformProvider.constraints()) .containsExactly( ConstraintValueInfo.create(cpuConstraint, makeLabel("//autoconfig:x86_64")), ConstraintValueInfo.create(osConstraint, makeLabel("//autoconfig:linux"))); } @Test public void testPlatform_overlappingConstraintValueError() throws Exception { checkError( "constraint/overlap", "plat_overlap", "Duplicate constraint_values detected: " + "constraint_setting //constraint:basic has " + "[//constraint:foo, //constraint/overlap:bar]", "constraint_value(name = 'bar',", " constraint_setting = '//constraint:basic',", " )", "platform(name = 'plat_overlap',", " constraint_values = [", " '//constraint:foo',", " ':bar',", " ])"); } @Test public void testPlatform_remoteExecution() throws Exception { scratch.file( "constraint/remote/BUILD", "platform(name = 'plat_remote',", " constraint_values = [", " '//constraint:foo',", " ],", " remote_execution_properties = 'foo: val1',", ")"); ConfiguredTarget platform = getConfiguredTarget("//constraint/remote:plat_remote"); assertThat(platform).isNotNull(); PlatformInfo provider = PlatformProviderUtils.platform(platform); assertThat(provider).isNotNull(); assertThat(provider.remoteExecutionProperties()).isEqualTo("foo: val1"); } }