blob: d9734e7aa4efbf81b5bcf9cb4297e95292fbb616 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import java.io.File;
import java.util.List;
import com.google.protobuf.ByteString;
import org.apache.mesos.*;
import org.apache.mesos.Protos.*;
public class TestExceptionFramework {
static class TestExceptionScheduler implements Scheduler {
@Override
public void registered(SchedulerDriver driver,
FrameworkID frameworkId,
MasterInfo masterInfo) {
throw new ArrayIndexOutOfBoundsException();
}
@Override
public void reregistered(SchedulerDriver driver, MasterInfo masterInfo) {}
@Override
public void disconnected(SchedulerDriver driver) {}
@Override
public void resourceOffers(SchedulerDriver driver,
List<Offer> offers) {}
@Override
public void offerRescinded(SchedulerDriver driver, OfferID offerId) {}
@Override
public void statusUpdate(SchedulerDriver driver, TaskStatus status) {}
@Override
public void frameworkMessage(SchedulerDriver driver,
ExecutorID executorId,
SlaveID slaveId,
byte[] data) {}
@Override
public void slaveLost(SchedulerDriver driver, SlaveID slaveId) {}
@Override
public void executorLost(SchedulerDriver driver,
ExecutorID executorId,
SlaveID slaveId,
int status) {}
public void error(SchedulerDriver driver, String message) {}
}
private static void usage() {
String name = TestExceptionFramework.class.getName();
System.err.println("Usage: " + name + " master");
}
public static void main(String[] args) throws Exception {
if (args.length != 1) {
usage();
System.exit(1);
}
FrameworkInfo.Builder frameworkBuilder = FrameworkInfo.newBuilder()
.setUser("") // Have Mesos fill in the current user.
.setName("Exception Framework (Java)");
MesosSchedulerDriver driver = null;
if (System.getenv("MESOS_EXAMPLE_AUTHENTICATE") != null) {
System.out.println("Enabling authentication for the framework");
if (System.getenv("MESOS_EXAMPLE_PRINCIPAL") == null) {
System.err.println("Expecting authentication principal in the environment");
System.exit(1);
}
if (System.getenv("MESOS_EXAMPLE_SECRET") == null) {
System.err.println("Expecting authentication secret in the environment");
System.exit(1);
}
Credential credential = Credential.newBuilder()
.setPrincipal(System.getenv("MESOS_EXAMPLE_PRINCIPAL"))
.setSecret(System.getenv("MESOS_EXAMPLE_SECRET"))
.build();
frameworkBuilder.setPrincipal(System.getenv("MESOS_EXAMPLE_PRINCIPAL"));
driver = new MesosSchedulerDriver(
new TestExceptionScheduler(),
frameworkBuilder.build(),
args[0],
credential);
} else {
frameworkBuilder.setPrincipal("exception-framework-java");
driver = new MesosSchedulerDriver(
new TestExceptionScheduler(),
frameworkBuilder.build(),
args[0]);
}
int status = driver.run() == Status.DRIVER_STOPPED ? 0 : 1;
// Ensure that the driver process terminates.
driver.stop();
System.exit(status);
}
}