blob: cef3adc337b34dd7afd870a0d3c53cad53bcf4ae [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.rules.python;
import static com.google.common.truth.Truth.assertThat;
import com.google.devtools.build.lib.actions.util.ActionsTestUtil;
import com.google.devtools.build.lib.analysis.util.BuildViewTestCase;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests for {@code py_runtime}. */
@RunWith(JUnit4.class)
public class PyRuntimeConfiguredTargetTest extends BuildViewTestCase {
@Before
public final void setUpPython() throws Exception {
analysisMock.pySupport().setup(mockToolsConfig);
}
@Test
public void hermeticRuntime() throws Exception {
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" files = [':myfile'],",
" interpreter = ':myinterpreter',",
" python_version = 'PY2',",
")");
PyRuntimeInfo info = getConfiguredTarget("//pkg:myruntime").get(PyRuntimeInfo.PROVIDER);
assertThat(info.isInBuild()).isTrue();
assertThat(info.getInterpreterPath()).isNull();
assertThat(info.getInterpreter().getExecPathString()).isEqualTo("pkg/myinterpreter");
assertThat(ActionsTestUtil.baseArtifactNames(info.getFiles())).containsExactly("myfile");
assertThat(info.getPythonVersion()).isEqualTo(PythonVersion.PY2);
}
@Test
public void nonhermeticRuntime() throws Exception {
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" interpreter_path = '/system/interpreter',",
" python_version = 'PY2',",
")");
PyRuntimeInfo info = getConfiguredTarget("//pkg:myruntime").get(PyRuntimeInfo.PROVIDER);
assertThat(info.isInBuild()).isFalse();
assertThat(info.getInterpreterPath().getPathString()).isEqualTo("/system/interpreter");
assertThat(info.getInterpreter()).isNull();
assertThat(info.getFiles()).isNull();
assertThat(info.getPythonVersion()).isEqualTo(PythonVersion.PY2);
}
@Test
public void pythonVersionDefault() throws Exception {
// When using toolchains, the python_version attribute is mandatory.
useConfiguration("--incompatible_use_python_toolchains=false");
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime_default',",
" interpreter_path = '/default/interpreter',",
")",
"py_runtime(",
" name = 'myruntime_explicit',",
" interpreter_path = '/explicit/interpreter',",
" python_version = 'PY2',",
")");
PyRuntimeInfo infoDefault =
getConfiguredTarget("//pkg:myruntime_default").get(PyRuntimeInfo.PROVIDER);
PyRuntimeInfo infoExplicit =
getConfiguredTarget("//pkg:myruntime_explicit").get(PyRuntimeInfo.PROVIDER);
assertThat(infoDefault.getPythonVersion()).isEqualTo(PythonVersion.PY3);
assertThat(infoExplicit.getPythonVersion()).isEqualTo(PythonVersion.PY2);
}
@Test
public void cannotUseBothInterpreterAndPath() throws Exception {
reporter.removeHandler(failFastHandler);
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" interpreter = ':myinterpreter',",
" interpreter_path = '/system/interpreter',",
" python_version = 'PY2',",
")");
getConfiguredTarget("//pkg:myruntime");
assertContainsEvent(
"exactly one of the 'interpreter' or 'interpreter_path' attributes must be specified");
}
@Test
public void mustUseEitherInterpreterOrPath() throws Exception {
reporter.removeHandler(failFastHandler);
scratch.file(
"pkg/BUILD", //
"py_runtime(",
" name = 'myruntime',",
" python_version = 'PY2',",
")");
getConfiguredTarget("//pkg:myruntime");
assertContainsEvent(
"exactly one of the 'interpreter' or 'interpreter_path' attributes must be specified");
}
@Test
public void interpreterPathMustBeAbsolute() throws Exception {
reporter.removeHandler(failFastHandler);
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" interpreter_path = 'some/relative/path',",
" python_version = 'PY2',",
")");
getConfiguredTarget("//pkg:myruntime");
assertContainsEvent("must be an absolute path");
}
@Test
public void cannotSpecifyFilesForNonhermeticRuntime() throws Exception {
reporter.removeHandler(failFastHandler);
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" files = [':myfile'],",
" interpreter_path = '/system/interpreter',",
" python_version = 'PY2',",
")");
getConfiguredTarget("//pkg:myruntime");
assertContainsEvent("if 'interpreter_path' is given then 'files' must be empty");
}
@Test
public void badPythonVersionAttribute() throws Exception {
reporter.removeHandler(failFastHandler);
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" interpreter_path = '/system/interpreter',",
" python_version = 'not a Python version',",
")");
getConfiguredTarget("//pkg:myruntime");
assertContainsEvent("invalid value in 'python_version' attribute");
}
@Test
public void versionAttributeMandatoryWhenUsingToolchains() throws Exception {
reporter.removeHandler(failFastHandler);
useConfiguration("--incompatible_use_python_toolchains=true");
scratch.file(
"pkg/BUILD",
"py_runtime(",
" name = 'myruntime',",
" interpreter_path = '/system/interpreter',",
")");
getConfiguredTarget("//pkg:myruntime");
assertContainsEvent("must be set explicitly to either 'PY2' or 'PY3'");
}
}