Add an application migration to delete the old log files.

This commit is contained in:
Benoit Marty
2024-09-06 09:22:00 +02:00
parent 9bce1156f2
commit 76e34ae798
6 changed files with 96 additions and 9 deletions

View File

@@ -0,0 +1,38 @@
/*
* Copyright (c) 2024 New Vector Ltd
*
* 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 io.element.android.features.migration.impl.migrations
import com.squareup.anvil.annotations.ContributesMultibinding
import io.element.android.features.rageshake.api.logs.LogFilesRemover
import io.element.android.libraries.di.AppScope
import javax.inject.Inject
/**
* Delete the previous log files.
*/
@ContributesMultibinding(AppScope::class)
class AppMigration07 @Inject constructor(
private val logFilesRemover: LogFilesRemover,
) : AppMigration {
override val order: Int = 7
override suspend fun migrate() {
logFilesRemover.perform { file ->
file.name.startsWith("logs-")
}
}
}

View File

@@ -0,0 +1,39 @@
/*
* Copyright (c) 2024 New Vector Ltd
*
* 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 io.element.android.features.migration.impl.migrations
import com.google.common.truth.Truth.assertThat
import io.element.android.features.rageshake.test.logs.FakeLogFilesRemover
import io.element.android.tests.testutils.lambda.lambdaRecorder
import kotlinx.coroutines.test.runTest
import org.junit.Test
import java.io.File
class AppMigration07Test {
@Test
fun `test migration`() = runTest {
val performLambda = lambdaRecorder<(File) -> Boolean, Unit> { predicate ->
// Test the predicate
assertThat(predicate(File("logs-0433.log.gz"))).isTrue()
assertThat(predicate(File("logs.2024-08-01-20.log.gz"))).isFalse()
}
val logsFileRemover = FakeLogFilesRemover(performLambda = performLambda)
val migration = AppMigration07(logsFileRemover)
migration.migrate()
logsFileRemover.performLambda.assertions().isCalledOnce()
}
}

View File

@@ -16,6 +16,12 @@
package io.element.android.features.rageshake.api.logs
import java.io.File
interface LogFilesRemover {
suspend fun perform()
/**
* Perform the log files removal.
* @param predicate a predicate to filter the files to remove. By default, all files are removed.
*/
suspend fun perform(predicate: (File) -> Boolean = { true })
}

View File

@@ -20,13 +20,14 @@ import com.squareup.anvil.annotations.ContributesBinding
import io.element.android.features.rageshake.api.logs.LogFilesRemover
import io.element.android.features.rageshake.impl.reporter.DefaultBugReporter
import io.element.android.libraries.di.AppScope
import java.io.File
import javax.inject.Inject
@ContributesBinding(AppScope::class)
class DefaultLogFilesRemover @Inject constructor(
private val bugReporter: DefaultBugReporter,
) : LogFilesRemover {
override suspend fun perform() {
bugReporter.deleteAllFiles()
override suspend fun perform(predicate: (File) -> Boolean) {
bugReporter.deleteAllFiles(predicate)
}
}

View File

@@ -301,9 +301,11 @@ class DefaultBugReporter @Inject constructor(
}
}
suspend fun deleteAllFiles() {
suspend fun deleteAllFiles(predicate: (File) -> Boolean) {
withContext(coroutineDispatchers.io) {
getLogFiles().forEach { it.safeDelete() }
getLogFiles()
.filter(predicate)
.forEach { it.safeDelete() }
}
}

View File

@@ -17,13 +17,14 @@
package io.element.android.features.rageshake.test.logs
import io.element.android.features.rageshake.api.logs.LogFilesRemover
import io.element.android.tests.testutils.lambda.LambdaNoParamRecorder
import io.element.android.tests.testutils.lambda.LambdaOneParamRecorder
import io.element.android.tests.testutils.lambda.lambdaRecorder
import java.io.File
class FakeLogFilesRemover(
var performLambda: LambdaNoParamRecorder<Unit> = lambdaRecorder { -> },
var performLambda: LambdaOneParamRecorder<(File) -> Boolean, Unit> = lambdaRecorder<(File) -> Boolean, Unit> { },
) : LogFilesRemover {
override suspend fun perform() {
performLambda()
override suspend fun perform(predicate: (File) -> Boolean) {
performLambda(predicate)
}
}