| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- //
- // ImagePrefetcherTests.swift
- // Kingfisher
- //
- // Created by Claire Knight <claire.knight@moggytech.co.uk> on 24/02/2016
- //
- // Copyright (c) 2018 Wei Wang <onevcat@gmail.com>
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- import XCTest
- import Kingfisher
- #if os(macOS)
- import AppKit
- #else
- import UIKit
- #endif
- class ImagePrefetcherTests: XCTestCase {
-
- override class func setUp() {
- super.setUp()
- LSNocilla.sharedInstance().start()
- }
-
- override class func tearDown() {
- super.tearDown()
- LSNocilla.sharedInstance().stop()
- }
-
- override func setUp() {
- super.setUp()
- // Put setup code here. This method is called before the invocation of each test method in the class.
- cleanDefaultCache()
- }
-
- override func tearDown() {
- // Put teardown code here. This method is called after the invocation of each test method in the class.
- cleanDefaultCache()
- super.tearDown()
- }
- func testPrefetchingImages() {
- let expectation = self.expectation(description: "wait for prefetching images")
-
- var urls = [URL]()
- for URLString in testKeys {
- _ = stubRequest("GET", URLString).andReturn(200)?.withBody(testImageData)
- urls.append(URL(string: URLString)!)
- }
-
- var progressCalledCount = 0
- let prefetcher = ImagePrefetcher(urls: urls, options: nil,
- progressBlock: { (skippedResources, failedResources, completedResources) -> Void in
- progressCalledCount += 1
- },
- completionHandler: {(skippedResources, failedResources, completedResources) -> Void in
- expectation.fulfill()
- XCTAssertEqual(skippedResources.count, 0, "There should be no items skipped.")
- XCTAssertEqual(failedResources.count, 0, "There should be no failed downloading.")
- XCTAssertEqual(completedResources.count, urls.count, "All resources prefetching should be completed.")
- XCTAssertEqual(progressCalledCount, urls.count, "Progress should be called the same time of download count.")
- for url in urls {
- XCTAssertTrue(KingfisherManager.shared.cache.imageCachedType(forKey: url.absoluteString).cached)
- }
- })
- prefetcher.start()
-
- waitForExpectations(timeout: 5, handler: nil)
- }
-
- func testCancelPrefetching() {
- let expectation = self.expectation(description: "wait for prefetching images")
-
- var urls = [URL]()
- var responses = [LSStubResponseDSL!]()
- for URLString in testKeys {
- let response = stubRequest("GET", URLString).andReturn(200)?.withBody(testImageData)?.delay()
- responses.append(response)
- urls.append(URL(string: URLString)!)
- }
-
- let maxConcurrentCount = 2
- let prefetcher = ImagePrefetcher(urls: urls, options: nil,
- progressBlock: { (skippedResources, failedResources, completedResources) -> Void in
- },
- completionHandler: {(skippedResources, failedResources, completedResources) -> Void in
- XCTAssertEqual(skippedResources.count, 0, "There should be no items skipped.")
- XCTAssertEqual(failedResources.count, urls.count, "The failed count should be the same with started downloads due to cancellation.")
- XCTAssertEqual(completedResources.count, 0, "None resources prefetching should complete.")
- expectation.fulfill()
- })
-
- prefetcher.maxConcurrentDownloads = maxConcurrentCount
-
- prefetcher.start()
- prefetcher.stop()
-
- delay(0.1) { responses.forEach { _ = $0!.go() } }
- waitForExpectations(timeout: 5, handler: nil)
- }
-
- func testPrefetcherCouldSkipCachedImages() {
- let expectation = self.expectation(description: "wait for prefetching images")
- KingfisherManager.shared.cache.store(Image(), forKey: testKeys[0])
-
- var urls = [URL]()
- for URLString in testKeys {
- _ = stubRequest("GET", URLString).andReturn(200)?.withBody(testImageData)
- urls.append(URL(string: URLString)!)
- }
-
- let prefetcher = ImagePrefetcher(urls: urls, options: nil, progressBlock: { (skippedResources, failedResources, completedResources) -> Void in
- }) { (skippedResources, failedResources, completedResources) -> Void in
- expectation.fulfill()
- XCTAssertEqual(skippedResources.count, 1, "There should be 1 item skipped.")
- XCTAssertEqual(skippedResources[0].downloadURL.absoluteString, testKeys[0], "The correct image key should be skipped.")
- XCTAssertEqual(failedResources.count, 0, "There should be no failed downloading.")
- XCTAssertEqual(completedResources.count, urls.count - 1, "All resources prefetching should be completed.")
- }
-
- prefetcher.start()
-
- waitForExpectations(timeout: 5, handler: nil)
- }
-
- func testPrefetcherForceRefreshDownloadImages() {
- let expectation = self.expectation(description: "wait for prefetching images")
-
- // Store an image in cache.
- KingfisherManager.shared.cache.store(Image(), forKey: testKeys[0])
-
- var urls = [URL]()
- for URLString in testKeys {
- _ = stubRequest("GET", URLString).andReturn(200)?.withBody(testImageData)
- urls.append(URL(string: URLString)!)
- }
-
- // Use `.ForceRefresh` to download it forcely.
- let prefetcher = ImagePrefetcher(urls: urls, options: [.forceRefresh], progressBlock: { (skippedResources, failedResources, completedResources) -> Void in
-
- }) { (skippedResources, failedResources, completedResources) -> Void in
- expectation.fulfill()
-
- XCTAssertEqual(skippedResources.count, 0, "There should be no item skipped.")
- XCTAssertEqual(failedResources.count, 0, "There should be no failed downloading.")
- XCTAssertEqual(completedResources.count, urls.count, "All resources prefetching should be completed.")
- }
-
- prefetcher.start()
-
- waitForExpectations(timeout: 5, handler: nil)
- }
-
- func testPrefetchWithWrongInitParameters() {
- let expectation = self.expectation(description: "wait for prefetching images")
- let prefetcher = ImagePrefetcher(urls: [], options: nil, progressBlock: nil) { (skippedResources, failedResources, completedResources) -> Void in
- expectation.fulfill()
-
- XCTAssertEqual(skippedResources.count, 0, "There should be no item skipped.")
- XCTAssertEqual(failedResources.count, 0, "There should be no failed downloading.")
- XCTAssertEqual(completedResources.count, 0, "There should be no completed downloading.")
- }
-
- prefetcher.start()
- waitForExpectations(timeout: 5, handler: nil)
- }
-
- func testFetchWithProcessor() {
- let expectation = self.expectation(description: "wait for prefetching images")
-
- var urls = [URL]()
- for URLString in testKeys {
- _ = stubRequest("GET", URLString).andReturn(200)?.withBody(testImageData)
- urls.append(URL(string: URLString)!)
- }
-
- let p = RoundCornerImageProcessor(cornerRadius: 20)
-
- func prefetchAgain() {
- var progressCalledCount = 0
- let prefetcher = ImagePrefetcher(urls: urls, options: [.processor(p)],
- progressBlock: { (skippedResources, failedResources, completedResources) -> Void in
- progressCalledCount += 1
- },
- completionHandler: {(skippedResources, failedResources, completedResources) -> Void in
-
- XCTAssertEqual(skippedResources.count, urls.count, "There should be one item skipped since it is just prefetched.")
- XCTAssertEqual(failedResources.count, 0, "There should be no failed downloading.")
- XCTAssertEqual(completedResources.count, 0, "No need to prefetch anymore")
- XCTAssertEqual(progressCalledCount, urls.count, "Progress should be called the same time of download count.")
- for url in urls {
- XCTAssertTrue(KingfisherManager.shared.cache.imageCachedType(forKey: url.absoluteString, processorIdentifier: p.identifier).cached)
- }
- expectation.fulfill()
- })
- prefetcher.start()
- }
-
-
- var progressCalledCount = 0
- let prefetcher = ImagePrefetcher(urls: urls, options: [.processor(p)],
- progressBlock: { (skippedResources, failedResources, completedResources) -> Void in
- progressCalledCount += 1
- },
- completionHandler: {(skippedResources, failedResources, completedResources) -> Void in
-
- XCTAssertEqual(skippedResources.count, 0, "There should be no items skipped.")
- XCTAssertEqual(failedResources.count, 0, "There should be no failed downloading.")
- XCTAssertEqual(completedResources.count, urls.count, "All resources prefetching should be completed.")
- XCTAssertEqual(progressCalledCount, urls.count, "Progress should be called the same time of download count.")
- for url in urls {
- XCTAssertTrue(KingfisherManager.shared.cache.imageCachedType(forKey: url.absoluteString, processorIdentifier: p.identifier).cached)
- }
-
- prefetchAgain()
- })
- prefetcher.start()
-
- waitForExpectations(timeout: 5, handler: nil)
- }
- }
|