From 5b786e57493f554b37825211c2b4cc7283a289ea Mon Sep 17 00:00:00 2001 From: ariskotsomitopoulos Date: Mon, 17 Jan 2022 14:26:39 +0200 Subject: [PATCH] Remove duplicate RetryTestRule --- .../sdk/session/room/threads/RetryTestRule.kt | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 matrix-sdk-android/src/androidTest/java/org/matrix/android/sdk/session/room/threads/RetryTestRule.kt diff --git a/matrix-sdk-android/src/androidTest/java/org/matrix/android/sdk/session/room/threads/RetryTestRule.kt b/matrix-sdk-android/src/androidTest/java/org/matrix/android/sdk/session/room/threads/RetryTestRule.kt deleted file mode 100644 index c06a18aeb3..0000000000 --- a/matrix-sdk-android/src/androidTest/java/org/matrix/android/sdk/session/room/threads/RetryTestRule.kt +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright 2022 The Matrix.org Foundation C.I.C. - * - * 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 org.matrix.android.sdk.session.room.threads - -import android.util.Log -import org.junit.rules.TestRule -import org.junit.runner.Description -import org.junit.runners.model.Statement - -/** - * Retry test rule used to retry test that failed. - * Retry failed test 3 times - */ -class RetryTestRule(val retryCount: Int = 3) : TestRule { - - private val TAG = RetryTestRule::class.java.simpleName - - override fun apply(base: Statement, description: Description): Statement { - return statement(base, description) - } - - private fun statement(base: Statement, description: Description): Statement { - return object : Statement() { - @Throws(Throwable::class) - override fun evaluate() { - var caughtThrowable: Throwable? = null - - // implement retry logic here - for (i in 0 until retryCount) { - try { - base.evaluate() - return - } catch (t: Throwable) { - caughtThrowable = t - Log.e(TAG, description.displayName + ": run " + (i + 1) + " failed") - } - } - - Log.e(TAG, description.displayName + ": giving up after " + retryCount + " failures") - throw caughtThrowable!! - } - } - } -}