Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 1 | // 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. |
| 14 | package com.google.devtools.build.lib.skyframe; |
| 15 | |
Florian Weikert | 92b2236 | 2015-12-03 10:17:18 +0000 | [diff] [blame] | 16 | import static org.junit.Assert.assertSame; |
Florian Weikert | 92b2236 | 2015-12-03 10:17:18 +0000 | [diff] [blame] | 17 | |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 18 | import com.google.common.collect.ImmutableList; |
| 19 | import com.google.common.collect.Sets; |
| 20 | import com.google.devtools.build.lib.actions.AbstractAction; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 21 | import com.google.devtools.build.lib.actions.ActionExecutionContext; |
| 22 | import com.google.devtools.build.lib.actions.ActionExecutionException; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 23 | import com.google.devtools.build.lib.actions.Artifact; |
| 24 | import com.google.devtools.build.lib.actions.Executor; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 25 | import com.google.devtools.build.lib.actions.util.ActionsTestUtil; |
| 26 | import com.google.devtools.build.lib.actions.util.DummyExecutor; |
| 27 | import com.google.devtools.build.lib.vfs.FileSystemUtils; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 28 | import java.io.IOException; |
| 29 | import java.util.Collection; |
| 30 | import java.util.Set; |
Lukacs Berki | 5ea2b14 | 2017-02-28 10:46:53 +0000 | [diff] [blame] | 31 | import org.junit.Test; |
| 32 | import org.junit.runner.RunWith; |
| 33 | import org.junit.runners.JUnit4; |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 34 | |
| 35 | /** |
| 36 | * Tests that the data passed from the application to the Builder is passed |
| 37 | * down to each Action executed. |
| 38 | */ |
Florian Weikert | 92b2236 | 2015-12-03 10:17:18 +0000 | [diff] [blame] | 39 | @RunWith(JUnit4.class) |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 40 | public class ActionDataTest extends TimestampBuilderTestCase { |
| 41 | |
Florian Weikert | 92b2236 | 2015-12-03 10:17:18 +0000 | [diff] [blame] | 42 | @Test |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 43 | 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 Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 65 | protected String computeKey() { |
| 66 | return "MyAction"; |
| 67 | } |
| 68 | |
| 69 | @Override |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 70 | 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( |
Googler | bfd4e24 | 2016-07-15 22:23:37 +0000 | [diff] [blame] | 84 | reporter, outputs, null, null, null, null, executor, null, /*explain=*/ false, null, |
| 85 | null); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 86 | assertSame(executor, action.executor); |
| 87 | |
| 88 | executor = new DummyExecutor(scratch.dir("/")); |
| 89 | amnesiacBuilder() |
| 90 | .buildArtifacts( |
Googler | bfd4e24 | 2016-07-15 22:23:37 +0000 | [diff] [blame] | 91 | reporter, outputs, null, null, null, null, executor, null, /*explain=*/ false, null, |
| 92 | null); |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 93 | assertSame(executor, action.executor); |
| 94 | } |
Han-Wen Nienhuys | 81b9083 | 2015-10-26 16:57:27 +0000 | [diff] [blame] | 95 | } |