blob: 429c2d749e9cd4edce38bf3f764b7b63609090c3 [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.
using Org.Apache.REEF.Common.Tasks;
using Org.Apache.REEF.Common.Tasks.Events;
using Org.Apache.REEF.Driver;
using Org.Apache.REEF.Driver.Context;
using Org.Apache.REEF.Driver.Evaluator;
using Org.Apache.REEF.Driver.Task;
using Org.Apache.REEF.Tang.Annotations;
using Org.Apache.REEF.Tang.Util;
using Org.Apache.REEF.Tests.Functional.Bridge.Exceptions;
using Org.Apache.REEF.Tests.Functional.Common;
using Org.Apache.REEF.Tests.Functional.Common.Task;
using Org.Apache.REEF.Tests.Functional.Common.Task.Handlers;
using Org.Apache.REEF.Utilities.Logging;
using System;
using Xunit;
namespace Org.Apache.REEF.Tests.Functional.Failure.User
{
/// <summary>
/// This test class contains a test that validates that an Exception in the
/// TaskCloseHandler causes a FailedTask event in the Driver.
/// </summary>
[Collection("FunctionalTests")]
public sealed class TaskCloseExceptionTest : ReefFunctionalTest
{
private static readonly Logger Logger = Logger.GetLogger(typeof(TaskCloseExceptionTest));
private const string TaskCloseExceptionMessage = "TaskCloseExceptionMessage";
private const string FailedEvaluatorReceived = "FailedEvaluatorReceived";
/// <summary>
/// This test validates that an Exception in the TaskCloseHandler causes a FailedTask
/// event in the Driver, and that a new Task can be submitted on the original Context.
/// </summary>
[Fact]
public void TestCloseTaskWithExceptionOnLocalRuntime()
{
string testFolder = DefaultRuntimeFolder + Guid.NewGuid().ToString("N").Substring(0, 4);
TestRun(DriverConfiguration.ConfigurationModule
.Set(DriverConfiguration.OnDriverStarted, GenericType<TaskCloseExceptionTestDriver>.Class)
.Set(DriverConfiguration.OnEvaluatorAllocated, GenericType<TaskCloseExceptionTestDriver>.Class)
.Set(DriverConfiguration.OnTaskFailed, GenericType<TaskCloseExceptionTestDriver>.Class)
.Set(DriverConfiguration.OnTaskRunning, GenericType<TaskCloseExceptionTestDriver>.Class)
.Set(DriverConfiguration.OnContextClosed, GenericType<TaskCloseExceptionTestDriver>.Class)
.Build(), typeof(TaskCloseExceptionTestDriver), 1, "testCloseTaskWithExceptionOnLocalRuntime", "local", testFolder);
ValidateSuccessForLocalRuntime(numberOfContextsToClose: 2, numberOfTasksToFail: 2, numberOfEvaluatorsToFail: 0, testFolder: testFolder);
CleanUp(testFolder);
}
private sealed class TaskCloseExceptionTestDriver :
IObserver<IDriverStarted>,
IObserver<IAllocatedEvaluator>,
IObserver<IRunningTask>,
IObserver<IFailedTask>,
IObserver<IClosedContext>
{
private static readonly string TaskId = "TaskId";
private readonly IEvaluatorRequestor _requestor;
[Inject]
private TaskCloseExceptionTestDriver(IEvaluatorRequestor requestor)
{
_requestor = requestor;
}
public void OnNext(IDriverStarted value)
{
_requestor.Submit(_requestor.NewBuilder().Build());
}
public void OnNext(IClosedContext context)
{
}
public void OnNext(IAllocatedEvaluator value)
{
// submit the first Task.
value.SubmitTask(TaskConfiguration.ConfigurationModule
.Set(TaskConfiguration.Identifier, TaskId)
.Set(TaskConfiguration.Task, GenericType<TaskCloseExceptionTask>.Class)
.Set(TaskConfiguration.OnClose, GenericType<TaskCloseHandlerWithException>.Class)
.Build());
}
public void OnNext(IRunningTask value)
{
if (value.Id == TaskId)
{
value.Dispose();
}
}
public void OnNext(IFailedTask value)
{
value.GetActiveContext().Value.Dispose();
}
public void OnError(Exception error)
{
throw new NotImplementedException();
}
public void OnCompleted()
{
throw new NotImplementedException();
}
}
private sealed class TaskCloseExceptionTask : WaitingTask
{
[Inject]
private TaskCloseExceptionTask(EventMonitor monitor) : base(monitor)
{
}
}
private sealed class TaskCloseHandlerWithException : ExceptionThrowingHandler<ICloseEvent>
{
[Inject]
private TaskCloseHandlerWithException(EventMonitor monitor) : base(
new TestSerializableException(TaskCloseExceptionMessage),
close => { monitor.Signal(); })
{
}
}
}
}