forked from ankidroid/Anki-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.
test: android test for MultimediaFragment intents
- Loading branch information
1 parent
80487ca
commit bb31a0d
Showing
4 changed files
with
125 additions
and
0 deletions.
There are no files selected for viewing
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
120 changes: 120 additions & 0 deletions
120
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,120 @@ | ||
/* | ||
* 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 android.provider.MediaStore | ||
import androidx.test.core.app.ActivityScenario | ||
import androidx.test.espresso.intent.Intents | ||
import androidx.test.espresso.intent.Intents.intended | ||
import androidx.test.espresso.intent.matcher.IntentMatchers.hasAction | ||
import androidx.test.espresso.intent.matcher.IntentMatchers.hasComponent | ||
import com.ichi2.anki.multimedia.MultimediaActivity | ||
import com.ichi2.anki.multimedia.MultimediaActivityExtra | ||
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 | ||
|
||
@RunWith(Parameterized::class) | ||
class MultimediaTest : InstrumentedTest() { | ||
|
||
@JvmField | ||
@Parameterized.Parameter(0) | ||
var intentBuilder: (Context) -> Intent? = { null } | ||
|
||
@JvmField | ||
@Parameterized.Parameter(1) | ||
var expectedAction: String? = null | ||
|
||
@JvmField | ||
@Parameterized.Parameter(2) | ||
var isComponentCheck: Boolean = false | ||
|
||
@Test | ||
fun testIntentFired() { | ||
Intents.init() | ||
|
||
try { | ||
ActivityScenario.launch<MultimediaActivity>(intentBuilder(testContext)).use { scenario -> | ||
scenario.onActivity { activity -> | ||
activity.supportFragmentManager.findFragmentById(R.id.fragment_container) as MultimediaImageFragment | ||
} | ||
|
||
if (isComponentCheck) { | ||
intended(hasComponent(expectedAction!!)) | ||
} else { | ||
intended(hasAction(expectedAction)) | ||
} | ||
} | ||
} finally { | ||
Intents.release() | ||
} | ||
} | ||
|
||
companion object { | ||
@Parameterized.Parameters(name = "{index}: {1}") | ||
@JvmStatic | ||
fun initParameters(): Collection<Array<out Any>> { | ||
return listOf( | ||
arrayOf({ context: Context -> getImageFragment(context) }, MediaStore.ACTION_IMAGE_CAPTURE, false), | ||
arrayOf({ context: Context -> getGalleryFragment(context) }, Intent.ACTION_PICK, false), | ||
arrayOf({ context: Context -> getDrawingFragment(context) }, DrawingActivity::class.java.name, true) | ||
) | ||
} | ||
|
||
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 getTestMultimediaNote(): MultimediaEditableNote { | ||
val note = MultimediaEditableNote() | ||
note.setNumFields(1) | ||
note.setField(0, TextField()) | ||
note.freezeInitialFieldValues() | ||
return note | ||
} | ||
} | ||
} |
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