aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/skyframe
diff options
context:
space:
mode:
authorGravatar fwe <fwe@google.com>2018-02-19 05:27:53 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-02-19 05:29:44 -0800
commit7fe59b98eefc96a6310f0b0221d4e0f18e2a9000 (patch)
treedebd15909cdcd940cf3cf84d26b0b7d8aad84a1f /src/test/java/com/google/devtools/build/lib/skyframe
parentb3d52b1b6d46a0f23cc91125c1d522e9d13433b4 (diff)
Automated rollback of commit cce164aed44aba1de244f0d764cd33a5cc6980b2.
PiperOrigin-RevId: 186211672
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/skyframe')
-rw-r--r--src/test/java/com/google/devtools/build/lib/skyframe/TransitiveBaseTraversalFunctionTest.java134
1 files changed, 0 insertions, 134 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/TransitiveBaseTraversalFunctionTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/TransitiveBaseTraversalFunctionTest.java
deleted file mode 100644
index 665e706e7f..0000000000
--- a/src/test/java/com/google/devtools/build/lib/skyframe/TransitiveBaseTraversalFunctionTest.java
+++ /dev/null
@@ -1,134 +0,0 @@
-// Copyright 2018 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.skyframe;
-
-import static com.google.common.truth.Truth.assertThat;
-import static org.mockito.Mockito.when;
-
-import com.google.common.collect.ImmutableMap;
-import com.google.devtools.build.lib.analysis.util.BuildViewTestCase;
-import com.google.devtools.build.lib.cmdline.Label;
-import com.google.devtools.build.lib.cmdline.PackageIdentifier;
-import com.google.devtools.build.lib.packages.NoSuchPackageException;
-import com.google.devtools.build.lib.packages.NoSuchTargetException;
-import com.google.devtools.build.lib.packages.Package;
-import com.google.devtools.build.lib.skyframe.TransitiveBaseTraversalFunction.TargetAndErrorIfAnyImpl;
-import com.google.devtools.build.lib.testutil.TestRuleClassProvider;
-import com.google.devtools.build.lib.util.GroupedList;
-import com.google.devtools.build.lib.util.GroupedList.GroupedListHelper;
-import com.google.devtools.build.lib.vfs.Path;
-import com.google.devtools.build.skyframe.SkyFunction;
-import com.google.devtools.build.skyframe.SkyKey;
-import java.util.concurrent.atomic.AtomicBoolean;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.junit.runners.JUnit4;
-import org.mockito.Mockito;
-
-/** Test for {@link TransitiveBaseTraversalFunction}. */
-@RunWith(JUnit4.class)
-public class TransitiveBaseTraversalFunctionTest extends BuildViewTestCase {
- Label label;
- TargetAndErrorIfAnyImpl targetAndErrorIfAny;
-
- @Before
- public void setUp() throws Exception {
- // Create a basic package with a target //foo:foo.
- label = Label.parseAbsolute("//foo:foo");
- Package pkg =
- scratchPackage(
- "workspace",
- label.getPackageIdentifier(),
- "sh_library(name = '" + label.getName() + "')");
- targetAndErrorIfAny =
- new TargetAndErrorIfAnyImpl(
- /*packageLoadedSuccessfully=*/ true,
- /*errorLoadingTarget=*/ null,
- pkg.getTarget(label.getName()));
- }
-
- @Test
- public void assertNoLabelVisitationForTransitiveTraversalFunction() throws Exception {
- assertNoLabelVisitationForFunction(
- new TransitiveTraversalFunction() {
- @Override
- protected LoadTargetResults loadTarget(Environment env, Label label)
- throws NoSuchTargetException, NoSuchPackageException, InterruptedException {
- return targetAndErrorIfAny;
- }
- });
- }
-
- @Test
- public void assertNoLabelVisitationForTransitiveTargetFunction() throws Exception {
- assertNoLabelVisitationForFunction(
- new TransitiveTargetFunction(TestRuleClassProvider.getRuleClassProvider()) {
- @Override
- protected LoadTargetResults loadTarget(Environment env, Label label)
- throws NoSuchTargetException, NoSuchPackageException, InterruptedException {
- return targetAndErrorIfAny;
- }
- });
- }
-
- private void assertNoLabelVisitationForFunction(TransitiveBaseTraversalFunction<?> function)
- throws Exception {
- // Create the GroupedList saying we had already requested two targets the last time we called
- // #compute.
- GroupedListHelper<SkyKey> helper = new GroupedListHelper<>();
- SkyKey fakeDep1 = function.getKey(Label.parseAbsolute("//foo:bar"));
- SkyKey fakeDep2 = function.getKey(Label.parseAbsolute("//foo:baz"));
- helper.add(TargetMarkerValue.key(label));
- helper.add(PackageValue.key(label.getPackageIdentifier()));
- helper.startGroup();
- // Note that these targets don't actually exist in the package we created initially. It doesn't
- // matter for the purpose of this test, the original package was just to create some objects
- // that we needed.
- helper.add(fakeDep1);
- helper.add(fakeDep2);
- helper.endGroup();
- GroupedList<SkyKey> groupedList = new GroupedList<>();
- groupedList.append(helper);
- AtomicBoolean wasOptimizationUsed = new AtomicBoolean(false);
- SkyFunction.Environment mockEnv = Mockito.mock(SkyFunction.Environment.class);
- when(mockEnv.getTemporaryDirectDeps()).thenReturn(groupedList);
- when(mockEnv.getValuesOrThrow(
- groupedList.get(2), NoSuchPackageException.class, NoSuchTargetException.class))
- .thenAnswer(
- (invocationOnMock) -> {
- wasOptimizationUsed.set(true);
- // It doesn't matter what this map is, we'll return false in the valuesMissing() call.
- return ImmutableMap.of();
- });
- when(mockEnv.valuesMissing()).thenReturn(true);
-
- // Run the compute function and check that we returned null.
- assertThat(function.compute(function.getKey(label), mockEnv)).isNull();
-
- // Verify that the mock was called with the arguments we expected.
- assertThat(wasOptimizationUsed.get()).isTrue();
- }
-
- private Package scratchPackage(String workspaceName, PackageIdentifier packageId, String... lines)
- throws Exception {
- Path buildFile = scratch.file("" + packageId.getSourceRoot() + "/BUILD", lines);
- Package.Builder externalPkg =
- Package.newExternalPackageBuilder(
- Package.Builder.DefaultHelper.INSTANCE, buildFile.getRelative("WORKSPACE"), "TESTING");
- externalPkg.setWorkspaceName(workspaceName);
- return pkgFactory.createPackageForTesting(
- packageId, externalPkg.build(), buildFile, packageIdentifier -> buildFile, reporter);
- }
-}