blob: 7ef96779fda2a1e9c6a1c5e77a8dd1d4a6c229ac [file] [log] [blame]
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +00001// Copyright 2015 The Bazel Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14package com.google.devtools.build.lib.skyframe;
15
Florian Weikert92b22362015-12-03 10:17:18 +000016import static org.junit.Assert.assertSame;
Florian Weikert92b22362015-12-03 10:17:18 +000017
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000018import com.google.common.collect.ImmutableList;
19import com.google.common.collect.Sets;
20import com.google.devtools.build.lib.actions.AbstractAction;
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000021import com.google.devtools.build.lib.actions.ActionExecutionContext;
22import com.google.devtools.build.lib.actions.ActionExecutionException;
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000023import com.google.devtools.build.lib.actions.Artifact;
24import com.google.devtools.build.lib.actions.Executor;
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000025import com.google.devtools.build.lib.actions.util.ActionsTestUtil;
26import com.google.devtools.build.lib.actions.util.DummyExecutor;
27import com.google.devtools.build.lib.vfs.FileSystemUtils;
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000028import java.io.IOException;
29import java.util.Collection;
30import java.util.Set;
Lukacs Berki5ea2b142017-02-28 10:46:53 +000031import org.junit.Test;
32import org.junit.runner.RunWith;
33import org.junit.runners.JUnit4;
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000034
35/**
36 * Tests that the data passed from the application to the Builder is passed
37 * down to each Action executed.
38 */
Florian Weikert92b22362015-12-03 10:17:18 +000039@RunWith(JUnit4.class)
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000040public class ActionDataTest extends TimestampBuilderTestCase {
41
Florian Weikert92b22362015-12-03 10:17:18 +000042 @Test
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000043 public void testArgumentToBuildArtifactsIsPassedDownToAction() throws Exception {
44
45 class MyAction extends AbstractAction {
46
47 Object executor = null;
48
49 public MyAction(Collection<Artifact> outputs) {
50 super(ActionsTestUtil.NULL_ACTION_OWNER, ImmutableList.<Artifact>of(), outputs);
51 }
52
53 @Override
54 public void execute(ActionExecutionContext actionExecutionContext)
55 throws ActionExecutionException {
56 this.executor = actionExecutionContext.getExecutor();
57 try {
58 FileSystemUtils.createEmptyFile(getPrimaryOutput().getPath());
59 } catch (IOException e) {
60 throw new ActionExecutionException("failed: ", e, this, false);
61 }
62 }
63
64 @Override
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000065 protected String computeKey() {
66 return "MyAction";
67 }
68
69 @Override
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000070 public String getMnemonic() {
71 return "MyAction";
72 }
73 }
74
75 Artifact output = createDerivedArtifact("foo");
76 Set<Artifact> outputs = Sets.newHashSet(output);
77
78 MyAction action = new MyAction(outputs);
79 registerAction(action);
80
81 Executor executor = new DummyExecutor(scratch.dir("/"));
82 amnesiacBuilder()
83 .buildArtifacts(
Googlerbfd4e242016-07-15 22:23:37 +000084 reporter, outputs, null, null, null, null, executor, null, /*explain=*/ false, null,
85 null);
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000086 assertSame(executor, action.executor);
87
88 executor = new DummyExecutor(scratch.dir("/"));
89 amnesiacBuilder()
90 .buildArtifacts(
Googlerbfd4e242016-07-15 22:23:37 +000091 reporter, outputs, null, null, null, null, executor, null, /*explain=*/ false, null,
92 null);
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000093 assertSame(executor, action.executor);
94 }
Han-Wen Nienhuys81b90832015-10-26 16:57:27 +000095}