/* * Copyright (C) 2011 The Android Open Source Project * * 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.android.tradefed.result; import com.android.tradefed.config.OptionClass; import com.android.tradefed.util.Email; import com.android.tradefed.util.IEmail; /** * An {@link EmailResultReporter} that sends notifications if either a test failure or invocation * failure occurred. */ @OptionClass(alias = "failure-email") public class FailureEmailResultReporter extends EmailResultReporter { /** * Default constructor */ public FailureEmailResultReporter() { this(new Email()); } /** * Create a {@link FailureEmailResultReporter} with a custom {@link IEmail} instance to use. * <p/> * Exposed for unit testing. * * @param mailer the {@link IEmail} instance to use. */ protected FailureEmailResultReporter(IEmail mailer) { super(mailer); } /** * Send a message if there was a failure. * * @return {@code true} if the InvocationStatus is not {@link InvocationStatus#SUCCESS} or * if {@link #hasFailedTests()} is true, {@code false} otherwise. */ @Override protected boolean shouldSendMessage() { return !getInvocationStatus().equals(InvocationStatus.SUCCESS) || hasFailedTests(); } }