-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: instrumented test to test multimedia titles
- Loading branch information
1 parent
80487ca
commit f13818d
Showing
1 changed file
with
184 additions
and
0 deletions.
There are no files selected for viewing
184 changes: 184 additions & 0 deletions
184
AnkiDroid/src/androidTest/java/com/ichi2/anki/MultimediaTest.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,184 @@ | ||
/* | ||
* Copyright (c) 2024 Ashish Yadav <[email protected]> | ||
* | ||
* This program 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. | ||
* | ||
* 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.ichi2.anki | ||
|
||
import android.content.Context | ||
import android.content.Intent | ||
import androidx.fragment.app.Fragment | ||
import androidx.test.core.app.ActivityScenario | ||
import androidx.test.espresso.Espresso.onView | ||
import androidx.test.espresso.assertion.ViewAssertions.matches | ||
import androidx.test.espresso.matcher.RootMatchers.isDialog | ||
import androidx.test.espresso.matcher.ViewMatchers.isDisplayed | ||
import androidx.test.espresso.matcher.ViewMatchers.withText | ||
import com.ichi2.anki.multimedia.AudioRecordingFragment | ||
import com.ichi2.anki.multimedia.AudioVideoFragment | ||
import com.ichi2.anki.multimedia.MultimediaActivity | ||
import com.ichi2.anki.multimedia.MultimediaActivityExtra | ||
import com.ichi2.anki.multimedia.MultimediaFragment | ||
import com.ichi2.anki.multimedia.MultimediaImageFragment | ||
import com.ichi2.anki.multimediacard.fields.ImageField | ||
import com.ichi2.anki.multimediacard.fields.TextField | ||
import com.ichi2.anki.multimediacard.impl.MultimediaEditableNote | ||
import com.ichi2.anki.tests.InstrumentedTest | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.junit.runners.Parameterized | ||
import kotlin.test.assertEquals | ||
|
||
@RunWith(Parameterized::class) | ||
class MultimediaTest : InstrumentedTest() { | ||
|
||
@JvmField | ||
@Parameterized.Parameter(0) | ||
var intentBuilder: (Context) -> Intent? = { null } | ||
|
||
@JvmField | ||
@Parameterized.Parameter(1) | ||
var expectedTitleRes: Int? = null | ||
|
||
@Suppress("unused") // used by "{2}" | ||
@JvmField | ||
@Parameterized.Parameter(2) | ||
var testName: String = "" | ||
|
||
private val expectedTitle | ||
get() = testContext.getString(expectedTitleRes!!) | ||
|
||
@Test | ||
fun testFragmentTitle() { | ||
withMultimediaActivityScenario { scenario -> | ||
scenario.onActivity { activity -> | ||
val actualFragmentTitle = (activity.fragmentContainer as MultimediaFragment).title | ||
assertEquals(expectedTitle, actualFragmentTitle, message = "title") | ||
} | ||
} | ||
} | ||
|
||
@Test | ||
fun testImageFragmentDiscardDialogShown() { | ||
val validIntentBuilders = setOf( | ||
{ context: Context -> getCameraFragment(context) }, | ||
{ context: Context -> getGalleryFragment(context) }, | ||
{ context: Context -> getDrawingFragment(context) } | ||
) | ||
|
||
if (intentBuilder !in validIntentBuilders) { | ||
return | ||
} | ||
|
||
withMultimediaActivityScenario { scenario -> | ||
scenario.onActivity { activity -> | ||
(activity.fragmentContainer as MultimediaImageFragment).apply { | ||
viewModel.updateCurrentMultimediaPath("test/path") | ||
requireActivity().onBackPressedDispatcher.onBackPressed() | ||
} | ||
} | ||
|
||
onView(withText(CollectionManager.TR.addingDiscardCurrentInput())) | ||
.inRoot(isDialog()) | ||
.check(matches(isDisplayed())) | ||
|
||
onView(withText(R.string.discard)) | ||
.check(matches(isDisplayed())) | ||
|
||
onView(withText(CollectionManager.TR.addingKeepEditing())) | ||
.check(matches(isDisplayed())) | ||
} | ||
} | ||
|
||
/** Runs [ActivityScenario.launch] with the result of the [intentBuilder] */ | ||
private fun withMultimediaActivityScenario(block: (ActivityScenario<MultimediaActivity>) -> Unit) { | ||
ActivityScenario.launch<MultimediaActivity>(intentBuilder(testContext)).use { block(it) } | ||
} | ||
|
||
private val MultimediaActivity.fragmentContainer: Fragment | ||
get() = this.supportFragmentManager.findFragmentById(R.id.fragment_container)!! | ||
|
||
companion object { | ||
@Parameterized.Parameters(name = "{2}") | ||
@JvmStatic | ||
fun initParameters(): Collection<Array<out Any>> { | ||
return listOf( | ||
arrayOf({ context: Context -> getCameraFragment(context) }, R.string.multimedia_editor_popup_image, "Add image (Camera)"), | ||
arrayOf({ context: Context -> getGalleryFragment(context) }, R.string.multimedia_editor_popup_image, "Add image (Gallery)"), | ||
arrayOf({ context: Context -> getDrawingFragment(context) }, R.string.multimedia_editor_popup_image, "Add image (Drawing)"), | ||
arrayOf({ context: Context -> getAudioFragment(context) }, R.string.multimedia_editor_popup_audio_clip, "Add audio clip"), | ||
arrayOf({ context: Context -> getVideoFragment(context) }, R.string.multimedia_editor_popup_video_clip, "Add video clip"), | ||
arrayOf({ context: Context -> getAudioRecordingFragment(context) }, R.string.multimedia_editor_field_editing_audio, "Record audio") | ||
) | ||
} | ||
|
||
private val multimediaActivityExtra = MultimediaActivityExtra(0, ImageField(), getTestMultimediaNote()) | ||
|
||
private fun getCameraFragment(context: Context): Intent { | ||
return MultimediaImageFragment.getIntent( | ||
context, | ||
multimediaActivityExtra, | ||
MultimediaImageFragment.ImageOptions.CAMERA | ||
) | ||
} | ||
|
||
private fun getGalleryFragment(context: Context): Intent { | ||
return MultimediaImageFragment.getIntent( | ||
context, | ||
multimediaActivityExtra, | ||
MultimediaImageFragment.ImageOptions.GALLERY | ||
) | ||
} | ||
|
||
private fun getDrawingFragment(context: Context): Intent { | ||
return MultimediaImageFragment.getIntent( | ||
context, | ||
multimediaActivityExtra, | ||
MultimediaImageFragment.ImageOptions.DRAWING | ||
) | ||
} | ||
|
||
private fun getVideoFragment(context: Context): Intent { | ||
return AudioVideoFragment.getIntent( | ||
context, | ||
multimediaActivityExtra, | ||
AudioVideoFragment.MediaOption.VIDEO_CLIP | ||
) | ||
} | ||
|
||
private fun getAudioFragment(context: Context): Intent { | ||
return AudioVideoFragment.getIntent( | ||
context, | ||
multimediaActivityExtra, | ||
AudioVideoFragment.MediaOption.AUDIO_CLIP | ||
) | ||
} | ||
|
||
private fun getAudioRecordingFragment(context: Context): Intent { | ||
return AudioRecordingFragment.getIntent( | ||
context, | ||
multimediaActivityExtra | ||
) | ||
} | ||
|
||
private fun getTestMultimediaNote(): MultimediaEditableNote { | ||
val note = MultimediaEditableNote() | ||
note.setNumFields(1) | ||
note.setField(0, TextField()) | ||
note.freezeInitialFieldValues() | ||
return note | ||
} | ||
} | ||
} |