blob: bffcd16b01ac08e10e48194338ecb44548fd2110 [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.
*/
package org.apache.pulsar.tests;
import java.lang.reflect.Method;
import org.testng.Assert;
import org.testng.IRetryAnalyzer;
import org.testng.ITestContext;
import org.testng.ITestResult;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class TestRetrySupportRetryTest extends TestRetrySupport {
public static class IllegalStateRetry implements IRetryAnalyzer {
@Override
public boolean retry(ITestResult result) {
return result.getThrowable().getClass() == IllegalStateException.class;
}
}
private int setupCallCount;
private int cleanupCallCount;
private int invocationCount;
@BeforeClass
@Override
protected void setup() throws Exception {
setupCallCount++;
incrementSetupNumber();
}
@AfterClass(alwaysRun = true)
@Override
protected void cleanup() throws Exception {
cleanupCallCount++;
markCurrentSetupNumberCleaned();
}
@Test(retryAnalyzer = IllegalStateRetry.class)
void shouldCallSetupBeforeRetrying(ITestContext testContext, Method method) {
// get the number of times this method has been called
invocationCount++;
// setup method should have been called the same amount of times when TestRetrySupport
// is doing the handling. setup method has @BeforeClass annotation so that TestNG calls it
// only once
Assert.assertEquals(setupCallCount, invocationCount);
// cleanup method one less times
Assert.assertEquals(cleanupCallCount, invocationCount - 1);
// trigger a retry
if (invocationCount < 5) {
throw new IllegalStateException("Sample failure to trigger retry.");
}
}
}