You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/test/java/org/mozilla/fenix/ext/ListTest.kt

126 lines
3.7 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.ext
import mozilla.components.browser.state.state.content.DownloadState
import org.junit.Assert.assertEquals
import org.junit.Test
import org.junit.runner.RunWith
import org.mozilla.fenix.helpers.FenixRobolectricTestRunner
import org.mozilla.fenix.library.downloads.DownloadItem
import java.io.File
@RunWith(FenixRobolectricTestRunner::class)
class ListTest {
@Test
fun `Test download in list but not on disk removed from list`() {
val filePath1 = "filepath.txt"
val filePath3 = "filepath3.txt"
var file1 = File(filePath1)
var file3 = File(filePath3)
// Create files
file1.createNewFile()
file3.createNewFile()
val item1 = DownloadItem(
id = "71",
url = "url",
fileName = "filepath.txt",
filePath = filePath1,
size = "71 Mb",
contentType = "Image/png",
status = DownloadState.Status.COMPLETED
)
val item2 = DownloadItem(
id = "71",
url = "url",
fileName = "filepath2.txt",
filePath = "filepath2.txt",
size = "71 Mb",
contentType = "Image/png",
status = DownloadState.Status.COMPLETED
)
val item3 = DownloadItem(
id = "71",
url = "url",
fileName = "filepath3.txt",
filePath = filePath3,
size = "71 Mb",
contentType = "Image/png",
status = DownloadState.Status.COMPLETED
)
val testList = mutableListOf(item1, item2, item3)
val comparisonList: MutableList<DownloadItem> = mutableListOf(item1, item3)
val resultList = testList.filterNotExistsOnDisk()
assertEquals(comparisonList, resultList)
// Cleanup files
file1.delete()
file3.delete()
}
@Test
fun `Test download in list and on disk remain in list`() {
val filePath1 = "filepath.txt"
val filePath2 = "filepath.txt"
val filePath3 = "filepath3.txt"
var file1 = File(filePath1)
var file2 = File(filePath2)
var file3 = File(filePath3)
// Create files
file1.createNewFile()
file2.createNewFile()
file3.createNewFile()
val item1 = DownloadItem(
id = "71",
url = "url",
fileName = "filepath.txt",
filePath = filePath1,
size = "71 Mb",
contentType = "text/plain",
status = DownloadState.Status.COMPLETED
)
val item2 = DownloadItem(
id = "72",
url = "url",
fileName = "filepath2.txt",
filePath = filePath2,
size = "71 Mb",
contentType = "text/plain",
status = DownloadState.Status.COMPLETED
)
val item3 = DownloadItem(
id = "73",
url = "url",
fileName = "filepath3.txt",
filePath = filePath3,
size = "71 Mb",
contentType = "text/plain",
status = DownloadState.Status.COMPLETED
)
val testList = mutableListOf(item1, item2, item3)
val comparisonList: MutableList<DownloadItem> = mutableListOf(item1, item2, item3)
val resultList = testList.filterNotExistsOnDisk()
assertEquals(comparisonList, resultList)
// Cleanup files
file1.delete()
file2.delete()
file3.delete()
}
}