app/src/androidTest/java/com/geekorum/ttrss/accounts/AndroidTinyrssAccountManagerTest.kt
/*
* Geekttrss is a RSS feed reader application on the Android Platform.
*
* Copyright (C) 2017-2025 by Frederic-Charles Barthelery.
*
* This file is part of Geekttrss.
*
* Geekttrss is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Geekttrss is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Geekttrss. If not, see <http://www.gnu.org/licenses/>.
*/
package com.geekorum.ttrss.accounts
import android.accounts.AccountManager
import android.content.ContentResolver
import android.content.PeriodicSync
import android.os.Bundle
import androidx.test.core.app.ApplicationProvider
import androidx.work.testing.WorkManagerTestInitHelper
import com.geekorum.geekdroid.security.SecretCipher
import com.geekorum.geekdroid.security.SecretEncryption
import com.geekorum.ttrss.background_job.BackgroundJobManager
import com.geekorum.ttrss.providers.ArticlesContract
import com.geekorum.ttrss.sync.SyncContract
import com.google.common.truth.Truth.assertThat
import dagger.hilt.android.testing.HiltAndroidRule
import dagger.hilt.android.testing.HiltAndroidTest
import kotlinx.coroutines.delay
import kotlinx.coroutines.runBlocking
import org.junit.After
import org.junit.Before
import org.junit.Rule
import org.junit.Test
@HiltAndroidTest
class AndroidTinyrssAccountManagerTest {
@get:Rule
val hiltRule = HiltAndroidRule(this)
lateinit var accountManager: AndroidTinyrssAccountManager
lateinit var androidAccountManager: AccountManager
lateinit var secretCipher: SecretCipher
private val modelAccount = Account("test", "https://exemple.com")
private val androidAccount = android.accounts.Account("test", AndroidTinyrssAccountManager.ACCOUNT_TYPE)
@Before
fun setup() {
// sync get triggered during test and try to access WorkManager from HiltTestApplication
// provide a TestWorkManager
WorkManagerTestInitHelper.initializeTestWorkManager(ApplicationProvider.getApplicationContext())
androidAccountManager = AccountManager.get(ApplicationProvider.getApplicationContext())
secretCipher = SecretEncryption().getSecretCipher("instrumented test")
accountManager = AndroidTinyrssAccountManager(androidAccountManager, secretCipher)
}
@After
fun tearDown() {
androidAccountManager.removeAccountExplicitly(androidAccount)
}
@Test
fun testThatAddAccountWorks() {
val account = modelAccount
val password = "password"
val result = accountManager.addAccount(account, password)
assertThat(result).isTrue()
assertThat(androidAccountManager.getAccountsByType(AndroidTinyrssAccountManager.ACCOUNT_TYPE)).asList().contains(
androidAccount)
val retrievedPassword = accountManager.getPassword(account)
assertThat(retrievedPassword).isEqualTo(password)
}
@Test
fun testThatAccountWithLongPasswordWorks() {
val account = modelAccount
val password = "9a266fc8b42966fb624d852bafa241d8fd05b47d36153ff6684ab344bd1ae57bba96a7de8fc12ec0bb016583735d7f5bca6dd7d9bc6482c2a3ac6bf6f9ec323f"
val result = accountManager.addAccount(account, password)
assertThat(result).isTrue()
assertThat(androidAccountManager.getAccountsByType(AndroidTinyrssAccountManager.ACCOUNT_TYPE)).asList().contains(
androidAccount)
val retrievedPassword = accountManager.getPassword(account)
assertThat(retrievedPassword).isEqualTo(password)
}
@Test
fun testThatInitializeAccountSyncWorks() {
val urlBundle = Bundle().apply {
putString(AccountAuthenticator.USERDATA_URL, "https://exemple.com")
}
androidAccountManager.addAccountExplicitly(androidAccount, "password", urlBundle)
val periodicRefreshSync = PeriodicSync(androidAccount, ArticlesContract.AUTHORITY, Bundle.EMPTY,
BackgroundJobManager.PERIODIC_REFRESH_JOB_INTERVAL_S)
val fullExtra = Bundle().apply {
putInt(SyncContract.EXTRA_NUMBER_OF_LATEST_ARTICLES_TO_REFRESH, -1)
putBoolean(SyncContract.EXTRA_UPDATE_FEED_ICONS, true)
}
val periodicFullRefreshSync = PeriodicSync(androidAccount, ArticlesContract.AUTHORITY, fullExtra,
BackgroundJobManager.PERIODIC_FULL_REFRESH_JOB_INTERVAL_S)
accountManager.initializeAccountSync(modelAccount)
// the system needs some time to initialize
runBlocking{ delay(1000) }
val syncAutomatically = ContentResolver.getSyncAutomatically(androidAccount, ArticlesContract.AUTHORITY)
assertThat(syncAutomatically).isTrue()
val periodicSyncs = ContentResolver.getPeriodicSyncs(androidAccount, ArticlesContract.AUTHORITY)
assertThat(periodicSyncs).hasSize(2)
assertThat(periodicSyncs).containsExactly(periodicFullRefreshSync, periodicRefreshSync)
}
}