-
-
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 1e855ae
Showing
1 changed file
with
132 additions
and
0 deletions.
There are no files selected for viewing
132 changes: 132 additions & 0 deletions
132
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,132 @@ | ||
/* | ||
* 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.test.core.app.ActivityScenario | ||
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.DefaultAsserter.assertEquals | ||
import kotlin.test.assertEquals | ||
|
||
@RunWith(Parameterized::class) | ||
class MultimediaTest : InstrumentedTest() { | ||
|
||
@JvmField | ||
@Parameterized.Parameter(0) | ||
var intentBuilder: (Context) -> Intent? = { null } | ||
|
||
@JvmField | ||
@Parameterized.Parameter(1) | ||
var title: Int? = null | ||
|
||
@Test | ||
fun testFragmentTitle() { | ||
ActivityScenario.launch<MultimediaActivity>(intentBuilder(testContext)).use { scenario -> | ||
scenario.onActivity { activity -> | ||
val fragment = activity.supportFragmentManager.findFragmentById(R.id.fragment_container) as MultimediaFragment | ||
val titleString = title?.let { testContext.getString(it) } | ||
assertEquals(titleString, fragment.title) | ||
} | ||
} | ||
} | ||
|
||
companion object { | ||
@Parameterized.Parameters(name = "{index}: {1}") | ||
@JvmStatic | ||
fun initParameters(): Collection<Array<out Any>> { | ||
return listOf( | ||
arrayOf({ context: Context -> getImageFragment(context) }, R.string.multimedia_editor_popup_image), | ||
arrayOf({ context: Context -> getGalleryFragment(context) }, R.string.multimedia_editor_popup_image), | ||
arrayOf({ context: Context -> getDrawingFragment(context) }, R.string.multimedia_editor_popup_image), | ||
arrayOf({ context: Context -> getAudioFragment(context) }, R.string.multimedia_editor_popup_audio_clip), | ||
arrayOf({ context: Context -> getVideoFragment(context) }, R.string.multimedia_editor_popup_video_clip), | ||
arrayOf({ context: Context -> getAudioRecordingFragment(context) }, R.string.multimedia_editor_field_editing_audio) | ||
) | ||
} | ||
|
||
private val multimediaActivityExtra = MultimediaActivityExtra(0, ImageField(), getTestMultimediaNote()) | ||
|
||
private fun getImageFragment(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 | ||
} | ||
} | ||
} |