Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +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.standalone; |
| 15 | |
| 16 | import static com.google.common.truth.Truth.assertThat; |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 17 | import static com.google.common.truth.Truth.assertWithMessage; |
jcater | 7472b37 | 2019-04-30 07:40:50 -0700 | [diff] [blame^] | 18 | import static com.google.devtools.build.lib.testutil.MoreAsserts.assertThrows; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 19 | |
| 20 | import com.google.common.collect.ImmutableList; |
| 21 | import com.google.common.collect.ImmutableMap; |
| 22 | import com.google.common.collect.Sets; |
| 23 | import com.google.common.eventbus.EventBus; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 24 | import com.google.devtools.build.lib.actions.ActionExecutionContext; |
ulfjack | 5b99e50 | 2017-07-20 22:22:36 +0200 | [diff] [blame] | 25 | import com.google.devtools.build.lib.actions.ActionInputPrefetcher; |
tomlu | 3d1a194 | 2017-11-29 14:01:21 -0800 | [diff] [blame] | 26 | import com.google.devtools.build.lib.actions.ActionKeyContext; |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 27 | import com.google.devtools.build.lib.actions.Artifact; |
| 28 | import com.google.devtools.build.lib.actions.Artifact.ArtifactExpander; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 29 | import com.google.devtools.build.lib.actions.ExecException; |
Ulf Adams | cddaaa6 | 2017-03-02 17:32:28 +0000 | [diff] [blame] | 30 | import com.google.devtools.build.lib.actions.ResourceManager; |
| 31 | import com.google.devtools.build.lib.actions.ResourceSet; |
ulfjack | 4d7f8f7 | 2017-11-29 03:37:04 -0800 | [diff] [blame] | 32 | import com.google.devtools.build.lib.actions.SimpleSpawn; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 33 | import com.google.devtools.build.lib.actions.Spawn; |
| 34 | import com.google.devtools.build.lib.actions.SpawnActionContext; |
ruperts | 4050a89 | 2017-10-07 00:46:20 +0200 | [diff] [blame] | 35 | import com.google.devtools.build.lib.actions.SpawnResult; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 36 | import com.google.devtools.build.lib.actions.util.ActionsTestUtil; |
| 37 | import com.google.devtools.build.lib.analysis.BlazeDirectories; |
janakr | 3b63a4e | 2017-09-14 09:55:40 +0200 | [diff] [blame] | 38 | import com.google.devtools.build.lib.analysis.ServerDirectories; |
philwo | 3bcb9f6 | 2017-09-06 12:52:21 +0200 | [diff] [blame] | 39 | import com.google.devtools.build.lib.clock.BlazeClock; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 40 | import com.google.devtools.build.lib.events.PrintingEventHandler; |
| 41 | import com.google.devtools.build.lib.events.Reporter; |
felly | 472320c | 2018-10-29 14:27:00 -0700 | [diff] [blame] | 42 | import com.google.devtools.build.lib.exec.BinTools; |
Ulf Adams | dba3c83 | 2016-12-21 16:50:02 +0000 | [diff] [blame] | 43 | import com.google.devtools.build.lib.exec.BlazeExecutor; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 44 | import com.google.devtools.build.lib.exec.ExecutionOptions; |
| 45 | import com.google.devtools.build.lib.exec.SingleBuildFileCache; |
Googler | 3b9e152 | 2018-03-26 11:03:30 -0700 | [diff] [blame] | 46 | import com.google.devtools.build.lib.exec.SpawnActionContextMaps; |
ulfjack | 19befaf | 2017-07-24 11:09:40 +0200 | [diff] [blame] | 47 | import com.google.devtools.build.lib.exec.local.LocalEnvProvider; |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 48 | import com.google.devtools.build.lib.exec.local.LocalExecutionOptions; |
ulfjack | 19befaf | 2017-07-24 11:09:40 +0200 | [diff] [blame] | 49 | import com.google.devtools.build.lib.exec.local.LocalSpawnRunner; |
Ulf Adams | 6447ad9 | 2016-11-18 09:55:47 +0000 | [diff] [blame] | 50 | import com.google.devtools.build.lib.integration.util.IntegrationMock; |
kchodorow | 85ae190 | 2017-04-22 15:07:22 -0400 | [diff] [blame] | 51 | import com.google.devtools.build.lib.testutil.TestConstants; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 52 | import com.google.devtools.build.lib.testutil.TestUtils; |
Dmitry Lomov | 9d74eba | 2015-11-26 11:04:01 +0000 | [diff] [blame] | 53 | import com.google.devtools.build.lib.util.OS; |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 54 | import com.google.devtools.build.lib.util.io.FileOutErr; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 55 | import com.google.devtools.build.lib.vfs.FileSystem; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 56 | import com.google.devtools.build.lib.vfs.Path; |
| 57 | import com.google.devtools.build.lib.vfs.util.FileSystems; |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 58 | import com.google.devtools.common.options.Options; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 59 | import com.google.devtools.common.options.OptionsParser; |
Klaus Aehlig | d2fcd9d | 2016-08-26 08:16:25 +0000 | [diff] [blame] | 60 | import java.io.IOException; |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 61 | import java.util.Collection; |
ruperts | 7967f33 | 2017-11-21 16:37:13 -0800 | [diff] [blame] | 62 | import java.util.List; |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 63 | import org.junit.Before; |
| 64 | import org.junit.Test; |
| 65 | import org.junit.runner.RunWith; |
| 66 | import org.junit.runners.JUnit4; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 67 | |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 68 | /** |
| 69 | * Test StandaloneSpawnStrategy. |
| 70 | */ |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 71 | @RunWith(JUnit4.class) |
| 72 | public class StandaloneSpawnStrategyTest { |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 73 | private static final ArtifactExpander SIMPLE_ARTIFACT_EXPANDER = |
| 74 | new ArtifactExpander() { |
| 75 | @Override |
| 76 | public void expand(Artifact artifact, Collection<? super Artifact> output) { |
| 77 | output.add(artifact); |
| 78 | } |
| 79 | }; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 80 | |
Klaus Aehlig | 777b30d | 2017-02-24 16:30:15 +0000 | [diff] [blame] | 81 | private Reporter reporter = |
| 82 | new Reporter(new EventBus(), PrintingEventHandler.ERRORS_AND_WARNINGS_TO_STDERR); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 83 | private BlazeExecutor executor; |
| 84 | private FileSystem fileSystem; |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 85 | private FileOutErr outErr; |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 86 | |
| 87 | private Path createTestRoot() throws IOException { |
Yun Peng | 22eb332 | 2016-06-21 14:38:12 +0000 | [diff] [blame] | 88 | fileSystem = FileSystems.getNativeFileSystem(); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 89 | Path testRoot = fileSystem.getPath(TestUtils.tmpDir()); |
| 90 | try { |
jmmv | 5cc1f65 | 2019-03-20 09:34:08 -0700 | [diff] [blame] | 91 | testRoot.deleteTreesBelow(); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 92 | } catch (IOException e) { |
| 93 | System.err.println("Failed to remove directory " + testRoot + ": " + e.getMessage()); |
| 94 | throw e; |
| 95 | } |
| 96 | return testRoot; |
| 97 | } |
| 98 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 99 | @Before |
| 100 | public final void setUp() throws Exception { |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 101 | Path testRoot = createTestRoot(); |
Ulf Adams | 015aad9 | 2016-07-13 16:49:40 +0000 | [diff] [blame] | 102 | Path workspaceDir = testRoot.getRelative("workspace-name"); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 103 | workspaceDir.createDirectory(); |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 104 | outErr = new FileOutErr(testRoot.getRelative("stdout"), testRoot.getRelative("stderr")); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 105 | |
| 106 | // setup output base & directories |
| 107 | Path outputBase = testRoot.getRelative("outputBase"); |
| 108 | outputBase.createDirectory(); |
| 109 | |
Ulf Adams | 84e1032 | 2016-07-13 17:23:33 +0000 | [diff] [blame] | 110 | BlazeDirectories directories = |
janakr | 3b63a4e | 2017-09-14 09:55:40 +0200 | [diff] [blame] | 111 | new BlazeDirectories( |
Klaus Aehlig | c2499c4 | 2018-02-27 05:47:21 -0800 | [diff] [blame] | 112 | new ServerDirectories(outputBase, outputBase, outputBase), |
| 113 | workspaceDir, |
cushon | 849df36 | 2018-05-14 01:51:45 -0700 | [diff] [blame] | 114 | /* defaultSystemJavabase= */ null, |
Klaus Aehlig | c2499c4 | 2018-02-27 05:47:21 -0800 | [diff] [blame] | 115 | "mock-product-name"); |
Ulf Adams | 6447ad9 | 2016-11-18 09:55:47 +0000 | [diff] [blame] | 116 | // This call implicitly symlinks the integration bin tools into the exec root. |
felly | 472320c | 2018-10-29 14:27:00 -0700 | [diff] [blame] | 117 | IntegrationMock.get().getIntegrationBinTools(fileSystem, directories); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 118 | OptionsParser optionsParser = OptionsParser.newOptionsParser(ExecutionOptions.class); |
| 119 | optionsParser.parse("--verbose_failures"); |
ulfjack | acd291a | 2017-06-16 15:25:42 +0200 | [diff] [blame] | 120 | LocalExecutionOptions localExecutionOptions = Options.getDefaults(LocalExecutionOptions.class); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 121 | |
Ulf Adams | cddaaa6 | 2017-03-02 17:32:28 +0000 | [diff] [blame] | 122 | ResourceManager resourceManager = ResourceManager.instanceForTestingOnly(); |
| 123 | resourceManager.setAvailableResources( |
ulfjack | 4f18986 | 2018-10-26 09:59:33 -0700 | [diff] [blame] | 124 | ResourceSet.create(/*memoryMb=*/1, /*cpuUsage=*/1, /*localTestCount=*/1)); |
kchodorow | 85ae190 | 2017-04-22 15:07:22 -0400 | [diff] [blame] | 125 | Path execRoot = directories.getExecRoot(TestConstants.WORKSPACE_NAME); |
Ulf Adams | 84e1032 | 2016-07-13 17:23:33 +0000 | [diff] [blame] | 126 | this.executor = |
| 127 | new BlazeExecutor( |
tomlu | f903eb5 | 2017-10-27 12:12:11 -0400 | [diff] [blame] | 128 | fileSystem, |
kchodorow | 85ae190 | 2017-04-22 15:07:22 -0400 | [diff] [blame] | 129 | execRoot, |
Ulf Adams | 84e1032 | 2016-07-13 17:23:33 +0000 | [diff] [blame] | 130 | reporter, |
Ulf Adams | 84e1032 | 2016-07-13 17:23:33 +0000 | [diff] [blame] | 131 | BlazeClock.instance(), |
| 132 | optionsParser, |
Googler | 3b9e152 | 2018-03-26 11:03:30 -0700 | [diff] [blame] | 133 | SpawnActionContextMaps.createStub( |
| 134 | ImmutableList.of(), |
philwo | 207ac6e | 2019-02-20 12:44:06 -0800 | [diff] [blame] | 135 | ImmutableMap.of( |
Googler | 3b9e152 | 2018-03-26 11:03:30 -0700 | [diff] [blame] | 136 | "", |
philwo | 207ac6e | 2019-02-20 12:44:06 -0800 | [diff] [blame] | 137 | ImmutableList.of( |
| 138 | new StandaloneSpawnStrategy( |
Googler | 3b9e152 | 2018-03-26 11:03:30 -0700 | [diff] [blame] | 139 | execRoot, |
philwo | 207ac6e | 2019-02-20 12:44:06 -0800 | [diff] [blame] | 140 | new LocalSpawnRunner( |
| 141 | execRoot, |
| 142 | localExecutionOptions, |
| 143 | resourceManager, |
| 144 | LocalEnvProvider.UNMODIFIED, |
| 145 | BinTools.forIntegrationTesting( |
| 146 | directories, ImmutableList.of())))))), |
| 147 | ImmutableList.of()); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 148 | |
ulfjack | 9f6995a | 2018-02-09 04:34:48 -0800 | [diff] [blame] | 149 | executor.getExecRoot().createDirectoryAndParents(); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | private Spawn createSpawn(String... arguments) { |
ulfjack | 4d7f8f7 | 2017-11-29 03:37:04 -0800 | [diff] [blame] | 153 | return new SimpleSpawn( |
Ulf Adams | cddaaa6 | 2017-03-02 17:32:28 +0000 | [diff] [blame] | 154 | new ActionsTestUtil.NullAction(), |
ulfjack | 4d7f8f7 | 2017-11-29 03:37:04 -0800 | [diff] [blame] | 155 | ImmutableList.copyOf(arguments), |
| 156 | /*environment=*/ ImmutableMap.of(), |
| 157 | /*executionInfo=*/ ImmutableMap.of(), |
| 158 | /*inputs=*/ ImmutableList.of(), |
| 159 | /*outputs=*/ ImmutableList.of(), |
Ulf Adams | cddaaa6 | 2017-03-02 17:32:28 +0000 | [diff] [blame] | 160 | ResourceSet.ZERO); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 163 | private String out() { |
| 164 | return outErr.outAsLatin1(); |
| 165 | } |
| 166 | private String err() { |
| 167 | return outErr.errAsLatin1(); |
| 168 | } |
| 169 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 170 | @Test |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 171 | public void testBinTrueExecutesFine() throws Exception { |
Dmitry Lomov | 9d74eba | 2015-11-26 11:04:01 +0000 | [diff] [blame] | 172 | Spawn spawn = createSpawn(getTrueCommand()); |
ulfjack | ff559b4 | 2018-05-22 09:14:10 -0700 | [diff] [blame] | 173 | executor.getContext(SpawnActionContext.class).exec(spawn, createContext()); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 174 | |
| 175 | assertThat(out()).isEmpty(); |
| 176 | assertThat(err()).isEmpty(); |
| 177 | } |
| 178 | |
ruperts | 7967f33 | 2017-11-21 16:37:13 -0800 | [diff] [blame] | 179 | private List<SpawnResult> run(Spawn spawn) throws Exception { |
ulfjack | ff559b4 | 2018-05-22 09:14:10 -0700 | [diff] [blame] | 180 | return executor.getContext(SpawnActionContext.class).exec(spawn, createContext()); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 181 | } |
ruperts | 4050a89 | 2017-10-07 00:46:20 +0200 | [diff] [blame] | 182 | |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 183 | private ActionExecutionContext createContext() { |
| 184 | Path execRoot = executor.getExecRoot(); |
| 185 | return new ActionExecutionContext( |
| 186 | executor, |
| 187 | new SingleBuildFileCache(execRoot.getPathString(), execRoot.getFileSystem()), |
ulfjack | 7599a4d | 2017-07-21 13:58:33 +0200 | [diff] [blame] | 188 | ActionInputPrefetcher.NONE, |
tomlu | 3d1a194 | 2017-11-29 14:01:21 -0800 | [diff] [blame] | 189 | new ActionKeyContext(), |
ulfjack | 256be11 | 2019-04-05 05:42:01 -0700 | [diff] [blame] | 190 | /*metadataHandler=*/ null, |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 191 | outErr, |
ulfjack | 256be11 | 2019-04-05 05:42:01 -0700 | [diff] [blame] | 192 | reporter, |
| 193 | /*clientEnv=*/ ImmutableMap.of(), |
| 194 | /*topLevelFilesets=*/ ImmutableMap.of(), |
shahan | b1dd4e3 | 2018-05-09 08:23:31 -0700 | [diff] [blame] | 195 | SIMPLE_ARTIFACT_EXPANDER, |
felly | 2b3befd | 2018-08-10 10:37:56 -0700 | [diff] [blame] | 196 | /*actionFileSystem=*/ null, |
| 197 | /*skyframeDepsResult=*/ null); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 200 | @Test |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 201 | public void testBinFalseYieldsException() throws Exception { |
jcater | 7472b37 | 2019-04-30 07:40:50 -0700 | [diff] [blame^] | 202 | ExecException e = assertThrows(ExecException.class, () -> run(createSpawn(getFalseCommand()))); |
| 203 | assertWithMessage("got: " + e.getMessage()) |
| 204 | .that(e.getMessage().startsWith("false failed: error executing command")) |
| 205 | .isTrue(); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Dmitry Lomov | 9d74eba | 2015-11-26 11:04:01 +0000 | [diff] [blame] | 208 | private static String getFalseCommand() { |
| 209 | return OS.getCurrent() == OS.DARWIN ? "/usr/bin/false" : "/bin/false"; |
| 210 | } |
| 211 | |
| 212 | private static String getTrueCommand() { |
| 213 | return OS.getCurrent() == OS.DARWIN ? "/usr/bin/true" : "/bin/true"; |
| 214 | } |
| 215 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 216 | @Test |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 217 | public void testBinEchoPrintsArguments() throws Exception { |
| 218 | Spawn spawn = createSpawn("/bin/echo", "Hello,", "world."); |
| 219 | run(spawn); |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 220 | assertThat(out()).isEqualTo("Hello, world.\n"); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 221 | assertThat(err()).isEmpty(); |
| 222 | } |
| 223 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 224 | @Test |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 225 | public void testCommandRunsInWorkingDir() throws Exception { |
| 226 | Spawn spawn = createSpawn("/bin/pwd"); |
| 227 | run(spawn); |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 228 | assertThat(out()).isEqualTo(executor.getExecRoot() + "\n"); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 229 | } |
| 230 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 231 | @Test |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 232 | public void testCommandHonorsEnvironment() throws Exception { |
ulfjack | 61d3966 | 2017-09-29 09:03:44 -0400 | [diff] [blame] | 233 | if (OS.getCurrent() == OS.DARWIN) { |
| 234 | // // TODO(#)3795: For some reason, we get __CF_USER_TEXT_ENCODING into the env in some |
| 235 | // configurations of MacOS machines. I have been unable to reproduce on my Mac, or to track |
| 236 | // down where that env var is coming from. |
| 237 | return; |
| 238 | } |
ulfjack | 4d7f8f7 | 2017-11-29 03:37:04 -0800 | [diff] [blame] | 239 | Spawn spawn = new SimpleSpawn( |
Ulf Adams | cddaaa6 | 2017-03-02 17:32:28 +0000 | [diff] [blame] | 240 | new ActionsTestUtil.NullAction(), |
ulfjack | 4d7f8f7 | 2017-11-29 03:37:04 -0800 | [diff] [blame] | 241 | ImmutableList.of("/usr/bin/env"), |
| 242 | /*environment=*/ ImmutableMap.of("foo", "bar", "baz", "boo"), |
| 243 | /*executionInfo=*/ ImmutableMap.of(), |
| 244 | /*inputs=*/ ImmutableList.of(), |
| 245 | /*outputs=*/ ImmutableList.of(), |
Ulf Adams | cddaaa6 | 2017-03-02 17:32:28 +0000 | [diff] [blame] | 246 | ResourceSet.ZERO); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 247 | run(spawn); |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 248 | assertThat(Sets.newHashSet(out().split("\n"))).isEqualTo(Sets.newHashSet("foo=bar", "baz=boo")); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Florian Weikert | c4975fa | 2015-12-03 10:27:10 +0000 | [diff] [blame] | 251 | @Test |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 252 | public void testStandardError() throws Exception { |
| 253 | Spawn spawn = createSpawn("/bin/sh", "-c", "echo Oops! >&2"); |
| 254 | run(spawn); |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 255 | assertThat(err()).isEqualTo("Oops!\n"); |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 256 | assertThat(out()).isEmpty(); |
| 257 | } |
Philipp Wollermann | 1ee9441 | 2015-11-25 13:52:17 +0000 | [diff] [blame] | 258 | } |