blob: 5ea26d54ef7c00920e21984f49533479a9b2120b [file] [log] [blame]
// Copyright 2020 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.buildtool;
import static org.junit.Assert.assertThrows;
import com.google.common.base.Supplier;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.lib.actions.ActionGraph;
import com.google.devtools.build.lib.actions.ExecutorInitException;
import com.google.devtools.build.lib.analysis.ArtifactsToOwnerLabels;
import com.google.devtools.build.lib.buildtool.util.BuildIntegrationTestCase;
import com.google.devtools.build.lib.exec.ExecutorBuilder;
import com.google.devtools.build.lib.exec.ExecutorLifecycleListener;
import com.google.devtools.build.lib.runtime.BlazeModule;
import com.google.devtools.build.lib.runtime.BlazeRuntime;
import com.google.devtools.build.lib.runtime.CommandEnvironment;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* Test to make sure that context provider initialization failure is handled correctly.
*/
@RunWith(JUnit4.class)
public class ContextProviderInitializationTest extends BuildIntegrationTestCase {
private static class BadContextProviderModule extends BlazeModule {
@Override
public void executorInit(
CommandEnvironment env, BuildRequest request, ExecutorBuilder builder) {
builder.addExecutorLifecycleListener(
new ExecutorLifecycleListener() {
@Override
public void executorCreated() throws ExecutorInitException {}
@Override
public void executionPhaseStarting(
ActionGraph actionGraph,
Supplier<ArtifactsToOwnerLabels> topLevelArtifactsToAccountingGroups)
throws ExecutorInitException {
throw new ExecutorInitException("eek");
}
@Override
public void executionPhaseEnding() {}
});
}
}
@Override
protected BlazeRuntime.Builder getRuntimeBuilder() throws Exception {
return super.getRuntimeBuilder()
.addBlazeModule(new BadContextProviderModule());
}
@Test
public void testContextProviderInitializationFailure() throws Exception {
assertThrows(
ExecutorInitException.class, () -> runtimeWrapper.executeBuild(ImmutableList.<String>of()));
}
}