-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve performance of toHtml method by moving it to background thread
- Loading branch information
1 parent
0c56aec
commit 600046e
Showing
7 changed files
with
145 additions
and
7 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
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
105 changes: 105 additions & 0 deletions
105
aztec/src/test/kotlin/org/wordpress/aztec/AsyncAztecTest.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,105 @@ | ||
package org.wordpress.aztec | ||
|
||
import android.app.Activity | ||
import android.view.MenuItem | ||
import android.widget.PopupMenu | ||
import android.widget.ToggleButton | ||
import kotlinx.coroutines.Job | ||
import kotlinx.coroutines.launch | ||
import kotlinx.coroutines.test.runTest | ||
import org.junit.Assert | ||
import org.junit.Before | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.robolectric.Robolectric | ||
import org.robolectric.RobolectricTestRunner | ||
import org.wordpress.aztec.source.SourceViewEditText | ||
import org.wordpress.aztec.toolbar.AztecToolbar | ||
import org.wordpress.aztec.toolbar.ToolbarAction | ||
import org.wordpress.aztec.toolbar.ToolbarItems | ||
|
||
@RunWith(RobolectricTestRunner::class) | ||
class AsyncAztecTest { | ||
lateinit var editText: AztecText | ||
lateinit var sourceText: SourceViewEditText | ||
lateinit var toolbar: AztecToolbar | ||
lateinit var buttonQuote: ToggleButton | ||
lateinit var menuHeading: PopupMenu | ||
lateinit var menuHeading1: MenuItem | ||
lateinit var menuHeading2: MenuItem | ||
lateinit var menuParagraph: MenuItem | ||
lateinit var buttonPreformat: ToggleButton | ||
lateinit var buttonBold: ToggleButton | ||
|
||
/** | ||
* Initialize variables. | ||
*/ | ||
@Before | ||
fun init() { | ||
val activity = Robolectric.buildActivity(Activity::class.java).create().visible().get() | ||
editText = AztecText(activity) | ||
editText.setCalypsoMode(false) | ||
sourceText = SourceViewEditText(activity) | ||
sourceText.setCalypsoMode(false) | ||
toolbar = AztecToolbar(activity) | ||
toolbar.setToolbarItems( | ||
ToolbarItems.BasicLayout( | ||
ToolbarAction.HEADING, | ||
ToolbarAction.PREFORMAT, | ||
ToolbarAction.LIST, | ||
ToolbarAction.QUOTE, | ||
ToolbarAction.BOLD, | ||
ToolbarAction.ITALIC, | ||
ToolbarAction.LINK, | ||
ToolbarAction.UNDERLINE, | ||
ToolbarAction.STRIKETHROUGH, | ||
ToolbarAction.ALIGN_LEFT, | ||
ToolbarAction.ALIGN_CENTER, | ||
ToolbarAction.ALIGN_RIGHT, | ||
ToolbarAction.HORIZONTAL_RULE, | ||
ToolbarAction.HTML | ||
)) | ||
toolbar.setEditor(editText, sourceText) | ||
buttonQuote = toolbar.findViewById<ToggleButton>(R.id.format_bar_button_quote) | ||
menuHeading = toolbar.getHeadingMenu() as PopupMenu | ||
menuHeading1 = menuHeading.menu.getItem(1) | ||
menuHeading2 = menuHeading.menu.getItem(2) | ||
menuParagraph = menuHeading.menu.getItem(0) | ||
buttonPreformat = toolbar.findViewById<ToggleButton>(R.id.format_bar_button_pre) | ||
buttonBold = toolbar.findViewById<ToggleButton>(R.id.format_bar_button_bold) | ||
activity.setContentView(editText) | ||
} | ||
|
||
@Test | ||
@Throws(Exception::class) | ||
fun asyncToHtmlWorksOnCurrentVersion() = runTest { | ||
editText.append("One two three") | ||
val textCopy = editText.getTextCopy() | ||
Assert.assertEquals("One two three", editText.toHtmlAsync(textCopy)) | ||
val jobs = mutableListOf<Job>() | ||
jobs.add(launch { | ||
Assert.assertEquals("One two three", editText.toHtmlAsync(textCopy)) | ||
}) | ||
toolbar.onMenuItemClick(menuHeading1) | ||
val textCopy2 = editText.getTextCopy() | ||
jobs.add(launch { | ||
Assert.assertEquals("<h1>One two three</h1>", editText.toHtmlAsync(textCopy2)) | ||
}) | ||
toolbar.onMenuItemClick(menuParagraph) | ||
val textCopy3 = editText.getTextCopy() | ||
jobs.add(launch { | ||
Assert.assertEquals("One two three", editText.toHtmlAsync(textCopy3)) | ||
}) | ||
val from = editText.editableText.indexOf("two") | ||
editText.setSelection(from, from + 3) | ||
editText.toggleFormatting(AztecTextFormat.FORMAT_BOLD) | ||
val textCopy4 = editText.getTextCopy() | ||
jobs.add(launch { | ||
Assert.assertEquals("One <strong>two</strong> three", editText.toHtmlAsync(textCopy4)) | ||
}) | ||
jobs.forEach { | ||
it.join() | ||
Assert.assertTrue(it.isCompleted) | ||
} | ||
} | ||
} |
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