blob: 06f6f8b721de417283db5d70bd5026cd5de6443b [file] [log] [blame]
// Copyright 2020 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.buildtool;
import static org.junit.Assert.assertThrows;
import com.google.devtools.build.lib.analysis.ViewCreationFailedException;
import com.google.devtools.build.lib.analysis.util.AnalysisMock;
import com.google.devtools.build.lib.buildtool.util.BuildIntegrationTestCase;
import com.google.devtools.build.lib.testutil.Suite;
import com.google.devtools.build.lib.testutil.TestSpec;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* Integration test for package groups and visibility.
*/
@TestSpec(size = Suite.MEDIUM_TESTS)
@RunWith(JUnit4.class)
public class PackageGroupIntegrationTest extends BuildIntegrationTestCase {
@Before
public final void setUpToolsConfigMock() throws Exception {
AnalysisMock.get().pySupport().setup(mockToolsConfig);
}
@Test
public void testSimpleDeny() throws Exception {
write("z/BUILD", "package_group(name='bs', packages=['//z/c'])");
write("z/a/BUILD", "py_library(name='a', visibility=['//z:bs'])");
write("z/b/BUILD", "py_library(name='b', deps=['//z/a:a'])");
assertThrows(ViewCreationFailedException.class, () -> buildTarget("//z/b:b"));
}
@Test
public void testSimpleAllow() throws Exception {
write("z/BUILD",
"package_group(name='bs', packages=['//z/b'])");
write("z/a/BUILD",
"py_library(name='a', visibility=['//z:bs'])");
write("z/b/BUILD",
"py_library(name='b', deps=['//z/a:a'])");
buildTarget("//z/b:b");
}
@Test
public void testNoticesPackageGroupChangedToOk() throws Exception {
write("z/BUILD", "package_group(name='bs', packages=['//z/c'])");
write("z/a/BUILD", "py_library(name='a', visibility=['//z:bs'])");
write("z/b/BUILD", "py_library(name='b', deps=['//z/a:a'])");
assertThrows(ViewCreationFailedException.class, () -> buildTarget("//z/b:b"));
waitForTimestampGranularity();
write("z/BUILD",
"package_group(name='bs', packages=['//z/b'])");
buildTarget("//z/b:b");
}
@Test
public void testNoticesPackageGroupChangedToBad() throws Exception {
write("z/BUILD",
"package_group(name='bs', packages=['//z/b'])");
write("z/a/BUILD",
"py_library(name='a', visibility=['//z:bs'])");
write("z/b/BUILD",
"py_library(name='b', deps=['//z/a:a'])");
buildTarget("//z/b:b");
waitForTimestampGranularity();
write("z/BUILD", "package_group(name='bs', packages=['//z/c'])");
assertThrows(ViewCreationFailedException.class, () -> buildTarget("//z/b:b"));
}
@Test
public void testNoticesChangeInDefaultVisibility() throws Exception {
write("z/BUILD", "package_group(name='bs', packages=['//z/c'])");
write("z/a/BUILD", "package(default_visibility=['//z:bs'])", "py_library(name='a')");
write("z/b/BUILD", "py_library(name='b', deps=['//z/a:a'])");
assertThrows(ViewCreationFailedException.class, () -> buildTarget("//z/b:b"));
waitForTimestampGranularity();
write("z/BUILD",
"package_group(name='bs', packages=['//z/b'])");
buildTarget("//z/b:b");
}
// Regression test for bug #2214243:
// "'package' keyword is not handled correctly for BUILD files which...
@Test
public void testPackageFunctionPresent() throws Exception {
write("boa/BUILD",
"# PYTHON-PREPROCESSING-REQUIRED",
"package(default_visibility=['//visibility:private'])",
"py_library(name='boa')");
buildTarget("//boa:boa");
}
// Regression test for bug #16303057: Building a package_group directly results in NPE
@Test
public void testPackageGroupBuildDirectly() throws Exception {
write("npe/BUILD",
"package_group(name = 'npe', packages = ['//npe'])");
buildTarget("//npe");
}
}