aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
diff options
context:
space:
mode:
authorGravatar buchgr <buchgr@google.com>2017-06-14 12:37:48 +0200
committerGravatar Yun Peng <pcloudy@google.com>2017-06-14 13:17:24 +0200
commit624c706e49076912350277db746f5d43c484e591 (patch)
tree56aa2bba4b0d2763ca334817ee97c94517db0b79 /src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
parent746655f21f2f555606db84183e5f90cee9cb3dd5 (diff)
BES: Consolidate BuildEventServiceModule and BuildEventStreamerModule.
After having open sourced the Build Event Service code, there is no more need to have two separate bazel modules that both create a BuildEventStreamer. This change merges the BuildEventStreamerModule logic into the BuildEventServiceModule. DELTA=677 (330 added, 316 deleted, 31 changed) DELTA_BY_EXTENSION=java=293,oss=32 RELNOTES: None. PiperOrigin-RevId: 158960687
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java205
1 files changed, 205 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java b/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
new file mode 100644
index 0000000000..dcb0dfb09f
--- /dev/null
+++ b/src/test/java/com/google/devtools/build/lib/buildeventservice/BazelBuildEventServiceModuleTest.java
@@ -0,0 +1,205 @@
+// Copyright 2016 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.buildeventservice;
+
+import static com.google.common.truth.Truth.assertThat;
+import static org.mockito.Mockito.verifyNoMoreInteractions;
+import static org.mockito.Mockito.when;
+
+import com.google.common.base.Function;
+import com.google.common.collect.FluentIterable;
+import com.google.common.eventbus.EventBus;
+import com.google.devtools.build.lib.authandtls.AuthAndTLSOptions;
+import com.google.devtools.build.lib.buildeventstream.PathConverter;
+import com.google.devtools.build.lib.buildeventstream.transports.BinaryFormatFileTransport;
+import com.google.devtools.build.lib.buildeventstream.transports.BuildEventStreamOptions;
+import com.google.devtools.build.lib.buildeventstream.transports.JsonFormatFileTransport;
+import com.google.devtools.build.lib.buildeventstream.transports.TextFormatFileTransport;
+import com.google.devtools.build.lib.events.EventHandler;
+import com.google.devtools.build.lib.events.Reporter;
+import com.google.devtools.build.lib.runtime.BlazeModule.ModuleEnvironment;
+import com.google.devtools.build.lib.runtime.BuildEventStreamer;
+import com.google.devtools.build.lib.runtime.Command;
+import com.google.devtools.build.lib.util.Clock;
+import com.google.devtools.build.lib.vfs.Path;
+import com.google.devtools.common.options.Options;
+import com.google.devtools.common.options.OptionsBase;
+import com.google.devtools.common.options.OptionsParser;
+import com.google.devtools.common.options.OptionsProvider;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.TemporaryFolder;
+import org.junit.runner.RunWith;
+import org.junit.runners.JUnit4;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.mockito.MockitoAnnotations;
+
+/** Tests {@link BuildEventServiceModule}. **/
+@RunWith(JUnit4.class)
+public class BazelBuildEventServiceModuleTest {
+
+ private static final Function<Object, Class<?>> GET_CLASS =
+ new Function<Object, Class<?>>() {
+ @Override
+ public Class<?> apply(Object o) {
+ return o.getClass();
+ }
+ };
+
+ private static final PathConverter PATH_CONVERTER =
+ new PathConverter() {
+ @Override
+ public String apply(Path path) {
+ return path.getPathString();
+ }
+ };
+
+ private Reporter reporter;
+
+ private BuildEventServiceOptions besOptions;
+
+ @Rule public TemporaryFolder tmp = new TemporaryFolder();
+
+ @Mock public BuildEventStreamOptions bepOptions;
+
+ @Mock public OptionsProvider optionsProvider;
+
+ @Mock public ModuleEnvironment moduleEnvironment;
+
+ @Mock public EventHandler commandLineReporter;
+
+ @Mock public EventBus eventBus;
+
+ @Mock public Clock clock;
+
+ @Mock public Command command;
+
+ @Before
+ public void initMocks() {
+ MockitoAnnotations.initMocks(this);
+ // Reporter is final and thus can't be mocked.
+ reporter = new Reporter(eventBus);
+ besOptions = Options.getDefaults(BuildEventServiceOptions.class);
+
+ when(optionsProvider.getOptions(BuildEventStreamOptions.class)).thenReturn(bepOptions);
+ when(optionsProvider.getOptions(BuildEventServiceOptions.class)).thenReturn(besOptions);
+ when(optionsProvider.getOptions(AuthAndTLSOptions.class))
+ .thenReturn(Options.getDefaults(AuthAndTLSOptions.class));
+ }
+
+ @After
+ public void validateMocks() {
+ Mockito.validateMockitoUsage();
+ }
+
+ @Test
+ public void testReturnsBuildEventStreamerOptions() throws Exception {
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ Iterable<Class<? extends OptionsBase>> commandOptions = module.getCommandOptions(command);
+ assertThat(commandOptions).isNotEmpty();
+ OptionsParser optionsParser = OptionsParser.newOptionsParser(commandOptions);
+ optionsParser.parse(
+ "--experimental_build_event_text_file", "/tmp/foo.txt",
+ "--experimental_build_event_binary_file", "/tmp/foo.bin",
+ "--experimental_build_event_json_file", "/tmp/foo.json");
+ BuildEventStreamOptions options = optionsParser.getOptions(BuildEventStreamOptions.class);
+ assertThat(options.getBuildEventTextFile()).isEqualTo("/tmp/foo.txt");
+ assertThat(options.getBuildEventBinaryFile()).isEqualTo("/tmp/foo.bin");
+ assertThat(options.getBuildEventJsonFile()).isEqualTo("/tmp/foo.json");
+ }
+
+ @Test
+ public void testCreatesStreamerForTextFormatFileTransport() throws Exception {
+ when(bepOptions.getBuildEventTextFile()).thenReturn(tmp.newFile().getAbsolutePath());
+
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ BuildEventStreamer buildEventStreamer =
+ module.tryCreateStreamer(optionsProvider, commandLineReporter, moduleEnvironment,
+ clock, PATH_CONVERTER, reporter, "foo", "bar");
+ assertThat(buildEventStreamer).isNotNull();
+ verifyNoMoreInteractions(moduleEnvironment);
+ assertThat(FluentIterable.from(buildEventStreamer.getTransports()).transform(GET_CLASS))
+ .containsExactly(TextFormatFileTransport.class);
+ }
+
+ @Test
+ public void testCreatesStreamerForBinaryFormatFileTransport() throws Exception {
+ when(bepOptions.getBuildEventBinaryFile()).thenReturn(tmp.newFile().getAbsolutePath());
+
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ BuildEventStreamer buildEventStreamer =
+ module.tryCreateStreamer(optionsProvider, commandLineReporter, moduleEnvironment,
+ clock, PATH_CONVERTER, reporter, "foo", "bar");
+ assertThat(buildEventStreamer).isNotNull();
+ verifyNoMoreInteractions(moduleEnvironment);
+ assertThat(FluentIterable.from(buildEventStreamer.getTransports()).transform(GET_CLASS))
+ .containsExactly(BinaryFormatFileTransport.class);
+ }
+
+ @Test
+ public void testCreatesStreamerForJsonFormatFileTransport() throws Exception {
+ when(bepOptions.getBuildEventJsonFile()).thenReturn(tmp.newFile().getAbsolutePath());
+
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ BuildEventStreamer buildEventStreamer =
+ module.tryCreateStreamer(optionsProvider, commandLineReporter, moduleEnvironment,
+ clock, PATH_CONVERTER, reporter, "foo", "bar");
+ assertThat(buildEventStreamer).isNotNull();
+ verifyNoMoreInteractions(moduleEnvironment);
+ assertThat(FluentIterable.from(buildEventStreamer.getTransports()).transform(GET_CLASS))
+ .containsExactly(JsonFormatFileTransport.class);
+ }
+
+ @Test
+ public void testCreatesStreamerForBesTransport() throws Exception {
+ besOptions.besBackend = "does.not.exist:1234";
+
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ BuildEventStreamer buildEventStreamer =
+ module.tryCreateStreamer(optionsProvider, commandLineReporter, moduleEnvironment,
+ clock, PATH_CONVERTER, reporter, "foo", "bar");
+ assertThat(buildEventStreamer).isNotNull();
+ }
+
+ @Test
+ public void testCreatesStreamerForAllTransports() throws Exception {
+ when(bepOptions.getBuildEventTextFile()).thenReturn(tmp.newFile().getAbsolutePath());
+ when(bepOptions.getBuildEventBinaryFile()).thenReturn(tmp.newFile().getAbsolutePath());
+ when(bepOptions.getBuildEventJsonFile()).thenReturn(tmp.newFile().getAbsolutePath());
+ besOptions.besBackend = "does.not.exist:1234";
+
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ BuildEventStreamer buildEventStreamer =
+ module.tryCreateStreamer(optionsProvider, commandLineReporter, moduleEnvironment,
+ clock, PATH_CONVERTER, reporter, "foo", "bar");
+ assertThat(buildEventStreamer).isNotNull();
+ verifyNoMoreInteractions(moduleEnvironment);
+ assertThat(FluentIterable.from(buildEventStreamer.getTransports()).transform(GET_CLASS))
+ .containsExactly(TextFormatFileTransport.class, BinaryFormatFileTransport.class,
+ JsonFormatFileTransport.class, BuildEventServiceTransport.class);
+ }
+
+ @Test
+ public void testDoesNotCreatesStreamerWithoutTransports() throws Exception {
+ BazelBuildEventServiceModule module = new BazelBuildEventServiceModule();
+ BuildEventStreamer buildEventStreamer =
+ module.tryCreateStreamer(optionsProvider, commandLineReporter, moduleEnvironment,
+ clock, PATH_CONVERTER, reporter, "foo", "bar");
+ assertThat(buildEventStreamer).isNull();
+ }
+}