Add an application migration to delete the old log files.
This commit is contained in:
parent
9bce1156f2
commit
76e34ae798
6 changed files with 96 additions and 9 deletions
|
|
@ -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-")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -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()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -16,6 +16,12 @@
|
||||||
|
|
||||||
package io.element.android.features.rageshake.api.logs
|
package io.element.android.features.rageshake.api.logs
|
||||||
|
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
interface LogFilesRemover {
|
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 })
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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.api.logs.LogFilesRemover
|
||||||
import io.element.android.features.rageshake.impl.reporter.DefaultBugReporter
|
import io.element.android.features.rageshake.impl.reporter.DefaultBugReporter
|
||||||
import io.element.android.libraries.di.AppScope
|
import io.element.android.libraries.di.AppScope
|
||||||
|
import java.io.File
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
@ContributesBinding(AppScope::class)
|
@ContributesBinding(AppScope::class)
|
||||||
class DefaultLogFilesRemover @Inject constructor(
|
class DefaultLogFilesRemover @Inject constructor(
|
||||||
private val bugReporter: DefaultBugReporter,
|
private val bugReporter: DefaultBugReporter,
|
||||||
) : LogFilesRemover {
|
) : LogFilesRemover {
|
||||||
override suspend fun perform() {
|
override suspend fun perform(predicate: (File) -> Boolean) {
|
||||||
bugReporter.deleteAllFiles()
|
bugReporter.deleteAllFiles(predicate)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -301,9 +301,11 @@ class DefaultBugReporter @Inject constructor(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun deleteAllFiles() {
|
suspend fun deleteAllFiles(predicate: (File) -> Boolean) {
|
||||||
withContext(coroutineDispatchers.io) {
|
withContext(coroutineDispatchers.io) {
|
||||||
getLogFiles().forEach { it.safeDelete() }
|
getLogFiles()
|
||||||
|
.filter(predicate)
|
||||||
|
.forEach { it.safeDelete() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,13 +17,14 @@
|
||||||
package io.element.android.features.rageshake.test.logs
|
package io.element.android.features.rageshake.test.logs
|
||||||
|
|
||||||
import io.element.android.features.rageshake.api.logs.LogFilesRemover
|
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 io.element.android.tests.testutils.lambda.lambdaRecorder
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
class FakeLogFilesRemover(
|
class FakeLogFilesRemover(
|
||||||
var performLambda: LambdaNoParamRecorder<Unit> = lambdaRecorder { -> },
|
var performLambda: LambdaOneParamRecorder<(File) -> Boolean, Unit> = lambdaRecorder<(File) -> Boolean, Unit> { },
|
||||||
) : LogFilesRemover {
|
) : LogFilesRemover {
|
||||||
override suspend fun perform() {
|
override suspend fun perform(predicate: (File) -> Boolean) {
|
||||||
performLambda()
|
performLambda(predicate)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue