forked from nextcloud/android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nextcloud#7001 from nextcloud/mnemonic
enhance mnemonic on dark mode Signed-off-by: thelittlefireman <thelittlefireman@users.noreply.github.com>
- Loading branch information
Showing
9 changed files
with
140 additions
and
35 deletions.
There are no files selected for viewing
Binary file added
BIN
+4.91 KB
.../debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+15.6 KB
...com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
91 changes: 91 additions & 0 deletions
91
src/androidTest/java/com/owncloud/android/ui/dialog/SetupEncryptionDialogFragmentIT.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,91 @@ | ||
/* | ||
* | ||
* Nextcloud Android client application | ||
* | ||
* @author Tobias Kaminsky | ||
* Copyright (C) 2020 Tobias Kaminsky | ||
* Copyright (C) 2020 Nextcloud GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package com.owncloud.android.ui.dialog | ||
|
||
import android.view.Window | ||
import androidx.test.espresso.intent.rule.IntentsTestRule | ||
import androidx.test.internal.runner.junit4.statement.UiThreadStatement | ||
import com.nextcloud.client.TestActivity | ||
import com.owncloud.android.AbstractIT | ||
import com.owncloud.android.utils.ScreenshotTest | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import java.util.Objects | ||
|
||
class SetupEncryptionDialogFragmentIT : AbstractIT() { | ||
@get:Rule | ||
val testActivityRule = IntentsTestRule(TestActivity::class.java, true, false) | ||
|
||
@Test | ||
@ScreenshotTest | ||
fun showMnemonic() { | ||
val activity = testActivityRule.launchActivity(null) | ||
|
||
val sut = SetupEncryptionDialogFragment.newInstance(user, 0) | ||
|
||
sut.show(activity.supportFragmentManager, "1") | ||
|
||
val keyWords = listOf( | ||
"ability", | ||
"able", | ||
"about", | ||
"above", | ||
"absent", | ||
"absorb", | ||
"abstract", | ||
"absurd", | ||
"abuse", | ||
"access", | ||
"accident", | ||
"account", | ||
"accuse" | ||
) | ||
|
||
sut.setMnemonic(keyWords) | ||
|
||
UiThreadStatement.runOnUiThread { | ||
sut.showMnemonicInfo() | ||
} | ||
|
||
waitForIdleSync() | ||
|
||
screenshot(Objects.requireNonNull<Window>(sut.requireDialog().window).decorView) | ||
} | ||
|
||
@Test | ||
@ScreenshotTest | ||
fun error() { | ||
val activity = testActivityRule.launchActivity(null) | ||
|
||
val sut = SetupEncryptionDialogFragment.newInstance(user, 0) | ||
|
||
sut.show(activity.supportFragmentManager, "1") | ||
|
||
UiThreadStatement.runOnUiThread { | ||
sut.errorSavingKeys() | ||
} | ||
|
||
waitForIdleSync() | ||
|
||
screenshot(Objects.requireNonNull<Window>(sut.requireDialog().window).decorView) | ||
} | ||
} |
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
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
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
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
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