forked from mozilla-mobile/firefox-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIImageViewExtensionsTests.swift
74 lines (57 loc) · 3.45 KB
/
UIImageViewExtensionsTests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* 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/. */
import UIKit
import XCTest
import Storage
import SDWebImage
import GCDWebServers
import Shared
@testable import Client
class UIImageViewExtensionsTests: XCTestCase {
override func setUp() {
SDWebImageDownloader.shared.config.urlCredential = WebServer.sharedInstance.credentials
}
func testsetIcon() {
let url = URL(string: "http://mozilla.com")
let imageView = UIImageView()
let goodIcon = FaviconFetcher.letter(forUrl: url!)
let correctColor = FaviconFetcher.color(forUrl: url!)
imageView.setImageAndBackground(forIcon: nil, website: url) {}
XCTAssertEqual(imageView.image!, goodIcon, "The correct default favicon should be applied")
XCTAssertEqual(imageView.backgroundColor, correctColor, "The correct default color should be applied")
imageView.setImageAndBackground(forIcon: nil, website: URL(string: "http://mozilla.com/blahblah")) {}
XCTAssertEqual(imageView.image!, goodIcon, "The same icon should be applied to all urls with the same domain")
imageView.setImageAndBackground(forIcon: nil, website: URL(string: "b")) {}
XCTAssertEqual(imageView.image, FaviconFetcher.defaultFavicon, "The default favicon should be applied when no information is given about the icon")
}
func testAsyncSetIcon() {
let originalImage = UIImage(named: "bookmark")!
WebServer.sharedInstance.registerHandlerForMethod("GET", module: "favicon", resource: "icon") { (request) -> GCDWebServerResponse in
return GCDWebServerDataResponse(data: originalImage.pngData()!, contentType: "image/png")
}
let favImageView = UIImageView()
favImageView.setImageAndBackground(forIcon: Favicon(url: "http://localhost:\(AppInfo.webserverPort)/favicon/icon"), website: URL(string: "http://localhost:\(AppInfo.webserverPort)")) {}
let expect = expectation(description: "UIImageView async load")
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 1.0) {
XCTAssert(originalImage.size.width * originalImage.scale == favImageView.image!.size.width * favImageView.image!.scale, "The correct favicon should be applied to the UIImageView")
expect.fulfill()
}
waitForExpectations(timeout: 5, handler: nil)
}
func testDefaultIcons() {
let favImageView = UIImageView()
let gFavURL = URL(string: "https://www.facebook.com/fav") //This will be fetched from tippy top sites
let gURL = URL(string: "http://www.facebook.com")!
let defaultItem = FaviconFetcher.bundledIcons[gURL.baseDomain!]!
let correctImage = UIImage(contentsOfFile: defaultItem.filePath)!
favImageView.setImageAndBackground(forIcon: Favicon(url: gFavURL!.absoluteString), website: gURL) {}
let expect = expectation(description: "UIImageView async load")
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
XCTAssertEqual(favImageView.backgroundColor, defaultItem.bgcolor)
XCTAssert(correctImage.size.width * correctImage.scale == favImageView.image!.size.width * favImageView.image!.scale, "The correct default favicon should be applied to the UIImageView")
expect.fulfill()
}
waitForExpectations(timeout: 5, handler: nil)
}
}