-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extend use cases UI tests in public sharing
- Loading branch information
Showing
3 changed files
with
680 additions
and
0 deletions.
There are no files selected for viewing
266 changes: 266 additions & 0 deletions
266
...App/src/androidTest/java/com/owncloud/android/shares/ui/usecases/DeletePublicShareTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,266 @@ | ||
/** | ||
* ownCloud Android client application | ||
* | ||
* @author Jesus Recio (@jesmrec) | ||
* Copyright (C) 2019 ownCloud GmbH. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.owncloud.android.shares.ui.usecases | ||
|
||
import android.accounts.Account | ||
import android.accounts.AccountManager | ||
import android.content.Context | ||
import android.content.Intent | ||
import android.os.Parcelable | ||
import androidx.lifecycle.MutableLiveData | ||
import androidx.test.core.app.ApplicationProvider | ||
import androidx.test.espresso.Espresso.onView | ||
import androidx.test.espresso.action.ViewActions.click | ||
import androidx.test.espresso.assertion.ViewAssertions.doesNotExist | ||
import androidx.test.espresso.assertion.ViewAssertions.matches | ||
import androidx.test.espresso.matcher.ViewMatchers.hasSibling | ||
import androidx.test.espresso.matcher.ViewMatchers.isDisplayed | ||
import androidx.test.espresso.matcher.ViewMatchers.withId | ||
import androidx.test.espresso.matcher.ViewMatchers.withText | ||
import androidx.test.platform.app.InstrumentationRegistry | ||
import androidx.test.rule.ActivityTestRule | ||
import com.owncloud.android.R | ||
import com.owncloud.android.authentication.AccountAuthenticator.KEY_AUTH_TOKEN_TYPE | ||
import com.owncloud.android.capabilities.db.OCCapability | ||
import com.owncloud.android.capabilities.viewmodel.OCCapabilityViewModel | ||
import com.owncloud.android.datamodel.OCFile | ||
import com.owncloud.android.lib.common.accounts.AccountUtils | ||
import com.owncloud.android.lib.resources.status.CapabilityBooleanType | ||
import com.owncloud.android.lib.resources.status.OwnCloudVersion | ||
import com.owncloud.android.shares.db.OCShare | ||
import com.owncloud.android.shares.ui.ShareActivity | ||
import com.owncloud.android.shares.viewmodel.OCShareViewModel | ||
import com.owncloud.android.ui.activity.FileActivity | ||
import com.owncloud.android.utils.AccountsManager | ||
import com.owncloud.android.utils.TestUtil | ||
import com.owncloud.android.vo.Resource | ||
import org.hamcrest.Matchers.allOf | ||
import org.hamcrest.Matchers.not | ||
import org.junit.AfterClass | ||
import org.junit.Before | ||
import org.junit.BeforeClass | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import org.koin.android.ext.koin.androidContext | ||
import org.koin.androidx.viewmodel.dsl.viewModel | ||
import org.koin.core.context.startKoin | ||
import org.koin.core.context.stopKoin | ||
import org.koin.dsl.module | ||
import org.mockito.ArgumentMatchers | ||
import org.mockito.Mockito.`when` | ||
import org.mockito.Mockito.mock | ||
import org.mockito.Mockito.spy | ||
|
||
class DeletePublicShareTest { | ||
@Rule | ||
@JvmField | ||
val activityRule = ActivityTestRule( | ||
ShareActivity::class.java, | ||
true, | ||
false | ||
) | ||
|
||
private lateinit var file: OCFile | ||
|
||
private val publicShares = arrayListOf( | ||
TestUtil.createPublicShare( // With no expiration date | ||
path = "/Photos/image.jpg", | ||
expirationDate = 0L, | ||
isFolder = false, | ||
name = "image.jpg link", | ||
shareLink = "http://server:port/s/1" | ||
), | ||
TestUtil.createPublicShare( | ||
path = "/Photos/image.jpg", | ||
isFolder = false, | ||
name = "image.jpg updated link", | ||
shareLink = "http://server:port/s/2" | ||
) | ||
) | ||
|
||
private val capabilitiesLiveData = MutableLiveData<Resource<OCCapability>>() | ||
private val sharesLiveData = MutableLiveData<Resource<List<OCShare>>>() | ||
|
||
private val ocCapabilityViewModel = mock(OCCapabilityViewModel::class.java) | ||
private val ocShareViewModel = mock(OCShareViewModel::class.java) | ||
|
||
companion object { | ||
private val targetContext = InstrumentationRegistry.getInstrumentation().targetContext | ||
private val account = Account("admin", "owncloud") | ||
|
||
@BeforeClass | ||
@JvmStatic | ||
fun init() { | ||
addAccount() | ||
} | ||
|
||
@AfterClass | ||
@JvmStatic | ||
fun cleanUp() { | ||
AccountsManager.deleteAllAccounts(targetContext) | ||
} | ||
|
||
private fun addAccount() { | ||
// obtaining an AccountManager instance | ||
val accountManager = AccountManager.get(targetContext) | ||
|
||
Thread(Runnable { | ||
accountManager.addAccountExplicitly(account, "a", null) | ||
|
||
// include account version, user, server version and token with the new account | ||
accountManager.setUserData( | ||
account, | ||
AccountUtils.Constants.KEY_OC_VERSION, | ||
OwnCloudVersion("10.2").toString() | ||
) | ||
accountManager.setUserData( | ||
account, | ||
AccountUtils.Constants.KEY_OC_BASE_URL, | ||
"serverUrl:port" | ||
) | ||
accountManager.setUserData( | ||
account, | ||
AccountUtils.Constants.KEY_DISPLAY_NAME, | ||
"admin" | ||
) | ||
accountManager.setUserData( | ||
account, | ||
AccountUtils.Constants.KEY_OC_ACCOUNT_VERSION, | ||
"1" | ||
) | ||
|
||
accountManager.setAuthToken( | ||
account, | ||
KEY_AUTH_TOKEN_TYPE, | ||
"AUTH_TOKEN" | ||
) | ||
}).start() | ||
} | ||
} | ||
|
||
@Before | ||
fun setUp() { | ||
val intent = spy(Intent::class.java) | ||
|
||
file = getOCFileForTesting("image.jpg") | ||
|
||
`when`(intent.getParcelableExtra(FileActivity.EXTRA_FILE) as? Parcelable).thenReturn(file) | ||
intent.putExtra(FileActivity.EXTRA_FILE, file) | ||
|
||
`when`(ocCapabilityViewModel.getCapabilityForAccount(false)).thenReturn(capabilitiesLiveData) | ||
`when`(ocCapabilityViewModel.getCapabilityForAccount(true)).thenReturn(capabilitiesLiveData) | ||
`when`(ocShareViewModel.getSharesForFile()).thenReturn(sharesLiveData) | ||
|
||
stopKoin() | ||
|
||
startKoin { | ||
androidContext(ApplicationProvider.getApplicationContext<Context>()) | ||
modules( | ||
module(override = true) { | ||
viewModel { | ||
ocCapabilityViewModel | ||
} | ||
viewModel { | ||
ocShareViewModel | ||
} | ||
} | ||
) | ||
} | ||
|
||
activityRule.launchActivity(intent) | ||
} | ||
|
||
@Test | ||
fun deletePublicLink() { | ||
loadCapabilitiesSuccessfully() | ||
|
||
val existingPublicShare = publicShares.take(2) as ArrayList<OCShare> | ||
loadSharesSuccessfully(existingPublicShare) | ||
|
||
`when`( | ||
ocShareViewModel.deletePublicShare(ArgumentMatchers.anyLong()) | ||
).thenReturn(sharesLiveData) | ||
|
||
onView(allOf(withId(R.id.deletePublicLinkButton), hasSibling(withText(existingPublicShare[0].name)))) | ||
.perform(click()) | ||
onView(withId(android.R.id.button1)).perform(click()) | ||
|
||
sharesLiveData.postValue( | ||
Resource.success( | ||
arrayListOf(existingPublicShare[1]) | ||
) | ||
) | ||
|
||
onView(withText(existingPublicShare[0].name)).check(doesNotExist()) | ||
onView(withText(existingPublicShare[1].name)).check(matches(isDisplayed())) | ||
} | ||
|
||
@Test | ||
fun deleteLastPublicLink() { | ||
loadCapabilitiesSuccessfully() | ||
|
||
val existingPublicShare = publicShares[0] | ||
loadSharesSuccessfully(arrayListOf(existingPublicShare)) | ||
|
||
`when`( | ||
ocShareViewModel.deletePublicShare(ArgumentMatchers.anyLong()) | ||
).thenReturn(sharesLiveData) | ||
|
||
onView(withId(R.id.deletePublicLinkButton)).perform(click()) | ||
onView(withId(android.R.id.button1)).perform(click()) | ||
|
||
sharesLiveData.postValue( | ||
Resource.success( | ||
arrayListOf() | ||
) | ||
) | ||
|
||
onView(withText(existingPublicShare.name)).check(matches(not(isDisplayed()))) | ||
onView(withText(R.string.share_no_public_links)).check(matches(isDisplayed())) | ||
|
||
} | ||
|
||
private fun getOCFileForTesting(name: String = "default"): OCFile { | ||
val file = OCFile("/Photos/image.jpg") | ||
file.availableOfflineStatus = OCFile.AvailableOfflineStatus.NOT_AVAILABLE_OFFLINE | ||
file.fileName = name | ||
file.fileId = 9456985479 | ||
file.remoteId = "1" | ||
file.privateLink = "image link" | ||
return file | ||
} | ||
|
||
private fun loadCapabilitiesSuccessfully( | ||
capability: OCCapability = TestUtil.createCapability( | ||
versionString = "10.1.1", | ||
sharingPublicMultiple = CapabilityBooleanType.TRUE.value | ||
) | ||
) { | ||
capabilitiesLiveData.postValue( | ||
Resource.success( | ||
capability | ||
) | ||
) | ||
} | ||
|
||
private fun loadSharesSuccessfully(shares: ArrayList<OCShare> = publicShares) { | ||
sharesLiveData.postValue(Resource.success(shares)) | ||
} | ||
} |
Oops, something went wrong.