-
Notifications
You must be signed in to change notification settings - Fork 758
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 #4439 from vector-im/feature/adm/developer-mode-sa…
…nity-check Developer mode sanity check & failure screenshots
- Loading branch information
Showing
10 changed files
with
362 additions
and
61 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
117 changes: 117 additions & 0 deletions
117
vector/src/androidTest/java/im/vector/app/espresso/tools/ScreenshotFailureRule.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,117 @@ | ||
/* | ||
* Copyright (c) 2021 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package im.vector.app.espresso.tools | ||
|
||
import android.content.ContentResolver | ||
import android.content.ContentValues | ||
import android.graphics.Bitmap | ||
import android.net.Uri | ||
import android.os.Environment | ||
import android.provider.MediaStore | ||
import androidx.test.platform.app.InstrumentationRegistry.getInstrumentation | ||
import org.junit.rules.TestWatcher | ||
import org.junit.runner.Description | ||
import timber.log.Timber | ||
import java.io.File | ||
import java.io.FileOutputStream | ||
import java.io.IOException | ||
import java.io.OutputStream | ||
import java.text.SimpleDateFormat | ||
import java.util.Date | ||
import java.util.Locale | ||
|
||
private val SCREENSHOT_FOLDER_LOCATION = "${Environment.DIRECTORY_PICTURES}/failure_screenshots" | ||
private val deviceLanguage = Locale.getDefault().language | ||
|
||
class ScreenshotFailureRule : TestWatcher() { | ||
override fun failed(e: Throwable?, description: Description) { | ||
val screenShotName = "$deviceLanguage-${description.methodName}-${SimpleDateFormat("EEE-MMMM-dd-HH:mm:ss").format(Date())}" | ||
val bitmap = getInstrumentation().uiAutomation.takeScreenshot() | ||
storeFailureScreenshot(bitmap, screenShotName) | ||
} | ||
} | ||
|
||
/** | ||
* Stores screenshots in sdcard/Pictures/failure_screenshots | ||
*/ | ||
private fun storeFailureScreenshot(bitmap: Bitmap, screenshotName: String) { | ||
val contentResolver = getInstrumentation().targetContext.applicationContext.contentResolver | ||
|
||
val contentValues = ContentValues().apply { | ||
put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg") | ||
put(MediaStore.Images.Media.DATE_TAKEN, System.currentTimeMillis()) | ||
} | ||
if (android.os.Build.VERSION.SDK_INT >= 29) { | ||
useMediaStoreScreenshotStorage( | ||
contentValues, | ||
contentResolver, | ||
screenshotName, | ||
SCREENSHOT_FOLDER_LOCATION, | ||
bitmap | ||
) | ||
} else { | ||
usePublicExternalScreenshotStorage( | ||
contentValues, | ||
contentResolver, | ||
screenshotName, | ||
SCREENSHOT_FOLDER_LOCATION, | ||
bitmap | ||
) | ||
} | ||
} | ||
|
||
private fun useMediaStoreScreenshotStorage( | ||
contentValues: ContentValues, | ||
contentResolver: ContentResolver, | ||
screenshotName: String, | ||
screenshotLocation: String, | ||
bitmap: Bitmap | ||
) { | ||
contentValues.put(MediaStore.MediaColumns.DISPLAY_NAME, "$screenshotName.jpeg") | ||
contentValues.put(MediaStore.Images.Media.RELATIVE_PATH, screenshotLocation) | ||
val uri: Uri? = contentResolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues) | ||
if (uri != null) { | ||
contentResolver.openOutputStream(uri)?.let { saveScreenshotToStream(bitmap, it) } | ||
contentResolver.update(uri, contentValues, null, null) | ||
} | ||
} | ||
|
||
private fun usePublicExternalScreenshotStorage( | ||
contentValues: ContentValues, | ||
contentResolver: ContentResolver, | ||
screenshotName: String, | ||
screenshotLocation: String, | ||
bitmap: Bitmap | ||
) { | ||
val directory = File(Environment.getExternalStoragePublicDirectory(screenshotLocation).toString()) | ||
if (!directory.exists()) { | ||
directory.mkdirs() | ||
} | ||
val file = File(directory, "$screenshotName.jpeg") | ||
saveScreenshotToStream(bitmap, FileOutputStream(file)) | ||
contentResolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, contentValues) | ||
} | ||
|
||
private fun saveScreenshotToStream(bitmap: Bitmap, outputStream: OutputStream) { | ||
outputStream.use { | ||
try { | ||
bitmap.compress(Bitmap.CompressFormat.JPEG, 50, it) | ||
} catch (e: IOException) { | ||
Timber.e("Screenshot was not stored at this time") | ||
} | ||
} | ||
} |
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
60 changes: 60 additions & 0 deletions
60
vector/src/androidTest/java/im/vector/app/ui/robot/MessageMenuRobot.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,60 @@ | ||
/* | ||
* Copyright (c) 2021 New Vector Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package im.vector.app.ui.robot | ||
|
||
import androidx.test.espresso.Espresso.pressBack | ||
import com.adevinta.android.barista.interaction.BaristaClickInteractions.clickOn | ||
import com.adevinta.android.barista.interaction.BaristaListInteractions.clickListItem | ||
import im.vector.app.R | ||
import java.lang.Thread.sleep | ||
|
||
class MessageMenuRobot( | ||
var autoClosed: Boolean = false | ||
) { | ||
|
||
fun viewSource() { | ||
clickOn(R.string.view_source) | ||
// wait for library | ||
sleep(1000) | ||
pressBack() | ||
autoClosed = true | ||
} | ||
|
||
fun editHistory() { | ||
clickOn(R.string.message_view_edit_history) | ||
pressBack() | ||
autoClosed = true | ||
} | ||
|
||
fun addQuickReaction(quickReaction: String) { | ||
clickOn(quickReaction) | ||
autoClosed = true | ||
} | ||
|
||
fun addReactionFromEmojiPicker() { | ||
clickOn(R.string.message_add_reaction) | ||
// Wait for emoji to load, it's async now | ||
sleep(2000) | ||
clickListItem(R.id.emojiRecyclerView, 4) | ||
autoClosed = true | ||
} | ||
|
||
fun edit() { | ||
clickOn(R.string.edit) | ||
autoClosed = true | ||
} | ||
} |
Oops, something went wrong.