// Copyright 2016 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.test; import static com.google.common.truth.Truth.assertThat; import com.google.devtools.build.lib.analysis.ConfiguredTarget; import com.google.devtools.build.lib.analysis.util.BuildViewTestCase; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** Tests for Skylark interaction with testing support. */ @RunWith(JUnit4.class) public class SkylarkTestingModuleTest extends BuildViewTestCase { @Test public void testSkylarkRulePropagatesExecutionInfoProvider() throws Exception { scratch.file("examples/rule/BUILD"); scratch.file( "examples/rule/apple_rules.bzl", "def my_rule_impl(ctx):", " exec_info = testing.ExecutionInfo({'requires-darwin': '1'})", " return [exec_info]", "my_rule = rule(implementation = my_rule_impl,", " attrs = {},", ")"); scratch.file( "examples/apple_skylark/BUILD", "package(default_visibility = ['//visibility:public'])", "load('/examples/rule/apple_rules', 'my_rule')", "my_rule(", " name = 'my_target',", ")"); ConfiguredTarget skylarkTarget = getConfiguredTarget("//examples/apple_skylark:my_target"); ExecutionInfoProvider provider = (ExecutionInfoProvider) skylarkTarget.get(ExecutionInfoProvider.SKYLARK_CONSTRUCTOR.getKey()); assertThat(provider.getExecutionInfo().get("requires-darwin")).isEqualTo("1"); } @Test public void testSkylarkRulePropagatesTestEnvironmentProvider() throws Exception { scratch.file("examples/rule/BUILD"); scratch.file( "examples/rule/apple_rules.bzl", "def my_rule_impl(ctx):", " test_env = testing.TestEnvironment({'XCODE_VERSION_OVERRIDE': '7.3.1'})", " return [test_env]", "my_rule = rule(implementation = my_rule_impl,", " attrs = {},", ")"); scratch.file( "examples/apple_skylark/BUILD", "package(default_visibility = ['//visibility:public'])", "load('/examples/rule/apple_rules', 'my_rule')", "my_rule(", " name = 'my_target',", ")"); ConfiguredTarget skylarkTarget = getConfiguredTarget("//examples/apple_skylark:my_target"); TestEnvironmentProvider provider = (TestEnvironmentProvider) skylarkTarget.get(TestEnvironmentProvider.SKYLARK_CONSTRUCTOR.getKey()); assertThat(provider.getEnvironment().get("XCODE_VERSION_OVERRIDE")).isEqualTo("7.3.1"); } @Test public void testExecutionInfoProviderCanMarkTestAsLocal() throws Exception { scratch.file("examples/rule/BUILD"); scratch.file( "examples/rule/apple_rules.bzl", "def my_rule_test_impl(ctx):", " exec_info = testing.ExecutionInfo({'local': ''})", " ctx.file_action(ctx.outputs.executable, '', True)", " return [exec_info]", "my_rule_test = rule(implementation = my_rule_test_impl,", " test = True,", " attrs = {},", ")"); scratch.file( "examples/apple_skylark/BUILD", "package(default_visibility = ['//visibility:public'])", "load('/examples/rule/apple_rules', 'my_rule_test')", "my_rule_test(", " name = 'my_target',", ")"); ConfiguredTarget skylarkTarget = getConfiguredTarget("//examples/apple_skylark:my_target"); TestRunnerAction testAction = (TestRunnerAction) getGeneratingAction( TestProvider.getTestStatusArtifacts(skylarkTarget).get(0)); assertThat(testAction.getTestProperties().isLocal()).isTrue(); } }