From b4b3ded8d082883d9659017211b5e2b78913cf90 Mon Sep 17 00:00:00 2001 From: Michael Skiba Date: Fri, 8 Jul 2016 09:40:28 -0400 Subject: [PATCH 01/20] structure updates - Updated linting --- .swiftlint.yml | 5 +++++ RIGImageGallery/RIGImageGalleryItem.swift | 4 ++-- RIGImageGallery/RIGSingleImageViewController.swift | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .swiftlint.yml diff --git a/.swiftlint.yml b/.swiftlint.yml new file mode 100644 index 0000000..65d807e --- /dev/null +++ b/.swiftlint.yml @@ -0,0 +1,5 @@ +statement_position: + statement_mode: uncuddled_else + +disabled_rules: + - line_length diff --git a/RIGImageGallery/RIGImageGalleryItem.swift b/RIGImageGallery/RIGImageGalleryItem.swift index 19b3947..f82687b 100644 --- a/RIGImageGallery/RIGImageGalleryItem.swift +++ b/RIGImageGallery/RIGImageGalleryItem.swift @@ -14,7 +14,7 @@ public class RIGImageGalleryItem: NSObject { public let placeholderImage: UIImage? public let title: String? - public func updateImage(image:UIImage?) -> RIGImageGalleryItem { + public func updateImage(image: UIImage?) -> RIGImageGalleryItem { return RIGImageGalleryItem(image: image, placeholderImage: placeholderImage, title: title) } @@ -23,5 +23,5 @@ public class RIGImageGalleryItem: NSObject { self.placeholderImage = placeholderImage self.title = title } - + } diff --git a/RIGImageGallery/RIGSingleImageViewController.swift b/RIGImageGallery/RIGSingleImageViewController.swift index a77c948..bf424c5 100644 --- a/RIGImageGallery/RIGSingleImageViewController.swift +++ b/RIGImageGallery/RIGSingleImageViewController.swift @@ -10,7 +10,7 @@ import UIKit class RIGSingleImageViewController: UIViewController { - var viewIndex:Int = 0 + var viewIndex: Int = 0 var viewerItem: RIGImageGalleryItem? { didSet { From 57572742b5f7d0704909febd8cb6a76cc4500a00 Mon Sep 17 00:00:00 2001 From: Michael Skiba Date: Fri, 8 Jul 2016 10:31:31 -0400 Subject: [PATCH 02/20] removed carthage dependancy from test project --- Cartfile | 1 - Cartfile.resolved | 2 - Carthage/Checkouts/Alamofire/.gitignore | 39 - Carthage/Checkouts/Alamofire/.travis.yml | 60 - .../Checkouts/Alamofire/Alamofire.podspec | 17 - .../Alamofire.xcodeproj/project.pbxproj | 1852 ----------- .../contents.xcworkspacedata | 7 - .../xcschemes/Alamofire OSX.xcscheme | 114 - .../xcschemes/Alamofire iOS.xcscheme | 114 - .../xcschemes/Alamofire tvOS.xcscheme | 114 - .../xcschemes/Alamofire watchOS.xcscheme | 81 - .../contents.xcworkspacedata | 10 - Carthage/Checkouts/Alamofire/CHANGELOG.md | 1193 -------- Carthage/Checkouts/Alamofire/CONTRIBUTING.md | 91 - .../Alamofire 2.0 Migration Guide.md | 202 -- .../Alamofire 3.0 Migration Guide.md | 186 -- .../Resources/Base.lproj/Main.storyboard | 342 --- .../AppIcon.appiconset/Contents.json | 73 - .../LaunchImage.launchimage/Contents.json | 51 - .../Logo.imageset/Contents.json | 22 - .../Images.xcassets/Logo.imageset/Logo.png | Bin 5710 -> 0 bytes .../Images.xcassets/Logo.imageset/Logo@2x.png | Bin 14538 -> 0 bytes .../Alamofire/Example/Resources/Info.plist | 57 - .../Example/Source/AppDelegate.swift | 61 - .../Example/Source/DetailViewController.swift | 204 -- .../Example/Source/MasterViewController.swift | 95 - .../iOS Example.xcodeproj/project.pbxproj | 468 --- .../contents.xcworkspacedata | 7 - .../xcschemes/iOS Example.xcscheme | 91 - Carthage/Checkouts/Alamofire/LICENSE | 19 - Carthage/Checkouts/Alamofire/Package.swift | 27 - Carthage/Checkouts/Alamofire/README.md | 1195 -------- .../Checkouts/Alamofire/Source/Alamofire.h | 26 - .../Alamofire/Source/Alamofire.swift | 368 --- .../Checkouts/Alamofire/Source/Download.swift | 246 -- .../Checkouts/Alamofire/Source/Error.swift | 66 - .../Alamofire/Source/Info-tvOS.plist | 30 - .../Checkouts/Alamofire/Source/Info.plist | 26 - .../Checkouts/Alamofire/Source/Manager.swift | 695 ----- .../Alamofire/Source/MultipartFormData.swift | 669 ---- .../Source/NetworkReachabilityManager.swift | 239 -- .../Alamofire/Source/Notifications.swift | 45 - .../Alamofire/Source/ParameterEncoding.swift | 252 -- .../Checkouts/Alamofire/Source/Request.swift | 552 ---- .../Checkouts/Alamofire/Source/Response.swift | 95 - .../Source/ResponseSerialization.swift | 364 --- .../Checkouts/Alamofire/Source/Result.swift | 101 - .../Alamofire/Source/ServerTrustPolicy.swift | 302 -- .../Checkouts/Alamofire/Source/Stream.swift | 180 -- .../Checkouts/Alamofire/Source/Timeline.swift | 123 - .../Checkouts/Alamofire/Source/Upload.swift | 374 --- .../Alamofire/Source/Validation.swift | 189 -- .../Alamofire/Tests/AuthenticationTests.swift | 193 -- .../Alamofire/Tests/BaseTestCase.swift | 34 - .../Alamofire/Tests/CacheTests.swift | 351 --- .../Alamofire/Tests/DownloadTests.swift | 459 --- Carthage/Checkouts/Alamofire/Tests/Info.plist | 24 - .../Alamofire/Tests/ManagerTests.swift | 280 -- .../Tests/MultipartFormDataTests.swift | 993 ------ ...LSessionConfiguration+AlamofireTests.swift | 37 - .../NetworkReachabilityManagerTests.swift | 220 -- .../Tests/ParameterEncodingTests.swift | 645 ---- .../Alamofire/Tests/RequestTests.swift | 617 ---- .../alamofire.org/alamofire-root-ca.cer | Bin 988 -> 0 bytes .../alamofire.org/alamofire-signing-ca1.cer | Bin 1025 -> 0 bytes .../alamofire.org/alamofire-signing-ca2.cer | Bin 1025 -> 0 bytes .../Certificates/alamofire.org/expired.cer | Bin 1052 -> 0 bytes .../missing-dns-name-and-uri.cer | Bin 1015 -> 0 bytes .../alamofire.org/multiple-dns-names.cer | Bin 1081 -> 0 bytes .../alamofire.org/signed-by-ca1.cer | Bin 1058 -> 0 bytes .../alamofire.org/signed-by-ca2.cer | Bin 1058 -> 0 bytes .../alamofire.org/test.alamofire.org.cer | Bin 1063 -> 0 bytes .../alamofire.org/valid-dns-name.cer | Bin 1039 -> 0 bytes .../Certificates/alamofire.org/valid-uri.cer | Bin 1034 -> 0 bytes .../alamofire.org/wildcard.alamofire.org.cer | Bin 1054 -> 0 bytes .../disig.sk/intermediate-ca-disig.cer | Bin 1542 -> 0 bytes .../Certificates/disig.sk/root-ca-disig.cer | Bin 1389 -> 0 bytes .../disig.sk/testssl-expire.disig.sk.cer | Bin 1311 -> 0 bytes .../selfSignedAndMalformedCerts/certDER.cer | Bin 1016 -> 0 bytes .../selfSignedAndMalformedCerts/certDER.crt | Bin 1016 -> 0 bytes .../selfSignedAndMalformedCerts/certDER.der | Bin 1016 -> 0 bytes .../selfSignedAndMalformedCerts/certPEM.cer | 24 - .../selfSignedAndMalformedCerts/certPEM.crt | 24 - .../selfSignedAndMalformedCerts/keyDER.der | Bin 1192 -> 0 bytes .../randomGibberish.crt | Bin 4096 -> 0 bytes .../Tests/Resources/Images/rainbow.jpg | Bin 16104 -> 0 bytes .../Tests/Resources/Images/unicorn.png | Bin 41646 -> 0 bytes .../Tests/ResponseSerializationTests.swift | 591 ---- .../Alamofire/Tests/ResponseTests.swift | 533 ---- .../Alamofire/Tests/ResultTests.swift | 145 - .../Tests/ServerTrustPolicyTests.swift | 1418 --------- .../Tests/String+AlamofireTests.swift | 31 - .../Alamofire/Tests/TLSEvaluationTests.swift | 500 --- .../Alamofire/Tests/URLProtocolTests.swift | 169 - .../Alamofire/Tests/UploadTests.swift | 766 ----- .../Alamofire/Tests/ValidationTests.swift | 530 ---- Carthage/Checkouts/AlamofireImage/.gitignore | 39 - Carthage/Checkouts/AlamofireImage/.gitmodules | 3 - Carthage/Checkouts/AlamofireImage/.travis.yml | 73 - .../AlamofireImage/AlamofireImage.podspec | 28 - .../AlamofireImage.xcodeproj/project.pbxproj | 2711 ----------------- .../contents.xcworkspacedata | 7 - .../xcschemes/AlamofireImage OSX.xcscheme | 114 - .../xcschemes/AlamofireImage iOS.xcscheme | 114 - .../xcschemes/AlamofireImage tvOS.xcscheme | 113 - .../xcschemes/AlamofireImage watchOS.xcscheme | 81 - .../contents.xcworkspacedata | 10 - .../Checkouts/AlamofireImage/CHANGELOG.md | 341 --- .../Checkouts/AlamofireImage/CONTRIBUTING.md | 91 - Carthage/Checkouts/AlamofireImage/Cartfile | 1 - .../AlamofireImage/Cartfile.resolved | 1 - .../Carthage/Checkouts/Alamofire/.gitignore | 39 - .../Carthage/Checkouts/Alamofire/.travis.yml | 60 - .../Checkouts/Alamofire/Alamofire.podspec | 17 - .../Alamofire.xcodeproj/project.pbxproj | 1852 ----------- .../contents.xcworkspacedata | 7 - .../xcschemes/Alamofire OSX.xcscheme | 114 - .../xcschemes/Alamofire iOS.xcscheme | 114 - .../xcschemes/Alamofire tvOS.xcscheme | 114 - .../xcschemes/Alamofire watchOS.xcscheme | 81 - .../contents.xcworkspacedata | 10 - .../Carthage/Checkouts/Alamofire/CHANGELOG.md | 1193 -------- .../Checkouts/Alamofire/CONTRIBUTING.md | 91 - .../Alamofire 2.0 Migration Guide.md | 202 -- .../Alamofire 3.0 Migration Guide.md | 186 -- .../Resources/Base.lproj/Main.storyboard | 342 --- .../AppIcon.appiconset/Contents.json | 73 - .../LaunchImage.launchimage/Contents.json | 51 - .../Logo.imageset/Contents.json | 22 - .../Images.xcassets/Logo.imageset/Logo.png | Bin 5710 -> 0 bytes .../Images.xcassets/Logo.imageset/Logo@2x.png | Bin 14538 -> 0 bytes .../Alamofire/Example/Resources/Info.plist | 57 - .../Example/Source/AppDelegate.swift | 61 - .../Example/Source/DetailViewController.swift | 204 -- .../Example/Source/MasterViewController.swift | 95 - .../iOS Example.xcodeproj/project.pbxproj | 468 --- .../contents.xcworkspacedata | 7 - .../xcschemes/iOS Example.xcscheme | 91 - .../Carthage/Checkouts/Alamofire/LICENSE | 19 - .../Checkouts/Alamofire/Package.swift | 27 - .../Carthage/Checkouts/Alamofire/README.md | 1195 -------- .../Checkouts/Alamofire/Source/Alamofire.h | 26 - .../Alamofire/Source/Alamofire.swift | 368 --- .../Checkouts/Alamofire/Source/Download.swift | 246 -- .../Checkouts/Alamofire/Source/Error.swift | 66 - .../Alamofire/Source/Info-tvOS.plist | 30 - .../Checkouts/Alamofire/Source/Info.plist | 26 - .../Checkouts/Alamofire/Source/Manager.swift | 695 ----- .../Alamofire/Source/MultipartFormData.swift | 669 ---- .../Source/NetworkReachabilityManager.swift | 239 -- .../Alamofire/Source/Notifications.swift | 45 - .../Alamofire/Source/ParameterEncoding.swift | 252 -- .../Checkouts/Alamofire/Source/Request.swift | 552 ---- .../Checkouts/Alamofire/Source/Response.swift | 95 - .../Source/ResponseSerialization.swift | 364 --- .../Checkouts/Alamofire/Source/Result.swift | 101 - .../Alamofire/Source/ServerTrustPolicy.swift | 302 -- .../Checkouts/Alamofire/Source/Stream.swift | 180 -- .../Checkouts/Alamofire/Source/Timeline.swift | 123 - .../Checkouts/Alamofire/Source/Upload.swift | 374 --- .../Alamofire/Source/Validation.swift | 189 -- .../Alamofire/Tests/AuthenticationTests.swift | 193 -- .../Alamofire/Tests/BaseTestCase.swift | 34 - .../Alamofire/Tests/CacheTests.swift | 351 --- .../Alamofire/Tests/DownloadTests.swift | 459 --- .../Checkouts/Alamofire/Tests/Info.plist | 24 - .../Alamofire/Tests/ManagerTests.swift | 280 -- .../Tests/MultipartFormDataTests.swift | 993 ------ ...LSessionConfiguration+AlamofireTests.swift | 37 - .../NetworkReachabilityManagerTests.swift | 220 -- .../Tests/ParameterEncodingTests.swift | 645 ---- .../Alamofire/Tests/RequestTests.swift | 617 ---- .../alamofire.org/alamofire-root-ca.cer | Bin 988 -> 0 bytes .../alamofire.org/alamofire-signing-ca1.cer | Bin 1025 -> 0 bytes .../alamofire.org/alamofire-signing-ca2.cer | Bin 1025 -> 0 bytes .../Certificates/alamofire.org/expired.cer | Bin 1052 -> 0 bytes .../missing-dns-name-and-uri.cer | Bin 1015 -> 0 bytes .../alamofire.org/multiple-dns-names.cer | Bin 1081 -> 0 bytes .../alamofire.org/signed-by-ca1.cer | Bin 1058 -> 0 bytes .../alamofire.org/signed-by-ca2.cer | Bin 1058 -> 0 bytes .../alamofire.org/test.alamofire.org.cer | Bin 1063 -> 0 bytes .../alamofire.org/valid-dns-name.cer | Bin 1039 -> 0 bytes .../Certificates/alamofire.org/valid-uri.cer | Bin 1034 -> 0 bytes .../alamofire.org/wildcard.alamofire.org.cer | Bin 1054 -> 0 bytes .../disig.sk/intermediate-ca-disig.cer | Bin 1542 -> 0 bytes .../Certificates/disig.sk/root-ca-disig.cer | Bin 1389 -> 0 bytes .../disig.sk/testssl-expire.disig.sk.cer | Bin 1311 -> 0 bytes .../selfSignedAndMalformedCerts/certDER.cer | Bin 1016 -> 0 bytes .../selfSignedAndMalformedCerts/certDER.crt | Bin 1016 -> 0 bytes .../selfSignedAndMalformedCerts/certDER.der | Bin 1016 -> 0 bytes .../selfSignedAndMalformedCerts/certPEM.cer | 24 - .../selfSignedAndMalformedCerts/certPEM.crt | 24 - .../selfSignedAndMalformedCerts/keyDER.der | Bin 1192 -> 0 bytes .../randomGibberish.crt | Bin 4096 -> 0 bytes .../Tests/Resources/Images/rainbow.jpg | Bin 16104 -> 0 bytes .../Tests/Resources/Images/unicorn.png | Bin 41646 -> 0 bytes .../Tests/ResponseSerializationTests.swift | 591 ---- .../Alamofire/Tests/ResponseTests.swift | 533 ---- .../Alamofire/Tests/ResultTests.swift | 145 - .../Tests/ServerTrustPolicyTests.swift | 1418 --------- .../Tests/String+AlamofireTests.swift | 31 - .../Alamofire/Tests/TLSEvaluationTests.swift | 500 --- .../Alamofire/Tests/URLProtocolTests.swift | 169 - .../Alamofire/Tests/UploadTests.swift | 766 ----- .../Alamofire/Tests/ValidationTests.swift | 530 ---- .../AlamofireImage 2.0 Migration Guide.md | 105 - .../AlamofireImage/Example/AppDelegate.swift | 45 - .../Example/Base.lproj/LaunchScreen.xib | 42 - .../AlamofireImage/Example/Gravatar.swift | 113 - .../AlamofireImage/Example/ImageCell.swift | 76 - .../Example/ImageViewController.swift | 66 - .../AppIcon.appiconset/Contents.json | 38 - .../Placeholder Image.imageset/Contents.json | 23 - .../Placeholder Image.png | Bin 1341 -> 0 bytes .../Placeholder Image@2x.png | Bin 2755 -> 0 bytes .../Placeholder Image@3x.png | Bin 4103 -> 0 bytes .../Example/ImagesViewController.swift | 157 - .../AlamofireImage/Example/Info.plist | 39 - .../Example/iOS-Example-Bridging-Header.h | 23 - Carthage/Checkouts/AlamofireImage/LICENSE | 19 - .../Checkouts/AlamofireImage/Package.swift | 30 - Carthage/Checkouts/AlamofireImage/README.md | 540 ---- .../AlamofireImage/Source/AlamofireImage.h | 26 - .../AlamofireImage/Source/Image.swift | 31 - .../AlamofireImage/Source/ImageCache.swift | 330 -- .../Source/ImageDownloader.swift | 530 ---- .../AlamofireImage/Source/ImageFilter.swift | 428 --- .../AlamofireImage/Source/Info-tvOS.plist | 30 - .../AlamofireImage/Source/Info.plist | 26 - .../Source/Request+AlamofireImage.swift | 235 -- .../Source/UIButton+AlamofireImage.swift | 405 --- .../Source/UIImage+AlamofireImage.swift | 325 -- .../Source/UIImageView+AlamofireImage.swift | 373 --- .../AlamofireImage/Tests/BaseTestCase.swift | 76 - .../Tests/ImageCacheTests.swift | 368 --- .../Tests/ImageDownloaderTests.swift | 859 ------ .../Tests/ImageFilterTests.swift | 296 -- .../Checkouts/AlamofireImage/Tests/Info.plist | 24 - .../AlamofireImage/Tests/RequestTests.swift | 376 --- ...scaled.to.fill.size.circle-100x100-@1x.png | Bin 9950 -> 0 bytes ...scaled.to.fill.size.circle-100x100-@2x.png | Bin 26162 -> 0 bytes ...scaled.to.fill.size.circle-100x100-@3x.png | Bin 52783 -> 0 bytes ...ze.with.rounded.corners-100x100x20-@1x.png | Bin 10029 -> 0 bytes ...ze.with.rounded.corners-100x100x20-@2x.png | Bin 26644 -> 0 bytes ...ze.with.rounded.corners-100x100x20-@3x.png | Bin 54322 -> 0 bytes .../apple-aspect.scaled.to.fill-30x60-@1x.png | Bin 999 -> 0 bytes .../apple-aspect.scaled.to.fill-30x60-@2x.png | Bin 2192 -> 0 bytes .../apple-aspect.scaled.to.fill-30x60-@3x.png | Bin 3242 -> 0 bytes .../apple-aspect.scaled.to.fill-50x50-@1x.png | Bin 1156 -> 0 bytes .../apple-aspect.scaled.to.fill-50x50-@2x.png | Bin 2402 -> 0 bytes .../apple-aspect.scaled.to.fill-50x50-@3x.png | Bin 4157 -> 0 bytes .../apple-aspect.scaled.to.fill-60x30-@1x.png | Bin 1254 -> 0 bytes .../apple-aspect.scaled.to.fill-60x30-@2x.png | Bin 2413 -> 0 bytes .../apple-aspect.scaled.to.fill-60x30-@3x.png | Bin 3324 -> 0 bytes ...pirate-aspect.scaled.to.fill-30x60-@1x.png | Bin 2740 -> 0 bytes ...pirate-aspect.scaled.to.fill-30x60-@2x.png | Bin 6929 -> 0 bytes ...pirate-aspect.scaled.to.fill-30x60-@3x.png | Bin 14261 -> 0 bytes ...pirate-aspect.scaled.to.fill-50x50-@1x.png | Bin 3413 -> 0 bytes ...pirate-aspect.scaled.to.fill-50x50-@2x.png | Bin 9591 -> 0 bytes ...pirate-aspect.scaled.to.fill-50x50-@3x.png | Bin 14876 -> 0 bytes ...pirate-aspect.scaled.to.fill-60x30-@1x.png | Bin 2538 -> 0 bytes ...pirate-aspect.scaled.to.fill-60x30-@2x.png | Bin 6436 -> 0 bytes ...pirate-aspect.scaled.to.fill-60x30-@3x.png | Bin 9721 -> 0 bytes ...ainbow-aspect.scaled.to.fill-30x60-@1x.png | Bin 2143 -> 0 bytes ...ainbow-aspect.scaled.to.fill-30x60-@2x.png | Bin 7322 -> 0 bytes ...ainbow-aspect.scaled.to.fill-30x60-@3x.png | Bin 14965 -> 0 bytes ...ainbow-aspect.scaled.to.fill-50x50-@1x.png | Bin 3371 -> 0 bytes ...ainbow-aspect.scaled.to.fill-50x50-@2x.png | Bin 11847 -> 0 bytes ...ainbow-aspect.scaled.to.fill-50x50-@3x.png | Bin 25073 -> 0 bytes ...ainbow-aspect.scaled.to.fill-60x30-@1x.png | Bin 3359 -> 0 bytes ...ainbow-aspect.scaled.to.fill-60x30-@2x.png | Bin 11542 -> 0 bytes ...ainbow-aspect.scaled.to.fill-60x30-@3x.png | Bin 25124 -> 0 bytes ...nicorn-aspect.scaled.to.fill-30x60-@1x.png | Bin 4523 -> 0 bytes ...nicorn-aspect.scaled.to.fill-30x60-@2x.png | Bin 12874 -> 0 bytes ...nicorn-aspect.scaled.to.fill-30x60-@3x.png | Bin 24874 -> 0 bytes ...nicorn-aspect.scaled.to.fill-50x50-@1x.png | Bin 5386 -> 0 bytes ...nicorn-aspect.scaled.to.fill-50x50-@2x.png | Bin 16587 -> 0 bytes ...nicorn-aspect.scaled.to.fill-50x50-@3x.png | Bin 30952 -> 0 bytes ...nicorn-aspect.scaled.to.fill-60x30-@1x.png | Bin 3842 -> 0 bytes ...nicorn-aspect.scaled.to.fill-60x30-@2x.png | Bin 11681 -> 0 bytes ...nicorn-aspect.scaled.to.fill-60x30-@3x.png | Bin 22806 -> 0 bytes .../apple-aspect.scaled.to.fit-30x60-@1x.png | Bin 771 -> 0 bytes .../apple-aspect.scaled.to.fit-30x60-@2x.png | Bin 1659 -> 0 bytes .../apple-aspect.scaled.to.fit-30x60-@3x.png | Bin 2420 -> 0 bytes .../apple-aspect.scaled.to.fit-50x50-@1x.png | Bin 989 -> 0 bytes .../apple-aspect.scaled.to.fit-50x50-@2x.png | Bin 1958 -> 0 bytes .../apple-aspect.scaled.to.fit-50x50-@3x.png | Bin 2949 -> 0 bytes .../apple-aspect.scaled.to.fit-60x30-@1x.png | Bin 696 -> 0 bytes .../apple-aspect.scaled.to.fit-60x30-@2x.png | Bin 1319 -> 0 bytes .../apple-aspect.scaled.to.fit-60x30-@3x.png | Bin 2167 -> 0 bytes .../pirate-aspect.scaled.to.fit-30x60-@1x.png | Bin 1103 -> 0 bytes .../pirate-aspect.scaled.to.fit-30x60-@2x.png | Bin 2813 -> 0 bytes .../pirate-aspect.scaled.to.fit-30x60-@3x.png | Bin 4588 -> 0 bytes .../pirate-aspect.scaled.to.fit-50x50-@1x.png | Bin 2055 -> 0 bytes .../pirate-aspect.scaled.to.fit-50x50-@2x.png | Bin 5027 -> 0 bytes .../pirate-aspect.scaled.to.fit-50x50-@3x.png | Bin 9977 -> 0 bytes .../pirate-aspect.scaled.to.fit-60x30-@1x.png | Bin 2126 -> 0 bytes .../pirate-aspect.scaled.to.fit-60x30-@2x.png | Bin 5143 -> 0 bytes .../pirate-aspect.scaled.to.fit-60x30-@3x.png | Bin 10154 -> 0 bytes ...rainbow-aspect.scaled.to.fit-30x60-@1x.png | Bin 1151 -> 0 bytes ...rainbow-aspect.scaled.to.fit-30x60-@2x.png | Bin 3676 -> 0 bytes ...rainbow-aspect.scaled.to.fit-30x60-@3x.png | Bin 7442 -> 0 bytes ...rainbow-aspect.scaled.to.fit-50x50-@1x.png | Bin 2502 -> 0 bytes ...rainbow-aspect.scaled.to.fit-50x50-@2x.png | Bin 8592 -> 0 bytes ...rainbow-aspect.scaled.to.fit-50x50-@3x.png | Bin 18253 -> 0 bytes ...rainbow-aspect.scaled.to.fit-60x30-@1x.png | Bin 3249 -> 0 bytes ...rainbow-aspect.scaled.to.fit-60x30-@2x.png | Bin 11398 -> 0 bytes ...rainbow-aspect.scaled.to.fit-60x30-@3x.png | Bin 23958 -> 0 bytes ...unicorn-aspect.scaled.to.fit-30x60-@1x.png | Bin 2631 -> 0 bytes ...unicorn-aspect.scaled.to.fit-30x60-@2x.png | Bin 7295 -> 0 bytes ...unicorn-aspect.scaled.to.fit-30x60-@3x.png | Bin 14330 -> 0 bytes ...unicorn-aspect.scaled.to.fit-50x50-@1x.png | Bin 5465 -> 0 bytes ...unicorn-aspect.scaled.to.fit-50x50-@2x.png | Bin 15402 -> 0 bytes ...unicorn-aspect.scaled.to.fit-50x50-@3x.png | Bin 31002 -> 0 bytes ...unicorn-aspect.scaled.to.fit-60x30-@1x.png | Bin 2429 -> 0 bytes ...unicorn-aspect.scaled.to.fit-60x30-@2x.png | Bin 7420 -> 0 bytes ...unicorn-aspect.scaled.to.fit-60x30-@3x.png | Bin 13333 -> 0 bytes .../Modified Images/Circle/apple-circle.png | Bin 6477 -> 0 bytes .../Modified Images/Circle/pirate-circle.png | Bin 26506 -> 0 bytes .../Modified Images/Circle/rainbow-circle.png | Bin 15651 -> 0 bytes .../Modified Images/Circle/unicorn-circle.png | Bin 46395 -> 0 bytes .../unicorn-blurred-8-ios-8.1.png | Bin 113845 -> 0 bytes .../unicorn-blurred-8-ios-8.3.png | Bin 109042 -> 0 bytes .../unicorn-blurred-8-ios-9.png | Bin 109545 -> 0 bytes .../Core Image Filters/unicorn-sepia.tone.png | Bin 32850 -> 0 bytes .../Radius/apple-radius-20.png | Bin 5404 -> 0 bytes .../Radius/pirate-radius-20.png | Bin 33890 -> 0 bytes .../Radius/rainbow-radius-20.png | Bin 43652 -> 0 bytes .../Radius/unicorn-radius-20.png | Bin 43637 -> 0 bytes ...rate-scaled.to.size.circle-100x100-@1x.png | Bin 8570 -> 0 bytes ...rate-scaled.to.size.circle-100x100-@2x.png | Bin 22258 -> 0 bytes ...rate-scaled.to.size.circle-100x100-@3x.png | Bin 46567 -> 0 bytes ...ze.with.rounded.corners-100x100x20-@1x.png | Bin 8298 -> 0 bytes ...ze.with.rounded.corners-100x100x20-@2x.png | Bin 21684 -> 0 bytes ...ze.with.rounded.corners-100x100x20-@3x.png | Bin 45798 -> 0 bytes .../Scaled/apple-scaled-30x60-@1x.png | Bin 874 -> 0 bytes .../Scaled/apple-scaled-30x60-@2x.png | Bin 1845 -> 0 bytes .../Scaled/apple-scaled-30x60-@3x.png | Bin 2569 -> 0 bytes .../Scaled/apple-scaled-50x50-@1x.png | Bin 948 -> 0 bytes .../Scaled/apple-scaled-50x50-@2x.png | Bin 1787 -> 0 bytes .../Scaled/apple-scaled-50x50-@3x.png | Bin 3101 -> 0 bytes .../Scaled/apple-scaled-60x30-@1x.png | Bin 824 -> 0 bytes .../Scaled/apple-scaled-60x30-@2x.png | Bin 1607 -> 0 bytes .../Scaled/apple-scaled-60x30-@3x.png | Bin 2369 -> 0 bytes .../Scaled/pirate-scaled-30x60-@1x.png | Bin 2427 -> 0 bytes .../Scaled/pirate-scaled-30x60-@2x.png | Bin 5903 -> 0 bytes .../Scaled/pirate-scaled-30x60-@3x.png | Bin 10421 -> 0 bytes .../Scaled/pirate-scaled-50x50-@1x.png | Bin 2972 -> 0 bytes .../Scaled/pirate-scaled-50x50-@2x.png | Bin 7829 -> 0 bytes .../Scaled/pirate-scaled-50x50-@3x.png | Bin 12207 -> 0 bytes .../Scaled/pirate-scaled-60x30-@1x.png | Bin 2264 -> 0 bytes .../Scaled/pirate-scaled-60x30-@2x.png | Bin 5682 -> 0 bytes .../Scaled/pirate-scaled-60x30-@3x.png | Bin 8706 -> 0 bytes .../Scaled/rainbow-scaled-30x60-@1x.png | Bin 3316 -> 0 bytes .../Scaled/rainbow-scaled-30x60-@2x.png | Bin 11516 -> 0 bytes .../Scaled/rainbow-scaled-30x60-@3x.png | Bin 24621 -> 0 bytes .../Scaled/rainbow-scaled-50x50-@1x.png | Bin 4296 -> 0 bytes .../Scaled/rainbow-scaled-50x50-@2x.png | Bin 15498 -> 0 bytes .../Scaled/rainbow-scaled-50x50-@3x.png | Bin 33852 -> 0 bytes .../Scaled/rainbow-scaled-60x30-@1x.png | Bin 3208 -> 0 bytes .../Scaled/rainbow-scaled-60x30-@2x.png | Bin 11408 -> 0 bytes .../Scaled/rainbow-scaled-60x30-@3x.png | Bin 24315 -> 0 bytes .../Scaled/unicorn-scaled-30x60-@1x.png | Bin 4092 -> 0 bytes .../Scaled/unicorn-scaled-30x60-@2x.png | Bin 12424 -> 0 bytes .../Scaled/unicorn-scaled-30x60-@3x.png | Bin 23901 -> 0 bytes .../Scaled/unicorn-scaled-50x50-@1x.png | Bin 5115 -> 0 bytes .../Scaled/unicorn-scaled-50x50-@2x.png | Bin 15354 -> 0 bytes .../Scaled/unicorn-scaled-50x50-@3x.png | Bin 29787 -> 0 bytes .../Scaled/unicorn-scaled-60x30-@1x.png | Bin 3923 -> 0 bytes .../Scaled/unicorn-scaled-60x30-@2x.png | Bin 11690 -> 0 bytes .../Scaled/unicorn-scaled-60x30-@3x.png | Bin 22599 -> 0 bytes .../Tests/Resources/Original Images/apple.jpg | Bin 107695 -> 0 bytes .../Resources/Original Images/huge_map.jpg | Bin 7190373 -> 0 bytes .../Resources/Original Images/pirate.jpg | Bin 40599 -> 0 bytes .../Resources/Original Images/rainbow.jpg | Bin 16104 -> 0 bytes .../Resources/Original Images/unicorn.png | Bin 41646 -> 0 bytes .../AlamofireImage/Tests/UIButtonTests.swift | 888 ------ .../Tests/UIImage+AlamofireImageTests.swift | 115 - .../AlamofireImage/Tests/UIImageTests.swift | 392 --- .../Tests/UIImageViewTests.swift | 708 ----- .../iOS Example.xcodeproj/project.pbxproj | 551 ---- .../contents.xcworkspacedata | 7 - .../xcschemes/iOS Example.xcscheme | 91 - RIGImageGallery.xcodeproj/project.pbxproj | 84 +- .../RIGImageGalleryViewController.swift | 8 +- RIGImageGalleryDemo/AppDelegate.swift | 1 - .../Base.lproj/Main.storyboard | 4 +- RIGImageGalleryDemo/ViewController.swift | 50 +- 388 files changed, 66 insertions(+), 53253 deletions(-) delete mode 100644 Cartfile delete mode 100644 Cartfile.resolved delete mode 100644 Carthage/Checkouts/Alamofire/.gitignore delete mode 100644 Carthage/Checkouts/Alamofire/.travis.yml delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.podspec delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme delete mode 100644 Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/Alamofire/CHANGELOG.md delete mode 100644 Carthage/Checkouts/Alamofire/CONTRIBUTING.md delete mode 100644 Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md delete mode 100644 Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo.png delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo@2x.png delete mode 100644 Carthage/Checkouts/Alamofire/Example/Resources/Info.plist delete mode 100644 Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift delete mode 100644 Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift delete mode 100644 Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift delete mode 100644 Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj delete mode 100644 Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme delete mode 100644 Carthage/Checkouts/Alamofire/LICENSE delete mode 100644 Carthage/Checkouts/Alamofire/Package.swift delete mode 100644 Carthage/Checkouts/Alamofire/README.md delete mode 100644 Carthage/Checkouts/Alamofire/Source/Alamofire.h delete mode 100644 Carthage/Checkouts/Alamofire/Source/Alamofire.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Download.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Error.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist delete mode 100644 Carthage/Checkouts/Alamofire/Source/Info.plist delete mode 100644 Carthage/Checkouts/Alamofire/Source/Manager.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Notifications.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Request.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Response.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Result.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Stream.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Timeline.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Upload.swift delete mode 100644 Carthage/Checkouts/Alamofire/Source/Validation.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/CacheTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Info.plist delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/RequestTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-root-ca.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca1.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca2.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/expired.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/missing-dns-name-and-uri.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/multiple-dns-names.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca1.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca2.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/test.alamofire.org.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-dns-name.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-uri.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/wildcard.alamofire.org.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/intermediate-ca-disig.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/root-ca-disig.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/testssl-expire.disig.sk.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.crt delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.der delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/keyDER.der delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/randomGibberish.crt delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Images/rainbow.jpg delete mode 100644 Carthage/Checkouts/Alamofire/Tests/Resources/Images/unicorn.png delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ResponseSerializationTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ResponseTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ResultTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/TLSEvaluationTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/UploadTests.swift delete mode 100644 Carthage/Checkouts/Alamofire/Tests/ValidationTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/.gitignore delete mode 100644 Carthage/Checkouts/AlamofireImage/.gitmodules delete mode 100644 Carthage/Checkouts/AlamofireImage/.travis.yml delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.podspec delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.pbxproj delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage OSX.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage iOS.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage tvOS.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage watchOS.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/AlamofireImage.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/AlamofireImage/CHANGELOG.md delete mode 100644 Carthage/Checkouts/AlamofireImage/CONTRIBUTING.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Cartfile delete mode 100644 Carthage/Checkouts/AlamofireImage/Cartfile.resolved delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.gitignore delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.travis.yml delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.podspec delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CHANGELOG.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CONTRIBUTING.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/LICENSE delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Package.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/README.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.h delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Download.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Error.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Manager.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Notifications.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Request.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Response.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Result.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Stream.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Timeline.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Upload.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Validation.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Info.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-root-ca.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca1.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca2.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/expired.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/missing-dns-name-and-uri.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/multiple-dns-names.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca1.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca2.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/test.alamofire.org.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-dns-name.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-uri.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/wildcard.alamofire.org.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/intermediate-ca-disig.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/root-ca-disig.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/testssl-expire.disig.sk.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.crt delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.der delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/keyDER.der delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/randomGibberish.crt delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Images/rainbow.jpg delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Images/unicorn.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ResponseSerializationTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ResponseTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/TLSEvaluationTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ValidationTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Documentation/AlamofireImage 2.0 Migration Guide.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/AppDelegate.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Base.lproj/LaunchScreen.xib delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Gravatar.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/ImageCell.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/ImageViewController.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/AppIcon.appiconset/Contents.json delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Contents.json delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/ImagesViewController.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/Info.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Example/iOS-Example-Bridging-Header.h delete mode 100644 Carthage/Checkouts/AlamofireImage/LICENSE delete mode 100644 Carthage/Checkouts/AlamofireImage/Package.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/README.md delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/AlamofireImage.h delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/Image.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/ImageCache.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/ImageDownloader.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/ImageFilter.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/Info-tvOS.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/Info.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/Request+AlamofireImage.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/UIButton+AlamofireImage.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/UIImage+AlamofireImage.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Source/UIImageView+AlamofireImage.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/BaseTestCase.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/ImageCacheTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/ImageDownloaderTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/ImageFilterTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Info.plist delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/RequestTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill with Rounded Corners/pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill with Rounded Corners/pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill with Rounded Corners/pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/apple-circle.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/pirate-circle.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/rainbow-circle.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/unicorn-circle.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Core Image Filters/unicorn-blurred-8-ios-8.1.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Core Image Filters/unicorn-blurred-8-ios-8.3.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Core Image Filters/unicorn-blurred-8-ios-9.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Core Image Filters/unicorn-sepia.tone.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Radius/apple-radius-20.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Radius/pirate-radius-20.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Radius/rainbow-radius-20.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Radius/unicorn-radius-20.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled to Size Circle/pirate-scaled.to.size.circle-100x100-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled to Size Circle/pirate-scaled.to.size.circle-100x100-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled to Size Circle/pirate-scaled.to.size.circle-100x100-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled with Rounded Corners/pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled with Rounded Corners/pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled with Rounded Corners/pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/apple-scaled-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/pirate-scaled-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/rainbow-scaled-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-30x60-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-30x60-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-30x60-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-50x50-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-50x50-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-50x50-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-60x30-@1x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-60x30-@2x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Scaled/unicorn-scaled-60x30-@3x.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Original Images/apple.jpg delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Original Images/huge_map.jpg delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Original Images/pirate.jpg delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Original Images/rainbow.jpg delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/Resources/Original Images/unicorn.png delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/UIButtonTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/UIImage+AlamofireImageTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/UIImageTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/Tests/UIImageViewTests.swift delete mode 100644 Carthage/Checkouts/AlamofireImage/iOS Example.xcodeproj/project.pbxproj delete mode 100644 Carthage/Checkouts/AlamofireImage/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Carthage/Checkouts/AlamofireImage/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme diff --git a/Cartfile b/Cartfile deleted file mode 100644 index 5befc84..0000000 --- a/Cartfile +++ /dev/null @@ -1 +0,0 @@ -github "Alamofire/AlamofireImage" ~> 2.0 diff --git a/Cartfile.resolved b/Cartfile.resolved deleted file mode 100644 index 206be22..0000000 --- a/Cartfile.resolved +++ /dev/null @@ -1,2 +0,0 @@ -github "Alamofire/Alamofire" "3.2.0" -github "Alamofire/AlamofireImage" "2.3.1" diff --git a/Carthage/Checkouts/Alamofire/.gitignore b/Carthage/Checkouts/Alamofire/.gitignore deleted file mode 100644 index 222e8ec..0000000 --- a/Carthage/Checkouts/Alamofire/.gitignore +++ /dev/null @@ -1,39 +0,0 @@ -# Mac OS X -.DS_Store - -# Xcode - -## Build generated -build/ -DerivedData - -## Various settings -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata - -## Other -*.xccheckout -*.moved-aside -*.xcuserstate -*.xcscmblueprint - -## Obj-C/Swift specific -*.hmap -*.ipa - -## Playgrounds -timeline.xctimeline -playground.xcworkspace - -# Swift Package Manager -.build/ - -# Carthage -Carthage/Build diff --git a/Carthage/Checkouts/Alamofire/.travis.yml b/Carthage/Checkouts/Alamofire/.travis.yml deleted file mode 100644 index 637cda6..0000000 --- a/Carthage/Checkouts/Alamofire/.travis.yml +++ /dev/null @@ -1,60 +0,0 @@ -language: objective-c -osx_image: xcode7.2 -env: - global: - - LC_CTYPE=en_US.UTF-8 - - LANG=en_US.UTF-8 - - WORKSPACE=Alamofire.xcworkspace - - IOS_FRAMEWORK_SCHEME="Alamofire iOS" - - OSX_FRAMEWORK_SCHEME="Alamofire OSX" - - TVOS_FRAMEWORK_SCHEME="Alamofire tvOS" - - WATCHOS_FRAMEWORK_SCHEME="Alamofire watchOS" - - IOS_SDK=iphonesimulator9.2 - - OSX_SDK=macosx10.11 - - TVOS_SDK=appletvsimulator9.1 - - WATCHOS_SDK=watchsimulator2.1 - - EXAMPLE_SCHEME="iOS Example" - matrix: - - DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="YES" - - DESTINATION="OS=8.2,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.3,name=iPhone 5S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.4,name=iPhone 6" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.1,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.2,name=iPhone 6S Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="arch=x86_64" SCHEME="$OSX_FRAMEWORK_SCHEME" SDK="$OSX_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" - - DESTINATION="OS=9.1,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" SDK="$TVOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" - - DESTINATION="OS=2.1,name=Apple Watch - 38mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" SDK="$WATCHOS_SDK" RUN_TESTS="NO" BUILD_EXAMPLE="NO" POD_LINT="NO" -script: - - set -o pipefail - - xcodebuild -version - - xcodebuild -showsdks - - # Build Framework in Debug and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Framework in ReleaseTest and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Debug if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Release if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Run `pod lib lint` if specified - - if [ $POD_LINT == "YES" ]; then - pod lib lint; - fi diff --git a/Carthage/Checkouts/Alamofire/Alamofire.podspec b/Carthage/Checkouts/Alamofire/Alamofire.podspec deleted file mode 100644 index 9690c3e..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.podspec +++ /dev/null @@ -1,17 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'Alamofire' - s.version = '3.2.0' - s.license = 'MIT' - s.summary = 'Elegant HTTP Networking in Swift' - s.homepage = 'https://github.com/Alamofire/Alamofire' - s.social_media_url = 'http://twitter.com/AlamofireSF' - s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' } - s.source = { :git => 'https://github.com/Alamofire/Alamofire.git', :tag => s.version } - - s.ios.deployment_target = '8.0' - s.osx.deployment_target = '10.9' - s.tvos.deployment_target = '9.0' - s.watchos.deployment_target = '2.0' - - s.source_files = 'Source/*.swift' -end diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj b/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj deleted file mode 100644 index ccf8e9e..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1852 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 4C0B58391B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */; }; - 4C0B583A1B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */; }; - 4C0B62511BB1001C009302D3 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C0B62521BB1001C009302D3 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C0B62531BB1001C009302D3 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C0E5BF81B673D3400816CCC /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4C0E5BF91B673D3400816CCC /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4C1DC8541B68908E00476DE3 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4C1DC8551B68908E00476DE3 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4C23EB431B327C5B0090E0BC /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - 4C23EB441B327C5B0090E0BC /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - 4C256A531B096C770065714F /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C256A501B096C2C0065714F /* BaseTestCase.swift */; }; - 4C256A541B096C770065714F /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C256A501B096C2C0065714F /* BaseTestCase.swift */; }; - 4C3238E71B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */; }; - 4C3238E81B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */; }; - 4C33A1391B5207DB00873DFF /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1231B5207DB00873DFF /* rainbow.jpg */; }; - 4C33A13A1B5207DB00873DFF /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1231B5207DB00873DFF /* rainbow.jpg */; }; - 4C33A13B1B5207DB00873DFF /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1241B5207DB00873DFF /* unicorn.png */; }; - 4C33A13C1B5207DB00873DFF /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1241B5207DB00873DFF /* unicorn.png */; }; - 4C33A1431B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */; }; - 4C33A1441B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */; }; - 4C341BBA1B1A865A00C1B34D /* CacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C341BB91B1A865A00C1B34D /* CacheTests.swift */; }; - 4C341BBB1B1A865A00C1B34D /* CacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C341BB91B1A865A00C1B34D /* CacheTests.swift */; }; - 4C3D00541C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4C3D00551C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4C3D00561C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4C3D00581C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */; }; - 4C3D00591C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */; }; - 4C3D005A1C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */; }; - 4C4CBE7B1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */; }; - 4C4CBE7C1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */; }; - 4C574E6A1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C574E6B1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C574E6C1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C574E6D1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C743CF61C22772D00BCB23E /* certDER.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F831C1A72F8002DA1A9 /* certDER.cer */; }; - 4C743CF71C22772D00BCB23E /* certDER.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F841C1A72F8002DA1A9 /* certDER.crt */; }; - 4C743CF81C22772D00BCB23E /* certDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F851C1A72F8002DA1A9 /* certDER.der */; }; - 4C743CF91C22772D00BCB23E /* certPEM.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F861C1A72F8002DA1A9 /* certPEM.cer */; }; - 4C743CFA1C22772D00BCB23E /* certPEM.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F871C1A72F8002DA1A9 /* certPEM.crt */; }; - 4C743CFB1C22772D00BCB23E /* randomGibberish.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */; }; - 4C743CFC1C22772D00BCB23E /* keyDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */; }; - 4C743CFD1C22772D00BCB23E /* alamofire-root-ca.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */; }; - 4C743CFE1C22772D00BCB23E /* alamofire-signing-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */; }; - 4C743CFF1C22772D00BCB23E /* alamofire-signing-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */; }; - 4C743D001C22772D00BCB23E /* multiple-dns-names.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C441B535F400017E0BF /* multiple-dns-names.cer */; }; - 4C743D011C22772D00BCB23E /* signed-by-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C451B535F400017E0BF /* signed-by-ca1.cer */; }; - 4C743D021C22772D00BCB23E /* test.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C461B535F400017E0BF /* test.alamofire.org.cer */; }; - 4C743D031C22772D00BCB23E /* wildcard.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */; }; - 4C743D041C22772D00BCB23E /* expired.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C4F1B535F540017E0BF /* expired.cer */; }; - 4C743D051C22772D00BCB23E /* missing-dns-name-and-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */; }; - 4C743D061C22772D00BCB23E /* signed-by-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C511B535F540017E0BF /* signed-by-ca2.cer */; }; - 4C743D071C22772D00BCB23E /* valid-dns-name.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C521B535F540017E0BF /* valid-dns-name.cer */; }; - 4C743D081C22772D00BCB23E /* valid-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C531B535F540017E0BF /* valid-uri.cer */; }; - 4C743D091C22772D00BCB23E /* intermediate-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */; }; - 4C743D0A1C22772D00BCB23E /* root-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */; }; - 4C743D0B1C22772D00BCB23E /* testssl-expire.disig.sk.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */; }; - 4C743D0C1C22772E00BCB23E /* certDER.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F831C1A72F8002DA1A9 /* certDER.cer */; }; - 4C743D0D1C22772E00BCB23E /* certDER.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F841C1A72F8002DA1A9 /* certDER.crt */; }; - 4C743D0E1C22772E00BCB23E /* certDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F851C1A72F8002DA1A9 /* certDER.der */; }; - 4C743D0F1C22772E00BCB23E /* certPEM.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F861C1A72F8002DA1A9 /* certPEM.cer */; }; - 4C743D101C22772E00BCB23E /* certPEM.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F871C1A72F8002DA1A9 /* certPEM.crt */; }; - 4C743D111C22772E00BCB23E /* randomGibberish.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */; }; - 4C743D121C22772E00BCB23E /* keyDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */; }; - 4C743D131C22772E00BCB23E /* alamofire-root-ca.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */; }; - 4C743D141C22772E00BCB23E /* alamofire-signing-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */; }; - 4C743D151C22772E00BCB23E /* alamofire-signing-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */; }; - 4C743D161C22772E00BCB23E /* multiple-dns-names.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C441B535F400017E0BF /* multiple-dns-names.cer */; }; - 4C743D171C22772E00BCB23E /* signed-by-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C451B535F400017E0BF /* signed-by-ca1.cer */; }; - 4C743D181C22772E00BCB23E /* test.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C461B535F400017E0BF /* test.alamofire.org.cer */; }; - 4C743D191C22772E00BCB23E /* wildcard.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */; }; - 4C743D1A1C22772E00BCB23E /* expired.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C4F1B535F540017E0BF /* expired.cer */; }; - 4C743D1B1C22772E00BCB23E /* missing-dns-name-and-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */; }; - 4C743D1C1C22772E00BCB23E /* signed-by-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C511B535F540017E0BF /* signed-by-ca2.cer */; }; - 4C743D1D1C22772E00BCB23E /* valid-dns-name.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C521B535F540017E0BF /* valid-dns-name.cer */; }; - 4C743D1E1C22772E00BCB23E /* valid-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C531B535F540017E0BF /* valid-uri.cer */; }; - 4C743D1F1C22772E00BCB23E /* intermediate-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */; }; - 4C743D201C22772E00BCB23E /* root-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */; }; - 4C743D211C22772E00BCB23E /* testssl-expire.disig.sk.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */; }; - 4C743D221C22772F00BCB23E /* certDER.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F831C1A72F8002DA1A9 /* certDER.cer */; }; - 4C743D231C22772F00BCB23E /* certDER.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F841C1A72F8002DA1A9 /* certDER.crt */; }; - 4C743D241C22772F00BCB23E /* certDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F851C1A72F8002DA1A9 /* certDER.der */; }; - 4C743D251C22772F00BCB23E /* certPEM.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F861C1A72F8002DA1A9 /* certPEM.cer */; }; - 4C743D261C22772F00BCB23E /* certPEM.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F871C1A72F8002DA1A9 /* certPEM.crt */; }; - 4C743D271C22772F00BCB23E /* randomGibberish.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */; }; - 4C743D281C22772F00BCB23E /* keyDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */; }; - 4C743D291C22772F00BCB23E /* alamofire-root-ca.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */; }; - 4C743D2A1C22772F00BCB23E /* alamofire-signing-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */; }; - 4C743D2B1C22772F00BCB23E /* alamofire-signing-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */; }; - 4C743D2C1C22772F00BCB23E /* multiple-dns-names.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C441B535F400017E0BF /* multiple-dns-names.cer */; }; - 4C743D2D1C22772F00BCB23E /* signed-by-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C451B535F400017E0BF /* signed-by-ca1.cer */; }; - 4C743D2E1C22772F00BCB23E /* test.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C461B535F400017E0BF /* test.alamofire.org.cer */; }; - 4C743D2F1C22772F00BCB23E /* wildcard.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */; }; - 4C743D301C22772F00BCB23E /* expired.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C4F1B535F540017E0BF /* expired.cer */; }; - 4C743D311C22772F00BCB23E /* missing-dns-name-and-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */; }; - 4C743D321C22772F00BCB23E /* signed-by-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C511B535F540017E0BF /* signed-by-ca2.cer */; }; - 4C743D331C22772F00BCB23E /* valid-dns-name.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C521B535F540017E0BF /* valid-dns-name.cer */; }; - 4C743D341C22772F00BCB23E /* valid-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C531B535F540017E0BF /* valid-uri.cer */; }; - 4C743D351C22772F00BCB23E /* intermediate-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */; }; - 4C743D361C22772F00BCB23E /* root-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */; }; - 4C743D371C22772F00BCB23E /* testssl-expire.disig.sk.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */; }; - 4C7C8D221B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */; }; - 4C7C8D231B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */; }; - 4C80F9F81BB730EF001B46D2 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C80F9F91BB730F6001B46D2 /* String+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */; }; - 4C811F8D1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - 4C811F8E1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - 4C83F41B1B749E0E00203445 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4C83F41C1B749E0E00203445 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4C83F41D1B749E0E00203445 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4CA028C51B7466C500C84163 /* ResultTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA028C41B7466C500C84163 /* ResultTests.swift */; }; - 4CA028C61B7466C500C84163 /* ResultTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA028C41B7466C500C84163 /* ResultTests.swift */; }; - 4CB928291C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CB9282A1C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CB9282B1C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CB9282C1C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CCFA79A1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */; }; - 4CCFA79B1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */; }; - 4CDE2C371AF8932A00BABAE5 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - 4CDE2C381AF8932A00BABAE5 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - 4CDE2C3A1AF899EC00BABAE5 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - 4CDE2C3B1AF899EC00BABAE5 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - 4CDE2C3D1AF89D4900BABAE5 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - 4CDE2C3E1AF89D4900BABAE5 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - 4CDE2C401AF89E0700BABAE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - 4CDE2C411AF89E0700BABAE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - 4CDE2C431AF89F0900BABAE5 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - 4CDE2C441AF89F0900BABAE5 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - 4CDE2C461AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - 4CDE2C471AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - 4CE2724F1AF88FB500F1D59A /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - 4CE272501AF88FB500F1D59A /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - 4CEC605A1B745C9100E684F4 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4CEC605B1B745C9100E684F4 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4CEC605C1B745C9B00E684F4 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CEE82AD1C6813CF00E9C9F0 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4CF626F91BA7CB3E0011A099 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */; }; - 4CF627061BA7CBE30011A099 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CF627071BA7CBF60011A099 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - 4CF627081BA7CBF60011A099 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4CF627091BA7CBF60011A099 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - 4CF6270A1BA7CBF60011A099 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - 4CF6270B1BA7CBF60011A099 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - 4CF6270C1BA7CBF60011A099 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4CF6270D1BA7CBF60011A099 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - 4CF6270E1BA7CBF60011A099 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - 4CF6270F1BA7CBF60011A099 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - 4CF627101BA7CBF60011A099 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - 4CF627111BA7CBF60011A099 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4CF627121BA7CBF60011A099 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - 4CF627131BA7CBF60011A099 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - 4CF627141BA7CC240011A099 /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C256A501B096C2C0065714F /* BaseTestCase.swift */; }; - 4CF627151BA7CC240011A099 /* AuthenticationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */; }; - 4CF627161BA7CC240011A099 /* ManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D1C6F419D52968002E74FE /* ManagerTests.swift */; }; - 4CF627171BA7CC240011A099 /* ParameterEncodingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */; }; - 4CF627181BA7CC240011A099 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5D19A9674D0040E7D1 /* RequestTests.swift */; }; - 4CF627191BA7CC240011A099 /* ResponseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */; }; - 4CF6271A1BA7CC240011A099 /* ResultTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA028C41B7466C500C84163 /* ResultTests.swift */; }; - 4CF6271B1BA7CC240011A099 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */; }; - 4CF6271C1BA7CC240011A099 /* CacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C341BB91B1A865A00C1B34D /* CacheTests.swift */; }; - 4CF6271D1BA7CC240011A099 /* DownloadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */; }; - 4CF6271E1BA7CC240011A099 /* MultipartFormDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */; }; - 4CF6271F1BA7CC240011A099 /* ResponseSerializationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */; }; - 4CF627201BA7CC240011A099 /* ServerTrustPolicyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */; }; - 4CF627211BA7CC240011A099 /* TLSEvaluationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */; }; - 4CF627221BA7CC240011A099 /* UploadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5F19A9674D0040E7D1 /* UploadTests.swift */; }; - 4CF627231BA7CC240011A099 /* URLProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */; }; - 4CF627241BA7CC240011A099 /* ValidationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */; }; - 4CF627341BA7CC300011A099 /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1231B5207DB00873DFF /* rainbow.jpg */; }; - 4CF627351BA7CC300011A099 /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1241B5207DB00873DFF /* unicorn.png */; }; - 4DD67C241A5C58FB00ED2280 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DD67C251A5C590000ED2280 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - 8035DB621BAB492500466CB3 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8111E3319A95C8B0040E7D1 /* Alamofire.framework */; }; - E4202FCF1B667AA100C997FB /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - E4202FD01B667AA100C997FB /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - E4202FD11B667AA100C997FB /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - E4202FD21B667AA100C997FB /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - E4202FD31B667AA100C997FB /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - E4202FD41B667AA100C997FB /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - E4202FD51B667AA100C997FB /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - E4202FD61B667AA100C997FB /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - E4202FD71B667AA100C997FB /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - E4202FD81B667AA100C997FB /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - F8111E3919A95C8B0040E7D1 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F8111E6019A9674D0040E7D1 /* DownloadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */; }; - F8111E6119A9674D0040E7D1 /* ParameterEncodingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */; }; - F8111E6419A9674D0040E7D1 /* UploadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5F19A9674D0040E7D1 /* UploadTests.swift */; }; - F829C6B81A7A94F100A2CD59 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */; }; - F829C6BE1A7A950600A2CD59 /* ParameterEncodingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */; }; - F829C6BF1A7A950600A2CD59 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5D19A9674D0040E7D1 /* RequestTests.swift */; }; - F829C6C01A7A950600A2CD59 /* ManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D1C6F419D52968002E74FE /* ManagerTests.swift */; }; - F829C6C11A7A950600A2CD59 /* ResponseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */; }; - F829C6C21A7A950600A2CD59 /* UploadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5F19A9674D0040E7D1 /* UploadTests.swift */; }; - F829C6C31A7A950600A2CD59 /* DownloadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */; }; - F829C6C41A7A950600A2CD59 /* AuthenticationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */; }; - F829C6C51A7A950600A2CD59 /* ValidationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */; }; - F86AEFE71AE6A312007D9C76 /* TLSEvaluationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */; }; - F86AEFE81AE6A315007D9C76 /* TLSEvaluationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */; }; - F8858DDD19A96B4300F55F93 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5D19A9674D0040E7D1 /* RequestTests.swift */; }; - F8858DDE19A96B4400F55F93 /* ResponseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */; }; - F897FF4119AA800700AB5182 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - F8AE910219D28DCC0078C7B2 /* ValidationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */; }; - F8D1C6F519D52968002E74FE /* ManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D1C6F419D52968002E74FE /* ManagerTests.swift */; }; - F8E6024519CB46A800A3E7F1 /* AuthenticationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 4CF626FA1BA7CB3E0011A099 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F8111E2A19A95C8B0040E7D1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4CF626EE1BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS"; - }; - F8111E6519A967880040E7D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F8111E2A19A95C8B0040E7D1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F8111E3219A95C8B0040E7D1; - remoteInfo = Alamofire; - }; - F829C6B91A7A94F100A2CD59 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F8111E2A19A95C8B0040E7D1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4DD67C0A1A5C55C900ED2280; - remoteInfo = "Alamofire OSX"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResponseSerializationTests.swift; sourceTree = ""; }; - 4C0B62501BB1001C009302D3 /* Response.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Response.swift; sourceTree = ""; }; - 4C0E02681BF99A18004E7F18 /* Info-tvOS.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-tvOS.plist"; path = "Source/Info-tvOS.plist"; sourceTree = SOURCE_ROOT; }; - 4C0E5BF71B673D3400816CCC /* Result.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Result.swift; sourceTree = ""; }; - 4C1DC8531B68908E00476DE3 /* Error.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; - 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MultipartFormData.swift; sourceTree = ""; }; - 4C256A501B096C2C0065714F /* BaseTestCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseTestCase.swift; sourceTree = ""; }; - 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MultipartFormDataTests.swift; sourceTree = ""; }; - 4C33A1231B5207DB00873DFF /* rainbow.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = rainbow.jpg; sourceTree = ""; }; - 4C33A1241B5207DB00873DFF /* unicorn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = unicorn.png; sourceTree = ""; }; - 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServerTrustPolicyTests.swift; sourceTree = ""; }; - 4C341BB91B1A865A00C1B34D /* CacheTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CacheTests.swift; sourceTree = ""; }; - 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = ""; }; - 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManagerTests.swift; sourceTree = ""; }; - 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+AlamofireTests.swift"; sourceTree = ""; }; - 4C574E691C67D207000B3128 /* Timeline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Timeline.swift; sourceTree = ""; }; - 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSURLSessionConfiguration+AlamofireTests.swift"; sourceTree = ""; }; - 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServerTrustPolicy.swift; sourceTree = ""; }; - 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "alamofire-root-ca.cer"; path = "alamofire.org/alamofire-root-ca.cer"; sourceTree = ""; }; - 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "alamofire-signing-ca1.cer"; path = "alamofire.org/alamofire-signing-ca1.cer"; sourceTree = ""; }; - 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "alamofire-signing-ca2.cer"; path = "alamofire.org/alamofire-signing-ca2.cer"; sourceTree = ""; }; - 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = wildcard.alamofire.org.cer; path = alamofire.org/wildcard.alamofire.org.cer; sourceTree = ""; }; - 4C812C441B535F400017E0BF /* multiple-dns-names.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "multiple-dns-names.cer"; path = "alamofire.org/multiple-dns-names.cer"; sourceTree = ""; }; - 4C812C451B535F400017E0BF /* signed-by-ca1.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "signed-by-ca1.cer"; path = "alamofire.org/signed-by-ca1.cer"; sourceTree = ""; }; - 4C812C461B535F400017E0BF /* test.alamofire.org.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = test.alamofire.org.cer; path = alamofire.org/test.alamofire.org.cer; sourceTree = ""; }; - 4C812C4F1B535F540017E0BF /* expired.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = expired.cer; path = alamofire.org/expired.cer; sourceTree = ""; }; - 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "missing-dns-name-and-uri.cer"; path = "alamofire.org/missing-dns-name-and-uri.cer"; sourceTree = ""; }; - 4C812C511B535F540017E0BF /* signed-by-ca2.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "signed-by-ca2.cer"; path = "alamofire.org/signed-by-ca2.cer"; sourceTree = ""; }; - 4C812C521B535F540017E0BF /* valid-dns-name.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "valid-dns-name.cer"; path = "alamofire.org/valid-dns-name.cer"; sourceTree = ""; }; - 4C812C531B535F540017E0BF /* valid-uri.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "valid-uri.cer"; path = "alamofire.org/valid-uri.cer"; sourceTree = ""; }; - 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "intermediate-ca-disig.cer"; path = "disig.sk/intermediate-ca-disig.cer"; sourceTree = ""; }; - 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "root-ca-disig.cer"; path = "disig.sk/root-ca-disig.cer"; sourceTree = ""; }; - 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "testssl-expire.disig.sk.cer"; path = "disig.sk/testssl-expire.disig.sk.cer"; sourceTree = ""; }; - 4C83F41A1B749E0E00203445 /* Stream.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stream.swift; sourceTree = ""; }; - 4CA028C41B7466C500C84163 /* ResultTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResultTests.swift; sourceTree = ""; }; - 4CB928281C66BFBC00CE5F08 /* Notifications.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Notifications.swift; sourceTree = ""; }; - 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = URLProtocolTests.swift; sourceTree = ""; }; - 4CDE2C361AF8932A00BABAE5 /* Manager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Manager.swift; sourceTree = ""; }; - 4CDE2C391AF899EC00BABAE5 /* Request.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Request.swift; sourceTree = ""; }; - 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Download.swift; sourceTree = ""; }; - 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Upload.swift; sourceTree = ""; }; - 4CDE2C421AF89F0900BABAE5 /* Validation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Validation.swift; sourceTree = ""; }; - 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResponseSerialization.swift; sourceTree = ""; }; - 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParameterEncoding.swift; sourceTree = ""; }; - 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4CF626F81BA7CB3E0011A099 /* Alamofire tvOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Alamofire tvOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 72998D721BF26173006D3F69 /* Info-tvOS.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-tvOS.plist"; sourceTree = ""; }; - B39E2F831C1A72F8002DA1A9 /* certDER.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = certDER.cer; path = selfSignedAndMalformedCerts/certDER.cer; sourceTree = ""; }; - B39E2F841C1A72F8002DA1A9 /* certDER.crt */ = {isa = PBXFileReference; lastKnownFileType = file; name = certDER.crt; path = selfSignedAndMalformedCerts/certDER.crt; sourceTree = ""; }; - B39E2F851C1A72F8002DA1A9 /* certDER.der */ = {isa = PBXFileReference; lastKnownFileType = file; name = certDER.der; path = selfSignedAndMalformedCerts/certDER.der; sourceTree = ""; }; - B39E2F861C1A72F8002DA1A9 /* certPEM.cer */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = certPEM.cer; path = selfSignedAndMalformedCerts/certPEM.cer; sourceTree = ""; }; - B39E2F871C1A72F8002DA1A9 /* certPEM.crt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = certPEM.crt; path = selfSignedAndMalformedCerts/certPEM.crt; sourceTree = ""; }; - B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */ = {isa = PBXFileReference; lastKnownFileType = file; name = randomGibberish.crt; path = selfSignedAndMalformedCerts/randomGibberish.crt; sourceTree = ""; }; - B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */ = {isa = PBXFileReference; lastKnownFileType = file; name = keyDER.der; path = selfSignedAndMalformedCerts/keyDER.der; sourceTree = ""; }; - E4202FE01B667AA100C997FB /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F8111E3319A95C8B0040E7D1 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F8111E3719A95C8B0040E7D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F8111E3819A95C8B0040E7D1 /* Alamofire.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Alamofire.h; sourceTree = ""; }; - F8111E3E19A95C8B0040E7D1 /* Alamofire iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Alamofire iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - F8111E4119A95C8B0040E7D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DownloadTests.swift; sourceTree = ""; }; - F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParameterEncodingTests.swift; sourceTree = ""; }; - F8111E5D19A9674D0040E7D1 /* RequestTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RequestTests.swift; sourceTree = ""; }; - F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResponseTests.swift; sourceTree = ""; }; - F8111E5F19A9674D0040E7D1 /* UploadTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UploadTests.swift; sourceTree = ""; }; - F829C6B21A7A94F100A2CD59 /* Alamofire OSX Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Alamofire OSX Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TLSEvaluationTests.swift; sourceTree = ""; }; - F897FF4019AA800700AB5182 /* Alamofire.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Alamofire.swift; sourceTree = ""; }; - F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ValidationTests.swift; sourceTree = ""; }; - F8D1C6F419D52968002E74FE /* ManagerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ManagerTests.swift; sourceTree = ""; }; - F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AuthenticationTests.swift; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 4CF626EB1BA7CB3E0011A099 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF626F51BA7CB3E0011A099 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CF626F91BA7CB3E0011A099 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C071A5C55C900ED2280 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FD91B667AA100C997FB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E2F19A95C8B0040E7D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3B19A95C8B0040E7D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8035DB621BAB492500466CB3 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F829C6AF1A7A94F100A2CD59 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F829C6B81A7A94F100A2CD59 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 4C256A4E1B09656A0065714F /* Core */ = { - isa = PBXGroup; - children = ( - F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */, - F8D1C6F419D52968002E74FE /* ManagerTests.swift */, - F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */, - F8111E5D19A9674D0040E7D1 /* RequestTests.swift */, - F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */, - 4CA028C41B7466C500C84163 /* ResultTests.swift */, - ); - name = Core; - sourceTree = ""; - }; - 4C256A4F1B09656E0065714F /* Features */ = { - isa = PBXGroup; - children = ( - 4C341BB91B1A865A00C1B34D /* CacheTests.swift */, - F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */, - 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */, - 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */, - 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */, - 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */, - F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */, - F8111E5F19A9674D0040E7D1 /* UploadTests.swift */, - 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */, - F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */, - ); - name = Features; - sourceTree = ""; - }; - 4C3238E91B3617A600FE04AE /* Resources */ = { - isa = PBXGroup; - children = ( - 4C33A1171B5207DB00873DFF /* Certificates */, - 4C33A1221B5207DB00873DFF /* Images */, - ); - name = Resources; - sourceTree = ""; - }; - 4C33A1171B5207DB00873DFF /* Certificates */ = { - isa = PBXGroup; - children = ( - B39E2F821C1A72E5002DA1A9 /* Varying Encoding Types and Extensions */, - 4C812C391B535F060017E0BF /* alamofire.org */, - 4C812C381B535F000017E0BF /* disig.sk */, - ); - name = Certificates; - path = Resources/Certificates; - sourceTree = ""; - }; - 4C33A1221B5207DB00873DFF /* Images */ = { - isa = PBXGroup; - children = ( - 4C33A1231B5207DB00873DFF /* rainbow.jpg */, - 4C33A1241B5207DB00873DFF /* unicorn.png */, - ); - name = Images; - path = Resources/Images; - sourceTree = ""; - }; - 4C33A13D1B52080800873DFF /* Root */ = { - isa = PBXGroup; - children = ( - 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */, - ); - name = Root; - sourceTree = ""; - }; - 4C33A13E1B52081100873DFF /* Intermediate */ = { - isa = PBXGroup; - children = ( - 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */, - 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */, - ); - name = Intermediate; - sourceTree = ""; - }; - 4C33A13F1B52081A00873DFF /* Leaf */ = { - isa = PBXGroup; - children = ( - 4C33A1401B52084400873DFF /* Signed by CA1 */, - 4C33A1411B52084E00873DFF /* Signed by CA2 */, - ); - name = Leaf; - sourceTree = ""; - }; - 4C33A1401B52084400873DFF /* Signed by CA1 */ = { - isa = PBXGroup; - children = ( - 4C812C441B535F400017E0BF /* multiple-dns-names.cer */, - 4C812C451B535F400017E0BF /* signed-by-ca1.cer */, - 4C812C461B535F400017E0BF /* test.alamofire.org.cer */, - 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */, - ); - name = "Signed by CA1"; - sourceTree = ""; - }; - 4C33A1411B52084E00873DFF /* Signed by CA2 */ = { - isa = PBXGroup; - children = ( - 4C812C4F1B535F540017E0BF /* expired.cer */, - 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */, - 4C812C511B535F540017E0BF /* signed-by-ca2.cer */, - 4C812C521B535F540017E0BF /* valid-dns-name.cer */, - 4C812C531B535F540017E0BF /* valid-uri.cer */, - ); - name = "Signed by CA2"; - sourceTree = ""; - }; - 4C7C8D201B9D0D7300948136 /* Extensions */ = { - isa = PBXGroup; - children = ( - 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */, - 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */, - ); - name = Extensions; - sourceTree = ""; - }; - 4C812C381B535F000017E0BF /* disig.sk */ = { - isa = PBXGroup; - children = ( - 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */, - 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */, - 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */, - ); - name = disig.sk; - sourceTree = ""; - }; - 4C812C391B535F060017E0BF /* alamofire.org */ = { - isa = PBXGroup; - children = ( - 4C33A13D1B52080800873DFF /* Root */, - 4C33A13E1B52081100873DFF /* Intermediate */, - 4C33A13F1B52081A00873DFF /* Leaf */, - ); - name = alamofire.org; - sourceTree = ""; - }; - 4CDE2C481AF8A14A00BABAE5 /* Core */ = { - isa = PBXGroup; - children = ( - 4C1DC8531B68908E00476DE3 /* Error.swift */, - 4CDE2C361AF8932A00BABAE5 /* Manager.swift */, - 4CB928281C66BFBC00CE5F08 /* Notifications.swift */, - 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */, - 4CDE2C391AF899EC00BABAE5 /* Request.swift */, - 4C0B62501BB1001C009302D3 /* Response.swift */, - 4C0E5BF71B673D3400816CCC /* Result.swift */, - ); - name = Core; - sourceTree = ""; - }; - 4CDE2C491AF8A14E00BABAE5 /* Features */ = { - isa = PBXGroup; - children = ( - 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */, - 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */, - 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */, - 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */, - 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */, - 4C83F41A1B749E0E00203445 /* Stream.swift */, - 4C574E691C67D207000B3128 /* Timeline.swift */, - 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */, - 4CDE2C421AF89F0900BABAE5 /* Validation.swift */, - ); - name = Features; - sourceTree = ""; - }; - B39E2F821C1A72E5002DA1A9 /* Varying Encoding Types and Extensions */ = { - isa = PBXGroup; - children = ( - B39E2F831C1A72F8002DA1A9 /* certDER.cer */, - B39E2F841C1A72F8002DA1A9 /* certDER.crt */, - B39E2F851C1A72F8002DA1A9 /* certDER.der */, - B39E2F861C1A72F8002DA1A9 /* certPEM.cer */, - B39E2F871C1A72F8002DA1A9 /* certPEM.crt */, - B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */, - B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */, - ); - name = "Varying Encoding Types and Extensions"; - sourceTree = ""; - }; - F8111E2919A95C8B0040E7D1 = { - isa = PBXGroup; - children = ( - F8111E3519A95C8B0040E7D1 /* Source */, - F8111E3F19A95C8B0040E7D1 /* Tests */, - F8111E3419A95C8B0040E7D1 /* Products */, - ); - sourceTree = ""; - }; - F8111E3419A95C8B0040E7D1 /* Products */ = { - isa = PBXGroup; - children = ( - F8111E3319A95C8B0040E7D1 /* Alamofire.framework */, - F8111E3E19A95C8B0040E7D1 /* Alamofire iOS Tests.xctest */, - 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */, - F829C6B21A7A94F100A2CD59 /* Alamofire OSX Tests.xctest */, - E4202FE01B667AA100C997FB /* Alamofire.framework */, - 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */, - 4CF626F81BA7CB3E0011A099 /* Alamofire tvOS Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - F8111E3519A95C8B0040E7D1 /* Source */ = { - isa = PBXGroup; - children = ( - F897FF4019AA800700AB5182 /* Alamofire.swift */, - 4CDE2C481AF8A14A00BABAE5 /* Core */, - 4CDE2C491AF8A14E00BABAE5 /* Features */, - F8111E3619A95C8B0040E7D1 /* Supporting Files */, - ); - path = Source; - sourceTree = ""; - }; - F8111E3619A95C8B0040E7D1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - F8111E3819A95C8B0040E7D1 /* Alamofire.h */, - F8111E3719A95C8B0040E7D1 /* Info.plist */, - 72998D721BF26173006D3F69 /* Info-tvOS.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - F8111E3F19A95C8B0040E7D1 /* Tests */ = { - isa = PBXGroup; - children = ( - 4C256A501B096C2C0065714F /* BaseTestCase.swift */, - 4C256A4E1B09656A0065714F /* Core */, - 4C7C8D201B9D0D7300948136 /* Extensions */, - 4C256A4F1B09656E0065714F /* Features */, - 4C3238E91B3617A600FE04AE /* Resources */, - F8111E4019A95C8B0040E7D1 /* Supporting Files */, - ); - path = Tests; - sourceTree = ""; - }; - F8111E4019A95C8B0040E7D1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - F8111E4119A95C8B0040E7D1 /* Info.plist */, - 4C0E02681BF99A18004E7F18 /* Info-tvOS.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 4CF626EC1BA7CB3E0011A099 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CF627061BA7CBE30011A099 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C081A5C55C900ED2280 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4DD67C241A5C58FB00ED2280 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FDA1B667AA100C997FB /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CEC605C1B745C9B00E684F4 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3019A95C8B0040E7D1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F8111E3919A95C8B0040E7D1 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 4CF626EE1BA7CB3E0011A099 /* Alamofire tvOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4CF627041BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS" */; - buildPhases = ( - 4CF626EA1BA7CB3E0011A099 /* Sources */, - 4CF626EB1BA7CB3E0011A099 /* Frameworks */, - 4CF626EC1BA7CB3E0011A099 /* Headers */, - 4CF626ED1BA7CB3E0011A099 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire tvOS"; - productName = "Alamofire tvOS"; - productReference = 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - 4CF626F71BA7CB3E0011A099 /* Alamofire tvOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4CF627051BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS Tests" */; - buildPhases = ( - 4CF626F41BA7CB3E0011A099 /* Sources */, - 4CF626F51BA7CB3E0011A099 /* Frameworks */, - 4CF626F61BA7CB3E0011A099 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4CF626FB1BA7CB3E0011A099 /* PBXTargetDependency */, - ); - name = "Alamofire tvOS Tests"; - productName = "Alamofire tvOSTests"; - productReference = 4CF626F81BA7CB3E0011A099 /* Alamofire tvOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 4DD67C0A1A5C55C900ED2280 /* Alamofire OSX */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4DD67C1E1A5C55C900ED2280 /* Build configuration list for PBXNativeTarget "Alamofire OSX" */; - buildPhases = ( - 4DD67C061A5C55C900ED2280 /* Sources */, - 4DD67C071A5C55C900ED2280 /* Frameworks */, - 4DD67C081A5C55C900ED2280 /* Headers */, - 4DD67C091A5C55C900ED2280 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire OSX"; - productName = AlamofireOSX; - productReference = 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - E4202FCD1B667AA100C997FB /* Alamofire watchOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = E4202FDD1B667AA100C997FB /* Build configuration list for PBXNativeTarget "Alamofire watchOS" */; - buildPhases = ( - E4202FCE1B667AA100C997FB /* Sources */, - E4202FD91B667AA100C997FB /* Frameworks */, - E4202FDA1B667AA100C997FB /* Headers */, - E4202FDC1B667AA100C997FB /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire watchOS"; - productName = Alamofire; - productReference = E4202FE01B667AA100C997FB /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - F8111E3219A95C8B0040E7D1 /* Alamofire iOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8111E4619A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS" */; - buildPhases = ( - F8111E2E19A95C8B0040E7D1 /* Sources */, - F8111E2F19A95C8B0040E7D1 /* Frameworks */, - F8111E3019A95C8B0040E7D1 /* Headers */, - F8111E3119A95C8B0040E7D1 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire iOS"; - productName = Alamofire; - productReference = F8111E3319A95C8B0040E7D1 /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - F8111E3D19A95C8B0040E7D1 /* Alamofire iOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8111E4919A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS Tests" */; - buildPhases = ( - F8111E3A19A95C8B0040E7D1 /* Sources */, - F8111E3B19A95C8B0040E7D1 /* Frameworks */, - F8111E3C19A95C8B0040E7D1 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - F8111E6619A967880040E7D1 /* PBXTargetDependency */, - ); - name = "Alamofire iOS Tests"; - productName = AlamofireTests; - productReference = F8111E3E19A95C8B0040E7D1 /* Alamofire iOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - F829C6B11A7A94F100A2CD59 /* Alamofire OSX Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = F829C6BB1A7A94F100A2CD59 /* Build configuration list for PBXNativeTarget "Alamofire OSX Tests" */; - buildPhases = ( - F829C6AE1A7A94F100A2CD59 /* Sources */, - F829C6AF1A7A94F100A2CD59 /* Frameworks */, - F829C6B01A7A94F100A2CD59 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - F829C6BA1A7A94F100A2CD59 /* PBXTargetDependency */, - ); - name = "Alamofire OSX Tests"; - productName = "Alamofire OSX Tests"; - productReference = F829C6B21A7A94F100A2CD59 /* Alamofire OSX Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - F8111E2A19A95C8B0040E7D1 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0700; - LastUpgradeCheck = 0700; - ORGANIZATIONNAME = Alamofire; - TargetAttributes = { - 4CF626EE1BA7CB3E0011A099 = { - CreatedOnToolsVersion = 7.1; - }; - 4CF626F71BA7CB3E0011A099 = { - CreatedOnToolsVersion = 7.1; - }; - 4DD67C0A1A5C55C900ED2280 = { - CreatedOnToolsVersion = 6.1.1; - }; - F8111E3219A95C8B0040E7D1 = { - CreatedOnToolsVersion = 6.0; - }; - F8111E3D19A95C8B0040E7D1 = { - CreatedOnToolsVersion = 6.0; - }; - F829C6B11A7A94F100A2CD59 = { - CreatedOnToolsVersion = 6.1.1; - }; - }; - }; - buildConfigurationList = F8111E2D19A95C8B0040E7D1 /* Build configuration list for PBXProject "Alamofire" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = F8111E2919A95C8B0040E7D1; - productRefGroup = F8111E3419A95C8B0040E7D1 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - F8111E3219A95C8B0040E7D1 /* Alamofire iOS */, - F8111E3D19A95C8B0040E7D1 /* Alamofire iOS Tests */, - 4DD67C0A1A5C55C900ED2280 /* Alamofire OSX */, - F829C6B11A7A94F100A2CD59 /* Alamofire OSX Tests */, - 4CF626EE1BA7CB3E0011A099 /* Alamofire tvOS */, - 4CF626F71BA7CB3E0011A099 /* Alamofire tvOS Tests */, - E4202FCD1B667AA100C997FB /* Alamofire watchOS */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 4CF626ED1BA7CB3E0011A099 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF626F61BA7CB3E0011A099 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C743D031C22772D00BCB23E /* wildcard.alamofire.org.cer in Resources */, - 4C743CFF1C22772D00BCB23E /* alamofire-signing-ca2.cer in Resources */, - 4C743D061C22772D00BCB23E /* signed-by-ca2.cer in Resources */, - 4CF627341BA7CC300011A099 /* rainbow.jpg in Resources */, - 4C743D081C22772D00BCB23E /* valid-uri.cer in Resources */, - 4C743CFC1C22772D00BCB23E /* keyDER.der in Resources */, - 4C743CF81C22772D00BCB23E /* certDER.der in Resources */, - 4C743D051C22772D00BCB23E /* missing-dns-name-and-uri.cer in Resources */, - 4C743CFB1C22772D00BCB23E /* randomGibberish.crt in Resources */, - 4C743D0B1C22772D00BCB23E /* testssl-expire.disig.sk.cer in Resources */, - 4C743CFE1C22772D00BCB23E /* alamofire-signing-ca1.cer in Resources */, - 4C743D001C22772D00BCB23E /* multiple-dns-names.cer in Resources */, - 4C743D011C22772D00BCB23E /* signed-by-ca1.cer in Resources */, - 4C743D021C22772D00BCB23E /* test.alamofire.org.cer in Resources */, - 4C743CF61C22772D00BCB23E /* certDER.cer in Resources */, - 4C743D0A1C22772D00BCB23E /* root-ca-disig.cer in Resources */, - 4C743CFD1C22772D00BCB23E /* alamofire-root-ca.cer in Resources */, - 4C743CF91C22772D00BCB23E /* certPEM.cer in Resources */, - 4CF627351BA7CC300011A099 /* unicorn.png in Resources */, - 4C743CFA1C22772D00BCB23E /* certPEM.crt in Resources */, - 4C743D091C22772D00BCB23E /* intermediate-ca-disig.cer in Resources */, - 4C743CF71C22772D00BCB23E /* certDER.crt in Resources */, - 4C743D071C22772D00BCB23E /* valid-dns-name.cer in Resources */, - 4C743D041C22772D00BCB23E /* expired.cer in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C091A5C55C900ED2280 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FDC1B667AA100C997FB /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3119A95C8B0040E7D1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3C19A95C8B0040E7D1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C743D2F1C22772F00BCB23E /* wildcard.alamofire.org.cer in Resources */, - 4C743D2B1C22772F00BCB23E /* alamofire-signing-ca2.cer in Resources */, - 4C743D321C22772F00BCB23E /* signed-by-ca2.cer in Resources */, - 4C33A13B1B5207DB00873DFF /* unicorn.png in Resources */, - 4C743D341C22772F00BCB23E /* valid-uri.cer in Resources */, - 4C743D281C22772F00BCB23E /* keyDER.der in Resources */, - 4C743D241C22772F00BCB23E /* certDER.der in Resources */, - 4C743D311C22772F00BCB23E /* missing-dns-name-and-uri.cer in Resources */, - 4C743D271C22772F00BCB23E /* randomGibberish.crt in Resources */, - 4C743D371C22772F00BCB23E /* testssl-expire.disig.sk.cer in Resources */, - 4C743D2A1C22772F00BCB23E /* alamofire-signing-ca1.cer in Resources */, - 4C743D2C1C22772F00BCB23E /* multiple-dns-names.cer in Resources */, - 4C743D2D1C22772F00BCB23E /* signed-by-ca1.cer in Resources */, - 4C743D2E1C22772F00BCB23E /* test.alamofire.org.cer in Resources */, - 4C743D221C22772F00BCB23E /* certDER.cer in Resources */, - 4C743D361C22772F00BCB23E /* root-ca-disig.cer in Resources */, - 4C743D291C22772F00BCB23E /* alamofire-root-ca.cer in Resources */, - 4C743D251C22772F00BCB23E /* certPEM.cer in Resources */, - 4C33A1391B5207DB00873DFF /* rainbow.jpg in Resources */, - 4C743D261C22772F00BCB23E /* certPEM.crt in Resources */, - 4C743D351C22772F00BCB23E /* intermediate-ca-disig.cer in Resources */, - 4C743D231C22772F00BCB23E /* certDER.crt in Resources */, - 4C743D331C22772F00BCB23E /* valid-dns-name.cer in Resources */, - 4C743D301C22772F00BCB23E /* expired.cer in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F829C6B01A7A94F100A2CD59 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C743D191C22772E00BCB23E /* wildcard.alamofire.org.cer in Resources */, - 4C743D151C22772E00BCB23E /* alamofire-signing-ca2.cer in Resources */, - 4C743D1C1C22772E00BCB23E /* signed-by-ca2.cer in Resources */, - 4C33A13C1B5207DB00873DFF /* unicorn.png in Resources */, - 4C743D1E1C22772E00BCB23E /* valid-uri.cer in Resources */, - 4C743D121C22772E00BCB23E /* keyDER.der in Resources */, - 4C743D0E1C22772E00BCB23E /* certDER.der in Resources */, - 4C743D1B1C22772E00BCB23E /* missing-dns-name-and-uri.cer in Resources */, - 4C743D111C22772E00BCB23E /* randomGibberish.crt in Resources */, - 4C743D211C22772E00BCB23E /* testssl-expire.disig.sk.cer in Resources */, - 4C743D141C22772E00BCB23E /* alamofire-signing-ca1.cer in Resources */, - 4C743D161C22772E00BCB23E /* multiple-dns-names.cer in Resources */, - 4C743D171C22772E00BCB23E /* signed-by-ca1.cer in Resources */, - 4C743D181C22772E00BCB23E /* test.alamofire.org.cer in Resources */, - 4C743D0C1C22772E00BCB23E /* certDER.cer in Resources */, - 4C743D201C22772E00BCB23E /* root-ca-disig.cer in Resources */, - 4C743D131C22772E00BCB23E /* alamofire-root-ca.cer in Resources */, - 4C743D0F1C22772E00BCB23E /* certPEM.cer in Resources */, - 4C33A13A1B5207DB00873DFF /* rainbow.jpg in Resources */, - 4C743D101C22772E00BCB23E /* certPEM.crt in Resources */, - 4C743D1F1C22772E00BCB23E /* intermediate-ca-disig.cer in Resources */, - 4C743D0D1C22772E00BCB23E /* certDER.crt in Resources */, - 4C743D1D1C22772E00BCB23E /* valid-dns-name.cer in Resources */, - 4C743D1A1C22772E00BCB23E /* expired.cer in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 4CF626EA1BA7CB3E0011A099 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6C1C67D207000B3128 /* Timeline.swift in Sources */, - 4CF627121BA7CBF60011A099 /* Upload.swift in Sources */, - 4CF627111BA7CBF60011A099 /* Stream.swift in Sources */, - 4CF6270C1BA7CBF60011A099 /* Result.swift in Sources */, - 4CF627081BA7CBF60011A099 /* Error.swift in Sources */, - 4CF627131BA7CBF60011A099 /* Validation.swift in Sources */, - 4CF6270E1BA7CBF60011A099 /* MultipartFormData.swift in Sources */, - 4C80F9F81BB730EF001B46D2 /* Response.swift in Sources */, - 4CB9282B1C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4CF627091BA7CBF60011A099 /* Manager.swift in Sources */, - 4CF6270F1BA7CBF60011A099 /* ResponseSerialization.swift in Sources */, - 4CF6270B1BA7CBF60011A099 /* Request.swift in Sources */, - 4C3D00561C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */, - 4CF6270A1BA7CBF60011A099 /* ParameterEncoding.swift in Sources */, - 4CF627101BA7CBF60011A099 /* ServerTrustPolicy.swift in Sources */, - 4CF6270D1BA7CBF60011A099 /* Download.swift in Sources */, - 4CF627071BA7CBF60011A099 /* Alamofire.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF626F41BA7CB3E0011A099 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CF627181BA7CC240011A099 /* RequestTests.swift in Sources */, - 4CF627211BA7CC240011A099 /* TLSEvaluationTests.swift in Sources */, - 4CF627221BA7CC240011A099 /* UploadTests.swift in Sources */, - 4C80F9F91BB730F6001B46D2 /* String+AlamofireTests.swift in Sources */, - 4CF6271E1BA7CC240011A099 /* MultipartFormDataTests.swift in Sources */, - 4CF627201BA7CC240011A099 /* ServerTrustPolicyTests.swift in Sources */, - 4CF627241BA7CC240011A099 /* ValidationTests.swift in Sources */, - 4CF627141BA7CC240011A099 /* BaseTestCase.swift in Sources */, - 4CF627151BA7CC240011A099 /* AuthenticationTests.swift in Sources */, - 4CF627171BA7CC240011A099 /* ParameterEncodingTests.swift in Sources */, - 4CF627191BA7CC240011A099 /* ResponseTests.swift in Sources */, - 4CF627231BA7CC240011A099 /* URLProtocolTests.swift in Sources */, - 4CF6271C1BA7CC240011A099 /* CacheTests.swift in Sources */, - 4CF627161BA7CC240011A099 /* ManagerTests.swift in Sources */, - 4CF6271A1BA7CC240011A099 /* ResultTests.swift in Sources */, - 4CF6271B1BA7CC240011A099 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */, - 4C3D005A1C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */, - 4CF6271F1BA7CC240011A099 /* ResponseSerializationTests.swift in Sources */, - 4CF6271D1BA7CC240011A099 /* DownloadTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C061A5C55C900ED2280 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6B1C67D207000B3128 /* Timeline.swift in Sources */, - 4CDE2C411AF89E0700BABAE5 /* Upload.swift in Sources */, - 4CE272501AF88FB500F1D59A /* ParameterEncoding.swift in Sources */, - 4CDE2C3B1AF899EC00BABAE5 /* Request.swift in Sources */, - 4CDE2C471AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */, - 4C1DC8551B68908E00476DE3 /* Error.swift in Sources */, - 4CDE2C381AF8932A00BABAE5 /* Manager.swift in Sources */, - 4C0B62521BB1001C009302D3 /* Response.swift in Sources */, - 4CB9282A1C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4DD67C251A5C590000ED2280 /* Alamofire.swift in Sources */, - 4C23EB441B327C5B0090E0BC /* MultipartFormData.swift in Sources */, - 4C811F8E1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */, - 4C3D00551C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */, - 4C83F41C1B749E0E00203445 /* Stream.swift in Sources */, - 4CDE2C3E1AF89D4900BABAE5 /* Download.swift in Sources */, - 4CDE2C441AF89F0900BABAE5 /* Validation.swift in Sources */, - 4C0E5BF91B673D3400816CCC /* Result.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FCE1B667AA100C997FB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6D1C67D207000B3128 /* Timeline.swift in Sources */, - 4CEE82AD1C6813CF00E9C9F0 /* NetworkReachabilityManager.swift in Sources */, - E4202FCF1B667AA100C997FB /* Upload.swift in Sources */, - E4202FD01B667AA100C997FB /* ParameterEncoding.swift in Sources */, - E4202FD11B667AA100C997FB /* Request.swift in Sources */, - 4CEC605A1B745C9100E684F4 /* Error.swift in Sources */, - E4202FD21B667AA100C997FB /* ResponseSerialization.swift in Sources */, - E4202FD31B667AA100C997FB /* Manager.swift in Sources */, - 4C0B62531BB1001C009302D3 /* Response.swift in Sources */, - 4CB9282C1C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4CEC605B1B745C9100E684F4 /* Result.swift in Sources */, - E4202FD41B667AA100C997FB /* Alamofire.swift in Sources */, - E4202FD51B667AA100C997FB /* MultipartFormData.swift in Sources */, - 4C83F41D1B749E0E00203445 /* Stream.swift in Sources */, - E4202FD61B667AA100C997FB /* ServerTrustPolicy.swift in Sources */, - E4202FD71B667AA100C997FB /* Download.swift in Sources */, - E4202FD81B667AA100C997FB /* Validation.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E2E19A95C8B0040E7D1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6A1C67D207000B3128 /* Timeline.swift in Sources */, - 4CDE2C401AF89E0700BABAE5 /* Upload.swift in Sources */, - 4CE2724F1AF88FB500F1D59A /* ParameterEncoding.swift in Sources */, - 4CDE2C3A1AF899EC00BABAE5 /* Request.swift in Sources */, - 4CDE2C461AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */, - 4C1DC8541B68908E00476DE3 /* Error.swift in Sources */, - 4CDE2C371AF8932A00BABAE5 /* Manager.swift in Sources */, - 4C0B62511BB1001C009302D3 /* Response.swift in Sources */, - F897FF4119AA800700AB5182 /* Alamofire.swift in Sources */, - 4C23EB431B327C5B0090E0BC /* MultipartFormData.swift in Sources */, - 4C811F8D1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */, - 4C3D00541C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */, - 4C83F41B1B749E0E00203445 /* Stream.swift in Sources */, - 4CDE2C3D1AF89D4900BABAE5 /* Download.swift in Sources */, - 4CDE2C431AF89F0900BABAE5 /* Validation.swift in Sources */, - 4CB928291C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4C0E5BF81B673D3400816CCC /* Result.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3A19A95C8B0040E7D1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C3238E71B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */, - 4C33A1431B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */, - 4C341BBA1B1A865A00C1B34D /* CacheTests.swift in Sources */, - 4C4CBE7B1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */, - 4CA028C51B7466C500C84163 /* ResultTests.swift in Sources */, - 4CCFA79A1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */, - F86AEFE71AE6A312007D9C76 /* TLSEvaluationTests.swift in Sources */, - 4C0B58391B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */, - F8858DDD19A96B4300F55F93 /* RequestTests.swift in Sources */, - 4C256A531B096C770065714F /* BaseTestCase.swift in Sources */, - F8E6024519CB46A800A3E7F1 /* AuthenticationTests.swift in Sources */, - F8858DDE19A96B4400F55F93 /* ResponseTests.swift in Sources */, - F8D1C6F519D52968002E74FE /* ManagerTests.swift in Sources */, - F8AE910219D28DCC0078C7B2 /* ValidationTests.swift in Sources */, - F8111E6119A9674D0040E7D1 /* ParameterEncodingTests.swift in Sources */, - F8111E6419A9674D0040E7D1 /* UploadTests.swift in Sources */, - 4C3D00581C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */, - F8111E6019A9674D0040E7D1 /* DownloadTests.swift in Sources */, - 4C7C8D221B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F829C6AE1A7A94F100A2CD59 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C3238E81B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */, - 4C33A1441B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */, - 4C341BBB1B1A865A00C1B34D /* CacheTests.swift in Sources */, - 4C4CBE7C1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */, - 4CA028C61B7466C500C84163 /* ResultTests.swift in Sources */, - 4CCFA79B1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */, - F829C6BE1A7A950600A2CD59 /* ParameterEncodingTests.swift in Sources */, - 4C0B583A1B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */, - F829C6BF1A7A950600A2CD59 /* RequestTests.swift in Sources */, - 4C256A541B096C770065714F /* BaseTestCase.swift in Sources */, - F829C6C01A7A950600A2CD59 /* ManagerTests.swift in Sources */, - F829C6C11A7A950600A2CD59 /* ResponseTests.swift in Sources */, - F829C6C21A7A950600A2CD59 /* UploadTests.swift in Sources */, - F829C6C31A7A950600A2CD59 /* DownloadTests.swift in Sources */, - F829C6C41A7A950600A2CD59 /* AuthenticationTests.swift in Sources */, - F829C6C51A7A950600A2CD59 /* ValidationTests.swift in Sources */, - 4C3D00591C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */, - F86AEFE81AE6A315007D9C76 /* TLSEvaluationTests.swift in Sources */, - 4C7C8D231B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 4CF626FB1BA7CB3E0011A099 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4CF626EE1BA7CB3E0011A099 /* Alamofire tvOS */; - targetProxy = 4CF626FA1BA7CB3E0011A099 /* PBXContainerItemProxy */; - }; - F8111E6619A967880040E7D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F8111E3219A95C8B0040E7D1 /* Alamofire iOS */; - targetProxy = F8111E6519A967880040E7D1 /* PBXContainerItemProxy */; - }; - F829C6BA1A7A94F100A2CD59 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4DD67C0A1A5C55C900ED2280 /* Alamofire OSX */; - targetProxy = F829C6B91A7A94F100A2CD59 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 4C0FFAF81C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 1; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = ReleaseTest; - }; - 4C0FFAF91C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - }; - name = ReleaseTest; - }; - 4C0FFAFA1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = ReleaseTest; - }; - 4C0FFAFB1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = ReleaseTest; - }; - 4C0FFAFC1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = ReleaseTest; - }; - 4C0FFAFD1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = ReleaseTest; - }; - 4C0FFAFE1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.Alamofire-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = ReleaseTest; - }; - 4C0FFAFF1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=watchsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULE_NAME = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = ReleaseTest; - }; - 4CF627001BA7CB3E0011A099 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Debug; - }; - 4CF627011BA7CB3E0011A099 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Release; - }; - 4CF627021BA7CB3E0011A099 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.Alamofire-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Debug; - }; - 4CF627031BA7CB3E0011A099 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.Alamofire-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Release; - }; - 4DD67C1F1A5C55C900ED2280 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - 4DD67C201A5C55C900ED2280 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Release; - }; - E4202FDE1B667AA100C997FB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=watchsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULE_NAME = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = watchos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = 4; - }; - name = Debug; - }; - E4202FDF1B667AA100C997FB /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=watchsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULE_NAME = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = Release; - }; - F8111E4419A95C8B0040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Debug; - }; - F8111E4519A95C8B0040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 1; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Release; - }; - F8111E4719A95C8B0040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - F8111E4819A95C8B0040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - }; - name = Release; - }; - F8111E4A19A95C8B0040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - F8111E4B19A95C8B0040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; - F829C6BC1A7A94F100A2CD59 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - F829C6BD1A7A94F100A2CD59 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 4CF627041BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4CF627001BA7CB3E0011A099 /* Debug */, - 4CF627011BA7CB3E0011A099 /* Release */, - 4C0FFAFD1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4CF627051BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4CF627021BA7CB3E0011A099 /* Debug */, - 4CF627031BA7CB3E0011A099 /* Release */, - 4C0FFAFE1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4DD67C1E1A5C55C900ED2280 /* Build configuration list for PBXNativeTarget "Alamofire OSX" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4DD67C1F1A5C55C900ED2280 /* Debug */, - 4DD67C201A5C55C900ED2280 /* Release */, - 4C0FFAFB1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E4202FDD1B667AA100C997FB /* Build configuration list for PBXNativeTarget "Alamofire watchOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E4202FDE1B667AA100C997FB /* Debug */, - E4202FDF1B667AA100C997FB /* Release */, - 4C0FFAFF1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E2D19A95C8B0040E7D1 /* Build configuration list for PBXProject "Alamofire" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E4419A95C8B0040E7D1 /* Debug */, - F8111E4519A95C8B0040E7D1 /* Release */, - 4C0FFAF81C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E4619A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E4719A95C8B0040E7D1 /* Debug */, - F8111E4819A95C8B0040E7D1 /* Release */, - 4C0FFAF91C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E4919A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E4A19A95C8B0040E7D1 /* Debug */, - F8111E4B19A95C8B0040E7D1 /* Release */, - 4C0FFAFA1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F829C6BB1A7A94F100A2CD59 /* Build configuration list for PBXNativeTarget "Alamofire OSX Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F829C6BC1A7A94F100A2CD59 /* Debug */, - F829C6BD1A7A94F100A2CD59 /* Release */, - 4C0FFAFC1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = F8111E2A19A95C8B0040E7D1 /* Project object */; -} diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 7d39b0e..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme b/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme deleted file mode 100644 index 2052c92..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme b/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme deleted file mode 100644 index b5f528e..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme b/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme deleted file mode 100644 index bdf82c7..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme b/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme deleted file mode 100644 index 9f7c434..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 748f4a0..0000000 --- a/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/CHANGELOG.md b/Carthage/Checkouts/Alamofire/CHANGELOG.md deleted file mode 100644 index 4c77692..0000000 --- a/Carthage/Checkouts/Alamofire/CHANGELOG.md +++ /dev/null @@ -1,1193 +0,0 @@ -# Change Log -All notable changes to this project will be documented in this file. -`Alamofire` adheres to [Semantic Versioning](http://semver.org/). - -#### 3.x Releases -- `3.2.x` Releases - [3.2.0](#320) -- `3.1.x` Releases - [3.1.0](#310) | [3.1.1](#311) | [3.1.2](#312) | [3.1.3](#313) | [3.1.4](#314) | [3.1.5](#315) -- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301) -- `3.0.0` Betas - [3.0.0-beta.1](#300-beta1) | [3.0.0-beta.2](#300-beta2) | [3.0.0-beta.3](#300-beta3) - -#### 2.x Releases -- `2.0.x` Releases - [2.0.0](#200) | [2.0.1](#201) | [2.0.2](#202) -- `2.0.0` Betas - [2.0.0-beta.1](#200-beta1) | [2.0.0-beta.2](#200-beta2) | [2.0.0-beta.3](#200-beta3) | [2.0.0-beta.4](#200-beta4) - -#### 1.x Releases -- `1.3.x` Releases - [1.3.0](#130) | [1.3.1](#131) -- `1.2.x` Releases - [1.2.0](#120) | [1.2.1](#121) | [1.2.2](#122) | [1.2.3](#123) -- `1.1.x` Releases - [1.1.0](#110) | [1.1.1](#111) | [1.1.2](#112) | [1.1.3](#113) | [1.1.4](#114) | [1.1.5](#115) -- `1.0.x` Releases - [1.0.0](#100) | [1.0.1](#101) - ---- - -## [3.2.0](https://github.com/Alamofire/Alamofire/releases/tag/3.2.0) -Released on 2016-02-07. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.2.0). - -#### Added -- Notifications that post when an `NSURLSessionTask` changes state to allow support for the - network activity indicator. - - Added by [Christian Noon](https://github.com/cnoon). -- `Timeline` struct to capture timings throughout the lifecycle of a `Request`. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1054](https://github.com/Alamofire/Alamofire/issues/1054). -- A new `Timeline` section to the README. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1054](https://github.com/Alamofire/Alamofire/issues/1054). -- `NetworkReachabilityManager` to listen for reachability status changes. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1053](https://github.com/Alamofire/Alamofire/issues/1053). -- Unit tests for all the testable network reachability manager APIs. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1053](https://github.com/Alamofire/Alamofire/issues/1053). -- A new `Network Reachability` section to the README. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1053](https://github.com/Alamofire/Alamofire/issues/1053). - -#### Updated -- The `NSURLSessionStream` APIs to support `tvOS`. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `ParameterEncoding` encode method to allow empty parameters to still be encoded. - - Updated by [Christian Noon](https://github.com/cnoon) in Regards to Issues - [#1032](https://github.com/Alamofire/Alamofire/issues/1032) and - [#1049](https://github.com/Alamofire/Alamofire/issues/1049). - -#### Fixed -- Broken CocoaDocs generation by moving iOS Example project into Examples folder. - - Fixed by [Jon Shier](https://github.com/jshier) in Pull Request - [#1027](https://github.com/Alamofire/Alamofire/issues/1027) in Regards to Issue - [#1025](https://github.com/Alamofire/Alamofire/issues/1025). - ---- - -## [3.1.5](https://github.com/Alamofire/Alamofire/releases/tag/3.1.5) -Released on 2016-01-17. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.5). - -#### Added -- `Package.swift` to the project to support Swift Package Manager (SPM). - - Added by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#979](https://github.com/Alamofire/Alamofire/pull/979). -- Safeguards to the `Request` class's `debugDescription` property. - - Added by [tokorom](https://github.com/tokorom) in Pull Request - [#983](https://github.com/Alamofire/Alamofire/pull/983). - -#### Updated -- `Accept-Language` header generation to use functional style. - - Updated by [Dapeng Gao](https://github.com/dapenggao) in Pull Request - [#982](https://github.com/Alamofire/Alamofire/pull/982). -- `Accept-Encoding` and `Accept-Language` header values to have separator spaces between values. - - Updated by [Christian Noon](https://github.com/cnoon). -- Copyright headers to include 2016! 🎉🎉🎉 - - Updated by [Christian Noon](https://github.com/cnoon). - -## [3.1.4](https://github.com/Alamofire/Alamofire/releases/tag/3.1.4) -Released on 2015-12-16. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.4). - -#### Added -- `NSTemporaryExceptionMinimumTLSVersion` documentation to the ATS section in the README. - - Added by [Marandon Antoine](https://github.com/ntnmrndn) in Pull Request - [#952](https://github.com/Alamofire/Alamofire/pull/952). -- Added `ReleaseTest` configuration to allow running tests against optimized build. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- Carthage instructions in the README to clearly callout the `carthage update` command. - - Updated by [vlad](https://github.com/vlastachu) in Pull Request - [#955](https://github.com/Alamofire/Alamofire/pull/955). -- `ParameterEncoding` to early out when passed an empty parameters dictionary. - - Updated by [Anthony Miller](https://github.com/AnthonyMDev) in Pull Request - [#954](https://github.com/Alamofire/Alamofire/pull/954). -- The `certificatesInBundle` to support `cer`, `crt` and `der` extensions. - - Updated by [Jacob Jennings](https://github.com/jacobjennings) in Pull Request - [#956](https://github.com/Alamofire/Alamofire/pull/956). -- The `ENABLE_TESTABILITY` flag to `NO` for Release configuration and disabled tests for - non-test builds to better support Carthage. - - Updated by [Jed Lewison](https://github.com/jedlewison) in Pull Request - [#953](https://github.com/Alamofire/Alamofire/pull/953). -- The server certificates for the TLS tests and added all certificates to all test targets. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Travis-CI configuration to Xcode 7.2, iOS 9.2, tvOS 9.1 and watchOS 2.1. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- `SecCertificate` array Swift workaround in `ServerTrustPolicy` for Xcode 7.2. - - Removed by [Christian Noon](https://github.com/cnoon). - -## [3.1.3](https://github.com/Alamofire/Alamofire/releases/tag/3.1.3) -Released on 2015-11-22. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.3). - -#### Added -- Custom `Info.plist` for tvOS setting the `UIRequiredDeviceCapabilities` to `arm64`. - - Added by [Simon Støvring](https://github.com/simonbs) in Pull Request - [#913](https://github.com/Alamofire/Alamofire/pull/913). - -#### Updated -- All code samples in the README to use `https` instead of `http`. - - Updated by [Tomonobu Sato](https://github.com/tmnb) in Pull Request - [#912](https://github.com/Alamofire/Alamofire/pull/912). - -## [3.1.2](https://github.com/Alamofire/Alamofire/releases/tag/3.1.2) -Released on 2015-11-06. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.2). - -#### Updated -- Code signing on iOS simulator builds to not sign simulator builds. - - Updated by [John Heaton](https://github.com/JRHeaton) in Pull Request - [#903](https://github.com/Alamofire/Alamofire/pull/903). -- Code signing on watchOS and tvOS simulators builds to not sign simulator builds. - - Updated by [Christian Noon](https://github.com/cnoon). - -## [3.1.1](https://github.com/Alamofire/Alamofire/releases/tag/3.1.1) -Released on 2015-10-31. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.1). - -#### Added -- Support for 204 response status codes in the response serializers. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#889](https://github.com/Alamofire/Alamofire/pull/889). -- ATS section to the README explaining how to configure the settings. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#876](https://github.com/Alamofire/Alamofire/issues/876). - -#### Updated -- Several unnecessary uses of `NSString` with `String`. - - Updated by [Nicholas Maccharoli](https://github.com/Nirma) in Pull Request - [#885](https://github.com/Alamofire/Alamofire/pull/885). -- Content type validation to always succeeds when server data is `nil` or zero length. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#890](https://github.com/Alamofire/Alamofire/pull/890). - -#### Removed -- The mention of rdar://22307360 from the README since Xcode 7.1 has been released. - - Removed by [Elvis Nuñez](https://github.com/3lvis) in Pull Request - [#891](https://github.com/Alamofire/Alamofire/pull/891). -- An unnecessary availability check now that Xcode 7.1 is out of beta. - - Removed by [Christian Noon](https://github.com/cnoon). -- The playground from the project due to instability reasons. - - Removed by [Christian Noon](https://github.com/cnoon). -- The data length checks in the `responseData` and `responseString` serializers. - - Removed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#889](https://github.com/Alamofire/Alamofire/pull/889). - -## [3.1.0](https://github.com/Alamofire/Alamofire/releases/tag/3.1.0) -Released on 2015-10-22. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.0). - -#### Added -- New tvOS framework and test targets to the project. - - Added by [Bob Scarano](https://github.com/bscarano) in Pull Request - [#767](https://github.com/Alamofire/Alamofire/pull/767). -- The tvOS deployment target to the podspec. - - Added by [Christian Noon](https://github.com/cnoon). -- The `BITCODE_GENERATION_MODE` user defined setting to tvOS framework target. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The README to include tvOS and bumped the required version of Xcode. - - Updated by [Christian Noon](https://github.com/cnoon). -- The default tvOS and watchOS deployment targets in the Xcode project. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `APPLICATION_EXTENSION_API_ONLY` enabled flag to `YES` in the tvOS framework target. - - Updated by [James Barrow](https://github.com/Baza207) in Pull Request - [#771](https://github.com/Alamofire/Alamofire/pull/771). -- The Travis-CI yaml file to run watchOS and tvOS builds and tests on xcode7.1 osx_image. - - Updated by [Christian Noon](https://github.com/cnoon). - ---- - -## [3.0.1](https://github.com/Alamofire/Alamofire/releases/tag/3.0.1) -Released on 2015-10-19. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.1). - -#### Added -- Tests around content type validation with accept parameters. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Content type validation issue where parameter parsing on `;` was incorrect. - - Fixed by [Christian Noon](https://github.com/cnoon). - -## [3.0.0](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0) -Released on 2015-10-10. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0). - -#### Updated -- `Downloading a File` code sample in the README to compile against Swift 2.0. - - Updated by [Screon](https://github.com/Screon) in Pull Request - [#827](https://github.com/Alamofire/Alamofire/pull/827). -- Download code samples in the README to use `response` serializer. - - Updated by [Christian Noon](https://github.com/cnoon). -- CocoaPods and Carthage installation instructions for 3.0. - - Updated by [Christian Noon](https://github.com/cnoon). -- Carthage description and installation instructions in the README. - - Updated by [Ashton Williams](https://github.com/Ashton-W) in Pull Request - [#843](https://github.com/Alamofire/Alamofire/pull/843). -- URL encoding internals to leverage the dictionary keys lazy evaluation. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Small typo in the Alamofire 3.0 Migration Guide `Response` section. - - Fixed by [neugartf](https://github.com/neugartf) in Pull Request - [#826](https://github.com/Alamofire/Alamofire/pull/826). -- User defined `BITCODE_GENERATION_MODE` setting for Carthage builds. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#835](https://github.com/Alamofire/Alamofire/issues/835). - ---- - -## [3.0.0-beta.3](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0-beta.3) -Released on 2015-09-27. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0-beta.3). - -#### Updated -- The `Response` initializer to have a `public` ACL instead of `internal`. - - Updated by [Christian Noon](https://github.com/cnoon). - -## [3.0.0-beta.2](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0-beta.2) -Released on 2015-09-26. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0-beta.2). - -#### Added -- Tests around the header behavior for redirected requests. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#798](https://github.com/Alamofire/Alamofire/issues/798). -- A migration guide for Alamofire 3.0 documenting all API changes. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- `Response` initializer to have `internal` ACL. - - Updated by [Christian Noon](https://github.com/cnoon). -- All sample code in the README to conform to the Alamofire 3.0 APIs. - - Updated by [Christian Noon](https://github.com/cnoon). -- URL percent escaping to only batch on OS's where required improving -overall performance. - - Updated by [Christian Noon](https://github.com/cnoon). -- Basic auth example in the README to compile on Swift 2.0. - - Updated by [David F. Muir V](https://github.com/dfmuir) in Pull Request - [#810](https://github.com/Alamofire/Alamofire/issues/810). - -#### Fixed -- Compiler errors in the playground due to the new response serializer APIs. - - Fixed by [Christian Noon](https://github.com/cnoon). - -## [3.0.0-beta.1](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0-beta.1) -Released on 2015-09-21. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0-beta.1). - -#### Added -- A new `Response` struct to simplify response serialization. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#792](https://github.com/Alamofire/Alamofire/pull/792). -- A new initializer to the `Manager` allowing dependency injection of the -underlying `NSURLSession`. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#795](https://github.com/Alamofire/Alamofire/pull/795). -- Tests around the new `Manager` initialization methods. - -#### Updated -- Result type to take two generic parameters (`Value` and `Error`) where `Error` -conforms to `ErrorType`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- All response serializers to now return the original server data as `NSData?`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- The `TaskDelegate` to store an error as an `NSError` instead of `ErrorType`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- The `ValidationResult` failure case to require an `NSError` instead of `ErrorType`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- All tests around response serialization and `Result` type usage. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- All response serializers to use the new `Response` type. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - - [#792](https://github.com/Alamofire/Alamofire/pull/792). -- The designated initializer for a `Manager` to accept a `SessionDelegate` parameter -allowing dependency injection for better background session support. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#795](https://github.com/Alamofire/Alamofire/pull/795). - ---- - -## [2.0.2](https://github.com/Alamofire/Alamofire/releases/tag/2.0.2) -Released on 2015-09-20. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.2). - -#### Updated -- The Embedded Framework documentation to include `git init` info. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#782](https://github.com/Alamofire/Alamofire/issues/782). - -#### Fixed -- Alamofire iOS framework target by adding Alamofire iOS Tests as Target Dependency. - - Fixed by [Nicky Gerritsen](https://github.com/nickygerritsen) in Pull Request - [#780](https://github.com/Alamofire/Alamofire/pull/780). -- Percent encoding issue for long Chinese strings using URL parameter encoding. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#206](https://github.com/Alamofire/Alamofire/issues/206). - -## [2.0.1](https://github.com/Alamofire/Alamofire/releases/tag/2.0.1) -Released on 2015-09-16. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.1). - -#### Updated -- The CocoaPods installation instructions in the README. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Carthage installation instructions in the README. - - Updated by [Gustavo Barbosa](https://github.com/barbosa) in Pull Request - [#759](https://github.com/Alamofire/Alamofire/pull/759). - -#### Fixed -- The link to the 2.0 migration guide in the README. - - Fixed by [Dwight Watson](https://github.com/dwightwatson) in Pull Request - [#750](https://github.com/Alamofire/Alamofire/pull/750). -- Issue where NTLM authentication credentials were not used for authentication challenges. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#721](https://github.com/Alamofire/Alamofire/pull/721). - -## [2.0.0](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0) -Released on 2015-09-09. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0). - -#### Added -- A new `URLEncodedInURL` case to the `ParameterEncoding` for encoding in the URL. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#742](https://github.com/Alamofire/Alamofire/pull/742). - ---- - -## [2.0.0-beta.4](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.4) -Released on 2015-09-06. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.4). - -#### Added -- The `parameters` and `encoding` parameters to download APIs. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#719](https://github.com/Alamofire/Alamofire/issues/719). -- Section to the README about wildcard domain matching with server trust policies. - - Added by [Sai](https://github.com/sai-prasanna) in Pull Request - [#718](https://github.com/Alamofire/Alamofire/pull/718). -- A UTF-8 charset to Content-Type header for a URL encoded body. - - Added by [Cheolhee Han](https://github.com/cheolhee) in Pull Request - [#731](https://github.com/Alamofire/Alamofire/pull/731). -- Tests around posting unicode parameters with URL encoding. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Pull Request - [#731](https://github.com/Alamofire/Alamofire/pull/731). -- Tests for uploading base 64 encoded image data inside JSON. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#738](https://github.com/Alamofire/Alamofire/issues/738). -- An Alamofire 2.0 migration guide document to the new Documentation folder. - - Added by [Christian Noon](https://github.com/cnoon). -- A Migration Guides section to the README with link to 2.0 guide. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- Response serialization to prevent unnecessary call to response serializer. - - Updated by [Julien Ducret](https://github.com/brocoo) in Pull Request - [#716](https://github.com/Alamofire/Alamofire/pull/716). -- Travis-CI yaml file to support iOS 9, OSX 10.11 and Xcode 7. - - Updated by [Christian Noon](https://github.com/cnoon). -- Result types to store an `ErrorType` instead of `NSError`. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#732](https://github.com/Alamofire/Alamofire/issues/732). -- Docstrings on the download method to be more accurate. - - Updated by [Christian Noon](https://github.com/cnoon). -- The README to require Xcode 7 beta 6. - - Updated by [Christian Noon](https://github.com/cnoon). -- The background session section of the README to use non-deprecated API. - - Updated by [David F. Muir V](https://github.com/dfmuir) in Pull Request - [#724](https://github.com/Alamofire/Alamofire/pull/724). -- The playground to use the `Result` type. - - Updated by [Jonas Schmid](https://github.com/jschmid) in Pull Request - [#726](https://github.com/Alamofire/Alamofire/pull/726). -- Updated progress code samples in the README to show how to call onto the main queue. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- The AFNetworking sections from the FAQ in the README. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Issue on Windows where the wildcarded cert name in the test suite included asterisk. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#723](https://github.com/Alamofire/Alamofire/issues/723). -- Crash when multipart form data was uploaded from in-memory data on background session. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#740](https://github.com/Alamofire/Alamofire/issues/740). -- Issue where the background session completion handler was not called on the main queue. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#728](https://github.com/Alamofire/Alamofire/issues/728). - -## [2.0.0-beta.3](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.3) -Released on 2015-08-25. - -#### Removed -- The override for `NSMutableURLRequest` for the `URLRequestConvertible` protocol -conformance that could cause unwanted URL request referencing. - - Removed by [Christian Noon](https://github.com/cnoon). - -## [2.0.0-beta.2](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.2) -Released on 2015-08-24. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.2). - -#### Added -- Host and certificate chain validation section to the README. - - Added by [Christian Noon](https://github.com/cnoon). -- Tests verifying configuration headers are sent with all configuration types. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#692](https://github.com/Alamofire/Alamofire/issues/692). -- New rdar to the list in the README about the #available check issue. - - Added by [Christian Noon](https://github.com/cnoon). -- Override for `NSMutableURLRequest` for the `URLRequestConvertible` protocol. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The README to note that CocoaPods 0.38.2 is required. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#682](https://github.com/Alamofire/Alamofire/issues/682). -- The README to include note about keeping a reference to the `Manager`. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#681](https://github.com/Alamofire/Alamofire/issues/681). -- Server trust host validation over to use SSL policy evaluation. - - Updated by [Christian Noon](https://github.com/cnoon). -- The documentation for the `URLRequestConvertible` section in the README. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `ServerTrustPolicyManager` to be more flexible by using `public` ACL. - - Updated by [Jan Riehn](https://github.com/jriehn) in Pull Request - [#696](https://github.com/Alamofire/Alamofire/pull/696). -- The `ServerTrustPolicyManager` policies property to use `public` ACL and -added docstrings. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Ono response serializer example for Swift 2.0 in the README. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#700](https://github.com/Alamofire/Alamofire/issues/700). -- `Result` failure case to store an `ErrorType` instead of `NSError`. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#703](https://github.com/Alamofire/Alamofire/issues/703). -- All source code to compile with Xcode 7 beta 6. - - Updated by [Michael Gray](https://github.com/mishagray) in Pull Request - [#707](https://github.com/Alamofire/Alamofire/pull/707). - -#### Removed -- The `required` declaration on the `Manager` init method. - - Removed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#672](https://github.com/Alamofire/Alamofire/issues/672). - -#### Fixed -- Issue where the `TaskDelegate` operation queue would leak if the task was -never started. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Compiler issue on OS X target when creating background configurations -in the test suite. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#693](https://github.com/Alamofire/Alamofire/issues/693). - -## [2.0.0-beta.1](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.1) -Released on 2015-08-10. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.1). - -#### Added -- A `watchOS` deployment target to the podspec. - - Added by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#574](https://github.com/Alamofire/Alamofire/pull/574). -- Full screen support in the iOS Example App. - - Added by [Corinne Krych](https://github.com/corinnekrych) in Pull Request - [#612](https://github.com/Alamofire/Alamofire/pull/612). -- Temporary workaround for `SecCertificate` array compiler crash. - - Added by [Robert Rasmussen](https://github.com/robrasmussen) in Issue - [#610](https://github.com/Alamofire/Alamofire/issues/610). -- `Result` and `Error` types to refactor response validation and serialization. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#627](https://github.com/Alamofire/Alamofire/pull/627). -- Tests around response data, string and json serialization result behavior. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#627](https://github.com/Alamofire/Alamofire/pull/627). -- `CustomStringConvertible` and `CustomDebugStringConvertible` conformance -to the `Result` enumeration. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#648](https://github.com/Alamofire/Alamofire/pull/648). -- A Resume Data section to the README inside the Downloads section. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#648](https://github.com/Alamofire/Alamofire/pull/648). -- A `watchOS` framework target to the project. - - Added by [Tobias Ottenweller](https://github.com/tomco) in Pull Request - [#616](https://github.com/Alamofire/Alamofire/pull/616). -- `Result` tests pushing code coverage for `Result` enum to 100%. - - Added by [Christian Noon](https://github.com/cnoon). -- Tests around all response serializer usage. - - Added by [Christian Noon](https://github.com/cnoon). -- Public docstrings for all public `SessionDelegate` methods. - - Added by [Christian Noon](https://github.com/cnoon). -- A section to the README that calls out all open rdars affecting Alamofire. - - Added by [Christian Noon](https://github.com/cnoon). -- Test for wildcard validation that contains response with nil MIME type. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#662](https://github.com/Alamofire/Alamofire/pull/662). -- Support for stream tasks in iOS 9+ and OSX 10.11+. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#659](https://github.com/Alamofire/Alamofire/pull/659). - -#### Updated -- All logic to compile against Swift 2.0. - - Updated by [Christian Noon](https://github.com/cnoon). -- All logic to use the latest Swift 2.0 conventions. - - Updated by [Christian Noon](https://github.com/cnoon). -- All public docstrings to the latest Swift 2.0 syntax. - - Updated by [Christian Noon](https://github.com/cnoon). -- `URLRequestConvertible` to return an `NSMutableURLRequest`. - - Updated by [Christian Noon](https://github.com/cnoon). -- All HTTP requests to HTTPS to better align with ATS. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `escape` method in `ParameterEncoding` to use non-deprecated methods. - - Updated by [Christian Noon](https://github.com/cnoon). -- All source code and docstrings to fit roughly within 120 characters. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `MultipartFormData` encoding to leverage Swift 2.0 error handling. - - Updated by [Christian Noon](https://github.com/cnoon). -- All README code samples to match the latest Swift 2.0 API changes. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#648](https://github.com/Alamofire/Alamofire/pull/648). -- All frameworks to enable code coverage generation. - - Updated by [Christian Noon](https://github.com/cnoon). -- All frameworks to set the enable testability flag to YES for release builds. - - Updated by [Christian Noon](https://github.com/cnoon) in regard to Issue - [#652](https://github.com/Alamofire/Alamofire/issues/652). -- `ParameterEncoding` to leverage guard for parameters to increase safety. - - Updated by [Christian Noon](https://github.com/cnoon). -- iOS Example App to use optional bind around response to safely extract headers. - - Updated by [John Pope](https://github.com/johndpope) in Pull Request - [#665](https://github.com/Alamofire/Alamofire/pull/665). -- The `queryComponents` and `escape` methods in `ParameterEncoding` to `public` to -better support `.Custom` encoding. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#660](https://github.com/Alamofire/Alamofire/pull/660). -- The static error convenience functions to a public ACL. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#668](https://github.com/Alamofire/Alamofire/issues/668). - -#### Removed -- Explicit string values in `ParameterEncoding` since they are now implied. - - Removed by [Christian Noon](https://github.com/cnoon). -- An OSX cookie check in the `CustomDebugStringConvertible` conformance of a `Request`. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Issue in automatic validation tests where mutable URL request was not used. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Potential crash cases in Validation MIME type logic exposed by chaining. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Compiler issue in the iOS Example App around `Result` type usage. - - Fixed by [Jan Kase](https://github.com/jankase) in Pull Request - [#639](https://github.com/Alamofire/Alamofire/pull/639). -- The error code in the custom response serializers section of the README. - - Fixed by [Christian Noon](https://github.com/cnoon). - ---- - -## [1.3.1](https://github.com/Alamofire/Alamofire/releases/tag/1.3.1) -Released on 2015-08-10. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.3.1). - -#### Fixed -- Issue where a completed task was not released by the `SessionDelegate` if the -task override closure was set. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#622](https://github.com/Alamofire/Alamofire/issues/622). - -## [1.3.0](https://github.com/Alamofire/Alamofire/releases/tag/1.3.0) -Released on 2015-07-24. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.3.0). - -#### Added -- Test case around `NSURLProtocol` checking header passthrough behaviors. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#473](https://github.com/Alamofire/Alamofire/issues/473). -- Stream method on `Request` to receive data incrementally from data responses. - - Added by [Peter Sobot](https://github.com/psobot) in Pull Request - [#512](https://github.com/Alamofire/Alamofire/pull/512). -- Example to the README demonstrating how to use the `responseCollection` serializer. - - Added by [Josh Brown](https://github.com/joshuatbrown) in Pull Request - [#532](https://github.com/Alamofire/Alamofire/pull/532). -- Link to the README to the CocoaDocs documentation for Alamofire. - - Added by [Robert](https://github.com/rojotek) in Pull Request - [#541](https://github.com/Alamofire/Alamofire/pull/541). -- Support for uploading `MultipartFormData` in-memory and streaming from disk. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#539](https://github.com/Alamofire/Alamofire/pull/539). -- Tests for uploading `MultipartFormData` with complete code coverage. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#539](https://github.com/Alamofire/Alamofire/pull/539). -- The iOS 8.4 simulator to the Travis CI builds by switching to the Xcode 6.4 build. - - Added by [Syo Ikeda](https://github.com/ikesyo) in Pull Request - [#568](https://github.com/Alamofire/Alamofire/pull/568). -- Tests for the custom header support with complete code coverage. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#586](https://github.com/Alamofire/Alamofire/pull/586). -- Section to the README about new HTTP header support in the global functions. - - Added by [Christian Noon](https://github.com/cnoon). -- Basic auth `Authorization` header example to the README. - - Added by [Christian Noon](https://github.com/cnoon). -- TLS certificate and public key pinning support through the `ServerTrustPolicy`. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#581](https://github.com/Alamofire/Alamofire/pull/581). -- Tests for TLS certificate and public key pinning with complete code coverage. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#581](https://github.com/Alamofire/Alamofire/pull/581). -- Security section to the README detailing various server trust policies. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#581](https://github.com/Alamofire/Alamofire/pull/581). -- The `resumeData` property to `Request` to expose outside data response serializer. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#595](https://github.com/Alamofire/Alamofire/pull/595). -- Download request sample to iOS example app. - - Added by [Kengo Yokoyama](https://github.com/kentya6) in Pull Request - [#579](https://github.com/Alamofire/Alamofire/pull/579). - -#### Updated -- The INFOPLIST_FILE Xcode project setting to be a relative path. - - Updated by [Christian Noon](https://github.com/cnoon). -- Exposed persistence parameter for basic auth credentials. - - Updated by [Christian Noon](https://github.com/cnoon) in regard to Issue - [#537](https://github.com/Alamofire/Alamofire/issues/537). -- The Travis CI builds to run a full `pod lib lint` pass on the source. - - Updated by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#542](https://github.com/Alamofire/Alamofire/pull/542). -- All cases of force unwrapping with optional binding and where clause when applicable. - - Updated by [Syo Ikeda](https://github.com/ikesyo) in Pull Request - [#557](https://github.com/Alamofire/Alamofire/pull/557). -- The `ParameterEncoding` encode return tuple to return a mutable URL request. - - Updated by [Petr Korolev](https://github.com/skywinder) in Pull Request - [#478](https://github.com/Alamofire/Alamofire/pull/478). -- The `URLRequest` convenience method to return a mutable `NSURLRequest`. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `request` / `download` / `upload` methods to support custom headers. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#586](https://github.com/Alamofire/Alamofire/pull/586). -- The global `request` / `download` / `upload` method external parameters convention. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#586](https://github.com/Alamofire/Alamofire/pull/586). -- Response serialization to use generics and a `ResponseSerializer` protocol. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#593](https://github.com/Alamofire/Alamofire/pull/593). -- Download task delegate to store resume data for a failed download if available. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#595](https://github.com/Alamofire/Alamofire/pull/595). -- The `TaskDelegate.queue` to public to allow custom request extension operations. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#590](https://github.com/Alamofire/Alamofire/pull/590). -- The README code samples for Advanced Response Serialization. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- An unnecessary `NSURLSessionConfiguration` type declaration that can be inferred. - - Removed by [Avismara](https://github.com/avismarahl) in Pull Request - [#576](https://github.com/Alamofire/Alamofire/pull/576). -- Unnecessary `respondsToSelector` overrides for `SessionDelegate` methods. - - Removed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#590](https://github.com/Alamofire/Alamofire/pull/590). -- Unnecessary calls to `self` throughout source, test and example logic. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Random test suite basic auth failures by clearing credentials in `setUp` method. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Error where wildcard was failing due to missing response MIME type. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#598](https://github.com/Alamofire/Alamofire/pull/598). -- Typo in the basic auth headers example code in the README. - - Fixed by [蒲公英の生活](https://github.com/fewspider) in Pull Request - [#605](https://github.com/Alamofire/Alamofire/pull/605). -- Issue where the example app was printing elapsed time in optional form. - - Fixed by [Christian Noon](https://github.com/cnoon). - -#### Upgrade Notes -There are a couple changes in the 1.3.0 release that are not fully backwards -compatible and need to be called out. - -* The global `request` / `download` / `upload` external parameter naming conventions -were not consistent nor did they match the `Manager` equivalents. By making them -consistent across the board, this introduced the possibility that you "may" need to -make slight modifications to your global function calls. -* In order to support generic response serializers, the lowest level -`Request.response` method had to be converted to a generic method leveraging the new -`ResponseSerializer` protocol. This has many advantages, the most obvious being that -the `response` convenience method now returns an `NSData?` optional instead of an -`AnyObject?` optional. Nice! - - > Please note that every effort is taken to maintain proper semantic versioning. In -these two rare cases, it was deemed to be in the best interest of the community to -slightly break semantic versioning to unify naming conventions as well as expose a -much more powerful form of response serialization. - - > If you have any issues, please don't hesitate to reach out through -[GitHub](https://github.com/Alamofire/Alamofire/issues) or -[Twitter](https://twitter.com/AlamofireSF). - ---- - -## [1.2.3](https://github.com/Alamofire/Alamofire/releases/tag/1.2.3) -Released on 2015-06-12. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.2.3). - -#### Added -- Tests for data task progress closure and NSProgress updates. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#494](https://github.com/Alamofire/Alamofire/pull/494). -- More robust tests around download and upload progress. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#494](https://github.com/Alamofire/Alamofire/pull/494). -- More robust redirect tests around default behavior and task override closures. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#507](https://github.com/Alamofire/Alamofire/pull/507). -- The "[" and "]" to the legal escape characters and added more documentation. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#504](https://github.com/Alamofire/Alamofire/pull/504). -- Percent escaping tests around reserved / unreserved / illegal characters. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#504](https://github.com/Alamofire/Alamofire/pull/504). -- Tests for various Cache-Control headers with different request cache policies. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#505](https://github.com/Alamofire/Alamofire/pull/505). -- Link to Carthage in the README. - - Added by [Josh Brown](https://github.com/joshuatbrown) in Pull Request - [#520](https://github.com/Alamofire/Alamofire/pull/520). - -#### Updated -- iOS 7 instructions to cover multiple Swift files in the README. - - Updated by [Sébastien Michoy](https://github.com/SebastienMichoy) in regards - to Issue [#479](https://github.com/Alamofire/Alamofire/pull/479). -- All tests to follow the Given / When / Then structure. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#489](https://github.com/Alamofire/Alamofire/pull/489). -- All tests to be crash safe. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#489](https://github.com/Alamofire/Alamofire/pull/489). -- The OS X tests so that they are all passing again. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#489](https://github.com/Alamofire/Alamofire/pull/489). -- Re-enabled Travis-CI tests for both iOS and Mac OS X. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). -- Travis-CI test suite to run all tests in both debug and release. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). -- Travis-CI test suite to run all tests on iOS 8.1, 8.2 and 8.3 as well as Mac OS X 10.10. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). -- Travis-CI test suite to run `pod lib lint` against the latest version of CocoaPods. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). - -#### Fixed -- Random deinitialization test failure by handling task state race condition. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Typo in the API Parameter Abstraction in the README. - - Fixed by [Josh Brown](https://github.com/joshuatbrown) in Pull Request - [#500](https://github.com/Alamofire/Alamofire/pull/500). -- Cookies are now only applied in the DebugPrintable API when appropriate. - - Fixed by [Alex Plescan](https://github.com/alexpls) in Pull Request - [#516](https://github.com/Alamofire/Alamofire/pull/516). - -## [1.2.2](https://github.com/Alamofire/Alamofire/releases/tag/1.2.2) -Released on 2015-05-13. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.2.2). - -#### Added -- Contributing Guidelines document to the project. - - Added by [Mattt Thompson](https://github.com/mattt). -- Documentation to the `URLStringConvertible` protocol around RFC specs. - - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#464](https://github.com/Alamofire/Alamofire/pull/464). -- The `Carthage/Build` ignore flag to the `.gitignore` file. - - Added by [Tomáš Slíž](https://github.com/tomassliz) in Pull Request - [#451](https://github.com/Alamofire/Alamofire/pull/451). -- The `.DS_Store` ignore flag to the `.gitignore` file. - - Added by [Christian Noon](https://github.com/cnoon). -- Response status code asserts for redirect tests. - - Added by [Christian Noon](https://github.com/cnoon). -- A CHANGELOG to the project documenting each official release. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- `SessionDelegate` override closure properties to match the method signatures. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#456](https://github.com/Alamofire/Alamofire/pull/456). -- Documentation for the `Printable` protocol on `Request` to reference output stream -rather than the specific `OutputStreamType`. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Deployment targets to iOS 8.0 and OS X 10.9 for the respective frameworks. - - Updated by [Christian Noon](https://github.com/cnoon). -- `SessionDelegate` willPerformHTTPRedirection method to accept optional return type -from override closure. - - Updated by [Chungsub Kim](https://github.com/subicura) in Pull Request - [#469](https://github.com/Alamofire/Alamofire/pull/469). -- Embedded Framework and Source File documentation in the README. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#427](https://github.com/Alamofire/Alamofire/pull/427). -- Alamofire source to be split into multiple core files and feature files. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#471](https://github.com/Alamofire/Alamofire/pull/471). -- `TaskDelegate` override closure signatures and delegate method implementations. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- Travis-CI build status from the README until Xcode 6.3 is supported. - - Removed by [Mattt Thompson](https://github.com/mattt). -- Unnecessary parentheses from closure parameters and typealiases. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- `SessionDelegate` override closure documentation. - - Fixed by [Siemen Sikkema](https://github.com/siemensikkema) in Pull Request - [#448](https://github.com/Alamofire/Alamofire/pull/448). -- Some inaccurate documentation on several of the public `SessionDelegate` closures. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#456](https://github.com/Alamofire/Alamofire/pull/456). -- A deinit race condition where the task delegate queue could fail to `dispatch_release`. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#379](https://github.com/Alamofire/Alamofire/pull/379). -- `TaskDelegate` to only set `qualityOfService` for `NSOperationQueue` on iOS 8+. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#472](https://github.com/Alamofire/Alamofire/pull/472). -- Expectation order issue in the redirect tests. - - Fixed by [Christian Noon](https://github.com/cnoon). -- `DataTaskDelegate` behavior ensuring `NSProgress` values and `progress` override -closures are always updated and executed. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#407](https://github.com/Alamofire/Alamofire/pull/407). - -## [1.2.1](https://github.com/Alamofire/Alamofire/releases/tag/1.2.1) -Released on 2015-04-21. - -#### Added -- Redirect tests for the `SessionDelegate`. - - Added by [Jonathan Hersh](https://github.com/jhersh) in Pull Request - [#424](https://github.com/Alamofire/Alamofire/pull/424). -- TLS evaluation test case. - - Added by [Mattt Thompson](https://github.com/mattt). -- Additional guards to ensure unique task identifiers for upload and download tasks. - - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#393](https://github.com/Alamofire/Alamofire/pull/393). - -#### Updated -- Required Xcode version to Xcode to 6.3 in the README. - - Updated by [Mattt Thompson](https://github.com/mattt). -- SSL validation to use default system validation by default. - - Updated by [Michael Thole](https://github.com/mthole) in Pull Request - [#394](https://github.com/Alamofire/Alamofire/pull/394). - -## [1.2.0](https://github.com/Alamofire/Alamofire/releases/tag/1.2.0) -Released on 2015-04-09. - -#### Added -- New `testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter` -test. - - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#370](https://github.com/Alamofire/Alamofire/pull/370). -- New `backgroundCompletionHandler` property to the `Manager` called when the -session background tasks finish. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). - -#### Updated -- `Request` computed property `progress` to no longer be an optional type. - - Updated by [Pitiphong Phongpattranont](https://github.com/pitiphong-p) in - Pull Request - [#404](https://github.com/Alamofire/Alamofire/pull/404). -- All logic to Swift 1.2. - - Updated by [Aron Cedercrantz](https://github.com/rastersize) and - [Mattt Thompson](https://github.com/mattt). -- The `responseString` serializer to respect server provided character encoding with -overrideable configuration, default string response serialization to ISO-8859-1, as -per the HTTP/1.1 specification. - - Updated by [Kyle Fuller](https://github.com/kylef) and - [Mattt Thompson](https://github.com/mattt) in Pull Request - [#359](https://github.com/Alamofire/Alamofire/pull/359) which also resolved Issue - [#358](https://github.com/Alamofire/Alamofire/pull/358). -- `SessionDelegate` methods to first call the override closures if set. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). -- `SessionDelegate` and all override closures to a public ACL allowing for customization. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). -- `SessionDelegate` class to `final`. - - Updated by [Mattt Thompson](https://github.com/mattt). -- `SessionDelegate` header documentation for method override properties. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Xcode project to set `APPLICATION_EXTENSION_API_ONLY` to `YES` for OS X target. - - Updated by [Mattt Thompson](https://github.com/mattt). - -#### Removed -- Ambiguous response serializer methods that collided with default parameters. - - Removed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#408](https://github.com/Alamofire/Alamofire/pull/408). -- `SessionDelegate` initializer and replaced with default property value. - - Removed by [Mattt Thompson](https://github.com/mattt). - -#### Fixed -- Async tests where asserts were potentially not being run by by moving -`expectation.fullfill()` to end of closures. - - Fixed by [Nate Cook](https://github.com/natecook1000) in Pull Request - [#420](https://github.com/Alamofire/Alamofire/pull/420). -- Small grammatical error in the ParameterEncoding section of the README. - - Fixed by [Aaron Brager](https://github.com/getaaron) in Pull Request - [#416](https://github.com/Alamofire/Alamofire/pull/416). -- Typo in a download test comment. - - Fixed by [Aaron Brager](https://github.com/getaaron) in Pull Request - [#413](https://github.com/Alamofire/Alamofire/pull/413). -- Signature mismatch in the `dataTaskDidBecomeDownloadTask` override closure. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). -- Issue in the `SessionDelegate` where the `DataTaskDelegate` was not being called. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). - ---- - -## [1.1.5](https://github.com/Alamofire/Alamofire/releases/tag/1.1.5) -Released on 2015-03-26. - -#### Added -- Convenience upload functions to the `Manager`. - - Added by [Olivier Bohrer](https://github.com/obohrer) in Pull Request - [#334](https://github.com/Alamofire/Alamofire/pull/334). -- Info to the README about Swift 1.2 support. - - Added by [Mattt Thompson](https://github.com/mattt). - -#### Updated -- All request / upload / download methods on `Manager` to match the top-level functions. - - Updated by [Mattt Thompson](https://github.com/mattt). -- The `testDownloadRequest` to no longer remove the downloaded file. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Ono XML response serializer example in the README. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Travis-CI settings to only build the master branch. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Code signing identities for the frameworks and targets to better support Carthage. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#400](https://github.com/Alamofire/Alamofire/pull/400). -- iOS deployment target to iOS 8.0 for iOS target and tests. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#401](https://github.com/Alamofire/Alamofire/pull/401). -- Legal characters to be escaped according to RFC 3986 Section 3.4. - - Updated by [Stephane Lizeray](https://github.com/slizeray) in Pull Request - [#370](https://github.com/Alamofire/Alamofire/pull/370). - -#### Fixed -- Travis-CI scheme issue, added podspec linting and added ENV variables. - - Fixed by [Jonathan Hersh](https://github.com/jhersh) in Pull Request - [#351](https://github.com/Alamofire/Alamofire/pull/351). -- Code sample in the README in the Manual Parameter Encoding section. - - Fixed by [Petr Korolev](https://github.com/skywinder) in Pull Request - [#381](https://github.com/Alamofire/Alamofire/pull/381). - -## [1.1.4](https://github.com/Alamofire/Alamofire/releases/tag/1.1.4) -Released on 2015-01-30. - -#### Added -- Podspec argument `requires_arc` to the podspec file. - - Added by [Mattt Thompson](https://github.com/mattt). -- Support for Travis-CI for automated testing purposes. - - Added by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#279](https://github.com/Alamofire/Alamofire/pull/279). - -#### Updated -- Installation instructions in the README to include CocoaPods, Carthage and -Embedded Frameworks. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Travis-CI to use Xcode 6.1.1. - - Updated by [Mattt Thompson](https://github.com/mattt). -- The `download` method on `Manager` to use `Request.DownloadFileDestination` typealias. - - Updated by [Alexander Strakovich](https://github.com/astrabot) in Pull Request - [#318](https://github.com/Alamofire/Alamofire/pull/318). -- `RequestTests` to no longer delete all cookies in default session configuration. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Travis-CI yaml file to only build the active architecture. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Deployment targets to iOS 7.0 and Mac OS X 10.9. - - Updated by [Mattt Thompson](https://github.com/mattt). - -#### Removed -- The `tearDown` method in the `AlamofireDownloadResponseTestCase`. - - Removed by [Mattt Thompson](https://github.com/mattt). - -#### Fixed -- Small formatting issue in the CocoaPods Podfile example in the README. - - Fixed by [rborkow](https://github.com/rborkow) in Pull Request - [#313](https://github.com/Alamofire/Alamofire/pull/313). -- Several issues with the iOS and OSX targets in the Xcode project. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- The `testDownloadRequest` in `DownloadTests` by adding `.json` file extension. - - Fixed by [Martin Kavalar](https://github.com/mk) in Pull Request - [#302](https://github.com/Alamofire/Alamofire/pull/302). -- The `AlamofireRequestDebugDescriptionTestCase` on OSX. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Spec validation error with CocoaPods 0.36.0.beta-1 by disabling -b flags in `cURL` -debug on OSX. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Travis-CI build issue by adding suppport for an `iOS Example` scheme. - - Fixed by [Yasuharu Ozaki](https://github.com/yasuoza) in Pull Request - [#322](https://github.com/Alamofire/Alamofire/pull/322). - -## [1.1.3](https://github.com/Alamofire/Alamofire/releases/tag/1.1.3) -Released on 2015-01-09. - -#### Added -- Podspec file to support CocoaPods deployment. - - Added by [Marius Rackwitz](https://github.com/mrackwitz) in Pull Request - [#218](https://github.com/Alamofire/Alamofire/pull/218). -- Shared scheme to support Carthage deployments. - - Added by [Yosuke Ishikawa](https://github.com/ishkawa) in Pull Request - [#228](https://github.com/Alamofire/Alamofire/pull/228). -- New target for Alamofire OSX framework. - - Added by [Martin Kavalar](https://github.com/mk) in Pull Request - [#293](https://github.com/Alamofire/Alamofire/pull/293). - -#### Updated -- Upload and Download progress state to be updated before calling progress closure. - - Updated by [Alexander Strakovich](https://github.com/astrabot) in Pull Request - [#278](https://github.com/Alamofire/Alamofire/pull/278). - -#### Fixed -- Some casting code logic in the Generic Response Object Serialization example in -the README. - - Fixed by [Philip Heinser](https://github.com/philipheinser) in Pull Request - [#258](https://github.com/Alamofire/Alamofire/pull/258). -- Indentation formatting of the `responseString` parameter documentation. - - Fixed by [Ah.Miao](https://github.com/mrahmiao) in Pull Request - [#291](https://github.com/Alamofire/Alamofire/pull/291). - -## [1.1.2](https://github.com/Alamofire/Alamofire/releases/tag/1.1.2) -Released on 2014-12-21. - -#### Added -- POST request JSON response test. - - Added by [Mattt Thompson](https://github.com/mattt). - -#### Updated -- The response object example to use a failable initializer in the README. - - Updated by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#230](https://github.com/Alamofire/Alamofire/pull/230). -- Router example in the README by removing extraneous force unwrap. - - Updated by [Arnaud Mesureur](https://github.com/nsarno) in Pull Request - [#247](https://github.com/Alamofire/Alamofire/pull/247). -- Xcode project `APPLICATION_EXTENSION_API_ONLY` flag to `YES`. - - Updated by [Michael Latta](https://github.com/technomage) in Pull Request - [#273](https://github.com/Alamofire/Alamofire/pull/273). -- Default HTTP header creation by moving it into a public class method. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#261](https://github.com/Alamofire/Alamofire/pull/261). - -#### Fixed -- Upload stream method to set `HTTPBodyStream` for streamed request. - - Fixed by [Florent Vilmart](https://github.com/flovilmart) and - [Mattt Thompson](https://github.com/mattt) in Pull Request - [#241](https://github.com/Alamofire/Alamofire/pull/241). -- ParameterEncoding to compose percent-encoded query strings from -percent-encoded components. - - Fixed by [Oleh Sannikov](https://github.com/sunnycows) in Pull Request - [#249](https://github.com/Alamofire/Alamofire/pull/249). -- Serialization handling of NSData with 0 bytes. - - Fixed by [Mike Owens](https://github.com/mowens) in Pull Request - [#254](https://github.com/Alamofire/Alamofire/pull/254). -- Issue where `suggestedDownloadDestination` parameters were being ignored. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#257](https://github.com/Alamofire/Alamofire/pull/257). -- Crash caused by `Manager` deinitialization and added documentation. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#269](https://github.com/Alamofire/Alamofire/pull/269). - -## [1.1.1](https://github.com/Alamofire/Alamofire/releases/tag/1.1.1) -Released on 2014-11-20. - -#### Updated -- Dispatch-based synchronized access to subdelegates. - - Updated by [Mattt Thompson](https://github.com/mattt) in regards to Pull Request - [#175](https://github.com/Alamofire/Alamofire/pull/175). -- iOS 7 instructions in the README. - - Updated by [Mattt Thompson](https://github.com/mattt). -- CRUD example in the README to work on Xcode 6.1. - - Updated by [John Beynon](https://github.com/johnbeynon) in Pull Request - [#187](https://github.com/Alamofire/Alamofire/pull/187). -- The `cURL` example annotation in the README to pick up `bash` syntax highlighting. - - Updated by [Samuel E. Giddins](https://github.com/segiddins) in Pull Request - [#208](https://github.com/Alamofire/Alamofire/pull/208). - -#### Fixed -- Out-of-memory exception by replacing `stringByAddingPercentEncodingWithAllowedCharacters` -with `CFURLCreateStringByAddingPercentEscapes`. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#206](https://github.com/Alamofire/Alamofire/pull/206). -- Several issues in the README examples where an NSURL initializer needs to be unwrapped. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Pull Request - [#213](https://github.com/Alamofire/Alamofire/pull/213). -- Possible exception when force unwrapping optional header properties. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Optional cookie entry in `cURL` output. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#226](https://github.com/Alamofire/Alamofire/pull/226). -- Optional `textLabel` property on cells in the example app. - - Fixed by [Mattt Thompson](https://github.com/mattt). - -## [1.1.0](https://github.com/Alamofire/Alamofire/releases/tag/1.1.0) -Released on 2014-10-20. - -#### Updated -- Project to support Swift 1.1 and Xcode 6.1. - - Updated by [Aral Balkan](https://github.com/aral), - [Ross Kimes](https://github.com/rosskimes), - [Orta Therox](https://github.com/orta), - [Nico du Plessis](https://github.com/nduplessis) - and [Mattt Thompson](https://github.com/mattt). - ---- - -## [1.0.1](https://github.com/Alamofire/Alamofire/releases/tag/1.0.1) -Released on 2014-10-20. - -#### Added -- Tests for upload and download with progress. - - Added by [Mattt Thompson](https://github.com/mattt). -- Test for question marks in url encoded query. - - Added by [Mattt Thompson](https://github.com/mattt). -- The `NSURLSessionConfiguration` headers to `cURL` representation. - - Added by [Matthias Ryne Cheow](https://github.com/rynecheow) in Pull Request - [#140](https://github.com/Alamofire/Alamofire/pull/140). -- Parameter encoding tests for key/value pairs containing spaces. - - Added by [Mattt Thompson](https://github.com/mattt). -- Percent character encoding for the `+` character. - - Added by [Niels van Hoorn](https://github.com/nvh) in Pull Request - [#167](https://github.com/Alamofire/Alamofire/pull/167). -- Escaping for quotes to support JSON in `cURL` commands. - - Added by [John Gibb](https://github.com/johngibb) in Pull Request - [#178](https://github.com/Alamofire/Alamofire/pull/178). -- The `request` method to the `Manager` bringing it more inline with the top-level methods. - - Added by Brian Smith. - -#### Fixed -- Parameter encoding of ampersands and escaping of characters. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issues - [#146](https://github.com/Alamofire/Alamofire/pull/146) and - [#162](https://github.com/Alamofire/Alamofire/pull/162). -- Parameter encoding of `HTTPBody` from occurring twice. - - Fixed by Yuri in Pull Request - [#153](https://github.com/Alamofire/Alamofire/pull/153). -- Extraneous dispatch to background by using weak reference for delegate in response. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Response handler threading issue by adding a `subdelegateQueue` to the `SessionDelegate`. - - Fixed by [Essan Parto](https://github.com/parto) in Pull Request - [#171](https://github.com/Alamofire/Alamofire/pull/171). -- Challenge issue where basic auth credentials were not being unwrapped. - - Fixed by [Mattt Thompson](https://github.com/mattt). - -## [1.0.0](https://github.com/Alamofire/Alamofire/releases/tag/1.0.0) -Released on 2014-09-25. - -#### Added -- Initial release of Alamofire. - - Added by [Mattt Thompson](https://github.com/mattt). diff --git a/Carthage/Checkouts/Alamofire/CONTRIBUTING.md b/Carthage/Checkouts/Alamofire/CONTRIBUTING.md deleted file mode 100644 index 5de3be7..0000000 --- a/Carthage/Checkouts/Alamofire/CONTRIBUTING.md +++ /dev/null @@ -1,91 +0,0 @@ -# Contributing Guidelines - -This document contains information and guidelines about contributing to this project. -Please read it before you start participating. - -**Topics** - -* [Asking Questions](#asking-questions) -* [Reporting Security Issues](#reporting-security-issues) -* [Reporting Issues](#reporting-other-issues) -* [Developers Certificate of Origin](#developers-certificate-of-origin) -* [Code of Conduct](#code-of-conduct) - -## Asking Questions - -We don't use GitHub as a support forum. -For any usage questions that are not specific to the project itself, -please ask on [Stack Overflow](https://stackoverflow.com) instead. -By doing so, you'll be more likely to quickly solve your problem, -and you'll allow anyone else with the same question to find the answer. -This also allows maintainers to focus on improving the project for others. - -## Reporting Security Issues - -The Alamofire Software Foundation takes security seriously. -If you discover a security issue, please bring it to our attention right away! - -Please **DO NOT** file a public issue, -instead send your report privately to . -This will help ensure that any vulnerabilities that _are_ found -can be [disclosed responsibly](http://en.wikipedia.org/wiki/Responsible_disclosure) -to any affected parties. - -## Reporting Other Issues - -A great way to contribute to the project -is to send a detailed issue when you encounter an problem. -We always appreciate a well-written, thorough bug report. - -Check that the project issues database -doesn't already include that problem or suggestion before submitting an issue. -If you find a match, add a quick "+1" or "I have this problem too." -Doing this helps prioritize the most common problems and requests. - -When reporting issues, please include the following: - -* The version of Xcode you're using -* The version of iOS or OS X you're targeting -* The full output of any stack trace or compiler error -* A code snippet that reproduces the described behavior, if applicable -* Any other details that would be useful in understanding the problem - -This information will help us review and fix your issue faster. - -## Developer's Certificate of Origin 1.1 - -By making a contribution to this project, I certify that: - -- (a) The contribution was created in whole or in part by me and I - have the right to submit it under the open source license - indicated in the file; or - -- (b) The contribution is based upon previous work that, to the best - of my knowledge, is covered under an appropriate open source - license and I have the right under that license to submit that - work with modifications, whether created in whole or in part - by me, under the same open source license (unless I am - permitted to submit under a different license), as indicated - in the file; or - -- (c) The contribution was provided directly to me by some other - person who certified (a), (b) or (c) and I have not modified - it. - -- (d) I understand and agree that this project and the contribution - are public and that a record of the contribution (including all - personal information I submit with it, including my sign-off) is - maintained indefinitely and may be redistributed consistent with - this project or the open source license(s) involved. - -## Code of Conduct - -The Code of Conduct governs how we behave in public or in private -whenever the project will be judged by our actions. -We expect it to be honored by everyone who contributes to this project. - -See [CONDUCT.md](https://github.com/Alamofire/Foundation/blob/master/CONDUCT.md) for details. - ---- - -*Some of the ideas and wording for the statements above were based on work by the [Docker](https://github.com/docker/docker/blob/master/CONTRIBUTING.md) and [Linux](http://elinux.org/Developer_Certificate_Of_Origin) communities. We commend them for their efforts to facilitate collaboration in their projects.* diff --git a/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md b/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md deleted file mode 100644 index 5716906..0000000 --- a/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md +++ /dev/null @@ -1,202 +0,0 @@ -# Alamofire 2.0 Migration Guide - -Alamofire 2.0 is the latest major release of Alamofire, an HTTP networking library for iOS, Mac OS X and watchOS written in Swift. As a major release, following Semantic Versioning conventions, 2.0 introduces several API-breaking changes that one should be aware of. - -This guide is provided in order to ease the transition of existing applications using Alamofire 1.x to the latest APIs, as well as explain the design and structure of new and changed functionality. - -## New Requirements - -Alamofire 2.0 officially supports iOS 8+, Mac OS X 10.9+, Xcode 7 and Swift 2.0. If you'd like to use Alamofire in a project targeting iOS 7 and Swift 1.x, use the latest tagged 1.x release. - ---- - -## Breaking API Changes - -### Swift 2.0 - -The biggest change between Alamofire 1.x and Alamofire 2.0 is Swift 2.0. Swift 2 brought many new features to take advantage of such as error handling, protocol extensions and availability checking. Other new features such as `guard` and `defer` do not affect the public APIs, but allowed us to create much cleaner implementations of the same logic. All of the source files, test logic and example code has been updated to reflect the latest Swift 2.0 paradigms. - -> It is not possible to use Alamofire 2.0 without Swift 2.0. - -### Response Serializers - -The most significant logic change made to Alamofire 2.0 is its new response serialization system leveraging `Result` types. Previously in Alamofire 1.x, each response serializer used the same completion handler signature: - -```swift -public func response(completionHandler: (NSURLRequest, NSHTTPURLResponse?, AnyObject?, NSError?) -> Void) -> Self { - return response(serializer: Request.responseDataSerializer(), completionHandler: completionHandler) -} -``` - -Alamofire 2.0 has redesigned the entire response serialization process to make it much easier to access the original server data without serialization, or serialize the response into a non-optional `Result` type defining whether the `Request` was successful. - -#### No Response Serialization - -The first `response` serializer is non-generic and does not process the server data in any way. It merely forwards on the accumulated information from the `NSURLSessionDelegate` callbacks. - -```swift -public func response( - queue queue: dispatch_queue_t? = nil, - completionHandler: (NSURLRequest?, NSHTTPURLResponse?, NSData?, ErrorType?) -> Void) - -> Self -{ - delegate.queue.addOperationWithBlock { - dispatch_async(queue ?? dispatch_get_main_queue()) { - completionHandler(self.request, self.response, self.delegate.data, self.delegate.error) - } - } - - return self -} -``` - -Another important note of this change is the return type of `data` is now an `NSData` type. You no longer need to cast the `data` parameter from an `AnyObject?` to an `NSData?`. - -#### Generic Response Serializers - -The second, more powerful response serializer leverages generics along with a `Result` type to eliminate the case of the dreaded double optional. - -```swift -public func response( - queue queue: dispatch_queue_t? = nil, - responseSerializer: T, - completionHandler: (NSURLRequest?, NSHTTPURLResponse?, Result) -> Void) - -> Self -{ - delegate.queue.addOperationWithBlock { - let result: Result = { - if let error = self.delegate.error { - return .Failure(self.delegate.data, error) - } else { - return responseSerializer.serializeResponse(self.request, self.response, self.delegate.data) - } - }() - - dispatch_async(queue ?? dispatch_get_main_queue()) { - completionHandler(self.request, self.response, result) - } - } - - return self -} -``` - -##### Response Data - -```swift -Alamofire.request(.GET, "http://httpbin.org/get") - .responseData { _, _, result in - print("Success: \(result.isSuccess)") - print("Response: \(result)") - } -``` - -##### Response String - -```swift -Alamofire.request(.GET, "http://httpbin.org/get") - .responseString { _, _, result in - print("Success: \(result.isSuccess)") - print("Response String: \(result.value)") - } -``` - -##### Response JSON - -```swift -Alamofire.request(.GET, "http://httpbin.org/get") - .responseJSON { _, _, result in - print(result) - debugPrint(result) - } -``` - -#### Result Types - -The `Result` enumeration was added to handle the case of the double optional return type. Previously, the return value and error were both optionals. Checking if one was `nil` did not ensure the other was also not `nil`. This case has been blogged about many times and can be solved by a `Result` type. Alamofire 2.0 brings a `Result` type to the response serializers to make it much easier to handle success and failure cases. - -```swift -public enum Result { - case Success(Value) - case Failure(NSData?, ErrorType) -} -``` - -There are also many other convenience computed properties to make accessing the data inside easy. The `Result` type also conforms to the `CustomStringConvertible` and `CustomDebugStringConvertible` protocols to make it easier to debug. - -#### Error Types - -While Alamofire still only generates `NSError` objects, all `Result` types have been converted to store `ErrorType` objects to allow custom response serializer implementations to use any `ErrorType` they wish. This also includes the `ValidationResult` and `MultipartFormDataEncodingResult` types as well. - -### URLRequestConvertible - -In order to make it easier to deal with non-common scenarios, the `URLRequestConvertible` protocol now returns an `NSMutableURLRequest`. Alamofire 2.0 makes it much easier to customize the URL request after is has been encoded. This should only affect a small amount of users. - -```swift -public protocol URLRequestConvertible { - var URLRequest: NSMutableURLRequest { get } -} -``` - -### Multipart Form Data - -Encoding `MultipartFormData` previous returned an `EncodingResult` to encapsulate any possible errors that occurred during encoding. Alamofire 2.0 uses the new Swift 2.0 error handling instead making it easier to use. This change is mostly encapsulated internally and should only affect a very small subset of users. - ---- - -## Updated ACLs and New Features - -### Parameter Encoding - -#### ACL Updates - -The `ParameterEncoding` enumeration implementation was previously hidden behind `internal` and `private` ACLs. Alamofire 2.0 opens up the `queryComponents` and `escape` methods to make it much easier to implement `.Custom` cases. - -#### Encoding in the URL - -In the previous versions of Alamofire, `.URL` encoding would automatically append the query string to either the URL or HTTP body depending on which HTTP method was set in the `NSURLRequest`. While this satisfies the majority of common use cases, it made it quite difficult to append query string parameter to a URL for HTTP methods such as `PUT` and `POST`. In Alamofire 2.0, we've added a second URL encoding case, `.URLEncodedInURL`, that always appends the query string to the URL regardless of HTTP method. - -### Server Trust Policies - -In Alamofire 1.x, the `ServerTrustPolicyManager` methods were internal making it impossible to implement any custom domain matching behavior. Alamofire 2.0 opens up the internals with a `public` ACL allowing more flexible server trust policy matching behavior (i.e. wildcarded domains) through subclassing. - -```swift -class CustomServerTrustPolicyManager: ServerTrustPolicyManager { - override func serverTrustPolicyForHost(host: String) -> ServerTrustPolicy? { - var policy: ServerTrustPolicy? - - // Implement your custom domain matching behavior... - - return policy - } -} -``` - -### Download Requests - -The global and `Manager` download APIs now support `parameters` and `encoding` parameters to better support dynamic payloads used in background sessions. Constructing a `download` request is now the same as constructing a `data` request with the addition of a `destination` parameter. - -```swift -public func download( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil, - destination: Request.DownloadFileDestination) - -> Request -{ - return Manager.sharedInstance.download( - method, - URLString, - parameters: parameters, - encoding: encoding, - headers: headers, - destination: destination - ) -} -``` - -### Stream Tasks - -Alamofire 2.0 adds support for creating `NSURLSessionStreamTask` tasks for iOS 9 and OS X 10.11. It also extends the `SessionDelegate` to support all the new `NSURLSessionStreamDelegate` APIs. diff --git a/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md b/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md deleted file mode 100644 index 38736fc..0000000 --- a/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md +++ /dev/null @@ -1,186 +0,0 @@ -# Alamofire 3.0 Migration Guide - -Alamofire 3.0 is the latest major release of Alamofire, an HTTP networking library for iOS, Mac OS X and watchOS written in Swift. As a major release, following Semantic Versioning conventions, 3.0 introduces several API-breaking changes that one should be aware of. - -This guide is provided in order to ease the transition of existing applications using Alamofire 2.x to the latest APIs, as well as explain the design and structure of new and changed functionality. - -## Requirements - -Alamofire 3.0 officially supports iOS 8+, Mac OS X 10.9+, watchOS 2.0, Xcode 7 and Swift 2.0. If you'd like to use Alamofire in a project targeting iOS 7 and Swift 1.x, use the latest tagged 1.x release. - -## Reasons for Bumping to 3.0 - -The [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) (ASF) tries to do everything possible to avoid MAJOR version bumps. We realize the challenges involved with migrating large projects from one MAJOR version to another. With that said, we also want to make sure we're always producing the highest quality APIs and features possible. - -After releasing Alamofire 2.0, it became clear that the response serialization system still had some room for improvement. After much debate, we decided to strictly follow semver and move forward with all the core logic changes becoming Alamofire 3.0. We've also made some fairly significant changes that should give us more flexibility moving forward to help avoid the need for MAJOR version bumps to maintain backwards compatibility. - -## Benefits of Upgrading - -The benefits of upgrading can be summarized as follows: - -* No more casting a response serializer `error` from an `ErrorType` to an `NSError`. -* Original server data is now ALWAYS returned in all response serializers regardless of whether the result was a `.Success` or `.Failure`. -* Custom response serializers are now ALWAYS called regardless of whether an `error` occurred. -* Custom response serializers are now passed in the `error` allowing you to switch between different parsing schemes if necessary. -* Custom response serializers can now wrap up any Alamofire `NSError` into a `CustomError` type of your choosing. -* `Manager` initialization can now accept custom `NSURLSession` or `SessionDelegate` objects using dependency injection. - ---- - -## Breaking API Changes - -Alamofire 3.0 contains some breaking API changes to the foundational classes supporting the response serialization system. It is important to understand how these changes affect the common usage patterns. - -### Result Type - -The `Result` type was introduced in Alamofire 2.0 as a single generic parameter with the following signature: - -```swift -public enum Result { - case Success(Value) - case Failure(NSData?, ErrorType) -} -``` - -While this was a significant improvement on the behavior of Alamofire 1.0, there was still room for improvement. By defining the `.Failure` case to take an `ErrorType`, all consumers needed to cast the `ErrorType` to some concrete object such as an `NSError` before being able to interact with it. This was certainly not ideal. Additionally, by only allowing the `NSData?` from the server to be appended in a `.Failure` case, it was not possible to access the original server data in a `.Success` case. - -In Alamofire 3.0, the `Result` type has been redesigned to be a double generic type that does not store the `NSData?` in the `.Failure` case. - -```swift -public enum Result { - case Success(Value) - case Failure(Error) -} -``` - -These changes allow Alamofire to return the original server data in both cases. It also removes the requirement of having to cast the `ErrorType` when working with the `.Failure` case error object. - -### Response - -In order to avoid constantly having to change the response serializer completion closure signatures, Alamofire 3.0 introduces a `Response` struct. All response serializers (with the exception of `response`) return a generic `Response` struct. - -```swift -public struct Response { - /// The URL request sent to the server. - public let request: NSURLRequest? - - /// The server's response to the URL request. - public let response: NSHTTPURLResponse? - - /// The data returned by the server. - public let data: NSData? - - /// The result of response serialization. - public let result: Result -} -``` - -This unifies the signature of all response serializer completion closures by only needing to specify a single parameter rather than three or four. If another major release of Alamofire needs to modify the signature, thankfully the number of parameters in all response serializers will NOT need to change. Given the fact that the Swift compiler can present some fairly misleading compiler errors when the arguments are not correct, this should help alleviate some painful updates between MAJOR version bumps of Alamofire. - -### Response Serializers - -The biggest change in Alamofire 3.0 are the response serializers. They are now powered by the new `Response` struct and updated `Result` type. These two generic classes make it VERY easy to interact with the response serializers in a consistent, type-safe manner. - -```swift -Alamofire.request(.GET, "http://httpbin.org/get", parameters: ["foo": "bar"]) - .responseJSON { response in - debugPrint(response) // prints detailed description of all response properties - - print(response.request) // original URL request - print(response.response) // URL response - print(response.data) // server data - print(response.result) // result of response serialization - - if let JSON = response.result.value { - print("JSON: \(JSON)") - } - } -``` - -Besides the single response parameter in the completion closure, the other major callouts are that the original server data is always available whether the `Result` was a `.Success` or `.Failure`. Additionally, both the `value` and `error` of the `Result` type are strongly typed objects thanks to the power of generics. All default response serializer errors will be an `NSError` type. Custom response serializers can specify any custom `ErrorType`. - -#### Response Serializer Type - -For those wishing to create custom response serializer types, you'll need to familiarize yourself with the new `ResponseSerializerType` protocol and generic `ResponseSerializer` struct. - -```swift -public protocol ResponseSerializerType { - /// The type of serialized object to be created by this `ResponseSerializerType`. - typealias SerializedObject - - /// The type of error to be created by this `ResponseSerializer` if serialization fails. - typealias ErrorObject: ErrorType - - /** - A closure used by response handlers that takes a request, response, data and error and returns a result. - */ - var serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result { get } -} -``` - -All the possible information about the `Request` is now passed into the `serializeResponse` closure. In Alamofire 3.0, the `serializeResponse` closure is ALWAYS called whether an error occurred or not. This is for several reasons. - -1. Passing the error into the response serializer allows the implementation to switch parsing schemes based on what error occurred. For example, some APIs will return different payload schemas when certain errors occur. The new design allows you to switch on the error type and use different parsing logic. -2. Any error produced by Alamofire will always be an `NSError`. If your custom response serializer returns `CustomError` types, then the `NSError` returned by Alamofire must be converted into a `CustomError` type. This makes it MUCH easier to wrap Alamofire errors in your own `CustomError` type objects. - > This is also required for all the generics logic to work properly. - -### Validation Result - -The `ValidationResult` enumeration in Alamofire 3.0 has been updated to take an `NSError` in the `.Failure` case. The reasoning for this change is that all Alamofire errors generated need to be `NSError` types. If not, it introduces the need to cast all error objects coming from Alamofire at the response serializer level. - -```swift -public enum ValidationResult { - case Success - case Failure(NSError) -} -``` - -> If you are extending the `Request` type in any way that can produce an error, that error always needs to be of type `NSError`. If you'd like to wrap the error into a `CustomError` type, it should be wrapped in a custom response serializer implementation. - ---- - -## New Features - -### Dependency Injection - -Alamofire 3.0 leverages [dependency injection](https://en.wikipedia.org/wiki/Dependency_injection) to allow some powerful new customizations to take place for the URL session and delegate. - -#### Session Delegate - -In previous versions of Alamofire, the `SessionDelegate` was automatically created by the `Manager` instance. While this is convenient, it can be problematic for background sessions. One may need to hook up the task override closures before instantiating the URL session. Otherwise the URL session delegate could be called before the task override closures are able to be set. - -In Alamofire 3.0, the `Manager` initializer adds the ability to provide a custom `SessionDelegate` object with the task override closures already set using dependency injection. This greatly increases the flexibility of Alamofire in regards to background sessions. - -```swift -public init( - configuration: NSURLSessionConfiguration = NSURLSessionConfiguration.defaultSessionConfiguration(), - delegate: SessionDelegate = SessionDelegate(), - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) -{ - self.delegate = delegate - self.session = NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) -} -``` - -#### URL Session - -Alamofire 3.0 also adds the ability to use dependency injection to provide a custom `NSURLSession` to the `Manager` instance. This provides complete control over the URL session initialization if you need it allowing `NSURLSession` subclasses for various kinds of testing and DVR implementations. - -```swift -public init?( - session: NSURLSession, - delegate: SessionDelegate, - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) -{ - self.delegate = delegate - self.session = session - - guard delegate === session.delegate else { return nil } - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) -} -``` - -> We're very excited to see what the community comes up with given these new possibilities with Alamofire 3.0. diff --git a/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard b/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard deleted file mode 100644 index 6f3cd58..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json b/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index eeea76c..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "83.5x83.5", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json b/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json deleted file mode 100644 index 6f870a4..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "images" : [ - { - "orientation" : "portrait", - "idiom" : "iphone", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "portrait", - "idiom" : "iphone", - "subtype" : "retina4", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "portrait", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "1x" - }, - { - "orientation" : "landscape", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "1x" - }, - { - "orientation" : "portrait", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "landscape", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json b/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json deleted file mode 100644 index bd086a5..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "Logo.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "Logo@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo.png b/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo.png deleted file mode 100644 index 4060979e1fd1d494326f16a587fb776564fd42db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5710 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�`?0BIRk+%}&$3Y+=eI`EQ!G4W3>*m+`u=>I@ z^bWi51Kkvim`TaQXEqw$zsL={ha*Kq%{6GmEYlVm++kU7rlb0bHsn+Y*wqmpd4|AM zV!5Md{WOPbK+PAlAeDC4fZzZ(Mj)SPF% zZQ-6gnzk9GRQyA^$BUo?KB%ZSrye_+dIvI9kN$F<)C^O6;xtGQDQs60I|Y4;(y*w> zu&Ap5-m@d z?v=C6xIfEd9f{#X+DhvMguo!_kGM~&>H0rbmqvn_h5WX~UVE@A&kM^ox!&58GR!wi z8OVmo*{bVP(_2*7y0nHT5iH18xpUpCWU>7L()ljqiQ`C*dXK+dOdaEq{&1Fto`k;{ z(69IWV5v7bHlTXGzvZtwG@41gD;2Men4>~>8Aa=_Le1VA$#RI6%~RZ{&!#w9@Vq_3 zN0OaT1!|Grj3Hbtv8ii3d^KOiNMAB3+pFK+q4~r7V-nu<+5(b%liBQr_paXgQE?%; zI1lDqy##G@#e4SYeOUbo2QifY3{0UGCnm?_qano(a-01^DU(b+!`XyacQ2gE=m@cp zf;795FuL(XTg02Za*^rGarEOuSGQRPC3YfM_=;^g8}@0B!}#=L1D5%tOInYK$s8LG z7!Q5&rLF012dzi$*xek5*|j~*ior;Ay5;{0xLWb0d~dP%n@NC<Ey*uIQby*XP z6Iwof%S|zAZ)h~u419_cc9!ugalsv^n){N&wogp2_Ob_?@~X!am$so4-`F9qG`ECN zsg(R&u=QDK5X`l{n#Vti?icXtlv?4W31ae#_HH1;5?Y=J=#*r0@?Tx4QmNoe)18$& zt7T&VeNru9xdv0pP5v6rCD#2mT~&yG3CcQ^Yyg{KOzX|0X{qgR`lWnx$>aoc62#g* zr_-Gir2;JZX=3Q(Jf&a~t1Q_1OyHVASaP_KUACe`mG9ZuYgnsNrGLcy_N|Bs>^t0 z4HX0hE1VI1mZX=<&7>R=!9tY^`>133o&cKd3|Sp9O_M|CKQ6@$(mAmI5im}hWMO(S zaZINcUW)0cxyZT4WV~V`@C13!WRAz=`_YAd^rhFZ`gTe#6_$Hva;E3^LKHKU|GOn& d+Ro@eWJhqh_=R~RhTk{5IUI-M#S+etGxV`+Rqd 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

F4mjn*ITn!dUWa|u#B4O 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 JrIcC7{{vs>`_}*f diff --git a/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist b/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist deleted file mode 100644 index 9f0225e..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist +++ /dev/null @@ -1,57 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Alamofire - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UIMainStoryboardFile - Main - UILaunchStoryboardName - LaunchScreen - UIRequiredDeviceCapabilities - - armv7 - - UIStatusBarTintParameters - - UINavigationBar - - Style - UIBarStyleDefault - Translucent - - - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - - diff --git a/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift b/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift deleted file mode 100644 index 4690d4b..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift +++ /dev/null @@ -1,61 +0,0 @@ -// AppDelegate.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 UIKit - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDelegate { - - var window: UIWindow? - - // MARK: - UIApplicationDelegate - - func application( - application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) - -> Bool - { - let splitViewController = window!.rootViewController as! UISplitViewController - let navigationController = splitViewController.viewControllers.last as! UINavigationController - navigationController.topViewController!.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem() - splitViewController.delegate = self - - return true - } - - // MARK: - UISplitViewControllerDelegate - - func splitViewController( - splitViewController: UISplitViewController, - collapseSecondaryViewController secondaryViewController: UIViewController, - ontoPrimaryViewController primaryViewController: UIViewController) - -> Bool - { - if let secondaryAsNavController = secondaryViewController as? UINavigationController { - if let topAsDetailController = secondaryAsNavController.topViewController as? DetailViewController { - return topAsDetailController.request == nil - } - } - - return false - } -} diff --git a/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift b/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift deleted file mode 100644 index 47bf0b3..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift +++ /dev/null @@ -1,204 +0,0 @@ -// DetailViewController.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import UIKit - -class DetailViewController: UITableViewController { - enum Sections: Int { - case Headers, Body - } - - var request: Alamofire.Request? { - didSet { - oldValue?.cancel() - - title = request?.description - refreshControl?.endRefreshing() - headers.removeAll() - body = nil - elapsedTime = nil - } - } - - var headers: [String: String] = [:] - var body: String? - var elapsedTime: NSTimeInterval? - var segueIdentifier: String? - - static let numberFormatter: NSNumberFormatter = { - let formatter = NSNumberFormatter() - formatter.numberStyle = .DecimalStyle - return formatter - }() - - // MARK: View Lifecycle - - override func awakeFromNib() { - super.awakeFromNib() - refreshControl?.addTarget(self, action: "refresh", forControlEvents: .ValueChanged) - - } - - override func viewDidAppear(animated: Bool) { - super.viewDidAppear(animated) - - refresh() - } - - // MARK: IBActions - - @IBAction func refresh() { - guard let request = request else { - return - } - - refreshControl?.beginRefreshing() - - let start = CACurrentMediaTime() - request.responseString { response in - let end = CACurrentMediaTime() - self.elapsedTime = end - start - - if let response = response.response { - for (field, value) in response.allHeaderFields { - self.headers["\(field)"] = "\(value)" - } - } - - if let segueIdentifier = self.segueIdentifier { - switch segueIdentifier { - case "GET", "POST", "PUT", "DELETE": - self.body = response.result.value - case "DOWNLOAD": - self.body = self.downloadedBodyString() - default: - break - } - } - - self.tableView.reloadData() - self.refreshControl?.endRefreshing() - } - } - - private func downloadedBodyString() -> String { - let fileManager = NSFileManager.defaultManager() - let cachesDirectory = fileManager.URLsForDirectory(.CachesDirectory, inDomains: .UserDomainMask)[0] - - do { - let contents = try fileManager.contentsOfDirectoryAtURL( - cachesDirectory, - includingPropertiesForKeys: nil, - options: .SkipsHiddenFiles - ) - - if let - fileURL = contents.first, - data = NSData(contentsOfURL: fileURL) - { - let json = try NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions()) - let prettyData = try NSJSONSerialization.dataWithJSONObject(json, options: .PrettyPrinted) - - if let prettyString = NSString(data: prettyData, encoding: NSUTF8StringEncoding) as? String { - try fileManager.removeItemAtURL(fileURL) - return prettyString - } - } - } catch { - // No-op - } - - return "" - } -} - -// MARK: - UITableViewDataSource - -extension DetailViewController { - override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - switch Sections(rawValue: section)! { - case .Headers: - return headers.count - case .Body: - return body == nil ? 0 : 1 - } - } - - override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { - switch Sections(rawValue: indexPath.section)! { - case .Headers: - let cell = tableView.dequeueReusableCellWithIdentifier("Header")! - let field = headers.keys.sort(<)[indexPath.row] - let value = headers[field] - - cell.textLabel?.text = field - cell.detailTextLabel?.text = value - - return cell - case .Body: - let cell = tableView.dequeueReusableCellWithIdentifier("Body")! - cell.textLabel?.text = body - - return cell - } - } -} - -// MARK: - UITableViewDelegate - -extension DetailViewController { - override func numberOfSectionsInTableView(tableView: UITableView) -> Int { - return 2 - } - - override func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? { - if self.tableView(tableView, numberOfRowsInSection: section) == 0 { - return "" - } - - switch Sections(rawValue: section)! { - case .Headers: - return "Headers" - case .Body: - return "Body" - } - } - - override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { - switch Sections(rawValue: indexPath.section)! { - case .Body: - return 300 - default: - return tableView.rowHeight - } - } - - override func tableView(tableView: UITableView, titleForFooterInSection section: Int) -> String? { - if Sections(rawValue: section) == .Body, let elapsedTime = elapsedTime { - let elapsedTimeText = DetailViewController.numberFormatter.stringFromNumber(elapsedTime) ?? "???" - return "Elapsed Time: \(elapsedTimeText) sec" - } - - return "" - } -} diff --git a/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift b/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift deleted file mode 100644 index 5a69799..0000000 --- a/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift +++ /dev/null @@ -1,95 +0,0 @@ -// MasterViewController.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import UIKit - -class MasterViewController: UITableViewController { - - @IBOutlet weak var titleImageView: UIImageView! - - var detailViewController: DetailViewController? = nil - var objects = NSMutableArray() - - // MARK: - View Lifecycle - - override func awakeFromNib() { - super.awakeFromNib() - - navigationItem.titleView = titleImageView - } - - override func viewDidLoad() { - super.viewDidLoad() - - if let split = splitViewController { - let controllers = split.viewControllers - - if let - navigationController = controllers.last as? UINavigationController, - topViewController = navigationController.topViewController as? DetailViewController - { - detailViewController = topViewController - } - } - } - - // MARK: - UIStoryboardSegue - - override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { - if let - navigationController = segue.destinationViewController as? UINavigationController, - detailViewController = navigationController.topViewController as? DetailViewController - { - func requestForSegue(segue: UIStoryboardSegue) -> Request? { - switch segue.identifier! { - case "GET": - detailViewController.segueIdentifier = "GET" - return Alamofire.request(.GET, "https://httpbin.org/get") - case "POST": - detailViewController.segueIdentifier = "POST" - return Alamofire.request(.POST, "https://httpbin.org/post") - case "PUT": - detailViewController.segueIdentifier = "PUT" - return Alamofire.request(.PUT, "https://httpbin.org/put") - case "DELETE": - detailViewController.segueIdentifier = "DELETE" - return Alamofire.request(.DELETE, "https://httpbin.org/delete") - case "DOWNLOAD": - detailViewController.segueIdentifier = "DOWNLOAD" - let destination = Alamofire.Request.suggestedDownloadDestination( - directory: .CachesDirectory, - domain: .UserDomainMask - ) - return Alamofire.download(.GET, "https://httpbin.org/stream/1", destination: destination) - default: - return nil - } - } - - if let request = requestForSegue(segue) { - detailViewController.request = request - } - } - } -} - diff --git a/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj b/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj deleted file mode 100644 index 083ae51..0000000 --- a/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj +++ /dev/null @@ -1,468 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 31E476821C55DE6D00968569 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 31E4766A1C55DD5900968569 /* Alamofire.framework */; }; - 31E476831C55DE6D00968569 /* Alamofire.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 31E4766A1C55DD5900968569 /* Alamofire.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - 4C6D2C801C67EFE100846168 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D2C7D1C67EFE100846168 /* AppDelegate.swift */; }; - 4C6D2C811C67EFE100846168 /* DetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D2C7E1C67EFE100846168 /* DetailViewController.swift */; }; - 4C6D2C821C67EFE100846168 /* MasterViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D2C7F1C67EFE100846168 /* MasterViewController.swift */; }; - 4C6D2C8F1C67EFEC00846168 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4C6D2C8C1C67EFEC00846168 /* Images.xcassets */; }; - 4C6D2C981C67F03B00846168 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4C6D2C961C67F03B00846168 /* Main.storyboard */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 31E476691C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F8111E3319A95C8B0040E7D1; - remoteInfo = "Alamofire iOS"; - }; - 31E4766B1C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F8111E3E19A95C8B0040E7D1; - remoteInfo = "Alamofire iOS Tests"; - }; - 31E4766D1C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4DD67C0B1A5C55C900ED2280; - remoteInfo = "Alamofire OSX"; - }; - 31E4766F1C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F829C6B21A7A94F100A2CD59; - remoteInfo = "Alamofire OSX Tests"; - }; - 31E476711C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4CF626EF1BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS"; - }; - 31E476731C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4CF626F81BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS Tests"; - }; - 31E476751C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = E4202FE01B667AA100C997FB; - remoteInfo = "Alamofire watchOS"; - }; - 31E476841C55DE6D00968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = F8111E3219A95C8B0040E7D1; - remoteInfo = "Alamofire iOS"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - F818D0E519CA8D15006034B1 /* Copy Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 31E476831C55DE6D00968569 /* Alamofire.framework in Copy Frameworks */, - ); - name = "Copy Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Alamofire.xcodeproj; path = ../Alamofire.xcodeproj; sourceTree = ""; }; - 4C6D2C7D1C67EFE100846168 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = Source/AppDelegate.swift; sourceTree = SOURCE_ROOT; }; - 4C6D2C7E1C67EFE100846168 /* DetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DetailViewController.swift; path = Source/DetailViewController.swift; sourceTree = SOURCE_ROOT; }; - 4C6D2C7F1C67EFE100846168 /* MasterViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MasterViewController.swift; path = Source/MasterViewController.swift; sourceTree = SOURCE_ROOT; }; - 4C6D2C8C1C67EFEC00846168 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Resources/Images.xcassets; sourceTree = SOURCE_ROOT; }; - 4C6D2C8D1C67EFEC00846168 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = SOURCE_ROOT; }; - 4C6D2C971C67F03B00846168 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Main.storyboard; sourceTree = ""; }; - F8111E0519A951050040E7D1 /* iOS Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iOS Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - F8111E0219A951050040E7D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 31E476821C55DE6D00968569 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 31E476601C55DD5900968569 /* Products */ = { - isa = PBXGroup; - children = ( - 31E4766A1C55DD5900968569 /* Alamofire.framework */, - 31E4766C1C55DD5900968569 /* Alamofire iOS Tests.xctest */, - 31E4766E1C55DD5900968569 /* Alamofire.framework */, - 31E476701C55DD5900968569 /* Alamofire OSX Tests.xctest */, - 31E476721C55DD5900968569 /* Alamofire.framework */, - 31E476741C55DD5900968569 /* Alamofire tvOS Tests.xctest */, - 31E476761C55DD5900968569 /* Alamofire.framework */, - ); - name = Products; - sourceTree = ""; - }; - 4C6D2C951C67F03B00846168 /* Base.lproj */ = { - isa = PBXGroup; - children = ( - 4C6D2C961C67F03B00846168 /* Main.storyboard */, - ); - name = Base.lproj; - path = Resources/Base.lproj; - sourceTree = SOURCE_ROOT; - }; - F8111DFC19A951050040E7D1 = { - isa = PBXGroup; - children = ( - F8111E0719A951050040E7D1 /* Source */, - F8111E0619A951050040E7D1 /* Products */, - 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */, - ); - sourceTree = ""; - }; - F8111E0619A951050040E7D1 /* Products */ = { - isa = PBXGroup; - children = ( - F8111E0519A951050040E7D1 /* iOS Example.app */, - ); - name = Products; - sourceTree = ""; - }; - F8111E0719A951050040E7D1 /* Source */ = { - isa = PBXGroup; - children = ( - 4C6D2C7D1C67EFE100846168 /* AppDelegate.swift */, - 4C6D2C7E1C67EFE100846168 /* DetailViewController.swift */, - 4C6D2C7F1C67EFE100846168 /* MasterViewController.swift */, - F8111E0819A951050040E7D1 /* Supporting Files */, - ); - name = Source; - path = Example; - sourceTree = ""; - }; - F8111E0819A951050040E7D1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 4C6D2C8D1C67EFEC00846168 /* Info.plist */, - 4C6D2C8C1C67EFEC00846168 /* Images.xcassets */, - 4C6D2C951C67F03B00846168 /* Base.lproj */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - F8111E0419A951050040E7D1 /* iOS Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8111E2319A951050040E7D1 /* Build configuration list for PBXNativeTarget "iOS Example" */; - buildPhases = ( - F8111E0119A951050040E7D1 /* Sources */, - F8111E0219A951050040E7D1 /* Frameworks */, - F8111E0319A951050040E7D1 /* Resources */, - F818D0E519CA8D15006034B1 /* Copy Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 31E476851C55DE6D00968569 /* PBXTargetDependency */, - ); - name = "iOS Example"; - productName = Alamofire; - productReference = F8111E0519A951050040E7D1 /* iOS Example.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - F8111DFD19A951050040E7D1 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0720; - LastUpgradeCheck = 0700; - ORGANIZATIONNAME = Alamofire; - TargetAttributes = { - F8111E0419A951050040E7D1 = { - CreatedOnToolsVersion = 6.0; - }; - }; - }; - buildConfigurationList = F8111E0019A951050040E7D1 /* Build configuration list for PBXProject "iOS Example" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = F8111DFC19A951050040E7D1; - productRefGroup = F8111E0619A951050040E7D1 /* Products */; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = 31E476601C55DD5900968569 /* Products */; - ProjectRef = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - F8111E0419A951050040E7D1 /* iOS Example */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - 31E4766A1C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E476691C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E4766C1C55DD5900968569 /* Alamofire iOS Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire iOS Tests.xctest"; - remoteRef = 31E4766B1C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E4766E1C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E4766D1C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476701C55DD5900968569 /* Alamofire OSX Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire OSX Tests.xctest"; - remoteRef = 31E4766F1C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476721C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E476711C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476741C55DD5900968569 /* Alamofire tvOS Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire tvOS Tests.xctest"; - remoteRef = 31E476731C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476761C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E476751C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXResourcesBuildPhase section */ - F8111E0319A951050040E7D1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C6D2C8F1C67EFEC00846168 /* Images.xcassets in Resources */, - 4C6D2C981C67F03B00846168 /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - F8111E0119A951050040E7D1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C6D2C801C67EFE100846168 /* AppDelegate.swift in Sources */, - 4C6D2C821C67EFE100846168 /* MasterViewController.swift in Sources */, - 4C6D2C811C67EFE100846168 /* DetailViewController.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 31E476851C55DE6D00968569 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire iOS"; - targetProxy = 31E476841C55DE6D00968569 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 4C6D2C961C67F03B00846168 /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 4C6D2C971C67F03B00846168 /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - F8111E2119A951050040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - F8111E2219A951050040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F8111E2419A951050040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - CLANG_ENABLE_MODULES = YES; - EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; - INFOPLIST_FILE = Resources/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "iOS Example"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - F8111E2519A951050040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - CLANG_ENABLE_MODULES = YES; - EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; - INFOPLIST_FILE = Resources/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "iOS Example"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - F8111E0019A951050040E7D1 /* Build configuration list for PBXProject "iOS Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E2119A951050040E7D1 /* Debug */, - F8111E2219A951050040E7D1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E2319A951050040E7D1 /* Build configuration list for PBXNativeTarget "iOS Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E2419A951050040E7D1 /* Debug */, - F8111E2519A951050040E7D1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = F8111DFD19A951050040E7D1 /* Project object */; -} diff --git a/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index bfe77a2..0000000 --- a/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme b/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme deleted file mode 100644 index ea36dc5..0000000 --- a/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/Alamofire/LICENSE b/Carthage/Checkouts/Alamofire/LICENSE deleted file mode 100644 index bf300e4..0000000 --- a/Carthage/Checkouts/Alamofire/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) - -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. diff --git a/Carthage/Checkouts/Alamofire/Package.swift b/Carthage/Checkouts/Alamofire/Package.swift deleted file mode 100644 index c6088ba..0000000 --- a/Carthage/Checkouts/Alamofire/Package.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Package.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 PackageDescription - -let package = Package( - name: "Alamofire" -) diff --git a/Carthage/Checkouts/Alamofire/README.md b/Carthage/Checkouts/Alamofire/README.md deleted file mode 100644 index 0905d05..0000000 --- a/Carthage/Checkouts/Alamofire/README.md +++ /dev/null @@ -1,1195 +0,0 @@ -![Alamofire: Elegant Networking in Swift](https://raw.githubusercontent.com/Alamofire/Alamofire/assets/alamofire.png) - -[![Build Status](https://travis-ci.org/Alamofire/Alamofire.svg)](https://travis-ci.org/Alamofire/Alamofire) -[![Cocoapods Compatible](https://img.shields.io/cocoapods/v/Alamofire.svg)](https://img.shields.io/cocoapods/v/Alamofire.svg) -[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) -[![Platform](https://img.shields.io/cocoapods/p/Alamofire.svg?style=flat)](http://cocoadocs.org/docsets/Alamofire) -[![Twitter](https://img.shields.io/badge/twitter-@AlamofireSF-blue.svg?style=flat)](http://twitter.com/AlamofireSF) - -Alamofire is an HTTP networking library written in Swift. - -## Features - -- [x] Chainable Request / Response methods -- [x] URL / JSON / plist Parameter Encoding -- [x] Upload File / Data / Stream / MultipartFormData -- [x] Download using Request or Resume data -- [x] Authentication with NSURLCredential -- [x] HTTP Response Validation -- [x] TLS Certificate and Public Key Pinning -- [x] Progress Closure & NSProgress -- [x] cURL Debug Output -- [x] Comprehensive Unit Test Coverage -- [x] [Complete Documentation](http://cocoadocs.org/docsets/Alamofire) - -## Requirements - -- iOS 8.0+ / Mac OS X 10.9+ / tvOS 9.0+ / watchOS 2.0+ -- Xcode 7.2+ - -## Migration Guides - -- [Alamofire 3.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%203.0%20Migration%20Guide.md) -- [Alamofire 2.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%202.0%20Migration%20Guide.md) - -## Communication - -- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). (Tag 'alamofire') -- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). -- If you **found a bug**, open an issue. -- If you **have a feature request**, open an issue. -- If you **want to contribute**, submit a pull request. - -## Installation - -> **Embedded frameworks require a minimum deployment target of iOS 8 or OS X Mavericks (10.9).** -> -> Alamofire is no longer supported on iOS 7 due to the lack of support for frameworks. Without frameworks, running Travis-CI against iOS 7 would require a second duplicated test target. The separate test suite would need to import all the Swift files and the tests would need to be duplicated and re-written. This split would be too difficult to maintain to ensure the highest possible quality of the Alamofire ecosystem. - -### CocoaPods - -[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command: - -```bash -$ gem install cocoapods -``` - -> CocoaPods 0.39.0+ is required to build Alamofire 3.0.0+. - -To integrate Alamofire into your Xcode project using CocoaPods, specify it in your `Podfile`: - -```ruby -source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '8.0' -use_frameworks! - -pod 'Alamofire', '~> 3.0' -``` - -Then, run the following command: - -```bash -$ pod install -``` - -### Carthage - -[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. - -You can install Carthage with [Homebrew](http://brew.sh/) using the following command: - -```bash -$ brew update -$ brew install carthage -``` - -To integrate Alamofire into your Xcode project using Carthage, specify it in your `Cartfile`: - -```ogdl -github "Alamofire/Alamofire" ~> 3.0 -``` - -Run `carthage update` to build the framework and drag the built `Alamofire.framework` into your Xcode project. - -### Manually - -If you prefer not to use either of the aforementioned dependency managers, you can integrate Alamofire into your project manually. - -#### Embedded Framework - -- Open up Terminal, `cd` into your top-level project directory, and run the following command "if" your project is not initialized as a git repository: - -```bash -$ git init -``` - -- Add Alamofire as a git [submodule](http://git-scm.com/docs/git-submodule) by running the following command: - -```bash -$ git submodule add https://github.com/Alamofire/Alamofire.git -``` - -- Open the new `Alamofire` folder, and drag the `Alamofire.xcodeproj` into the Project Navigator of your application's Xcode project. - - > It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter. - -- Select the `Alamofire.xcodeproj` in the Project Navigator and verify the deployment target matches that of your application target. -- Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar. -- In the tab bar at the top of that window, open the "General" panel. -- Click on the `+` button under the "Embedded Binaries" section. -- You will see two different `Alamofire.xcodeproj` folders each with two different versions of the `Alamofire.framework` nested inside a `Products` folder. - - > It does not matter which `Products` folder you choose from, but it does matter whether you choose the top or bottom `Alamofire.framework`. - -- Select the top `Alamofire.framework` for iOS and the bottom one for OS X. - - > You can verify which one you selected by inspecting the build log for your project. The build target for `Alamofire` will be listed as either `Alamofire iOS` or `Alamofire OSX`. - -- And that's it! - -> The `Alamofire.framework` is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device. - ---- - -## Usage - -### Making a Request - -```swift -import Alamofire - -Alamofire.request(.GET, "https://httpbin.org/get") -``` - -### Response Handling - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .responseJSON { response in - print(response.request) // original URL request - print(response.response) // URL response - print(response.data) // server data - print(response.result) // result of response serialization - - if let JSON = response.result.value { - print("JSON: \(JSON)") - } - } -``` - -> Networking in Alamofire is done _asynchronously_. Asynchronous programming may be a source of frustration to programmers unfamiliar with the concept, but there are [very good reasons](https://developer.apple.com/library/ios/qa/qa1693/_index.html) for doing it this way. - -> Rather than blocking execution to wait for a response from the server, a [callback](http://en.wikipedia.org/wiki/Callback_%28computer_programming%29) is specified to handle the response once it's received. The result of a request is only available inside the scope of a response handler. Any execution contingent on the response or data received from the server must be done within a handler. - -### Response Serialization - -**Built-in Response Methods** - -- `response()` -- `responseData()` -- `responseString(encoding: NSStringEncoding)` -- `responseJSON(options: NSJSONReadingOptions)` -- `responsePropertyList(options: NSPropertyListReadOptions)` - -#### Response Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .response { request, response, data, error in - print(request) - print(response) - print(data) - print(error) - } -``` - -> The `response` serializer does NOT evaluate any of the response data. It merely forwards on all the information directly from the URL session delegate. We strongly encourage you to leverage the other response serializers taking advantage of `Response` and `Result` types. - -#### Response Data Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .responseData { response in - print(response.request) - print(response.response) - print(response.result) - } -``` - -#### Response String Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") - .responseString { response in - print("Success: \(response.result.isSuccess)") - print("Response String: \(response.result.value)") - } -``` - -#### Response JSON Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") - .responseJSON { response in - debugPrint(response) - } -``` - -#### Chained Response Handlers - -Response handlers can even be chained: - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") - .responseString { response in - print("Response String: \(response.result.value)") - } - .responseJSON { response in - print("Response JSON: \(response.result.value)") - } -``` - -### HTTP Methods - -`Alamofire.Method` lists the HTTP methods defined in [RFC 7231 §4.3](http://tools.ietf.org/html/rfc7231#section-4.3): - -```swift -public enum Method: String { - case OPTIONS, GET, HEAD, POST, PUT, PATCH, DELETE, TRACE, CONNECT -} -``` - -These values can be passed as the first argument of the `Alamofire.request` method: - -```swift -Alamofire.request(.POST, "https://httpbin.org/post") - -Alamofire.request(.PUT, "https://httpbin.org/put") - -Alamofire.request(.DELETE, "https://httpbin.org/delete") -``` - -### Parameters - -#### GET Request With URL-Encoded Parameters - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) -// https://httpbin.org/get?foo=bar -``` - -#### POST Request With URL-Encoded Parameters - -```swift -let parameters = [ - "foo": "bar", - "baz": ["a", 1], - "qux": [ - "x": 1, - "y": 2, - "z": 3 - ] -] - -Alamofire.request(.POST, "https://httpbin.org/post", parameters: parameters) -// HTTP body: foo=bar&baz[]=a&baz[]=1&qux[x]=1&qux[y]=2&qux[z]=3 -``` - -### Parameter Encoding - -Parameters can also be encoded as JSON, Property List, or any custom format, using the `ParameterEncoding` enum: - -```swift -enum ParameterEncoding { - case URL - case URLEncodedInURL - case JSON - case PropertyList(format: NSPropertyListFormat, options: NSPropertyListWriteOptions) - case Custom((URLRequestConvertible, [String: AnyObject]?) -> (NSMutableURLRequest, NSError?)) - - func encode(request: NSURLRequest, parameters: [String: AnyObject]?) -> (NSURLRequest, NSError?) - { ... } -} -``` - -- `URL`: A query string to be set as or appended to any existing URL query for `GET`, `HEAD`, and `DELETE` requests, or set as the body for requests with any other HTTP method. The `Content-Type` HTTP header field of an encoded request with HTTP body is set to `application/x-www-form-urlencoded`. _Since there is no published specification for how to encode collection types, Alamofire follows the convention of appending `[]` to the key for array values (`foo[]=1&foo[]=2`), and appending the key surrounded by square brackets for nested dictionary values (`foo[bar]=baz`)._ -- `URLEncodedInURL`: Creates query string to be set as or appended to any existing URL query. Uses the same implementation as the `.URL` case, but always applies the encoded result to the URL. -- `JSON`: Uses `NSJSONSerialization` to create a JSON representation of the parameters object, which is set as the body of the request. The `Content-Type` HTTP header field of an encoded request is set to `application/json`. -- `PropertyList`: Uses `NSPropertyListSerialization` to create a plist representation of the parameters object, according to the associated format and write options values, which is set as the body of the request. The `Content-Type` HTTP header field of an encoded request is set to `application/x-plist`. -- `Custom`: Uses the associated closure value to construct a new request given an existing request and parameters. - -#### Manual Parameter Encoding of an NSURLRequest - -```swift -let URL = NSURL(string: "https://httpbin.org/get")! -var request = NSMutableURLRequest(URL: URL) - -let parameters = ["foo": "bar"] -let encoding = Alamofire.ParameterEncoding.URL -(request, _) = encoding.encode(request, parameters: parameters) -``` - -#### POST Request with JSON-encoded Parameters - -```swift -let parameters = [ - "foo": [1,2,3], - "bar": [ - "baz": "qux" - ] -] - -Alamofire.request(.POST, "https://httpbin.org/post", parameters: parameters, encoding: .JSON) -// HTTP body: {"foo": [1, 2, 3], "bar": {"baz": "qux"}} -``` - -### HTTP Headers - -Adding a custom HTTP header to a `Request` is supported directly in the global `request` method. This makes it easy to attach HTTP headers to a `Request` that can be constantly changing. - -> For HTTP headers that do not change, it is recommended to set them on the `NSURLSessionConfiguration` so they are automatically applied to any `NSURLSessionTask` created by the underlying `NSURLSession`. - -```swift -let headers = [ - "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==", - "Content-Type": "application/x-www-form-urlencoded" -] - -Alamofire.request(.GET, "https://httpbin.org/get", headers: headers) - .responseJSON { response in - debugPrint(response) - } -``` - -### Caching - -Caching is handled on the system framework level by [`NSURLCache`](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLCache_Class/Reference/Reference.html#//apple_ref/occ/cl/NSURLCache). - -### Uploading - -**Supported Upload Types** - -- File -- Data -- Stream -- MultipartFormData - -#### Uploading a File - -```swift -let fileURL = NSBundle.mainBundle().URLForResource("Default", withExtension: "png") -Alamofire.upload(.POST, "https://httpbin.org/post", file: fileURL) -``` - -#### Uploading with Progress - -```swift -Alamofire.upload(.POST, "https://httpbin.org/post", file: fileURL) - .progress { bytesWritten, totalBytesWritten, totalBytesExpectedToWrite in - print(totalBytesWritten) - - // This closure is NOT called on the main queue for performance - // reasons. To update your ui, dispatch to the main queue. - dispatch_async(dispatch_get_main_queue()) { - print("Total bytes written on main queue: \(totalBytesWritten)") - } - } - .responseJSON { response in - debugPrint(response) - } -``` - -#### Uploading MultipartFormData - -```swift -Alamofire.upload( - .POST, - "https://httpbin.org/post", - multipartFormData: { multipartFormData in - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart(fileURL: rainbowImageURL, name: "rainbow") - }, - encodingCompletion: { encodingResult in - switch encodingResult { - case .Success(let upload, _, _): - upload.responseJSON { response in - debugPrint(response) - } - case .Failure(let encodingError): - print(encodingError) - } - } -) -``` - -### Downloading - -**Supported Download Types** - -- Request -- Resume Data - -#### Downloading a File - -```swift -Alamofire.download(.GET, "https://httpbin.org/stream/100") { temporaryURL, response in - let fileManager = NSFileManager.defaultManager() - let directoryURL = fileManager.URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0] - let pathComponent = response.suggestedFilename - - return directoryURL.URLByAppendingPathComponent(pathComponent!) -} -``` - -#### Using the Default Download Destination - -```swift -let destination = Alamofire.Request.suggestedDownloadDestination(directory: .DocumentDirectory, domain: .UserDomainMask) -Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) -``` - -#### Downloading a File w/Progress - -```swift -Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) - .progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in - print(totalBytesRead) - - // This closure is NOT called on the main queue for performance - // reasons. To update your ui, dispatch to the main queue. - dispatch_async(dispatch_get_main_queue()) { - print("Total bytes read on main queue: \(totalBytesRead)") - } - } - .response { _, _, _, error in - if let error = error { - print("Failed with error: \(error)") - } else { - print("Downloaded file successfully") - } - } -``` - -#### Accessing Resume Data for Failed Downloads - -```swift -Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) - .response { _, _, data, _ in - if let - data = data, - resumeDataString = NSString(data: data, encoding: NSUTF8StringEncoding) - { - print("Resume Data: \(resumeDataString)") - } else { - print("Resume Data was empty") - } - } -``` - -> The `data` parameter is automatically populated with the `resumeData` if available. - -```swift -let download = Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) -download.response { _, _, _, _ in - if let - resumeData = download.resumeData, - resumeDataString = NSString(data: resumeData, encoding: NSUTF8StringEncoding) - { - print("Resume Data: \(resumeDataString)") - } else { - print("Resume Data was empty") - } -} -``` - -### Authentication - -Authentication is handled on the system framework level by [`NSURLCredential` and `NSURLAuthenticationChallenge`](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLAuthenticationChallenge_Class/Reference/Reference.html). - -**Supported Authentication Schemes** - -- [HTTP Basic](http://en.wikipedia.org/wiki/Basic_access_authentication) -- [HTTP Digest](http://en.wikipedia.org/wiki/Digest_access_authentication) -- [Kerberos](http://en.wikipedia.org/wiki/Kerberos_%28protocol%29) -- [NTLM](http://en.wikipedia.org/wiki/NT_LAN_Manager) - -#### HTTP Basic Authentication - -The `authenticate` method on a `Request` will automatically provide an `NSURLCredential` to an `NSURLAuthenticationChallenge` when appropriate: - -```swift -let user = "user" -let password = "password" - -Alamofire.request(.GET, "https://httpbin.org/basic-auth/\(user)/\(password)") - .authenticate(user: user, password: password) - .responseJSON { response in - debugPrint(response) - } -``` - -Depending upon your server implementation, an `Authorization` header may also be appropriate: - -```swift -let user = "user" -let password = "password" - -let credentialData = "\(user):\(password)".dataUsingEncoding(NSUTF8StringEncoding)! -let base64Credentials = credentialData.base64EncodedStringWithOptions([]) - -let headers = ["Authorization": "Basic \(base64Credentials)"] - -Alamofire.request(.GET, "https://httpbin.org/basic-auth/user/password", headers: headers) - .responseJSON { response in - debugPrint(response) - } -``` - -#### Authentication with NSURLCredential - -```swift -let user = "user" -let password = "password" - -let credential = NSURLCredential(user: user, password: password, persistence: .ForSession) - -Alamofire.request(.GET, "https://httpbin.org/basic-auth/\(user)/\(password)") - .authenticate(usingCredential: credential) - .responseJSON { response in - debugPrint(response) - } -``` - -### Validation - -By default, Alamofire treats any completed request to be successful, regardless of the content of the response. Calling `validate` before a response handler causes an error to be generated if the response had an unacceptable status code or MIME type. - -#### Manual Validation - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .validate(statusCode: 200..<300) - .validate(contentType: ["application/json"]) - .response { response in - print(response) - } -``` - -#### Automatic Validation - -Automatically validates status code within `200...299` range, and that the `Content-Type` header of the response matches the `Accept` header of the request, if one is provided. - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .validate() - .responseJSON { response in - switch response.result { - case .Success: - print("Validation Successful") - case .Failure(let error): - print(error) - } - } -``` - -### Timeline - -Alamofire collects timings throughout the lifecycle of a `Request` and creates a `Timeline` object exposed as a property on a `Response`. - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .validate() - .responseJSON { response in - print(response.timeline) - } -``` - -The above reports the following `Timeline` info: - -- `Latency`: 0.428 seconds -- `Request Duration`: 0.428 seconds -- `Serialization Duration`: 0.001 seconds -- `Total Duration`: 0.429 seconds - -### Printable - -```swift -let request = Alamofire.request(.GET, "https://httpbin.org/ip") - -print(request) -// GET https://httpbin.org/ip (200) -``` - -### DebugPrintable - -```swift -let request = Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - -debugPrint(request) -``` - -#### Output (cURL) - -```bash -$ curl -i \ - -H "User-Agent: Alamofire" \ - -H "Accept-Encoding: Accept-Encoding: gzip;q=1.0,compress;q=0.5" \ - -H "Accept-Language: en;q=1.0,fr;q=0.9,de;q=0.8,zh-Hans;q=0.7,zh-Hant;q=0.6,ja;q=0.5" \ - "https://httpbin.org/get?foo=bar" -``` - ---- - -## Advanced Usage - -> Alamofire is built on `NSURLSession` and the Foundation URL Loading System. To make the most of -this framework, it is recommended that you be familiar with the concepts and capabilities of the underlying networking stack. - -**Recommended Reading** - -- [URL Loading System Programming Guide](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html) -- [NSURLSession Class Reference](https://developer.apple.com/library/mac/documentation/Foundation/Reference/NSURLSession_class/Introduction/Introduction.html#//apple_ref/occ/cl/NSURLSession) -- [NSURLCache Class Reference](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLCache_Class/Reference/Reference.html#//apple_ref/occ/cl/NSURLCache) -- [NSURLAuthenticationChallenge Class Reference](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLAuthenticationChallenge_Class/Reference/Reference.html) - -### Manager - -Top-level convenience methods like `Alamofire.request` use a shared instance of `Alamofire.Manager`, which is configured with the default `NSURLSessionConfiguration`. - -As such, the following two statements are equivalent: - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") -``` - -```swift -let manager = Alamofire.Manager.sharedInstance -manager.request(NSURLRequest(URL: NSURL(string: "https://httpbin.org/get")!)) -``` - -Applications can create managers for background and ephemeral sessions, as well as new managers that customize the default session configuration, such as for default headers (`HTTPAdditionalHeaders`) or timeout interval (`timeoutIntervalForRequest`). - -#### Creating a Manager with Default Configuration - -```swift -let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() -let manager = Alamofire.Manager(configuration: configuration) -``` - -#### Creating a Manager with Background Configuration - -```swift -let configuration = NSURLSessionConfiguration.backgroundSessionConfigurationWithIdentifier("com.example.app.background") -let manager = Alamofire.Manager(configuration: configuration) -``` - -#### Creating a Manager with Ephemeral Configuration - -```swift -let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() -let manager = Alamofire.Manager(configuration: configuration) -``` - -#### Modifying Session Configuration - -```swift -var defaultHeaders = Alamofire.Manager.sharedInstance.session.configuration.HTTPAdditionalHeaders ?? [:] -defaultHeaders["DNT"] = "1 (Do Not Track Enabled)" - -let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() -configuration.HTTPAdditionalHeaders = defaultHeaders - -let manager = Alamofire.Manager(configuration: configuration) -``` - -> This is **not** recommended for `Authorization` or `Content-Type` headers. Instead, use `URLRequestConvertible` and `ParameterEncoding`, respectively. - -### Request - -The result of a `request`, `upload`, or `download` method is an instance of `Alamofire.Request`. A request is always created using a constructor method from an owning manager, and never initialized directly. - -Methods like `authenticate`, `validate` and `responseData` return the caller in order to facilitate chaining. - -Requests can be suspended, resumed, and cancelled: - -- `suspend()`: Suspends the underlying task and dispatch queue -- `resume()`: Resumes the underlying task and dispatch queue. If the owning manager does not have `startRequestsImmediately` set to `true`, the request must call `resume()` in order to start. -- `cancel()`: Cancels the underlying task, producing an error that is passed to any registered response handlers. - -### Response Serialization - -#### Creating a Custom Response Serializer - -Alamofire provides built-in response serialization for strings, JSON, and property lists, but others can be added in extensions on `Alamofire.Request`. - -For example, here's how a response handler using [Ono](https://github.com/mattt/Ono) might be implemented: - -```swift -extension Request { - public static func XMLResponseSerializer() -> ResponseSerializer { - return ResponseSerializer { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - guard let validData = data else { - let failureReason = "Data could not be serialized. Input data was nil." - let error = Error.errorWithCode(.DataSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - do { - let XML = try ONOXMLDocument(data: validData) - return .Success(XML) - } catch { - return .Failure(error as NSError) - } - } - } - - public func responseXMLDocument(completionHandler: Response -> Void) -> Self { - return response(responseSerializer: Request.XMLResponseSerializer(), completionHandler: completionHandler) - } -} -``` - -#### Generic Response Object Serialization - -Generics can be used to provide automatic, type-safe response object serialization. - -```swift -public protocol ResponseObjectSerializable { - init?(response: NSHTTPURLResponse, representation: AnyObject) -} - -extension Request { - public func responseObject(completionHandler: Response -> Void) -> Self { - let responseSerializer = ResponseSerializer { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - let JSONResponseSerializer = Request.JSONResponseSerializer(options: .AllowFragments) - let result = JSONResponseSerializer.serializeResponse(request, response, data, error) - - switch result { - case .Success(let value): - if let - response = response, - responseObject = T(response: response, representation: value) - { - return .Success(responseObject) - } else { - let failureReason = "JSON could not be serialized into response object: \(value)" - let error = Error.errorWithCode(.JSONSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - case .Failure(let error): - return .Failure(error) - } - } - - return response(responseSerializer: responseSerializer, completionHandler: completionHandler) - } -} -``` - -```swift -final class User: ResponseObjectSerializable { - let username: String - let name: String - - init?(response: NSHTTPURLResponse, representation: AnyObject) { - self.username = response.URL!.lastPathComponent! - self.name = representation.valueForKeyPath("name") as! String - } -} -``` - -```swift -Alamofire.request(.GET, "https://example.com/users/mattt") - .responseObject { (response: Response) in - debugPrint(response) - } -``` - -The same approach can also be used to handle endpoints that return a representation of a collection of objects: - -```swift -public protocol ResponseCollectionSerializable { - static func collection(response response: NSHTTPURLResponse, representation: AnyObject) -> [Self] -} - -extension Alamofire.Request { - public func responseCollection(completionHandler: Response<[T], NSError> -> Void) -> Self { - let responseSerializer = ResponseSerializer<[T], NSError> { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - let JSONSerializer = Request.JSONResponseSerializer(options: .AllowFragments) - let result = JSONSerializer.serializeResponse(request, response, data, error) - - switch result { - case .Success(let value): - if let response = response { - return .Success(T.collection(response: response, representation: value)) - } else { - let failureReason = "Response collection could not be serialized due to nil response" - let error = Error.errorWithCode(.JSONSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - case .Failure(let error): - return .Failure(error) - } - } - - return response(responseSerializer: responseSerializer, completionHandler: completionHandler) - } -} -``` - -```swift -final class User: ResponseObjectSerializable, ResponseCollectionSerializable { - let username: String - let name: String - - init?(response: NSHTTPURLResponse, representation: AnyObject) { - self.username = response.URL!.lastPathComponent! - self.name = representation.valueForKeyPath("name") as! String - } - - static func collection(response response: NSHTTPURLResponse, representation: AnyObject) -> [User] { - var users: [User] = [] - - if let representation = representation as? [[String: AnyObject]] { - for userRepresentation in representation { - if let user = User(response: response, representation: userRepresentation) { - users.append(user) - } - } - } - - return users - } -} -``` - -```swift -Alamofire.request(.GET, "http://example.com/users") - .responseCollection { (response: Response<[User], NSError>) in - debugPrint(response) - } -``` - -### URLStringConvertible - -Types adopting the `URLStringConvertible` protocol can be used to construct URL strings, which are then used to construct URL requests. `NSString`, `NSURL`, `NSURLComponents`, and `NSURLRequest` conform to `URLStringConvertible` by default, allowing any of them to be passed as `URLString` parameters to the `request`, `upload`, and `download` methods: - -```swift -let string = NSString(string: "https://httpbin.org/post") -Alamofire.request(.POST, string) - -let URL = NSURL(string: string)! -Alamofire.request(.POST, URL) - -let URLRequest = NSURLRequest(URL: URL) -Alamofire.request(.POST, URLRequest) // overrides `HTTPMethod` of `URLRequest` - -let URLComponents = NSURLComponents(URL: URL, resolvingAgainstBaseURL: true) -Alamofire.request(.POST, URLComponents) -``` - -Applications interacting with web applications in a significant manner are encouraged to have custom types conform to `URLStringConvertible` as a convenient way to map domain-specific models to server resources. - -#### Type-Safe Routing - -```swift -extension User: URLStringConvertible { - static let baseURLString = "http://example.com" - - var URLString: String { - return User.baseURLString + "/users/\(username)/" - } -} -``` - -```swift -let user = User(username: "mattt") -Alamofire.request(.GET, user) // http://example.com/users/mattt -``` - -### URLRequestConvertible - -Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests. `NSURLRequest` conforms to `URLRequestConvertible` by default, allowing it to be passed into `request`, `upload`, and `download` methods directly (this is the recommended way to specify custom HTTP body for individual requests): - -```swift -let URL = NSURL(string: "https://httpbin.org/post")! -let mutableURLRequest = NSMutableURLRequest(URL: URL) -mutableURLRequest.HTTPMethod = "POST" - -let parameters = ["foo": "bar"] - -do { - mutableURLRequest.HTTPBody = try NSJSONSerialization.dataWithJSONObject(parameters, options: NSJSONWritingOptions()) -} catch { - // No-op -} - -mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") - -Alamofire.request(mutableURLRequest) -``` - -Applications interacting with web applications in a significant manner are encouraged to have custom types conform to `URLRequestConvertible` as a way to ensure consistency of requested endpoints. Such an approach can be used to abstract away server-side inconsistencies and provide type-safe routing, as well as manage authentication credentials and other state. - -#### API Parameter Abstraction - -```swift -enum Router: URLRequestConvertible { - static let baseURLString = "http://example.com" - static let perPage = 50 - - case Search(query: String, page: Int) - - // MARK: URLRequestConvertible - - var URLRequest: NSMutableURLRequest { - let result: (path: String, parameters: [String: AnyObject]) = { - switch self { - case .Search(let query, let page) where page > 1: - return ("/search", ["q": query, "offset": Router.perPage * page]) - case .Search(let query, _): - return ("/search", ["q": query]) - } - }() - - let URL = NSURL(string: Router.baseURLString)! - let URLRequest = NSURLRequest(URL: URL.URLByAppendingPathComponent(result.path)) - let encoding = Alamofire.ParameterEncoding.URL - - return encoding.encode(URLRequest, parameters: result.parameters).0 - } -} -``` - -```swift -Alamofire.request(Router.Search(query: "foo bar", page: 1)) // ?q=foo%20bar&offset=50 -``` - -#### CRUD & Authorization - -```swift -enum Router: URLRequestConvertible { - static let baseURLString = "http://example.com" - static var OAuthToken: String? - - case CreateUser([String: AnyObject]) - case ReadUser(String) - case UpdateUser(String, [String: AnyObject]) - case DestroyUser(String) - - var method: Alamofire.Method { - switch self { - case .CreateUser: - return .POST - case .ReadUser: - return .GET - case .UpdateUser: - return .PUT - case .DestroyUser: - return .DELETE - } - } - - var path: String { - switch self { - case .CreateUser: - return "/users" - case .ReadUser(let username): - return "/users/\(username)" - case .UpdateUser(let username, _): - return "/users/\(username)" - case .DestroyUser(let username): - return "/users/\(username)" - } - } - - // MARK: URLRequestConvertible - - var URLRequest: NSMutableURLRequest { - let URL = NSURL(string: Router.baseURLString)! - let mutableURLRequest = NSMutableURLRequest(URL: URL.URLByAppendingPathComponent(path)) - mutableURLRequest.HTTPMethod = method.rawValue - - if let token = Router.OAuthToken { - mutableURLRequest.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization") - } - - switch self { - case .CreateUser(let parameters): - return Alamofire.ParameterEncoding.JSON.encode(mutableURLRequest, parameters: parameters).0 - case .UpdateUser(_, let parameters): - return Alamofire.ParameterEncoding.URL.encode(mutableURLRequest, parameters: parameters).0 - default: - return mutableURLRequest - } - } -} -``` - -```swift -Alamofire.request(Router.ReadUser("mattt")) // GET /users/mattt -``` - -### Security - -Using a secure HTTPS connection when communicating with servers and web services is an important step in securing sensitive data. By default, Alamofire will evaluate the certificate chain provided by the server using Apple's built in validation provided by the Security framework. While this guarantees the certificate chain is valid, it does not prevent man-in-the-middle (MITM) attacks or other potential vulnerabilities. In order to mitigate MITM attacks, applications dealing with sensitive customer data or financial information should use certificate or public key pinning provided by the `ServerTrustPolicy`. - -#### ServerTrustPolicy - -The `ServerTrustPolicy` enumeration evaluates the server trust generally provided by an `NSURLAuthenticationChallenge` when connecting to a server over a secure HTTPS connection. - -```swift -let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: ServerTrustPolicy.certificatesInBundle(), - validateCertificateChain: true, - validateHost: true -) -``` - -There are many different cases of server trust evaluation giving you complete control over the validation process: - -* `PerformDefaultEvaluation`: Uses the default server trust evaluation while allowing you to control whether to validate the host provided by the challenge. -* `PinCertificates`: Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned certificates match one of the server certificates. -* `PinPublicKeys`: Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned public keys match one of the server certificate public keys. -* `DisableEvaluation`: Disables all evaluation which in turn will always consider any server trust as valid. -* `CustomEvaluation`: Uses the associated closure to evaluate the validity of the server trust thus giving you complete control over the validation process. Use with caution. - -#### Server Trust Policy Manager - -The `ServerTrustPolicyManager` is responsible for storing an internal mapping of server trust policies to a particular host. This allows Alamofire to evaluate each host against a different server trust policy. - -```swift -let serverTrustPolicies: [String: ServerTrustPolicy] = [ - "test.example.com": .PinCertificates( - certificates: ServerTrustPolicy.certificatesInBundle(), - validateCertificateChain: true, - validateHost: true - ), - "insecure.expired-apis.com": .DisableEvaluation -] - -let manager = Manager( - serverTrustPolicyManager: ServerTrustPolicyManager(policies: serverTrustPolicies) -) -``` - -> Make sure to keep a reference to the new `Manager` instance, otherwise your requests will all get cancelled when your `manager` is deallocated. - -These server trust policies will result in the following behavior: - -* `test.example.com` will always use certificate pinning with certificate chain and host validation enabled thus requiring the following criteria to be met to allow the TLS handshake to succeed: - * Certificate chain MUST be valid. - * Certificate chain MUST include one of the pinned certificates. - * Challenge host MUST match the host in the certificate chain's leaf certificate. -* `insecure.expired-apis.com` will never evaluate the certificate chain and will always allow the TLS handshake to succeed. -* All other hosts will use the default evaluation provided by Apple. - -##### Subclassing Server Trust Policy Manager - -If you find yourself needing more flexible server trust policy matching behavior (i.e. wildcarded domains), then subclass the `ServerTrustPolicyManager` and override the `serverTrustPolicyForHost` method with your own custom implementation. - -```swift -class CustomServerTrustPolicyManager: ServerTrustPolicyManager { - override func serverTrustPolicyForHost(host: String) -> ServerTrustPolicy? { - var policy: ServerTrustPolicy? - - // Implement your custom domain matching behavior... - - return policy - } -} -``` - -#### Validating the Host - -The `.PerformDefaultEvaluation`, `.PinCertificates` and `.PinPublicKeys` server trust policies all take a `validateHost` parameter. Setting the value to `true` will cause the server trust evaluation to verify that hostname in the certificate matches the hostname of the challenge. If they do not match, evaluation will fail. A `validateHost` value of `false` will still evaluate the full certificate chain, but will not validate the hostname of the leaf certificate. - -> It is recommended that `validateHost` always be set to `true` in production environments. - -#### Validating the Certificate Chain - -Pinning certificates and public keys both have the option of validating the certificate chain using the `validateCertificateChain` parameter. By setting this value to `true`, the full certificate chain will be evaluated in addition to performing a byte equality check against the pinned certficates or public keys. A value of `false` will skip the certificate chain validation, but will still perform the byte equality check. - -There are several cases where it may make sense to disable certificate chain validation. The most common use cases for disabling validation are self-signed and expired certificates. The evaluation would always fail in both of these cases, but the byte equality check will still ensure you are receiving the certificate you expect from the server. - -> It is recommended that `validateCertificateChain` always be set to `true` in production environments. - -#### App Transport Security - -With the addition of App Transport Security (ATS) in iOS 9, it is possible that using a custom `ServerTrustPolicyManager` with several `ServerTrustPolicy` objects will have no effect. If you continuously see `CFNetwork SSLHandshake failed (-9806)` errors, you have probably run into this problem. Apple's ATS system overrides the entire challenge system unless you configure the ATS settings in your app's plist to disable enough of it to allow your app to evaluate the server trust. - -If you run into this problem (high probability with self-signed certificates), you can work around this issue by adding the following to your `Info.plist`. - -```xml - - NSAppTransportSecurity - - NSExceptionDomains - - example.com - - NSExceptionAllowsInsecureHTTPLoads - - NSExceptionRequiresForwardSecrecy - - NSIncludesSubdomains - - - NSTemporaryExceptionMinimumTLSVersion - TLSv1.2 - - - - -``` - -Whether you need to set the `NSExceptionRequiresForwardSecrecy` to `NO` depends on whether your TLS connection is using an allowed cipher suite. In certain cases, it will need to be set to `NO`. The `NSExceptionAllowsInsecureHTTPLoads` MUST be set to `YES` in order to allow the `SessionDelegate` to receive challenge callbacks. Once the challenge callbacks are being called, the `ServerTrustPolicyManager` will take over the server trust evaluation. You may also need to specify the `NSTemporaryExceptionMinimumTLSVersion` if you're trying to connect to a host that only supports TLS versions less than `1.2`. - -> It is recommended to always use valid certificates in production environments. - -### Network Reachability - -The `NetworkReachabilityManager` listens for reachability changes of hosts and addresses for both WWAN and WiFi network interfaces. - -```swift -let manager = NetworkReachabilityManager(host: "www.apple.com") - -manager?.listener = { status in - print("Network Status Changed: \(status)") -} - -manager?.startListening() -``` - -> Make sure to remember to retain the `manager` in the above example, or no status changes will be reported. - -There are some important things to remember when using network reachability to determine what to do next. - -* **Do NOT** use Reachability to determine if a network request should be sent. - * You should **ALWAYS** send it. -* When Reachability is restored, use the event to retry failed network requests. - * Even though the network requests may still fail, this is a good moment to retry them. -* The network reachability status can be useful for determining why a network request may have failed. - * If a network request fails, it is more useful to tell the user that the network request failed due to being offline rather than a more technical errror, such as "request timed out." - -> It is recommended to check out [WWDC 2012 Session 706, "Networking Best Practices"](https://developer.apple.com/videos/play/wwdc2012-706/) for more info. - ---- - -## Component Libraries - -In order to keep Alamofire focused specifically on core networking implementations, additional component libraries have been created by the [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) to bring additional functionality to the Alamofire ecosystem. - -* [AlamofireImage](https://github.com/Alamofire/AlamofireImage) - An image library including image response serializers, `UIImage` and `UIImageView` extensions, custom image filters, an auto-purging in-memory cache and a priority-based image downloading system. - -## Open Rdars - -The following rdars have some affect on the current implementation of Alamofire. - -* [rdar://21349340](http://www.openradar.me/radar?id=5517037090635776) - Compiler throwing warning due to toll-free bridging issue in test case - -## FAQ - -### What's the origin of the name Alamofire? - -Alamofire is named after the [Alamo Fire flower](https://aggie-horticulture.tamu.edu/wildseed/alamofire.html), a hybrid variant of the Bluebonnet, the official state flower of Texas. - ---- - -## Credits - -Alamofire is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). You can follow them on Twitter at [@AlamofireSF](https://twitter.com/AlamofireSF) for project updates and releases. - -### Security Disclosure - -If you believe you have identified a security vulnerability with Alamofire, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker. - -## License - -Alamofire is released under the MIT license. See LICENSE for details. diff --git a/Carthage/Checkouts/Alamofire/Source/Alamofire.h b/Carthage/Checkouts/Alamofire/Source/Alamofire.h deleted file mode 100644 index c27948a..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Alamofire.h +++ /dev/null @@ -1,26 +0,0 @@ -// Alamofire.h -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation; - -FOUNDATION_EXPORT double AlamofireVersionNumber; -FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; diff --git a/Carthage/Checkouts/Alamofire/Source/Alamofire.swift b/Carthage/Checkouts/Alamofire/Source/Alamofire.swift deleted file mode 100644 index b866f42..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Alamofire.swift +++ /dev/null @@ -1,368 +0,0 @@ -// Alamofire.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -// MARK: - URLStringConvertible - -/** - Types adopting the `URLStringConvertible` protocol can be used to construct URL strings, which are then used to - construct URL requests. -*/ -public protocol URLStringConvertible { - /** - A URL that conforms to RFC 2396. - - Methods accepting a `URLStringConvertible` type parameter parse it according to RFCs 1738 and 1808. - - See https://tools.ietf.org/html/rfc2396 - See https://tools.ietf.org/html/rfc1738 - See https://tools.ietf.org/html/rfc1808 - */ - var URLString: String { get } -} - -extension String: URLStringConvertible { - public var URLString: String { - return self - } -} - -extension NSURL: URLStringConvertible { - public var URLString: String { - return absoluteString - } -} - -extension NSURLComponents: URLStringConvertible { - public var URLString: String { - return URL!.URLString - } -} - -extension NSURLRequest: URLStringConvertible { - public var URLString: String { - return URL!.URLString - } -} - -// MARK: - URLRequestConvertible - -/** - Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests. -*/ -public protocol URLRequestConvertible { - /// The URL request. - var URLRequest: NSMutableURLRequest { get } -} - -extension NSURLRequest: URLRequestConvertible { - public var URLRequest: NSMutableURLRequest { - return self.mutableCopy() as! NSMutableURLRequest - } -} - -// MARK: - Convenience - -func URLRequest( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil) - -> NSMutableURLRequest -{ - let mutableURLRequest = NSMutableURLRequest(URL: NSURL(string: URLString.URLString)!) - mutableURLRequest.HTTPMethod = method.rawValue - - if let headers = headers { - for (headerField, headerValue) in headers { - mutableURLRequest.setValue(headerValue, forHTTPHeaderField: headerField) - } - } - - return mutableURLRequest -} - -// MARK: - Request Methods - -/** - Creates a request using the shared manager instance for the specified method, URL string, parameters, and - parameter encoding. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - - returns: The created request. -*/ -public func request( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil) - -> Request -{ - return Manager.sharedInstance.request( - method, - URLString, - parameters: parameters, - encoding: encoding, - headers: headers - ) -} - -/** - Creates a request using the shared manager instance for the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - - returns: The created request. -*/ -public func request(URLRequest: URLRequestConvertible) -> Request { - return Manager.sharedInstance.request(URLRequest.URLRequest) -} - -// MARK: - Upload Methods - -// MARK: File - -/** - Creates an upload request using the shared manager instance for the specified method, URL string, and file. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter file: The file to upload. - - - returns: The created upload request. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - file: NSURL) - -> Request -{ - return Manager.sharedInstance.upload(method, URLString, headers: headers, file: file) -} - -/** - Creates an upload request using the shared manager instance for the specified URL request and file. - - - parameter URLRequest: The URL request. - - parameter file: The file to upload. - - - returns: The created upload request. -*/ -public func upload(URLRequest: URLRequestConvertible, file: NSURL) -> Request { - return Manager.sharedInstance.upload(URLRequest, file: file) -} - -// MARK: Data - -/** - Creates an upload request using the shared manager instance for the specified method, URL string, and data. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter data: The data to upload. - - - returns: The created upload request. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - data: NSData) - -> Request -{ - return Manager.sharedInstance.upload(method, URLString, headers: headers, data: data) -} - -/** - Creates an upload request using the shared manager instance for the specified URL request and data. - - - parameter URLRequest: The URL request. - - parameter data: The data to upload. - - - returns: The created upload request. -*/ -public func upload(URLRequest: URLRequestConvertible, data: NSData) -> Request { - return Manager.sharedInstance.upload(URLRequest, data: data) -} - -// MARK: Stream - -/** - Creates an upload request using the shared manager instance for the specified method, URL string, and stream. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter stream: The stream to upload. - - - returns: The created upload request. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - stream: NSInputStream) - -> Request -{ - return Manager.sharedInstance.upload(method, URLString, headers: headers, stream: stream) -} - -/** - Creates an upload request using the shared manager instance for the specified URL request and stream. - - - parameter URLRequest: The URL request. - - parameter stream: The stream to upload. - - - returns: The created upload request. -*/ -public func upload(URLRequest: URLRequestConvertible, stream: NSInputStream) -> Request { - return Manager.sharedInstance.upload(URLRequest, stream: stream) -} - -// MARK: MultipartFormData - -/** - Creates an upload request using the shared manager instance for the specified method and URL string. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (Manager.MultipartFormDataEncodingResult -> Void)?) -{ - return Manager.sharedInstance.upload( - method, - URLString, - headers: headers, - multipartFormData: multipartFormData, - encodingMemoryThreshold: encodingMemoryThreshold, - encodingCompletion: encodingCompletion - ) -} - -/** - Creates an upload request using the shared manager instance for the specified method and URL string. - - - parameter URLRequest: The URL request. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. -*/ -public func upload( - URLRequest: URLRequestConvertible, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (Manager.MultipartFormDataEncodingResult -> Void)?) -{ - return Manager.sharedInstance.upload( - URLRequest, - multipartFormData: multipartFormData, - encodingMemoryThreshold: encodingMemoryThreshold, - encodingCompletion: encodingCompletion - ) -} - -// MARK: - Download Methods - -// MARK: URL Request - -/** - Creates a download request using the shared manager instance for the specified method and URL string. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. -*/ -public func download( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil, - destination: Request.DownloadFileDestination) - -> Request -{ - return Manager.sharedInstance.download( - method, - URLString, - parameters: parameters, - encoding: encoding, - headers: headers, - destination: destination - ) -} - -/** - Creates a download request using the shared manager instance for the specified URL request. - - - parameter URLRequest: The URL request. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. -*/ -public func download(URLRequest: URLRequestConvertible, destination: Request.DownloadFileDestination) -> Request { - return Manager.sharedInstance.download(URLRequest, destination: destination) -} - -// MARK: Resume Data - -/** - Creates a request using the shared manager instance for downloading from the resume data produced from a - previous request cancellation. - - - parameter resumeData: The resume data. This is an opaque data blob produced by `NSURLSessionDownloadTask` - when a task is cancelled. See `NSURLSession -downloadTaskWithResumeData:` for additional - information. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. -*/ -public func download(resumeData data: NSData, destination: Request.DownloadFileDestination) -> Request { - return Manager.sharedInstance.download(data, destination: destination) -} diff --git a/Carthage/Checkouts/Alamofire/Source/Download.swift b/Carthage/Checkouts/Alamofire/Source/Download.swift deleted file mode 100644 index 2ebe40f..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Download.swift +++ /dev/null @@ -1,246 +0,0 @@ -// Download.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension Manager { - private enum Downloadable { - case Request(NSURLRequest) - case ResumeData(NSData) - } - - private func download(downloadable: Downloadable, destination: Request.DownloadFileDestination) -> Request { - var downloadTask: NSURLSessionDownloadTask! - - switch downloadable { - case .Request(let request): - dispatch_sync(queue) { - downloadTask = self.session.downloadTaskWithRequest(request) - } - case .ResumeData(let resumeData): - dispatch_sync(queue) { - downloadTask = self.session.downloadTaskWithResumeData(resumeData) - } - } - - let request = Request(session: session, task: downloadTask) - - if let downloadDelegate = request.delegate as? Request.DownloadTaskDelegate { - downloadDelegate.downloadTaskDidFinishDownloadingToURL = { session, downloadTask, URL in - return destination(URL, downloadTask.response as! NSHTTPURLResponse) - } - } - - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - // MARK: Request - - /** - Creates a download request for the specified method, URL string, parameters, parameter encoding, headers - and destination. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. - */ - public func download( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil, - destination: Request.DownloadFileDestination) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - let encodedURLRequest = encoding.encode(mutableURLRequest, parameters: parameters).0 - - return download(encodedURLRequest, destination: destination) - } - - /** - Creates a request for downloading from the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. - */ - public func download(URLRequest: URLRequestConvertible, destination: Request.DownloadFileDestination) -> Request { - return download(.Request(URLRequest.URLRequest), destination: destination) - } - - // MARK: Resume Data - - /** - Creates a request for downloading from the resume data produced from a previous request cancellation. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter resumeData: The resume data. This is an opaque data blob produced by `NSURLSessionDownloadTask` - when a task is cancelled. See `NSURLSession -downloadTaskWithResumeData:` for - additional information. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. - */ - public func download(resumeData: NSData, destination: Request.DownloadFileDestination) -> Request { - return download(.ResumeData(resumeData), destination: destination) - } -} - -// MARK: - - -extension Request { - /** - A closure executed once a request has successfully completed in order to determine where to move the temporary - file written to during the download process. The closure takes two arguments: the temporary file URL and the URL - response, and returns a single argument: the file URL where the temporary file should be moved. - */ - public typealias DownloadFileDestination = (NSURL, NSHTTPURLResponse) -> NSURL - - /** - Creates a download file destination closure which uses the default file manager to move the temporary file to a - file URL in the first available directory with the specified search path directory and search path domain mask. - - - parameter directory: The search path directory. `.DocumentDirectory` by default. - - parameter domain: The search path domain mask. `.UserDomainMask` by default. - - - returns: A download file destination closure. - */ - public class func suggestedDownloadDestination( - directory directory: NSSearchPathDirectory = .DocumentDirectory, - domain: NSSearchPathDomainMask = .UserDomainMask) - -> DownloadFileDestination - { - return { temporaryURL, response -> NSURL in - let directoryURLs = NSFileManager.defaultManager().URLsForDirectory(directory, inDomains: domain) - - if !directoryURLs.isEmpty { - return directoryURLs[0].URLByAppendingPathComponent(response.suggestedFilename!) - } - - return temporaryURL - } - } - - /// The resume data of the underlying download task if available after a failure. - public var resumeData: NSData? { - var data: NSData? - - if let delegate = delegate as? DownloadTaskDelegate { - data = delegate.resumeData - } - - return data - } - - // MARK: - DownloadTaskDelegate - - class DownloadTaskDelegate: TaskDelegate, NSURLSessionDownloadDelegate { - var downloadTask: NSURLSessionDownloadTask? { return task as? NSURLSessionDownloadTask } - var downloadProgress: ((Int64, Int64, Int64) -> Void)? - - var resumeData: NSData? - override var data: NSData? { return resumeData } - - // MARK: - NSURLSessionDownloadDelegate - - // MARK: Override Closures - - var downloadTaskDidFinishDownloadingToURL: ((NSURLSession, NSURLSessionDownloadTask, NSURL) -> NSURL)? - var downloadTaskDidWriteData: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64, Int64) -> Void)? - var downloadTaskDidResumeAtOffset: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64) -> Void)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didFinishDownloadingToURL location: NSURL) - { - if let downloadTaskDidFinishDownloadingToURL = downloadTaskDidFinishDownloadingToURL { - do { - let destination = downloadTaskDidFinishDownloadingToURL(session, downloadTask, location) - try NSFileManager.defaultManager().moveItemAtURL(location, toURL: destination) - } catch { - self.error = error as NSError - } - } - } - - func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didWriteData bytesWritten: Int64, - totalBytesWritten: Int64, - totalBytesExpectedToWrite: Int64) - { - if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } - - if let downloadTaskDidWriteData = downloadTaskDidWriteData { - downloadTaskDidWriteData( - session, - downloadTask, - bytesWritten, - totalBytesWritten, - totalBytesExpectedToWrite - ) - } else { - progress.totalUnitCount = totalBytesExpectedToWrite - progress.completedUnitCount = totalBytesWritten - - downloadProgress?(bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) - } - } - - func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didResumeAtOffset fileOffset: Int64, - expectedTotalBytes: Int64) - { - if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset { - downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes) - } else { - progress.totalUnitCount = expectedTotalBytes - progress.completedUnitCount = fileOffset - } - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Error.swift b/Carthage/Checkouts/Alamofire/Source/Error.swift deleted file mode 100644 index 7a813f1..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Error.swift +++ /dev/null @@ -1,66 +0,0 @@ -// Error.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// The `Error` struct provides a convenience for creating custom Alamofire NSErrors. -public struct Error { - /// The domain used for creating all Alamofire errors. - public static let Domain = "com.alamofire.error" - - /// The custom error codes generated by Alamofire. - public enum Code: Int { - case InputStreamReadFailed = -6000 - case OutputStreamWriteFailed = -6001 - case ContentTypeValidationFailed = -6002 - case StatusCodeValidationFailed = -6003 - case DataSerializationFailed = -6004 - case StringSerializationFailed = -6005 - case JSONSerializationFailed = -6006 - case PropertyListSerializationFailed = -6007 - } - - /** - Creates an `NSError` with the given error code and failure reason. - - - parameter code: The error code. - - parameter failureReason: The failure reason. - - - returns: An `NSError` with the given error code and failure reason. - */ - public static func errorWithCode(code: Code, failureReason: String) -> NSError { - return errorWithCode(code.rawValue, failureReason: failureReason) - } - - /** - Creates an `NSError` with the given error code and failure reason. - - - parameter code: The error code. - - parameter failureReason: The failure reason. - - - returns: An `NSError` with the given error code and failure reason. - */ - public static func errorWithCode(code: Int, failureReason: String) -> NSError { - let userInfo = [NSLocalizedFailureReasonErrorKey: failureReason] - return NSError(domain: Domain, code: code, userInfo: userInfo) - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist b/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist deleted file mode 100644 index 07bfcd5..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 3.2.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - UIRequiredDeviceCapabilities - - arm64 - - - diff --git a/Carthage/Checkouts/Alamofire/Source/Info.plist b/Carthage/Checkouts/Alamofire/Source/Info.plist deleted file mode 100644 index 340121d..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 3.2.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - - diff --git a/Carthage/Checkouts/Alamofire/Source/Manager.swift b/Carthage/Checkouts/Alamofire/Source/Manager.swift deleted file mode 100644 index b10045c..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Manager.swift +++ /dev/null @@ -1,695 +0,0 @@ -// Manager.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - Responsible for creating and managing `Request` objects, as well as their underlying `NSURLSession`. -*/ -public class Manager { - - // MARK: - Properties - - /** - A shared instance of `Manager`, used by top-level Alamofire request methods, and suitable for use directly - for any ad hoc requests. - */ - public static let sharedInstance: Manager = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.HTTPAdditionalHeaders = Manager.defaultHTTPHeaders - - return Manager(configuration: configuration) - }() - - /** - Creates default values for the "Accept-Encoding", "Accept-Language" and "User-Agent" headers. - */ - public static let defaultHTTPHeaders: [String: String] = { - // Accept-Encoding HTTP Header; see https://tools.ietf.org/html/rfc7230#section-4.2.3 - let acceptEncoding: String = "gzip;q=1.0, compress;q=0.5" - - // Accept-Language HTTP Header; see https://tools.ietf.org/html/rfc7231#section-5.3.5 - let acceptLanguage = NSLocale.preferredLanguages().prefix(6).enumerate().map { index, languageCode in - let quality = 1.0 - (Double(index) * 0.1) - return "\(languageCode);q=\(quality)" - }.joinWithSeparator(", ") - - // User-Agent Header; see https://tools.ietf.org/html/rfc7231#section-5.5.3 - let userAgent: String = { - if let info = NSBundle.mainBundle().infoDictionary { - let executable: AnyObject = info[kCFBundleExecutableKey as String] ?? "Unknown" - let bundle: AnyObject = info[kCFBundleIdentifierKey as String] ?? "Unknown" - let version: AnyObject = info[kCFBundleVersionKey as String] ?? "Unknown" - let os: AnyObject = NSProcessInfo.processInfo().operatingSystemVersionString ?? "Unknown" - - var mutableUserAgent = NSMutableString(string: "\(executable)/\(bundle) (\(version); OS \(os))") as CFMutableString - let transform = NSString(string: "Any-Latin; Latin-ASCII; [:^ASCII:] Remove") as CFString - - if CFStringTransform(mutableUserAgent, UnsafeMutablePointer(nil), transform, false) { - return mutableUserAgent as String - } - } - - return "Alamofire" - }() - - return [ - "Accept-Encoding": acceptEncoding, - "Accept-Language": acceptLanguage, - "User-Agent": userAgent - ] - }() - - let queue = dispatch_queue_create(nil, DISPATCH_QUEUE_SERIAL) - - /// The underlying session. - public let session: NSURLSession - - /// The session delegate handling all the task and session delegate callbacks. - public let delegate: SessionDelegate - - /// Whether to start requests immediately after being constructed. `true` by default. - public var startRequestsImmediately: Bool = true - - /** - The background completion handler closure provided by the UIApplicationDelegate - `application:handleEventsForBackgroundURLSession:completionHandler:` method. By setting the background - completion handler, the SessionDelegate `sessionDidFinishEventsForBackgroundURLSession` closure implementation - will automatically call the handler. - - If you need to handle your own events before the handler is called, then you need to override the - SessionDelegate `sessionDidFinishEventsForBackgroundURLSession` and manually call the handler when finished. - - `nil` by default. - */ - public var backgroundCompletionHandler: (() -> Void)? - - // MARK: - Lifecycle - - /** - Initializes the `Manager` instance with the specified configuration, delegate and server trust policy. - - - parameter configuration: The configuration used to construct the managed session. - `NSURLSessionConfiguration.defaultSessionConfiguration()` by default. - - parameter delegate: The delegate used when initializing the session. `SessionDelegate()` by - default. - - parameter serverTrustPolicyManager: The server trust policy manager to use for evaluating all server trust - challenges. `nil` by default. - - - returns: The new `Manager` instance. - */ - public init( - configuration: NSURLSessionConfiguration = NSURLSessionConfiguration.defaultSessionConfiguration(), - delegate: SessionDelegate = SessionDelegate(), - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) - { - self.delegate = delegate - self.session = NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) - } - - /** - Initializes the `Manager` instance with the specified session, delegate and server trust policy. - - - parameter session: The URL session. - - parameter delegate: The delegate of the URL session. Must equal the URL session's delegate. - - parameter serverTrustPolicyManager: The server trust policy manager to use for evaluating all server trust - challenges. `nil` by default. - - - returns: The new `Manager` instance if the URL session's delegate matches the delegate parameter. - */ - public init?( - session: NSURLSession, - delegate: SessionDelegate, - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) - { - self.delegate = delegate - self.session = session - - guard delegate === session.delegate else { return nil } - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) - } - - private func commonInit(serverTrustPolicyManager serverTrustPolicyManager: ServerTrustPolicyManager?) { - session.serverTrustPolicyManager = serverTrustPolicyManager - - delegate.sessionDidFinishEventsForBackgroundURLSession = { [weak self] session in - guard let strongSelf = self else { return } - dispatch_async(dispatch_get_main_queue()) { strongSelf.backgroundCompletionHandler?() } - } - } - - deinit { - session.invalidateAndCancel() - } - - // MARK: - Request - - /** - Creates a request for the specified method, URL string, parameters, parameter encoding and headers. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - - returns: The created request. - */ - public func request( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - let encodedURLRequest = encoding.encode(mutableURLRequest, parameters: parameters).0 - return request(encodedURLRequest) - } - - /** - Creates a request for the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - - returns: The created request. - */ - public func request(URLRequest: URLRequestConvertible) -> Request { - var dataTask: NSURLSessionDataTask! - dispatch_sync(queue) { dataTask = self.session.dataTaskWithRequest(URLRequest.URLRequest) } - - let request = Request(session: session, task: dataTask) - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - // MARK: - SessionDelegate - - /** - Responsible for handling all delegate callbacks for the underlying session. - */ - public final class SessionDelegate: NSObject, NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate { - private var subdelegates: [Int: Request.TaskDelegate] = [:] - private let subdelegateQueue = dispatch_queue_create(nil, DISPATCH_QUEUE_CONCURRENT) - - subscript(task: NSURLSessionTask) -> Request.TaskDelegate? { - get { - var subdelegate: Request.TaskDelegate? - dispatch_sync(subdelegateQueue) { subdelegate = self.subdelegates[task.taskIdentifier] } - - return subdelegate - } - - set { - dispatch_barrier_async(subdelegateQueue) { self.subdelegates[task.taskIdentifier] = newValue } - } - } - - /** - Initializes the `SessionDelegate` instance. - - - returns: The new `SessionDelegate` instance. - */ - public override init() { - super.init() - } - - // MARK: - NSURLSessionDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionDelegate method `URLSession:didBecomeInvalidWithError:`. - public var sessionDidBecomeInvalidWithError: ((NSURLSession, NSError?) -> Void)? - - /// Overrides default behavior for NSURLSessionDelegate method `URLSession:didReceiveChallenge:completionHandler:`. - public var sessionDidReceiveChallenge: ((NSURLSession, NSURLAuthenticationChallenge) -> (NSURLSessionAuthChallengeDisposition, NSURLCredential?))? - - /// Overrides default behavior for NSURLSessionDelegate method `URLSessionDidFinishEventsForBackgroundURLSession:`. - public var sessionDidFinishEventsForBackgroundURLSession: ((NSURLSession) -> Void)? - - // MARK: Delegate Methods - - /** - Tells the delegate that the session has been invalidated. - - - parameter session: The session object that was invalidated. - - parameter error: The error that caused invalidation, or nil if the invalidation was explicit. - */ - public func URLSession(session: NSURLSession, didBecomeInvalidWithError error: NSError?) { - sessionDidBecomeInvalidWithError?(session, error) - } - - /** - Requests credentials from the delegate in response to a session-level authentication request from the remote server. - - - parameter session: The session containing the task that requested authentication. - - parameter challenge: An object that contains the request for authentication. - - parameter completionHandler: A handler that your delegate method must call providing the disposition and credential. - */ - public func URLSession( - session: NSURLSession, - didReceiveChallenge challenge: NSURLAuthenticationChallenge, - completionHandler: ((NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)) - { - var disposition: NSURLSessionAuthChallengeDisposition = .PerformDefaultHandling - var credential: NSURLCredential? - - if let sessionDidReceiveChallenge = sessionDidReceiveChallenge { - (disposition, credential) = sessionDidReceiveChallenge(session, challenge) - } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { - let host = challenge.protectionSpace.host - - if let - serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicyForHost(host), - serverTrust = challenge.protectionSpace.serverTrust - { - if serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) { - disposition = .UseCredential - credential = NSURLCredential(forTrust: serverTrust) - } else { - disposition = .CancelAuthenticationChallenge - } - } - } - - completionHandler(disposition, credential) - } - - /** - Tells the delegate that all messages enqueued for a session have been delivered. - - - parameter session: The session that no longer has any outstanding requests. - */ - public func URLSessionDidFinishEventsForBackgroundURLSession(session: NSURLSession) { - sessionDidFinishEventsForBackgroundURLSession?(session) - } - - // MARK: - NSURLSessionTaskDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:`. - public var taskWillPerformHTTPRedirection: ((NSURLSession, NSURLSessionTask, NSHTTPURLResponse, NSURLRequest) -> NSURLRequest?)? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:didReceiveChallenge:completionHandler:`. - public var taskDidReceiveChallenge: ((NSURLSession, NSURLSessionTask, NSURLAuthenticationChallenge) -> (NSURLSessionAuthChallengeDisposition, NSURLCredential?))? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:session:task:needNewBodyStream:`. - public var taskNeedNewBodyStream: ((NSURLSession, NSURLSessionTask) -> NSInputStream!)? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:`. - public var taskDidSendBodyData: ((NSURLSession, NSURLSessionTask, Int64, Int64, Int64) -> Void)? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:didCompleteWithError:`. - public var taskDidComplete: ((NSURLSession, NSURLSessionTask, NSError?) -> Void)? - - // MARK: Delegate Methods - - /** - Tells the delegate that the remote server requested an HTTP redirect. - - - parameter session: The session containing the task whose request resulted in a redirect. - - parameter task: The task whose request resulted in a redirect. - - parameter response: An object containing the server’s response to the original request. - - parameter request: A URL request object filled out with the new location. - - parameter completionHandler: A closure that your handler should call with either the value of the request - parameter, a modified URL request object, or NULL to refuse the redirect and - return the body of the redirect response. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - willPerformHTTPRedirection response: NSHTTPURLResponse, - newRequest request: NSURLRequest, - completionHandler: ((NSURLRequest?) -> Void)) - { - var redirectRequest: NSURLRequest? = request - - if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection { - redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request) - } - - completionHandler(redirectRequest) - } - - /** - Requests credentials from the delegate in response to an authentication request from the remote server. - - - parameter session: The session containing the task whose request requires authentication. - - parameter task: The task whose request requires authentication. - - parameter challenge: An object that contains the request for authentication. - - parameter completionHandler: A handler that your delegate method must call providing the disposition and credential. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didReceiveChallenge challenge: NSURLAuthenticationChallenge, - completionHandler: ((NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)) - { - if let taskDidReceiveChallenge = taskDidReceiveChallenge { - completionHandler(taskDidReceiveChallenge(session, task, challenge)) - } else if let delegate = self[task] { - delegate.URLSession( - session, - task: task, - didReceiveChallenge: challenge, - completionHandler: completionHandler - ) - } else { - URLSession(session, didReceiveChallenge: challenge, completionHandler: completionHandler) - } - } - - /** - Tells the delegate when a task requires a new request body stream to send to the remote server. - - - parameter session: The session containing the task that needs a new body stream. - - parameter task: The task that needs a new body stream. - - parameter completionHandler: A completion handler that your delegate method should call with the new body stream. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - needNewBodyStream completionHandler: ((NSInputStream?) -> Void)) - { - if let taskNeedNewBodyStream = taskNeedNewBodyStream { - completionHandler(taskNeedNewBodyStream(session, task)) - } else if let delegate = self[task] { - delegate.URLSession(session, task: task, needNewBodyStream: completionHandler) - } - } - - /** - Periodically informs the delegate of the progress of sending body content to the server. - - - parameter session: The session containing the data task. - - parameter task: The data task. - - parameter bytesSent: The number of bytes sent since the last time this delegate method was called. - - parameter totalBytesSent: The total number of bytes sent so far. - - parameter totalBytesExpectedToSend: The expected length of the body data. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didSendBodyData bytesSent: Int64, - totalBytesSent: Int64, - totalBytesExpectedToSend: Int64) - { - if let taskDidSendBodyData = taskDidSendBodyData { - taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend) - } else if let delegate = self[task] as? Request.UploadTaskDelegate { - delegate.URLSession( - session, - task: task, - didSendBodyData: bytesSent, - totalBytesSent: totalBytesSent, - totalBytesExpectedToSend: totalBytesExpectedToSend - ) - } - } - - /** - Tells the delegate that the task finished transferring data. - - - parameter session: The session containing the task whose request finished transferring data. - - parameter task: The task whose request finished transferring data. - - parameter error: If an error occurred, an error object indicating how the transfer failed, otherwise nil. - */ - public func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { - if let taskDidComplete = taskDidComplete { - taskDidComplete(session, task, error) - } else if let delegate = self[task] { - delegate.URLSession(session, task: task, didCompleteWithError: error) - } - - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidComplete, object: task) - - self[task] = nil - } - - // MARK: - NSURLSessionDataDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:didReceiveResponse:completionHandler:`. - public var dataTaskDidReceiveResponse: ((NSURLSession, NSURLSessionDataTask, NSURLResponse) -> NSURLSessionResponseDisposition)? - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:didBecomeDownloadTask:`. - public var dataTaskDidBecomeDownloadTask: ((NSURLSession, NSURLSessionDataTask, NSURLSessionDownloadTask) -> Void)? - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:didReceiveData:`. - public var dataTaskDidReceiveData: ((NSURLSession, NSURLSessionDataTask, NSData) -> Void)? - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:willCacheResponse:completionHandler:`. - public var dataTaskWillCacheResponse: ((NSURLSession, NSURLSessionDataTask, NSCachedURLResponse) -> NSCachedURLResponse!)? - - // MARK: Delegate Methods - - /** - Tells the delegate that the data task received the initial reply (headers) from the server. - - - parameter session: The session containing the data task that received an initial reply. - - parameter dataTask: The data task that received an initial reply. - - parameter response: A URL response object populated with headers. - - parameter completionHandler: A completion handler that your code calls to continue the transfer, passing a - constant to indicate whether the transfer should continue as a data task or - should become a download task. - */ - public func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didReceiveResponse response: NSURLResponse, - completionHandler: ((NSURLSessionResponseDisposition) -> Void)) - { - var disposition: NSURLSessionResponseDisposition = .Allow - - if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse { - disposition = dataTaskDidReceiveResponse(session, dataTask, response) - } - - completionHandler(disposition) - } - - /** - Tells the delegate that the data task was changed to a download task. - - - parameter session: The session containing the task that was replaced by a download task. - - parameter dataTask: The data task that was replaced by a download task. - - parameter downloadTask: The new download task that replaced the data task. - */ - public func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didBecomeDownloadTask downloadTask: NSURLSessionDownloadTask) - { - if let dataTaskDidBecomeDownloadTask = dataTaskDidBecomeDownloadTask { - dataTaskDidBecomeDownloadTask(session, dataTask, downloadTask) - } else { - let downloadDelegate = Request.DownloadTaskDelegate(task: downloadTask) - self[downloadTask] = downloadDelegate - } - } - - /** - Tells the delegate that the data task has received some of the expected data. - - - parameter session: The session containing the data task that provided data. - - parameter dataTask: The data task that provided data. - - parameter data: A data object containing the transferred data. - */ - public func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { - if let dataTaskDidReceiveData = dataTaskDidReceiveData { - dataTaskDidReceiveData(session, dataTask, data) - } else if let delegate = self[dataTask] as? Request.DataTaskDelegate { - delegate.URLSession(session, dataTask: dataTask, didReceiveData: data) - } - } - - /** - Asks the delegate whether the data (or upload) task should store the response in the cache. - - - parameter session: The session containing the data (or upload) task. - - parameter dataTask: The data (or upload) task. - - parameter proposedResponse: The default caching behavior. This behavior is determined based on the current - caching policy and the values of certain received headers, such as the Pragma - and Cache-Control headers. - - parameter completionHandler: A block that your handler must call, providing either the original proposed - response, a modified version of that response, or NULL to prevent caching the - response. If your delegate implements this method, it must call this completion - handler; otherwise, your app leaks memory. - */ - public func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - willCacheResponse proposedResponse: NSCachedURLResponse, - completionHandler: ((NSCachedURLResponse?) -> Void)) - { - if let dataTaskWillCacheResponse = dataTaskWillCacheResponse { - completionHandler(dataTaskWillCacheResponse(session, dataTask, proposedResponse)) - } else if let delegate = self[dataTask] as? Request.DataTaskDelegate { - delegate.URLSession( - session, - dataTask: dataTask, - willCacheResponse: proposedResponse, - completionHandler: completionHandler - ) - } else { - completionHandler(proposedResponse) - } - } - - // MARK: - NSURLSessionDownloadDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionDownloadDelegate method `URLSession:downloadTask:didFinishDownloadingToURL:`. - public var downloadTaskDidFinishDownloadingToURL: ((NSURLSession, NSURLSessionDownloadTask, NSURL) -> Void)? - - /// Overrides default behavior for NSURLSessionDownloadDelegate method `URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:`. - public var downloadTaskDidWriteData: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64, Int64) -> Void)? - - /// Overrides default behavior for NSURLSessionDownloadDelegate method `URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:`. - public var downloadTaskDidResumeAtOffset: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64) -> Void)? - - // MARK: Delegate Methods - - /** - Tells the delegate that a download task has finished downloading. - - - parameter session: The session containing the download task that finished. - - parameter downloadTask: The download task that finished. - - parameter location: A file URL for the temporary file. Because the file is temporary, you must either - open the file for reading or move it to a permanent location in your app’s sandbox - container directory before returning from this delegate method. - */ - public func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didFinishDownloadingToURL location: NSURL) - { - if let downloadTaskDidFinishDownloadingToURL = downloadTaskDidFinishDownloadingToURL { - downloadTaskDidFinishDownloadingToURL(session, downloadTask, location) - } else if let delegate = self[downloadTask] as? Request.DownloadTaskDelegate { - delegate.URLSession(session, downloadTask: downloadTask, didFinishDownloadingToURL: location) - } - } - - /** - Periodically informs the delegate about the download’s progress. - - - parameter session: The session containing the download task. - - parameter downloadTask: The download task. - - parameter bytesWritten: The number of bytes transferred since the last time this delegate - method was called. - - parameter totalBytesWritten: The total number of bytes transferred so far. - - parameter totalBytesExpectedToWrite: The expected length of the file, as provided by the Content-Length - header. If this header was not provided, the value is - `NSURLSessionTransferSizeUnknown`. - */ - public func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didWriteData bytesWritten: Int64, - totalBytesWritten: Int64, - totalBytesExpectedToWrite: Int64) - { - if let downloadTaskDidWriteData = downloadTaskDidWriteData { - downloadTaskDidWriteData(session, downloadTask, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) - } else if let delegate = self[downloadTask] as? Request.DownloadTaskDelegate { - delegate.URLSession( - session, - downloadTask: downloadTask, - didWriteData: bytesWritten, - totalBytesWritten: totalBytesWritten, - totalBytesExpectedToWrite: totalBytesExpectedToWrite - ) - } - } - - /** - Tells the delegate that the download task has resumed downloading. - - - parameter session: The session containing the download task that finished. - - parameter downloadTask: The download task that resumed. See explanation in the discussion. - - parameter fileOffset: If the file's cache policy or last modified date prevents reuse of the - existing content, then this value is zero. Otherwise, this value is an - integer representing the number of bytes on disk that do not need to be - retrieved again. - - parameter expectedTotalBytes: The expected length of the file, as provided by the Content-Length header. - If this header was not provided, the value is NSURLSessionTransferSizeUnknown. - */ - public func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didResumeAtOffset fileOffset: Int64, - expectedTotalBytes: Int64) - { - if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset { - downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes) - } else if let delegate = self[downloadTask] as? Request.DownloadTaskDelegate { - delegate.URLSession( - session, - downloadTask: downloadTask, - didResumeAtOffset: fileOffset, - expectedTotalBytes: expectedTotalBytes - ) - } - } - - // MARK: - NSURLSessionStreamDelegate - - var _streamTaskReadClosed: Any? - var _streamTaskWriteClosed: Any? - var _streamTaskBetterRouteDiscovered: Any? - var _streamTaskDidBecomeInputStream: Any? - - // MARK: - NSObject - - public override func respondsToSelector(selector: Selector) -> Bool { - switch selector { - case "URLSession:didBecomeInvalidWithError:": - return sessionDidBecomeInvalidWithError != nil - case "URLSession:didReceiveChallenge:completionHandler:": - return sessionDidReceiveChallenge != nil - case "URLSessionDidFinishEventsForBackgroundURLSession:": - return sessionDidFinishEventsForBackgroundURLSession != nil - case "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:": - return taskWillPerformHTTPRedirection != nil - case "URLSession:dataTask:didReceiveResponse:completionHandler:": - return dataTaskDidReceiveResponse != nil - default: - return self.dynamicType.instancesRespondToSelector(selector) - } - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift b/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift deleted file mode 100644 index 8c37f16..0000000 --- a/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift +++ /dev/null @@ -1,669 +0,0 @@ -// MultipartFormData.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -#if os(iOS) || os(watchOS) || os(tvOS) -import MobileCoreServices -#elseif os(OSX) -import CoreServices -#endif - -/** - Constructs `multipart/form-data` for uploads within an HTTP or HTTPS body. There are currently two ways to encode - multipart form data. The first way is to encode the data directly in memory. This is very efficient, but can lead - to memory issues if the dataset is too large. The second way is designed for larger datasets and will write all the - data to a single file on disk with all the proper boundary segmentation. The second approach MUST be used for - larger datasets such as video content, otherwise your app may run out of memory when trying to encode the dataset. - - For more information on `multipart/form-data` in general, please refer to the RFC-2388 and RFC-2045 specs as well - and the w3 form documentation. - - - https://www.ietf.org/rfc/rfc2388.txt - - https://www.ietf.org/rfc/rfc2045.txt - - https://www.w3.org/TR/html401/interact/forms.html#h-17.13 -*/ -public class MultipartFormData { - - // MARK: - Helper Types - - struct EncodingCharacters { - static let CRLF = "\r\n" - } - - struct BoundaryGenerator { - enum BoundaryType { - case Initial, Encapsulated, Final - } - - static func randomBoundary() -> String { - return String(format: "alamofire.boundary.%08x%08x", arc4random(), arc4random()) - } - - static func boundaryData(boundaryType boundaryType: BoundaryType, boundary: String) -> NSData { - let boundaryText: String - - switch boundaryType { - case .Initial: - boundaryText = "--\(boundary)\(EncodingCharacters.CRLF)" - case .Encapsulated: - boundaryText = "\(EncodingCharacters.CRLF)--\(boundary)\(EncodingCharacters.CRLF)" - case .Final: - boundaryText = "\(EncodingCharacters.CRLF)--\(boundary)--\(EncodingCharacters.CRLF)" - } - - return boundaryText.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - } - } - - class BodyPart { - let headers: [String: String] - let bodyStream: NSInputStream - let bodyContentLength: UInt64 - var hasInitialBoundary = false - var hasFinalBoundary = false - - init(headers: [String: String], bodyStream: NSInputStream, bodyContentLength: UInt64) { - self.headers = headers - self.bodyStream = bodyStream - self.bodyContentLength = bodyContentLength - } - } - - // MARK: - Properties - - /// The `Content-Type` header value containing the boundary used to generate the `multipart/form-data`. - public var contentType: String { return "multipart/form-data; boundary=\(boundary)" } - - /// The content length of all body parts used to generate the `multipart/form-data` not including the boundaries. - public var contentLength: UInt64 { return bodyParts.reduce(0) { $0 + $1.bodyContentLength } } - - /// The boundary used to separate the body parts in the encoded form data. - public let boundary: String - - private var bodyParts: [BodyPart] - private var bodyPartError: NSError? - private let streamBufferSize: Int - - // MARK: - Lifecycle - - /** - Creates a multipart form data object. - - - returns: The multipart form data object. - */ - public init() { - self.boundary = BoundaryGenerator.randomBoundary() - self.bodyParts = [] - - /** - * The optimal read/write buffer size in bytes for input and output streams is 1024 (1KB). For more - * information, please refer to the following article: - * - https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Streams/Articles/ReadingInputStreams.html - */ - - self.streamBufferSize = 1024 - } - - // MARK: - Body Parts - - /** - Creates a body part from the data and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}` (HTTP Header) - - Encoded data - - Multipart form boundary - - - parameter data: The data to encode into the multipart form data. - - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. - */ - public func appendBodyPart(data data: NSData, name: String) { - let headers = contentHeaders(name: name) - let stream = NSInputStream(data: data) - let length = UInt64(data.length) - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the data and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}` (HTTP Header) - - `Content-Type: #{generated mimeType}` (HTTP Header) - - Encoded data - - Multipart form boundary - - - parameter data: The data to encode into the multipart form data. - - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the data content type in the `Content-Type` HTTP header. - */ - public func appendBodyPart(data data: NSData, name: String, mimeType: String) { - let headers = contentHeaders(name: name, mimeType: mimeType) - let stream = NSInputStream(data: data) - let length = UInt64(data.length) - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the data and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header) - - `Content-Type: #{mimeType}` (HTTP Header) - - Encoded file data - - Multipart form boundary - - - parameter data: The data to encode into the multipart form data. - - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. - - parameter fileName: The filename to associate with the data in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the data in the `Content-Type` HTTP header. - */ - public func appendBodyPart(data data: NSData, name: String, fileName: String, mimeType: String) { - let headers = contentHeaders(name: name, fileName: fileName, mimeType: mimeType) - let stream = NSInputStream(data: data) - let length = UInt64(data.length) - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the file and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}; filename=#{generated filename}` (HTTP Header) - - `Content-Type: #{generated mimeType}` (HTTP Header) - - Encoded file data - - Multipart form boundary - - The filename in the `Content-Disposition` HTTP header is generated from the last path component of the - `fileURL`. The `Content-Type` HTTP header MIME type is generated by mapping the `fileURL` extension to the - system associated MIME type. - - - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data. - - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header. - */ - public func appendBodyPart(fileURL fileURL: NSURL, name: String) { - if let - fileName = fileURL.lastPathComponent, - pathExtension = fileURL.pathExtension - { - let mimeType = mimeTypeForPathExtension(pathExtension) - appendBodyPart(fileURL: fileURL, name: name, fileName: fileName, mimeType: mimeType) - } else { - let failureReason = "Failed to extract the fileName of the provided URL: \(fileURL)" - setBodyPartError(Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason)) - } - } - - /** - Creates a body part from the file and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - Content-Disposition: form-data; name=#{name}; filename=#{filename} (HTTP Header) - - Content-Type: #{mimeType} (HTTP Header) - - Encoded file data - - Multipart form boundary - - - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data. - - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header. - - parameter fileName: The filename to associate with the file content in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the file content in the `Content-Type` HTTP header. - */ - public func appendBodyPart(fileURL fileURL: NSURL, name: String, fileName: String, mimeType: String) { - let headers = contentHeaders(name: name, fileName: fileName, mimeType: mimeType) - - //============================================================ - // Check 1 - is file URL? - //============================================================ - - guard fileURL.fileURL else { - let failureReason = "The file URL does not point to a file URL: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - setBodyPartError(error) - return - } - - //============================================================ - // Check 2 - is file URL reachable? - //============================================================ - - var isReachable = true - - if #available(OSX 10.10, *) { - isReachable = fileURL.checkPromisedItemIsReachableAndReturnError(nil) - } - - guard isReachable else { - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: "The file URL is not reachable: \(fileURL)") - setBodyPartError(error) - return - } - - //============================================================ - // Check 3 - is file URL a directory? - //============================================================ - - var isDirectory: ObjCBool = false - - guard let - path = fileURL.path - where NSFileManager.defaultManager().fileExistsAtPath(path, isDirectory: &isDirectory) && !isDirectory else - { - let failureReason = "The file URL is a directory, not a file: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - setBodyPartError(error) - return - } - - //============================================================ - // Check 4 - can the file size be extracted? - //============================================================ - - var bodyContentLength: UInt64? - - do { - if let - path = fileURL.path, - fileSize = try NSFileManager.defaultManager().attributesOfItemAtPath(path)[NSFileSize] as? NSNumber - { - bodyContentLength = fileSize.unsignedLongLongValue - } - } catch { - // No-op - } - - guard let length = bodyContentLength else { - let failureReason = "Could not fetch attributes from the file URL: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - setBodyPartError(error) - return - } - - //============================================================ - // Check 5 - can a stream be created from file URL? - //============================================================ - - guard let stream = NSInputStream(URL: fileURL) else { - let failureReason = "Failed to create an input stream from the file URL: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorCannotOpenFile, failureReason: failureReason) - setBodyPartError(error) - return - } - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the stream and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header) - - `Content-Type: #{mimeType}` (HTTP Header) - - Encoded stream data - - Multipart form boundary - - - parameter stream: The input stream to encode in the multipart form data. - - parameter length: The content length of the stream. - - parameter name: The name to associate with the stream content in the `Content-Disposition` HTTP header. - - parameter fileName: The filename to associate with the stream content in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the stream content in the `Content-Type` HTTP header. - */ - public func appendBodyPart( - stream stream: NSInputStream, - length: UInt64, - name: String, - fileName: String, - mimeType: String) - { - let headers = contentHeaders(name: name, fileName: fileName, mimeType: mimeType) - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part with the headers, stream and length and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - HTTP headers - - Encoded stream data - - Multipart form boundary - - - parameter stream: The input stream to encode in the multipart form data. - - parameter length: The content length of the stream. - - parameter headers: The HTTP headers for the body part. - */ - public func appendBodyPart(stream stream: NSInputStream, length: UInt64, headers: [String: String]) { - let bodyPart = BodyPart(headers: headers, bodyStream: stream, bodyContentLength: length) - bodyParts.append(bodyPart) - } - - // MARK: - Data Encoding - - /** - Encodes all the appended body parts into a single `NSData` object. - - It is important to note that this method will load all the appended body parts into memory all at the same - time. This method should only be used when the encoded data will have a small memory footprint. For large data - cases, please use the `writeEncodedDataToDisk(fileURL:completionHandler:)` method. - - - throws: An `NSError` if encoding encounters an error. - - - returns: The encoded `NSData` if encoding is successful. - */ - public func encode() throws -> NSData { - if let bodyPartError = bodyPartError { - throw bodyPartError - } - - let encoded = NSMutableData() - - bodyParts.first?.hasInitialBoundary = true - bodyParts.last?.hasFinalBoundary = true - - for bodyPart in bodyParts { - let encodedData = try encodeBodyPart(bodyPart) - encoded.appendData(encodedData) - } - - return encoded - } - - /** - Writes the appended body parts into the given file URL. - - This process is facilitated by reading and writing with input and output streams, respectively. Thus, - this approach is very memory efficient and should be used for large body part data. - - - parameter fileURL: The file URL to write the multipart form data into. - - - throws: An `NSError` if encoding encounters an error. - */ - public func writeEncodedDataToDisk(fileURL: NSURL) throws { - if let bodyPartError = bodyPartError { - throw bodyPartError - } - - if let path = fileURL.path where NSFileManager.defaultManager().fileExistsAtPath(path) { - let failureReason = "A file already exists at the given file URL: \(fileURL)" - throw Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - } else if !fileURL.fileURL { - let failureReason = "The URL does not point to a valid file: \(fileURL)" - throw Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - } - - let outputStream: NSOutputStream - - if let possibleOutputStream = NSOutputStream(URL: fileURL, append: false) { - outputStream = possibleOutputStream - } else { - let failureReason = "Failed to create an output stream with the given URL: \(fileURL)" - throw Error.errorWithCode(NSURLErrorCannotOpenFile, failureReason: failureReason) - } - - outputStream.scheduleInRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - outputStream.open() - - self.bodyParts.first?.hasInitialBoundary = true - self.bodyParts.last?.hasFinalBoundary = true - - for bodyPart in self.bodyParts { - try writeBodyPart(bodyPart, toOutputStream: outputStream) - } - - outputStream.close() - outputStream.removeFromRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - } - - // MARK: - Private - Body Part Encoding - - private func encodeBodyPart(bodyPart: BodyPart) throws -> NSData { - let encoded = NSMutableData() - - let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData() - encoded.appendData(initialData) - - let headerData = encodeHeaderDataForBodyPart(bodyPart) - encoded.appendData(headerData) - - let bodyStreamData = try encodeBodyStreamDataForBodyPart(bodyPart) - encoded.appendData(bodyStreamData) - - if bodyPart.hasFinalBoundary { - encoded.appendData(finalBoundaryData()) - } - - return encoded - } - - private func encodeHeaderDataForBodyPart(bodyPart: BodyPart) -> NSData { - var headerText = "" - - for (key, value) in bodyPart.headers { - headerText += "\(key): \(value)\(EncodingCharacters.CRLF)" - } - headerText += EncodingCharacters.CRLF - - return headerText.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - } - - private func encodeBodyStreamDataForBodyPart(bodyPart: BodyPart) throws -> NSData { - let inputStream = bodyPart.bodyStream - inputStream.scheduleInRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - inputStream.open() - - var error: NSError? - let encoded = NSMutableData() - - while inputStream.hasBytesAvailable { - var buffer = [UInt8](count: streamBufferSize, repeatedValue: 0) - let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize) - - if inputStream.streamError != nil { - error = inputStream.streamError - break - } - - if bytesRead > 0 { - encoded.appendBytes(buffer, length: bytesRead) - } else if bytesRead < 0 { - let failureReason = "Failed to read from input stream: \(inputStream)" - error = Error.errorWithCode(.InputStreamReadFailed, failureReason: failureReason) - break - } else { - break - } - } - - inputStream.close() - inputStream.removeFromRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - - if let error = error { - throw error - } - - return encoded - } - - // MARK: - Private - Writing Body Part to Output Stream - - private func writeBodyPart(bodyPart: BodyPart, toOutputStream outputStream: NSOutputStream) throws { - try writeInitialBoundaryDataForBodyPart(bodyPart, toOutputStream: outputStream) - try writeHeaderDataForBodyPart(bodyPart, toOutputStream: outputStream) - try writeBodyStreamForBodyPart(bodyPart, toOutputStream: outputStream) - try writeFinalBoundaryDataForBodyPart(bodyPart, toOutputStream: outputStream) - } - - private func writeInitialBoundaryDataForBodyPart( - bodyPart: BodyPart, - toOutputStream outputStream: NSOutputStream) - throws - { - let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData() - return try writeData(initialData, toOutputStream: outputStream) - } - - private func writeHeaderDataForBodyPart(bodyPart: BodyPart, toOutputStream outputStream: NSOutputStream) throws { - let headerData = encodeHeaderDataForBodyPart(bodyPart) - return try writeData(headerData, toOutputStream: outputStream) - } - - private func writeBodyStreamForBodyPart(bodyPart: BodyPart, toOutputStream outputStream: NSOutputStream) throws { - let inputStream = bodyPart.bodyStream - inputStream.scheduleInRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - inputStream.open() - - while inputStream.hasBytesAvailable { - var buffer = [UInt8](count: streamBufferSize, repeatedValue: 0) - let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize) - - if let streamError = inputStream.streamError { - throw streamError - } - - if bytesRead > 0 { - if buffer.count != bytesRead { - buffer = Array(buffer[0.. 0 { - if outputStream.hasSpaceAvailable { - let bytesWritten = outputStream.write(buffer, maxLength: bytesToWrite) - - if let streamError = outputStream.streamError { - throw streamError - } - - if bytesWritten < 0 { - let failureReason = "Failed to write to output stream: \(outputStream)" - throw Error.errorWithCode(.OutputStreamWriteFailed, failureReason: failureReason) - } - - bytesToWrite -= bytesWritten - - if bytesToWrite > 0 { - buffer = Array(buffer[bytesWritten.. String { - if let - id = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, pathExtension, nil)?.takeRetainedValue(), - contentType = UTTypeCopyPreferredTagWithClass(id, kUTTagClassMIMEType)?.takeRetainedValue() - { - return contentType as String - } - - return "application/octet-stream" - } - - // MARK: - Private - Content Headers - - private func contentHeaders(name name: String) -> [String: String] { - return ["Content-Disposition": "form-data; name=\"\(name)\""] - } - - private func contentHeaders(name name: String, mimeType: String) -> [String: String] { - return [ - "Content-Disposition": "form-data; name=\"\(name)\"", - "Content-Type": "\(mimeType)" - ] - } - - private func contentHeaders(name name: String, fileName: String, mimeType: String) -> [String: String] { - return [ - "Content-Disposition": "form-data; name=\"\(name)\"; filename=\"\(fileName)\"", - "Content-Type": "\(mimeType)" - ] - } - - // MARK: - Private - Boundary Encoding - - private func initialBoundaryData() -> NSData { - return BoundaryGenerator.boundaryData(boundaryType: .Initial, boundary: boundary) - } - - private func encapsulatedBoundaryData() -> NSData { - return BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundary: boundary) - } - - private func finalBoundaryData() -> NSData { - return BoundaryGenerator.boundaryData(boundaryType: .Final, boundary: boundary) - } - - // MARK: - Private - Errors - - private func setBodyPartError(error: NSError) { - if bodyPartError == nil { - bodyPartError = error - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift b/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift deleted file mode 100644 index 63f97b6..0000000 --- a/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift +++ /dev/null @@ -1,239 +0,0 @@ -// NetworkReachabilityManager.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -#if !os(watchOS) - -import Foundation -import SystemConfiguration - -/** - The `NetworkReachabilityManager` class listens for reachability changes of hosts and addresses for both WWAN and - WiFi network interfaces. - - Reachability can be used to determine background information about why a network operation failed, or to retry - network requests when a connection is established. It should not be used to prevent a user from initiating a network - request, as it's possible that an initial request may be required to establish reachability. -*/ -public class NetworkReachabilityManager { - /** - Defines the various states of network reachability. - - - Unknown: It is unknown whether the network is reachable. - - NotReachable: The network is not reachable. - - ReachableOnWWAN: The network is reachable over the WWAN connection. - - ReachableOnWiFi: The network is reachable over the WiFi connection. - */ - public enum NetworkReachabilityStatus { - case Unknown - case NotReachable - case Reachable(ConnectionType) - } - - /** - Defines the various connection types detected by reachability flags. - - - EthernetOrWiFi: The connection type is either over Ethernet or WiFi. - - WWAN: The connection type is a WWAN connection. - */ - public enum ConnectionType { - case EthernetOrWiFi - case WWAN - } - - /// A closure executed when the network reachability status changes. The closure takes a single argument: the - /// network reachability status. - public typealias Listener = NetworkReachabilityStatus -> Void - - // MARK: - Properties - - /// Whether the network is currently reachable. - public var isReachable: Bool { return isReachableOnWWAN || isReachableOnEthernetOrWiFi } - - /// Whether the network is currently reachable over the WWAN interface. - public var isReachableOnWWAN: Bool { return networkReachabilityStatus == .Reachable(.WWAN) } - - /// Whether the network is currently reachable over Ethernet or WiFi interface. - public var isReachableOnEthernetOrWiFi: Bool { return networkReachabilityStatus == .Reachable(.EthernetOrWiFi) } - - /// The current network reachability status. - public var networkReachabilityStatus: NetworkReachabilityStatus { - guard let flags = self.flags else { return .Unknown } - return networkReachabilityStatusForFlags(flags) - } - - /// The dispatch queue to execute the `listener` closure on. - public var listenerQueue: dispatch_queue_t = dispatch_get_main_queue() - - /// A closure executed when the network reachability status changes. - public var listener: Listener? - - private var flags: SCNetworkReachabilityFlags? { - var flags = SCNetworkReachabilityFlags() - - if SCNetworkReachabilityGetFlags(reachability, &flags) { - return flags - } - - return nil - } - - private let reachability: SCNetworkReachability - private var previousFlags: SCNetworkReachabilityFlags - - // MARK: - Initialization - - /** - Creates a `NetworkReachabilityManager` instance with the specified host. - - - parameter host: The host used to evaluate network reachability. - - - returns: The new `NetworkReachabilityManager` instance. - */ - public convenience init?(host: String) { - guard let reachability = SCNetworkReachabilityCreateWithName(nil, host) else { return nil } - self.init(reachability: reachability) - } - - /** - Creates a `NetworkReachabilityManager` instance with the default socket address (`sockaddr_in6`). - - - returns: The new `NetworkReachabilityManager` instance. - */ - public convenience init?() { - var address = sockaddr_in6() - address.sin6_len = UInt8(sizeofValue(address)) - address.sin6_family = sa_family_t(AF_INET6) - - guard let reachability = withUnsafePointer(&address, { - SCNetworkReachabilityCreateWithAddress(nil, UnsafePointer($0)) - }) else { return nil } - - self.init(reachability: reachability) - } - - private init(reachability: SCNetworkReachability) { - self.reachability = reachability - self.previousFlags = SCNetworkReachabilityFlags() - } - - deinit { - stopListening() - } - - // MARK: - Listening - - /** - Starts listening for changes in network reachability status. - - - returns: `true` if listening was started successfully, `false` otherwise. - */ - public func startListening() -> Bool { - var context = SCNetworkReachabilityContext(version: 0, info: nil, retain: nil, release: nil, copyDescription: nil) - context.info = UnsafeMutablePointer(Unmanaged.passUnretained(self).toOpaque()) - - let callbackEnabled = SCNetworkReachabilitySetCallback( - reachability, - { (_, flags, info) in - let reachability = Unmanaged.fromOpaque(COpaquePointer(info)).takeUnretainedValue() - reachability.notifyListener(flags) - }, - &context - ) - - let queueEnabled = SCNetworkReachabilitySetDispatchQueue(reachability, listenerQueue) - - dispatch_async(listenerQueue) { - self.previousFlags = SCNetworkReachabilityFlags() - self.notifyListener(self.flags ?? SCNetworkReachabilityFlags()) - } - - return callbackEnabled && queueEnabled - } - - /** - Stops listening for changes in network reachability status. - */ - public func stopListening() { - SCNetworkReachabilitySetCallback(reachability, nil, nil) - SCNetworkReachabilitySetDispatchQueue(reachability, nil) - } - - // MARK: - Internal - Listener Notification - - func notifyListener(flags: SCNetworkReachabilityFlags) { - guard previousFlags != flags else { return } - previousFlags = flags - - listener?(networkReachabilityStatusForFlags(flags)) - } - - // MARK: - Internal - Network Reachability Status - - func networkReachabilityStatusForFlags(flags: SCNetworkReachabilityFlags) -> NetworkReachabilityStatus { - guard flags.contains(.Reachable) else { return .NotReachable } - - var networkStatus: NetworkReachabilityStatus = .NotReachable - - if !flags.contains(.ConnectionRequired) { networkStatus = .Reachable(.EthernetOrWiFi) } - - if flags.contains(.ConnectionOnDemand) || flags.contains(.ConnectionOnTraffic) { - if !flags.contains(.InterventionRequired) { networkStatus = .Reachable(.EthernetOrWiFi) } - } - - #if os(iOS) - if flags.contains(.IsWWAN) { networkStatus = .Reachable(.WWAN) } - #endif - - return networkStatus - } -} - -// MARK: - - -extension NetworkReachabilityManager.NetworkReachabilityStatus: Equatable {} - -/** - Returns whether the two network reachability status values are equal. - - - parameter lhs: The left-hand side value to compare. - - parameter rhs: The right-hand side value to compare. - - - returns: `true` if the two values are equal, `false` otherwise. -*/ -public func ==( - lhs: NetworkReachabilityManager.NetworkReachabilityStatus, - rhs: NetworkReachabilityManager.NetworkReachabilityStatus) - -> Bool -{ - switch (lhs, rhs) { - case (.Unknown, .Unknown): - return true - case (.NotReachable, .NotReachable): - return true - case let (.Reachable(lhsConnectionType), .Reachable(rhsConnectionType)): - return lhsConnectionType == rhsConnectionType - default: - return false - } -} - -#endif diff --git a/Carthage/Checkouts/Alamofire/Source/Notifications.swift b/Carthage/Checkouts/Alamofire/Source/Notifications.swift deleted file mode 100644 index 1c23540..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Notifications.swift +++ /dev/null @@ -1,45 +0,0 @@ -// Notifications.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Contains all the `NSNotification` names posted by Alamofire with descriptions of each notification's payload. -public struct Notifications { - /// Used as a namespace for all `NSURLSessionTask` related notifications. - public struct Task { - /// Notification posted when an `NSURLSessionTask` is resumed. The notification `object` contains the resumed - /// `NSURLSessionTask`. - public static let DidResume = "com.alamofire.notifications.task.didResume" - - /// Notification posted when an `NSURLSessionTask` is suspended. The notification `object` contains the - /// suspended `NSURLSessionTask`. - public static let DidSuspend = "com.alamofire.notifications.task.didSuspend" - - /// Notification posted when an `NSURLSessionTask` is cancelled. The notification `object` contains the - /// cancelled `NSURLSessionTask`. - public static let DidCancel = "com.alamofire.notifications.task.didCancel" - - /// Notification posted when an `NSURLSessionTask` is completed. The notification `object` contains the - /// completed `NSURLSessionTask`. - public static let DidComplete = "com.alamofire.notifications.task.didComplete" - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift b/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift deleted file mode 100644 index adf61c5..0000000 --- a/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift +++ /dev/null @@ -1,252 +0,0 @@ -// ParameterEncoding.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - HTTP method definitions. - - See https://tools.ietf.org/html/rfc7231#section-4.3 -*/ -public enum Method: String { - case OPTIONS, GET, HEAD, POST, PUT, PATCH, DELETE, TRACE, CONNECT -} - -// MARK: ParameterEncoding - -/** - Used to specify the way in which a set of parameters are applied to a URL request. - - - `URL`: Creates a query string to be set as or appended to any existing URL query for `GET`, `HEAD`, - and `DELETE` requests, or set as the body for requests with any other HTTP method. The - `Content-Type` HTTP header field of an encoded request with HTTP body is set to - `application/x-www-form-urlencoded; charset=utf-8`. Since there is no published specification - for how to encode collection types, the convention of appending `[]` to the key for array - values (`foo[]=1&foo[]=2`), and appending the key surrounded by square brackets for nested - dictionary values (`foo[bar]=baz`). - - - `URLEncodedInURL`: Creates query string to be set as or appended to any existing URL query. Uses the same - implementation as the `.URL` case, but always applies the encoded result to the URL. - - - `JSON`: Uses `NSJSONSerialization` to create a JSON representation of the parameters object, which is - set as the body of the request. The `Content-Type` HTTP header field of an encoded request is - set to `application/json`. - - - `PropertyList`: Uses `NSPropertyListSerialization` to create a plist representation of the parameters object, - according to the associated format and write options values, which is set as the body of the - request. The `Content-Type` HTTP header field of an encoded request is set to - `application/x-plist`. - - - `Custom`: Uses the associated closure value to construct a new request given an existing request and - parameters. -*/ -public enum ParameterEncoding { - case URL - case URLEncodedInURL - case JSON - case PropertyList(NSPropertyListFormat, NSPropertyListWriteOptions) - case Custom((URLRequestConvertible, [String: AnyObject]?) -> (NSMutableURLRequest, NSError?)) - - /** - Creates a URL request by encoding parameters and applying them onto an existing request. - - - parameter URLRequest: The request to have parameters applied - - parameter parameters: The parameters to apply - - - returns: A tuple containing the constructed request and the error that occurred during parameter encoding, - if any. - */ - public func encode( - URLRequest: URLRequestConvertible, - parameters: [String: AnyObject]?) - -> (NSMutableURLRequest, NSError?) - { - var mutableURLRequest = URLRequest.URLRequest - - guard let parameters = parameters else { return (mutableURLRequest, nil) } - - var encodingError: NSError? = nil - - switch self { - case .URL, .URLEncodedInURL: - func query(parameters: [String: AnyObject]) -> String { - var components: [(String, String)] = [] - - for key in parameters.keys.sort(<) { - let value = parameters[key]! - components += queryComponents(key, value) - } - - return (components.map { "\($0)=\($1)" } as [String]).joinWithSeparator("&") - } - - func encodesParametersInURL(method: Method) -> Bool { - switch self { - case .URLEncodedInURL: - return true - default: - break - } - - switch method { - case .GET, .HEAD, .DELETE: - return true - default: - return false - } - } - - if let method = Method(rawValue: mutableURLRequest.HTTPMethod) where encodesParametersInURL(method) { - if let - URLComponents = NSURLComponents(URL: mutableURLRequest.URL!, resolvingAgainstBaseURL: false) - where !parameters.isEmpty - { - let percentEncodedQuery = (URLComponents.percentEncodedQuery.map { $0 + "&" } ?? "") + query(parameters) - URLComponents.percentEncodedQuery = percentEncodedQuery - mutableURLRequest.URL = URLComponents.URL - } - } else { - if mutableURLRequest.valueForHTTPHeaderField("Content-Type") == nil { - mutableURLRequest.setValue( - "application/x-www-form-urlencoded; charset=utf-8", - forHTTPHeaderField: "Content-Type" - ) - } - - mutableURLRequest.HTTPBody = query(parameters).dataUsingEncoding( - NSUTF8StringEncoding, - allowLossyConversion: false - ) - } - case .JSON: - do { - let options = NSJSONWritingOptions() - let data = try NSJSONSerialization.dataWithJSONObject(parameters, options: options) - - mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") - mutableURLRequest.HTTPBody = data - } catch { - encodingError = error as NSError - } - case .PropertyList(let format, let options): - do { - let data = try NSPropertyListSerialization.dataWithPropertyList( - parameters, - format: format, - options: options - ) - mutableURLRequest.setValue("application/x-plist", forHTTPHeaderField: "Content-Type") - mutableURLRequest.HTTPBody = data - } catch { - encodingError = error as NSError - } - case .Custom(let closure): - (mutableURLRequest, encodingError) = closure(mutableURLRequest, parameters) - } - - return (mutableURLRequest, encodingError) - } - - /** - Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion. - - - parameter key: The key of the query component. - - parameter value: The value of the query component. - - - returns: The percent-escaped, URL encoded query string components. - */ - public func queryComponents(key: String, _ value: AnyObject) -> [(String, String)] { - var components: [(String, String)] = [] - - if let dictionary = value as? [String: AnyObject] { - for (nestedKey, value) in dictionary { - components += queryComponents("\(key)[\(nestedKey)]", value) - } - } else if let array = value as? [AnyObject] { - for value in array { - components += queryComponents("\(key)[]", value) - } - } else { - components.append((escape(key), escape("\(value)"))) - } - - return components - } - - /** - Returns a percent-escaped string following RFC 3986 for a query string key or value. - - RFC 3986 states that the following characters are "reserved" characters. - - - General Delimiters: ":", "#", "[", "]", "@", "?", "/" - - Sub-Delimiters: "!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=" - - In RFC 3986 - Section 3.4, it states that the "?" and "/" characters should not be escaped to allow - query strings to include a URL. Therefore, all "reserved" characters with the exception of "?" and "/" - should be percent-escaped in the query string. - - - parameter string: The string to be percent-escaped. - - - returns: The percent-escaped string. - */ - public func escape(string: String) -> String { - let generalDelimitersToEncode = ":#[]@" // does not include "?" or "/" due to RFC 3986 - Section 3.4 - let subDelimitersToEncode = "!$&'()*+,;=" - - let allowedCharacterSet = NSCharacterSet.URLQueryAllowedCharacterSet().mutableCopy() as! NSMutableCharacterSet - allowedCharacterSet.removeCharactersInString(generalDelimitersToEncode + subDelimitersToEncode) - - var escaped = "" - - //========================================================================================================== - // - // Batching is required for escaping due to an internal bug in iOS 8.1 and 8.2. Encoding more than a few - // hundred Chinense characters causes various malloc error crashes. To avoid this issue until iOS 8 is no - // longer supported, batching MUST be used for encoding. This introduces roughly a 20% overhead. For more - // info, please refer to: - // - // - https://github.com/Alamofire/Alamofire/issues/206 - // - //========================================================================================================== - - if #available(iOS 8.3, OSX 10.10, *) { - escaped = string.stringByAddingPercentEncodingWithAllowedCharacters(allowedCharacterSet) ?? string - } else { - let batchSize = 50 - var index = string.startIndex - - while index != string.endIndex { - let startIndex = index - let endIndex = index.advancedBy(batchSize, limit: string.endIndex) - let range = Range(start: startIndex, end: endIndex) - - let substring = string.substringWithRange(range) - - escaped += substring.stringByAddingPercentEncodingWithAllowedCharacters(allowedCharacterSet) ?? substring - - index = endIndex - } - } - - return escaped - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Request.swift b/Carthage/Checkouts/Alamofire/Source/Request.swift deleted file mode 100644 index fa196a2..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Request.swift +++ /dev/null @@ -1,552 +0,0 @@ -// Request.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - Responsible for sending a request and receiving the response and associated data from the server, as well as - managing its underlying `NSURLSessionTask`. -*/ -public class Request { - - // MARK: - Properties - - /// The delegate for the underlying task. - public let delegate: TaskDelegate - - /// The underlying task. - public var task: NSURLSessionTask { return delegate.task } - - /// The session belonging to the underlying task. - public let session: NSURLSession - - /// The request sent or to be sent to the server. - public var request: NSURLRequest? { return task.originalRequest } - - /// The response received from the server, if any. - public var response: NSHTTPURLResponse? { return task.response as? NSHTTPURLResponse } - - /// The progress of the request lifecycle. - public var progress: NSProgress { return delegate.progress } - - var startTime: CFAbsoluteTime? - var endTime: CFAbsoluteTime? - - // MARK: - Lifecycle - - init(session: NSURLSession, task: NSURLSessionTask) { - self.session = session - - switch task { - case is NSURLSessionUploadTask: - delegate = UploadTaskDelegate(task: task) - case is NSURLSessionDataTask: - delegate = DataTaskDelegate(task: task) - case is NSURLSessionDownloadTask: - delegate = DownloadTaskDelegate(task: task) - default: - delegate = TaskDelegate(task: task) - } - - delegate.queue.addOperationWithBlock { self.endTime = CFAbsoluteTimeGetCurrent() } - } - - // MARK: - Authentication - - /** - Associates an HTTP Basic credential with the request. - - - parameter user: The user. - - parameter password: The password. - - parameter persistence: The URL credential persistence. `.ForSession` by default. - - - returns: The request. - */ - public func authenticate( - user user: String, - password: String, - persistence: NSURLCredentialPersistence = .ForSession) - -> Self - { - let credential = NSURLCredential(user: user, password: password, persistence: persistence) - - return authenticate(usingCredential: credential) - } - - /** - Associates a specified credential with the request. - - - parameter credential: The credential. - - - returns: The request. - */ - public func authenticate(usingCredential credential: NSURLCredential) -> Self { - delegate.credential = credential - - return self - } - - // MARK: - Progress - - /** - Sets a closure to be called periodically during the lifecycle of the request as data is written to or read - from the server. - - - For uploads, the progress closure returns the bytes written, total bytes written, and total bytes expected - to write. - - For downloads and data tasks, the progress closure returns the bytes read, total bytes read, and total bytes - expected to read. - - - parameter closure: The code to be executed periodically during the lifecycle of the request. - - - returns: The request. - */ - public func progress(closure: ((Int64, Int64, Int64) -> Void)? = nil) -> Self { - if let uploadDelegate = delegate as? UploadTaskDelegate { - uploadDelegate.uploadProgress = closure - } else if let dataDelegate = delegate as? DataTaskDelegate { - dataDelegate.dataProgress = closure - } else if let downloadDelegate = delegate as? DownloadTaskDelegate { - downloadDelegate.downloadProgress = closure - } - - return self - } - - /** - Sets a closure to be called periodically during the lifecycle of the request as data is read from the server. - - This closure returns the bytes most recently received from the server, not including data from previous calls. - If this closure is set, data will only be available within this closure, and will not be saved elsewhere. It is - also important to note that the `response` closure will be called with nil `responseData`. - - - parameter closure: The code to be executed periodically during the lifecycle of the request. - - - returns: The request. - */ - public func stream(closure: (NSData -> Void)? = nil) -> Self { - if let dataDelegate = delegate as? DataTaskDelegate { - dataDelegate.dataStream = closure - } - - return self - } - - // MARK: - State - - /** - Resumes the request. - */ - public func resume() { - if startTime == nil { startTime = CFAbsoluteTimeGetCurrent() } - - task.resume() - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidResume, object: task) - } - - /** - Suspends the request. - */ - public func suspend() { - task.suspend() - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidSuspend, object: task) - } - - /** - Cancels the request. - */ - public func cancel() { - if let - downloadDelegate = delegate as? DownloadTaskDelegate, - downloadTask = downloadDelegate.downloadTask - { - downloadTask.cancelByProducingResumeData { data in - downloadDelegate.resumeData = data - } - } else { - task.cancel() - } - - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidCancel, object: task) - } - - // MARK: - TaskDelegate - - /** - The task delegate is responsible for handling all delegate callbacks for the underlying task as well as - executing all operations attached to the serial operation queue upon task completion. - */ - public class TaskDelegate: NSObject { - - /// The serial operation queue used to execute all operations after the task completes. - public let queue: NSOperationQueue - - let task: NSURLSessionTask - let progress: NSProgress - - var data: NSData? { return nil } - var error: NSError? - - var initialResponseTime: CFAbsoluteTime? - var credential: NSURLCredential? - - init(task: NSURLSessionTask) { - self.task = task - self.progress = NSProgress(totalUnitCount: 0) - self.queue = { - let operationQueue = NSOperationQueue() - operationQueue.maxConcurrentOperationCount = 1 - operationQueue.suspended = true - - if #available(OSX 10.10, *) { - operationQueue.qualityOfService = NSQualityOfService.Utility - } - - return operationQueue - }() - } - - deinit { - queue.cancelAllOperations() - queue.suspended = false - } - - // MARK: - NSURLSessionTaskDelegate - - // MARK: Override Closures - - var taskWillPerformHTTPRedirection: ((NSURLSession, NSURLSessionTask, NSHTTPURLResponse, NSURLRequest) -> NSURLRequest?)? - var taskDidReceiveChallenge: ((NSURLSession, NSURLSessionTask, NSURLAuthenticationChallenge) -> (NSURLSessionAuthChallengeDisposition, NSURLCredential?))? - var taskNeedNewBodyStream: ((NSURLSession, NSURLSessionTask) -> NSInputStream?)? - var taskDidCompleteWithError: ((NSURLSession, NSURLSessionTask, NSError?) -> Void)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - willPerformHTTPRedirection response: NSHTTPURLResponse, - newRequest request: NSURLRequest, - completionHandler: ((NSURLRequest?) -> Void)) - { - var redirectRequest: NSURLRequest? = request - - if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection { - redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request) - } - - completionHandler(redirectRequest) - } - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didReceiveChallenge challenge: NSURLAuthenticationChallenge, - completionHandler: ((NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)) - { - var disposition: NSURLSessionAuthChallengeDisposition = .PerformDefaultHandling - var credential: NSURLCredential? - - if let taskDidReceiveChallenge = taskDidReceiveChallenge { - (disposition, credential) = taskDidReceiveChallenge(session, task, challenge) - } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { - let host = challenge.protectionSpace.host - - if let - serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicyForHost(host), - serverTrust = challenge.protectionSpace.serverTrust - { - if serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) { - disposition = .UseCredential - credential = NSURLCredential(forTrust: serverTrust) - } else { - disposition = .CancelAuthenticationChallenge - } - } - } else { - if challenge.previousFailureCount > 0 { - disposition = .CancelAuthenticationChallenge - } else { - credential = self.credential ?? session.configuration.URLCredentialStorage?.defaultCredentialForProtectionSpace(challenge.protectionSpace) - - if credential != nil { - disposition = .UseCredential - } - } - } - - completionHandler(disposition, credential) - } - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - needNewBodyStream completionHandler: ((NSInputStream?) -> Void)) - { - var bodyStream: NSInputStream? - - if let taskNeedNewBodyStream = taskNeedNewBodyStream { - bodyStream = taskNeedNewBodyStream(session, task) - } - - completionHandler(bodyStream) - } - - func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { - if let taskDidCompleteWithError = taskDidCompleteWithError { - taskDidCompleteWithError(session, task, error) - } else { - if let error = error { - self.error = error - - if let - downloadDelegate = self as? DownloadTaskDelegate, - userInfo = error.userInfo as? [String: AnyObject], - resumeData = userInfo[NSURLSessionDownloadTaskResumeData] as? NSData - { - downloadDelegate.resumeData = resumeData - } - } - - queue.suspended = false - } - } - } - - // MARK: - DataTaskDelegate - - class DataTaskDelegate: TaskDelegate, NSURLSessionDataDelegate { - var dataTask: NSURLSessionDataTask? { return task as? NSURLSessionDataTask } - - private var totalBytesReceived: Int64 = 0 - private var mutableData: NSMutableData - override var data: NSData? { - if dataStream != nil { - return nil - } else { - return mutableData - } - } - - private var expectedContentLength: Int64? - private var dataProgress: ((bytesReceived: Int64, totalBytesReceived: Int64, totalBytesExpectedToReceive: Int64) -> Void)? - private var dataStream: ((data: NSData) -> Void)? - - override init(task: NSURLSessionTask) { - mutableData = NSMutableData() - super.init(task: task) - } - - // MARK: - NSURLSessionDataDelegate - - // MARK: Override Closures - - var dataTaskDidReceiveResponse: ((NSURLSession, NSURLSessionDataTask, NSURLResponse) -> NSURLSessionResponseDisposition)? - var dataTaskDidBecomeDownloadTask: ((NSURLSession, NSURLSessionDataTask, NSURLSessionDownloadTask) -> Void)? - var dataTaskDidReceiveData: ((NSURLSession, NSURLSessionDataTask, NSData) -> Void)? - var dataTaskWillCacheResponse: ((NSURLSession, NSURLSessionDataTask, NSCachedURLResponse) -> NSCachedURLResponse?)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didReceiveResponse response: NSURLResponse, - completionHandler: (NSURLSessionResponseDisposition -> Void)) - { - var disposition: NSURLSessionResponseDisposition = .Allow - - expectedContentLength = response.expectedContentLength - - if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse { - disposition = dataTaskDidReceiveResponse(session, dataTask, response) - } - - completionHandler(disposition) - } - - func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didBecomeDownloadTask downloadTask: NSURLSessionDownloadTask) - { - dataTaskDidBecomeDownloadTask?(session, dataTask, downloadTask) - } - - func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { - if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } - - if let dataTaskDidReceiveData = dataTaskDidReceiveData { - dataTaskDidReceiveData(session, dataTask, data) - } else { - if let dataStream = dataStream { - dataStream(data: data) - } else { - mutableData.appendData(data) - } - - totalBytesReceived += data.length - let totalBytesExpected = dataTask.response?.expectedContentLength ?? NSURLSessionTransferSizeUnknown - - progress.totalUnitCount = totalBytesExpected - progress.completedUnitCount = totalBytesReceived - - dataProgress?( - bytesReceived: Int64(data.length), - totalBytesReceived: totalBytesReceived, - totalBytesExpectedToReceive: totalBytesExpected - ) - } - } - - func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - willCacheResponse proposedResponse: NSCachedURLResponse, - completionHandler: ((NSCachedURLResponse?) -> Void)) - { - var cachedResponse: NSCachedURLResponse? = proposedResponse - - if let dataTaskWillCacheResponse = dataTaskWillCacheResponse { - cachedResponse = dataTaskWillCacheResponse(session, dataTask, proposedResponse) - } - - completionHandler(cachedResponse) - } - } -} - -// MARK: - CustomStringConvertible - -extension Request: CustomStringConvertible { - - /** - The textual representation used when written to an output stream, which includes the HTTP method and URL, as - well as the response status code if a response has been received. - */ - public var description: String { - var components: [String] = [] - - if let HTTPMethod = request?.HTTPMethod { - components.append(HTTPMethod) - } - - if let URLString = request?.URL?.absoluteString { - components.append(URLString) - } - - if let response = response { - components.append("(\(response.statusCode))") - } - - return components.joinWithSeparator(" ") - } -} - -// MARK: - CustomDebugStringConvertible - -extension Request: CustomDebugStringConvertible { - func cURLRepresentation() -> String { - var components = ["$ curl -i"] - - guard let - request = self.request, - URL = request.URL, - host = URL.host - else { - return "$ curl command could not be created" - } - - if let HTTPMethod = request.HTTPMethod where HTTPMethod != "GET" { - components.append("-X \(HTTPMethod)") - } - - if let credentialStorage = self.session.configuration.URLCredentialStorage { - let protectionSpace = NSURLProtectionSpace( - host: host, - port: URL.port?.integerValue ?? 0, - `protocol`: URL.scheme, - realm: host, - authenticationMethod: NSURLAuthenticationMethodHTTPBasic - ) - - if let credentials = credentialStorage.credentialsForProtectionSpace(protectionSpace)?.values { - for credential in credentials { - components.append("-u \(credential.user!):\(credential.password!)") - } - } else { - if let credential = delegate.credential { - components.append("-u \(credential.user!):\(credential.password!)") - } - } - } - - if session.configuration.HTTPShouldSetCookies { - if let - cookieStorage = session.configuration.HTTPCookieStorage, - cookies = cookieStorage.cookiesForURL(URL) where !cookies.isEmpty - { - let string = cookies.reduce("") { $0 + "\($1.name)=\($1.value ?? String());" } - components.append("-b \"\(string.substringToIndex(string.endIndex.predecessor()))\"") - } - } - - if let headerFields = request.allHTTPHeaderFields { - for (field, value) in headerFields { - switch field { - case "Cookie": - continue - default: - components.append("-H \"\(field): \(value)\"") - } - } - } - - if let additionalHeaders = session.configuration.HTTPAdditionalHeaders { - for (field, value) in additionalHeaders { - switch field { - case "Cookie": - continue - default: - components.append("-H \"\(field): \(value)\"") - } - } - } - - if let - HTTPBodyData = request.HTTPBody, - HTTPBody = String(data: HTTPBodyData, encoding: NSUTF8StringEncoding) - { - let escapedBody = HTTPBody.stringByReplacingOccurrencesOfString("\"", withString: "\\\"") - components.append("-d \"\(escapedBody)\"") - } - - components.append("\"\(URL.absoluteString)\"") - - return components.joinWithSeparator(" \\\n\t") - } - - /// The textual representation used when written to an output stream, in the form of a cURL command. - public var debugDescription: String { - return cURLRepresentation() - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Response.swift b/Carthage/Checkouts/Alamofire/Source/Response.swift deleted file mode 100644 index 153eda5..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Response.swift +++ /dev/null @@ -1,95 +0,0 @@ -// Response.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Used to store all response data returned from a completed `Request`. -public struct Response { - /// The URL request sent to the server. - public let request: NSURLRequest? - - /// The server's response to the URL request. - public let response: NSHTTPURLResponse? - - /// The data returned by the server. - public let data: NSData? - - /// The result of response serialization. - public let result: Result - - /// The timeline of the complete lifecycle of the `Request`. - public let timeline: Timeline - - /** - Initializes the `Response` instance with the specified URL request, URL response, server data and response - serialization result. - - - parameter request: The URL request sent to the server. - - parameter response: The server's response to the URL request. - - parameter data: The data returned by the server. - - parameter result: The result of response serialization. - - parameter timeline: The timeline of the complete lifecycle of the `Request`. Defaults to `Timeline()`. - - - returns: the new `Response` instance. - */ - public init( - request: NSURLRequest?, - response: NSHTTPURLResponse?, - data: NSData?, - result: Result, - timeline: Timeline = Timeline()) - { - self.request = request - self.response = response - self.data = data - self.result = result - self.timeline = timeline - } -} - -// MARK: - CustomStringConvertible - -extension Response: CustomStringConvertible { - /// The textual representation used when written to an output stream, which includes whether the result was a - /// success or failure. - public var description: String { - return result.debugDescription - } -} - -// MARK: - CustomDebugStringConvertible - -extension Response: CustomDebugStringConvertible { - /// The debug textual representation used when written to an output stream, which includes the URL request, the URL - /// response, the server data and the response serialization result. - public var debugDescription: String { - var output: [String] = [] - - output.append(request != nil ? "[Request]: \(request!)" : "[Request]: nil") - output.append(response != nil ? "[Response]: \(response!)" : "[Response]: nil") - output.append("[Data]: \(data?.length ?? 0) bytes") - output.append("[Result]: \(result.debugDescription)") - output.append("[Timeline]: \(timeline.debugDescription)") - - return output.joinWithSeparator("\n") - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift b/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift deleted file mode 100644 index e636072..0000000 --- a/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift +++ /dev/null @@ -1,364 +0,0 @@ -// ResponseSerialization.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -// MARK: ResponseSerializer - -/** - The type in which all response serializers must conform to in order to serialize a response. -*/ -public protocol ResponseSerializerType { - /// The type of serialized object to be created by this `ResponseSerializerType`. - typealias SerializedObject - - /// The type of error to be created by this `ResponseSerializer` if serialization fails. - typealias ErrorObject: ErrorType - - /** - A closure used by response handlers that takes a request, response, data and error and returns a result. - */ - var serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result { get } -} - -// MARK: - - -/** - A generic `ResponseSerializerType` used to serialize a request, response, and data into a serialized object. -*/ -public struct ResponseSerializer: ResponseSerializerType { - /// The type of serialized object to be created by this `ResponseSerializer`. - public typealias SerializedObject = Value - - /// The type of error to be created by this `ResponseSerializer` if serialization fails. - public typealias ErrorObject = Error - - /** - A closure used by response handlers that takes a request, response, data and error and returns a result. - */ - public var serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result - - /** - Initializes the `ResponseSerializer` instance with the given serialize response closure. - - - parameter serializeResponse: The closure used to serialize the response. - - - returns: The new generic response serializer instance. - */ - public init(serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result) { - self.serializeResponse = serializeResponse - } -} - -// MARK: - Default - -extension Request { - - /** - Adds a handler to be called once the request has finished. - - - parameter queue: The queue on which the completion handler is dispatched. - - parameter completionHandler: The code to be executed once the request has finished. - - - returns: The request. - */ - public func response( - queue queue: dispatch_queue_t? = nil, - completionHandler: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Void) - -> Self - { - delegate.queue.addOperationWithBlock { - dispatch_async(queue ?? dispatch_get_main_queue()) { - completionHandler(self.request, self.response, self.delegate.data, self.delegate.error) - } - } - - return self - } - - /** - Adds a handler to be called once the request has finished. - - - parameter queue: The queue on which the completion handler is dispatched. - - parameter responseSerializer: The response serializer responsible for serializing the request, response, - and data. - - parameter completionHandler: The code to be executed once the request has finished. - - - returns: The request. - */ - public func response( - queue queue: dispatch_queue_t? = nil, - responseSerializer: T, - completionHandler: Response -> Void) - -> Self - { - delegate.queue.addOperationWithBlock { - let result = responseSerializer.serializeResponse( - self.request, - self.response, - self.delegate.data, - self.delegate.error - ) - - let requestCompletedTime = self.endTime ?? CFAbsoluteTimeGetCurrent() - let initialResponseTime = self.delegate.initialResponseTime ?? requestCompletedTime - - let timeline = Timeline( - requestStartTime: self.startTime ?? CFAbsoluteTimeGetCurrent(), - initialResponseTime: initialResponseTime, - requestCompletedTime: requestCompletedTime, - serializationCompletedTime: CFAbsoluteTimeGetCurrent() - ) - - let response = Response( - request: self.request, - response: self.response, - data: self.delegate.data, - result: result, - timeline: timeline - ) - - dispatch_async(queue ?? dispatch_get_main_queue()) { completionHandler(response) } - } - - return self - } -} - -// MARK: - Data - -extension Request { - - /** - Creates a response serializer that returns the associated data as-is. - - - returns: A data response serializer. - */ - public static func dataResponseSerializer() -> ResponseSerializer { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success(NSData()) } - - guard let validData = data else { - let failureReason = "Data could not be serialized. Input data was nil." - let error = Error.errorWithCode(.DataSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - return .Success(validData) - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter completionHandler: The code to be executed once the request has finished. - - - returns: The request. - */ - public func responseData(completionHandler: Response -> Void) -> Self { - return response(responseSerializer: Request.dataResponseSerializer(), completionHandler: completionHandler) - } -} - -// MARK: - String - -extension Request { - - /** - Creates a response serializer that returns a string initialized from the response data with the specified - string encoding. - - - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the server - response, falling back to the default HTTP default character set, ISO-8859-1. - - - returns: A string response serializer. - */ - public static func stringResponseSerializer( - var encoding encoding: NSStringEncoding? = nil) - -> ResponseSerializer - { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success("") } - - guard let validData = data else { - let failureReason = "String could not be serialized. Input data was nil." - let error = Error.errorWithCode(.StringSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - if let encodingName = response?.textEncodingName where encoding == nil { - encoding = CFStringConvertEncodingToNSStringEncoding( - CFStringConvertIANACharSetNameToEncoding(encodingName) - ) - } - - let actualEncoding = encoding ?? NSISOLatin1StringEncoding - - if let string = String(data: validData, encoding: actualEncoding) { - return .Success(string) - } else { - let failureReason = "String could not be serialized with encoding: \(actualEncoding)" - let error = Error.errorWithCode(.StringSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the - server response, falling back to the default HTTP default character set, - ISO-8859-1. - - parameter completionHandler: A closure to be executed once the request has finished. - - - returns: The request. - */ - public func responseString( - encoding encoding: NSStringEncoding? = nil, - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.stringResponseSerializer(encoding: encoding), - completionHandler: completionHandler - ) - } -} - -// MARK: - JSON - -extension Request { - - /** - Creates a response serializer that returns a JSON object constructed from the response data using - `NSJSONSerialization` with the specified reading options. - - - parameter options: The JSON serialization reading options. `.AllowFragments` by default. - - - returns: A JSON object response serializer. - */ - public static func JSONResponseSerializer( - options options: NSJSONReadingOptions = .AllowFragments) - -> ResponseSerializer - { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success(NSNull()) } - - guard let validData = data where validData.length > 0 else { - let failureReason = "JSON could not be serialized. Input data was nil or zero length." - let error = Error.errorWithCode(.JSONSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - do { - let JSON = try NSJSONSerialization.JSONObjectWithData(validData, options: options) - return .Success(JSON) - } catch { - return .Failure(error as NSError) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter options: The JSON serialization reading options. `.AllowFragments` by default. - - parameter completionHandler: A closure to be executed once the request has finished. - - - returns: The request. - */ - public func responseJSON( - options options: NSJSONReadingOptions = .AllowFragments, - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.JSONResponseSerializer(options: options), - completionHandler: completionHandler - ) - } -} - -// MARK: - Property List - -extension Request { - - /** - Creates a response serializer that returns an object constructed from the response data using - `NSPropertyListSerialization` with the specified reading options. - - - parameter options: The property list reading options. `NSPropertyListReadOptions()` by default. - - - returns: A property list object response serializer. - */ - public static func propertyListResponseSerializer( - options options: NSPropertyListReadOptions = NSPropertyListReadOptions()) - -> ResponseSerializer - { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success(NSNull()) } - - guard let validData = data where validData.length > 0 else { - let failureReason = "Property list could not be serialized. Input data was nil or zero length." - let error = Error.errorWithCode(.PropertyListSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - do { - let plist = try NSPropertyListSerialization.propertyListWithData(validData, options: options, format: nil) - return .Success(plist) - } catch { - return .Failure(error as NSError) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter options: The property list reading options. `0` by default. - - parameter completionHandler: A closure to be executed once the request has finished. The closure takes 3 - arguments: the URL request, the URL response, the server data and the result - produced while creating the property list. - - - returns: The request. - */ - public func responsePropertyList( - options options: NSPropertyListReadOptions = NSPropertyListReadOptions(), - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.propertyListResponseSerializer(options: options), - completionHandler: completionHandler - ) - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Result.swift b/Carthage/Checkouts/Alamofire/Source/Result.swift deleted file mode 100644 index a8557ca..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Result.swift +++ /dev/null @@ -1,101 +0,0 @@ -// Result.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - Used to represent whether a request was successful or encountered an error. - - - Success: The request and all post processing operations were successful resulting in the serialization of the - provided associated value. - - Failure: The request encountered an error resulting in a failure. The associated values are the original data - provided by the server as well as the error that caused the failure. -*/ -public enum Result { - case Success(Value) - case Failure(Error) - - /// Returns `true` if the result is a success, `false` otherwise. - public var isSuccess: Bool { - switch self { - case .Success: - return true - case .Failure: - return false - } - } - - /// Returns `true` if the result is a failure, `false` otherwise. - public var isFailure: Bool { - return !isSuccess - } - - /// Returns the associated value if the result is a success, `nil` otherwise. - public var value: Value? { - switch self { - case .Success(let value): - return value - case .Failure: - return nil - } - } - - /// Returns the associated error value if the result is a failure, `nil` otherwise. - public var error: Error? { - switch self { - case .Success: - return nil - case .Failure(let error): - return error - } - } -} - -// MARK: - CustomStringConvertible - -extension Result: CustomStringConvertible { - /// The textual representation used when written to an output stream, which includes whether the result was a - /// success or failure. - public var description: String { - switch self { - case .Success: - return "SUCCESS" - case .Failure: - return "FAILURE" - } - } -} - -// MARK: - CustomDebugStringConvertible - -extension Result: CustomDebugStringConvertible { - /// The debug textual representation used when written to an output stream, which includes whether the result was a - /// success or failure in addition to the value or error. - public var debugDescription: String { - switch self { - case .Success(let value): - return "SUCCESS: \(value)" - case .Failure(let error): - return "FAILURE: \(error)" - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift b/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift deleted file mode 100644 index 07cd848..0000000 --- a/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift +++ /dev/null @@ -1,302 +0,0 @@ -// ServerTrustPolicy.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Responsible for managing the mapping of `ServerTrustPolicy` objects to a given host. -public class ServerTrustPolicyManager { - /// The dictionary of policies mapped to a particular host. - public let policies: [String: ServerTrustPolicy] - - /** - Initializes the `ServerTrustPolicyManager` instance with the given policies. - - Since different servers and web services can have different leaf certificates, intermediate and even root - certficates, it is important to have the flexibility to specify evaluation policies on a per host basis. This - allows for scenarios such as using default evaluation for host1, certificate pinning for host2, public key - pinning for host3 and disabling evaluation for host4. - - - parameter policies: A dictionary of all policies mapped to a particular host. - - - returns: The new `ServerTrustPolicyManager` instance. - */ - public init(policies: [String: ServerTrustPolicy]) { - self.policies = policies - } - - /** - Returns the `ServerTrustPolicy` for the given host if applicable. - - By default, this method will return the policy that perfectly matches the given host. Subclasses could override - this method and implement more complex mapping implementations such as wildcards. - - - parameter host: The host to use when searching for a matching policy. - - - returns: The server trust policy for the given host if found. - */ - public func serverTrustPolicyForHost(host: String) -> ServerTrustPolicy? { - return policies[host] - } -} - -// MARK: - - -extension NSURLSession { - private struct AssociatedKeys { - static var ManagerKey = "NSURLSession.ServerTrustPolicyManager" - } - - var serverTrustPolicyManager: ServerTrustPolicyManager? { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.ManagerKey) as? ServerTrustPolicyManager - } - set (manager) { - objc_setAssociatedObject(self, &AssociatedKeys.ManagerKey, manager, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } -} - -// MARK: - ServerTrustPolicy - -/** - The `ServerTrustPolicy` evaluates the server trust generally provided by an `NSURLAuthenticationChallenge` when - connecting to a server over a secure HTTPS connection. The policy configuration then evaluates the server trust - with a given set of criteria to determine whether the server trust is valid and the connection should be made. - - Using pinned certificates or public keys for evaluation helps prevent man-in-the-middle (MITM) attacks and other - vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged - to route all communication over an HTTPS connection with pinning enabled. - - - PerformDefaultEvaluation: Uses the default server trust evaluation while allowing you to control whether to - validate the host provided by the challenge. Applications are encouraged to always - validate the host in production environments to guarantee the validity of the server's - certificate chain. - - - PinCertificates: Uses the pinned certificates to validate the server trust. The server trust is - considered valid if one of the pinned certificates match one of the server certificates. - By validating both the certificate chain and host, certificate pinning provides a very - secure form of server trust validation mitigating most, if not all, MITM attacks. - Applications are encouraged to always validate the host and require a valid certificate - chain in production environments. - - - PinPublicKeys: Uses the pinned public keys to validate the server trust. The server trust is considered - valid if one of the pinned public keys match one of the server certificate public keys. - By validating both the certificate chain and host, public key pinning provides a very - secure form of server trust validation mitigating most, if not all, MITM attacks. - Applications are encouraged to always validate the host and require a valid certificate - chain in production environments. - - - DisableEvaluation: Disables all evaluation which in turn will always consider any server trust as valid. - - - CustomEvaluation: Uses the associated closure to evaluate the validity of the server trust. -*/ -public enum ServerTrustPolicy { - case PerformDefaultEvaluation(validateHost: Bool) - case PinCertificates(certificates: [SecCertificate], validateCertificateChain: Bool, validateHost: Bool) - case PinPublicKeys(publicKeys: [SecKey], validateCertificateChain: Bool, validateHost: Bool) - case DisableEvaluation - case CustomEvaluation((serverTrust: SecTrust, host: String) -> Bool) - - // MARK: - Bundle Location - - /** - Returns all certificates within the given bundle with a `.cer` file extension. - - - parameter bundle: The bundle to search for all `.cer` files. - - - returns: All certificates within the given bundle. - */ - public static func certificatesInBundle(bundle: NSBundle = NSBundle.mainBundle()) -> [SecCertificate] { - var certificates: [SecCertificate] = [] - - let paths = Set([".cer", ".CER", ".crt", ".CRT", ".der", ".DER"].map { fileExtension in - bundle.pathsForResourcesOfType(fileExtension, inDirectory: nil) - }.flatten()) - - for path in paths { - if let - certificateData = NSData(contentsOfFile: path), - certificate = SecCertificateCreateWithData(nil, certificateData) - { - certificates.append(certificate) - } - } - - return certificates - } - - /** - Returns all public keys within the given bundle with a `.cer` file extension. - - - parameter bundle: The bundle to search for all `*.cer` files. - - - returns: All public keys within the given bundle. - */ - public static func publicKeysInBundle(bundle: NSBundle = NSBundle.mainBundle()) -> [SecKey] { - var publicKeys: [SecKey] = [] - - for certificate in certificatesInBundle(bundle) { - if let publicKey = publicKeyForCertificate(certificate) { - publicKeys.append(publicKey) - } - } - - return publicKeys - } - - // MARK: - Evaluation - - /** - Evaluates whether the server trust is valid for the given host. - - - parameter serverTrust: The server trust to evaluate. - - parameter host: The host of the challenge protection space. - - - returns: Whether the server trust is valid. - */ - public func evaluateServerTrust(serverTrust: SecTrust, isValidForHost host: String) -> Bool { - var serverTrustIsValid = false - - switch self { - case let .PerformDefaultEvaluation(validateHost): - let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) - SecTrustSetPolicies(serverTrust, [policy]) - - serverTrustIsValid = trustIsValid(serverTrust) - case let .PinCertificates(pinnedCertificates, validateCertificateChain, validateHost): - if validateCertificateChain { - let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) - SecTrustSetPolicies(serverTrust, [policy]) - - SecTrustSetAnchorCertificates(serverTrust, pinnedCertificates) - SecTrustSetAnchorCertificatesOnly(serverTrust, true) - - serverTrustIsValid = trustIsValid(serverTrust) - } else { - let serverCertificatesDataArray = certificateDataForTrust(serverTrust) - let pinnedCertificatesDataArray = certificateDataForCertificates(pinnedCertificates) - - outerLoop: for serverCertificateData in serverCertificatesDataArray { - for pinnedCertificateData in pinnedCertificatesDataArray { - if serverCertificateData.isEqualToData(pinnedCertificateData) { - serverTrustIsValid = true - break outerLoop - } - } - } - } - case let .PinPublicKeys(pinnedPublicKeys, validateCertificateChain, validateHost): - var certificateChainEvaluationPassed = true - - if validateCertificateChain { - let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) - SecTrustSetPolicies(serverTrust, [policy]) - - certificateChainEvaluationPassed = trustIsValid(serverTrust) - } - - if certificateChainEvaluationPassed { - outerLoop: for serverPublicKey in ServerTrustPolicy.publicKeysForTrust(serverTrust) as [AnyObject] { - for pinnedPublicKey in pinnedPublicKeys as [AnyObject] { - if serverPublicKey.isEqual(pinnedPublicKey) { - serverTrustIsValid = true - break outerLoop - } - } - } - } - case .DisableEvaluation: - serverTrustIsValid = true - case let .CustomEvaluation(closure): - serverTrustIsValid = closure(serverTrust: serverTrust, host: host) - } - - return serverTrustIsValid - } - - // MARK: - Private - Trust Validation - - private func trustIsValid(trust: SecTrust) -> Bool { - var isValid = false - - var result = SecTrustResultType(kSecTrustResultInvalid) - let status = SecTrustEvaluate(trust, &result) - - if status == errSecSuccess { - let unspecified = SecTrustResultType(kSecTrustResultUnspecified) - let proceed = SecTrustResultType(kSecTrustResultProceed) - - isValid = result == unspecified || result == proceed - } - - return isValid - } - - // MARK: - Private - Certificate Data - - private func certificateDataForTrust(trust: SecTrust) -> [NSData] { - var certificates: [SecCertificate] = [] - - for index in 0.. [NSData] { - return certificates.map { SecCertificateCopyData($0) as NSData } - } - - // MARK: - Private - Public Key Extraction - - private static func publicKeysForTrust(trust: SecTrust) -> [SecKey] { - var publicKeys: [SecKey] = [] - - for index in 0.. SecKey? { - var publicKey: SecKey? - - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - let trustCreationStatus = SecTrustCreateWithCertificates(certificate, policy, &trust) - - if let trust = trust where trustCreationStatus == errSecSuccess { - publicKey = SecTrustCopyPublicKey(trust) - } - - return publicKey - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Stream.swift b/Carthage/Checkouts/Alamofire/Source/Stream.swift deleted file mode 100644 index 905e522..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Stream.swift +++ /dev/null @@ -1,180 +0,0 @@ -// Stream.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -#if !os(watchOS) - -@available(iOS 9.0, OSX 10.11, tvOS 9.0, *) -extension Manager { - private enum Streamable { - case Stream(String, Int) - case NetService(NSNetService) - } - - private func stream(streamable: Streamable) -> Request { - var streamTask: NSURLSessionStreamTask! - - switch streamable { - case .Stream(let hostName, let port): - dispatch_sync(queue) { - streamTask = self.session.streamTaskWithHostName(hostName, port: port) - } - case .NetService(let netService): - dispatch_sync(queue) { - streamTask = self.session.streamTaskWithNetService(netService) - } - } - - let request = Request(session: session, task: streamTask) - - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - /** - Creates a request for bidirectional streaming with the given hostname and port. - - - parameter hostName: The hostname of the server to connect to. - - parameter port: The port of the server to connect to. - - :returns: The created stream request. - */ - public func stream(hostName hostName: String, port: Int) -> Request { - return stream(.Stream(hostName, port)) - } - - /** - Creates a request for bidirectional streaming with the given `NSNetService`. - - - parameter netService: The net service used to identify the endpoint. - - - returns: The created stream request. - */ - public func stream(netService netService: NSNetService) -> Request { - return stream(.NetService(netService)) - } -} - -// MARK: - - -@available(iOS 9.0, OSX 10.11, tvOS 9.0, *) -extension Manager.SessionDelegate: NSURLSessionStreamDelegate { - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:readClosedForStreamTask:`. - public var streamTaskReadClosed: ((NSURLSession, NSURLSessionStreamTask) -> Void)? { - get { - return _streamTaskReadClosed as? (NSURLSession, NSURLSessionStreamTask) -> Void - } - set { - _streamTaskReadClosed = newValue - } - } - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:writeClosedForStreamTask:`. - public var streamTaskWriteClosed: ((NSURLSession, NSURLSessionStreamTask) -> Void)? { - get { - return _streamTaskWriteClosed as? (NSURLSession, NSURLSessionStreamTask) -> Void - } - set { - _streamTaskWriteClosed = newValue - } - } - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:betterRouteDiscoveredForStreamTask:`. - public var streamTaskBetterRouteDiscovered: ((NSURLSession, NSURLSessionStreamTask) -> Void)? { - get { - return _streamTaskBetterRouteDiscovered as? (NSURLSession, NSURLSessionStreamTask) -> Void - } - set { - _streamTaskBetterRouteDiscovered = newValue - } - } - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:streamTask:didBecomeInputStream:outputStream:`. - public var streamTaskDidBecomeInputStream: ((NSURLSession, NSURLSessionStreamTask, NSInputStream, NSOutputStream) -> Void)? { - get { - return _streamTaskDidBecomeInputStream as? (NSURLSession, NSURLSessionStreamTask, NSInputStream, NSOutputStream) -> Void - } - set { - _streamTaskDidBecomeInputStream = newValue - } - } - - // MARK: Delegate Methods - - /** - Tells the delegate that the read side of the connection has been closed. - - - parameter session: The session. - - parameter streamTask: The stream task. - */ - public func URLSession(session: NSURLSession, readClosedForStreamTask streamTask: NSURLSessionStreamTask) { - streamTaskReadClosed?(session, streamTask) - } - - /** - Tells the delegate that the write side of the connection has been closed. - - - parameter session: The session. - - parameter streamTask: The stream task. - */ - public func URLSession(session: NSURLSession, writeClosedForStreamTask streamTask: NSURLSessionStreamTask) { - streamTaskWriteClosed?(session, streamTask) - } - - /** - Tells the delegate that the system has determined that a better route to the host is available. - - - parameter session: The session. - - parameter streamTask: The stream task. - */ - public func URLSession(session: NSURLSession, betterRouteDiscoveredForStreamTask streamTask: NSURLSessionStreamTask) { - streamTaskBetterRouteDiscovered?(session, streamTask) - } - - /** - Tells the delegate that the stream task has been completed and provides the unopened stream objects. - - - parameter session: The session. - - parameter streamTask: The stream task. - - parameter inputStream: The new input stream. - - parameter outputStream: The new output stream. - */ - public func URLSession( - session: NSURLSession, - streamTask: NSURLSessionStreamTask, - didBecomeInputStream inputStream: NSInputStream, - outputStream: NSOutputStream) - { - streamTaskDidBecomeInputStream?(session, streamTask, inputStream, outputStream) - } -} - -#endif diff --git a/Carthage/Checkouts/Alamofire/Source/Timeline.swift b/Carthage/Checkouts/Alamofire/Source/Timeline.swift deleted file mode 100644 index 0b7ab5d..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Timeline.swift +++ /dev/null @@ -1,123 +0,0 @@ -// Timeline.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Responsible for computing the timing metrics for the complete lifecycle of a `Request`. -public struct Timeline { - /// The time the request was initialized. - public let requestStartTime: CFAbsoluteTime - - /// The time the first bytes were received from or sent to the server. - public let initialResponseTime: CFAbsoluteTime - - /// The time when the request was completed. - public let requestCompletedTime: CFAbsoluteTime - - /// The time when the response serialization was completed. - public let serializationCompletedTime: CFAbsoluteTime - - /// The time interval in seconds from the time the request started to the initial response from the server. - public let latency: NSTimeInterval - - /// The time interval in seconds from the time the request started to the time the request completed. - public let requestDuration: NSTimeInterval - - /// The time interval in seconds from the time the request completed to the time response serialization completed. - public let serializationDuration: NSTimeInterval - - /// The time interval in seconds from the time the request started to the time response serialization completed. - public let totalDuration: NSTimeInterval - - /** - Creates a new `Timeline` instance with the specified request times. - - - parameter requestStartTime: The time the request was initialized. Defaults to `0.0`. - - parameter initialResponseTime: The time the first bytes were received from or sent to the server. - Defaults to `0.0`. - - parameter requestCompletedTime: The time when the request was completed. Defaults to `0.0`. - - parameter serializationCompletedTime: The time when the response serialization was completed. Defaults - to `0.0`. - - - returns: The new `Timeline` instance. - */ - public init( - requestStartTime: CFAbsoluteTime = 0.0, - initialResponseTime: CFAbsoluteTime = 0.0, - requestCompletedTime: CFAbsoluteTime = 0.0, - serializationCompletedTime: CFAbsoluteTime = 0.0) - { - self.requestStartTime = requestStartTime - self.initialResponseTime = initialResponseTime - self.requestCompletedTime = requestCompletedTime - self.serializationCompletedTime = serializationCompletedTime - - self.latency = initialResponseTime - requestStartTime - self.requestDuration = requestCompletedTime - requestStartTime - self.serializationDuration = serializationCompletedTime - requestCompletedTime - self.totalDuration = serializationCompletedTime - requestStartTime - } -} - -// MARK: - CustomStringConvertible - -extension Timeline: CustomStringConvertible { - /// The textual representation used when written to an output stream, which includes the latency, the request - /// duration and the total duration. - public var description: String { - let latency = String(format: "%.3f", self.latency) - let requestDuration = String(format: "%.3f", self.requestDuration) - let serializationDuration = String(format: "%.3f", self.serializationDuration) - let totalDuration = String(format: "%.3f", self.totalDuration) - - let timings = [ - "\"Latency\": \(latency) secs", - "\"Request Duration\": \(requestDuration) secs", - "\"Serialization Duration\": \(serializationDuration) secs", - "\"Total Duration\": \(totalDuration) secs" - ] - - return "Timeline: { \(timings.joinWithSeparator(", ")) }" - } -} - -// MARK: - CustomDebugStringConvertible - -extension Timeline: CustomDebugStringConvertible { - /// The textual representation used when written to an output stream, which includes the request start time, the - /// initial response time, the request completed time, the serialization completed time, the latency, the request - /// duration and the total duration. - public var debugDescription: String { - let timings = [ - "\"Request Start Time\": \(requestStartTime)", - "\"Initial Response Time\": \(initialResponseTime)", - "\"Request Completed Time\": \(requestCompletedTime)", - "\"Serialization Completed Time\": \(serializationCompletedTime)", - "\"Latency\": \(latency) secs", - "\"Request Duration\": \(requestDuration) secs", - "\"Serialization Duration\": \(serializationDuration) secs", - "\"Total Duration\": \(totalDuration) secs" - ] - - return "Timeline: { \(timings.joinWithSeparator(", ")) }" - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Upload.swift b/Carthage/Checkouts/Alamofire/Source/Upload.swift deleted file mode 100644 index 78b3072..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Upload.swift +++ /dev/null @@ -1,374 +0,0 @@ -// Upload.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension Manager { - private enum Uploadable { - case Data(NSURLRequest, NSData) - case File(NSURLRequest, NSURL) - case Stream(NSURLRequest, NSInputStream) - } - - private func upload(uploadable: Uploadable) -> Request { - var uploadTask: NSURLSessionUploadTask! - var HTTPBodyStream: NSInputStream? - - switch uploadable { - case .Data(let request, let data): - dispatch_sync(queue) { - uploadTask = self.session.uploadTaskWithRequest(request, fromData: data) - } - case .File(let request, let fileURL): - dispatch_sync(queue) { - uploadTask = self.session.uploadTaskWithRequest(request, fromFile: fileURL) - } - case .Stream(let request, let stream): - dispatch_sync(queue) { - uploadTask = self.session.uploadTaskWithStreamedRequest(request) - } - - HTTPBodyStream = stream - } - - let request = Request(session: session, task: uploadTask) - - if HTTPBodyStream != nil { - request.delegate.taskNeedNewBodyStream = { _, _ in - return HTTPBodyStream - } - } - - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - // MARK: File - - /** - Creates a request for uploading a file to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - parameter file: The file to upload - - - returns: The created upload request. - */ - public func upload(URLRequest: URLRequestConvertible, file: NSURL) -> Request { - return upload(.File(URLRequest.URLRequest, file)) - } - - /** - Creates a request for uploading a file to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter file: The file to upload - - - returns: The created upload request. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - file: NSURL) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - return upload(mutableURLRequest, file: file) - } - - // MARK: Data - - /** - Creates a request for uploading data to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request. - - parameter data: The data to upload. - - - returns: The created upload request. - */ - public func upload(URLRequest: URLRequestConvertible, data: NSData) -> Request { - return upload(.Data(URLRequest.URLRequest, data)) - } - - /** - Creates a request for uploading data to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter data: The data to upload - - - returns: The created upload request. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - data: NSData) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - - return upload(mutableURLRequest, data: data) - } - - // MARK: Stream - - /** - Creates a request for uploading a stream to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request. - - parameter stream: The stream to upload. - - - returns: The created upload request. - */ - public func upload(URLRequest: URLRequestConvertible, stream: NSInputStream) -> Request { - return upload(.Stream(URLRequest.URLRequest, stream)) - } - - /** - Creates a request for uploading a stream to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter stream: The stream to upload. - - - returns: The created upload request. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - stream: NSInputStream) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - - return upload(mutableURLRequest, stream: stream) - } - - // MARK: MultipartFormData - - /// Default memory threshold used when encoding `MultipartFormData`. - public static let MultipartFormDataEncodingMemoryThreshold: UInt64 = 10 * 1024 * 1024 - - /** - Defines whether the `MultipartFormData` encoding was successful and contains result of the encoding as - associated values. - - - Success: Represents a successful `MultipartFormData` encoding and contains the new `Request` along with - streaming information. - - Failure: Used to represent a failure in the `MultipartFormData` encoding and also contains the encoding - error. - */ - public enum MultipartFormDataEncodingResult { - case Success(request: Request, streamingFromDisk: Bool, streamFileURL: NSURL?) - case Failure(ErrorType) - } - - /** - Encodes the `MultipartFormData` and creates a request to upload the result to the specified URL request. - - It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative - payload is small, encoding the data in-memory and directly uploading to a server is the by far the most - efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to - be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory - footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be - used for larger payloads such as video content. - - The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory - or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, - encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk - during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding - technique was used. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (MultipartFormDataEncodingResult -> Void)?) - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - - return upload( - mutableURLRequest, - multipartFormData: multipartFormData, - encodingMemoryThreshold: encodingMemoryThreshold, - encodingCompletion: encodingCompletion - ) - } - - /** - Encodes the `MultipartFormData` and creates a request to upload the result to the specified URL request. - - It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative - payload is small, encoding the data in-memory and directly uploading to a server is the by far the most - efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to - be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory - footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be - used for larger payloads such as video content. - - The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory - or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, - encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk - during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding - technique was used. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. - */ - public func upload( - URLRequest: URLRequestConvertible, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (MultipartFormDataEncodingResult -> Void)?) - { - dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) { - let formData = MultipartFormData() - multipartFormData(formData) - - let URLRequestWithContentType = URLRequest.URLRequest - URLRequestWithContentType.setValue(formData.contentType, forHTTPHeaderField: "Content-Type") - - let isBackgroundSession = self.session.configuration.identifier != nil - - if formData.contentLength < encodingMemoryThreshold && !isBackgroundSession { - do { - let data = try formData.encode() - let encodingResult = MultipartFormDataEncodingResult.Success( - request: self.upload(URLRequestWithContentType, data: data), - streamingFromDisk: false, - streamFileURL: nil - ) - - dispatch_async(dispatch_get_main_queue()) { - encodingCompletion?(encodingResult) - } - } catch { - dispatch_async(dispatch_get_main_queue()) { - encodingCompletion?(.Failure(error as NSError)) - } - } - } else { - let fileManager = NSFileManager.defaultManager() - let tempDirectoryURL = NSURL(fileURLWithPath: NSTemporaryDirectory()) - let directoryURL = tempDirectoryURL.URLByAppendingPathComponent("com.alamofire.manager/multipart.form.data") - let fileName = NSUUID().UUIDString - let fileURL = directoryURL.URLByAppendingPathComponent(fileName) - - do { - try fileManager.createDirectoryAtURL(directoryURL, withIntermediateDirectories: true, attributes: nil) - try formData.writeEncodedDataToDisk(fileURL) - - dispatch_async(dispatch_get_main_queue()) { - let encodingResult = MultipartFormDataEncodingResult.Success( - request: self.upload(URLRequestWithContentType, file: fileURL), - streamingFromDisk: true, - streamFileURL: fileURL - ) - encodingCompletion?(encodingResult) - } - } catch { - dispatch_async(dispatch_get_main_queue()) { - encodingCompletion?(.Failure(error as NSError)) - } - } - } - } - } -} - -// MARK: - - -extension Request { - - // MARK: - UploadTaskDelegate - - class UploadTaskDelegate: DataTaskDelegate { - var uploadTask: NSURLSessionUploadTask? { return task as? NSURLSessionUploadTask } - var uploadProgress: ((Int64, Int64, Int64) -> Void)! - - // MARK: - NSURLSessionTaskDelegate - - // MARK: Override Closures - - var taskDidSendBodyData: ((NSURLSession, NSURLSessionTask, Int64, Int64, Int64) -> Void)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didSendBodyData bytesSent: Int64, - totalBytesSent: Int64, - totalBytesExpectedToSend: Int64) - { - if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } - - if let taskDidSendBodyData = taskDidSendBodyData { - taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend) - } else { - progress.totalUnitCount = totalBytesExpectedToSend - progress.completedUnitCount = totalBytesSent - - uploadProgress?(bytesSent, totalBytesSent, totalBytesExpectedToSend) - } - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Source/Validation.swift b/Carthage/Checkouts/Alamofire/Source/Validation.swift deleted file mode 100644 index 71d21e1..0000000 --- a/Carthage/Checkouts/Alamofire/Source/Validation.swift +++ /dev/null @@ -1,189 +0,0 @@ -// Validation.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension Request { - - /** - Used to represent whether validation was successful or encountered an error resulting in a failure. - - - Success: The validation was successful. - - Failure: The validation failed encountering the provided error. - */ - public enum ValidationResult { - case Success - case Failure(NSError) - } - - /** - A closure used to validate a request that takes a URL request and URL response, and returns whether the - request was valid. - */ - public typealias Validation = (NSURLRequest?, NSHTTPURLResponse) -> ValidationResult - - /** - Validates the request, using the specified closure. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - parameter validation: A closure to validate the request. - - - returns: The request. - */ - public func validate(validation: Validation) -> Self { - delegate.queue.addOperationWithBlock { - if let - response = self.response where self.delegate.error == nil, - case let .Failure(error) = validation(self.request, response) - { - self.delegate.error = error - } - } - - return self - } - - // MARK: - Status Code - - /** - Validates that the response has a status code in the specified range. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - parameter range: The range of acceptable status codes. - - - returns: The request. - */ - public func validate(statusCode acceptableStatusCode: S) -> Self { - return validate { _, response in - if acceptableStatusCode.contains(response.statusCode) { - return .Success - } else { - let failureReason = "Response status code was unacceptable: \(response.statusCode)" - return .Failure(Error.errorWithCode(.StatusCodeValidationFailed, failureReason: failureReason)) - } - } - } - - // MARK: - Content-Type - - private struct MIMEType { - let type: String - let subtype: String - - init?(_ string: String) { - let components: [String] = { - let stripped = string.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceAndNewlineCharacterSet()) - let split = stripped.substringToIndex(stripped.rangeOfString(";")?.startIndex ?? stripped.endIndex) - return split.componentsSeparatedByString("/") - }() - - if let - type = components.first, - subtype = components.last - { - self.type = type - self.subtype = subtype - } else { - return nil - } - } - - func matches(MIME: MIMEType) -> Bool { - switch (type, subtype) { - case (MIME.type, MIME.subtype), (MIME.type, "*"), ("*", MIME.subtype), ("*", "*"): - return true - default: - return false - } - } - } - - /** - Validates that the response has a content type in the specified array. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - parameter contentType: The acceptable content types, which may specify wildcard types and/or subtypes. - - - returns: The request. - */ - public func validate(contentType acceptableContentTypes: S) -> Self { - return validate { _, response in - guard let validData = self.delegate.data where validData.length > 0 else { return .Success } - - if let - responseContentType = response.MIMEType, - responseMIMEType = MIMEType(responseContentType) - { - for contentType in acceptableContentTypes { - if let acceptableMIMEType = MIMEType(contentType) where acceptableMIMEType.matches(responseMIMEType) { - return .Success - } - } - } else { - for contentType in acceptableContentTypes { - if let MIMEType = MIMEType(contentType) where MIMEType.type == "*" && MIMEType.subtype == "*" { - return .Success - } - } - } - - let failureReason: String - - if let responseContentType = response.MIMEType { - failureReason = ( - "Response content type \"\(responseContentType)\" does not match any acceptable " + - "content types: \(acceptableContentTypes)" - ) - } else { - failureReason = "Response content type was missing and acceptable content type does not match \"*/*\"" - } - - return .Failure(Error.errorWithCode(.ContentTypeValidationFailed, failureReason: failureReason)) - } - } - - // MARK: - Automatic - - /** - Validates that the response has a status code in the default acceptable range of 200...299, and that the content - type matches any specified in the Accept HTTP header field. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - returns: The request. - */ - public func validate() -> Self { - let acceptableStatusCodes: Range = 200..<300 - let acceptableContentTypes: [String] = { - if let accept = request?.valueForHTTPHeaderField("Accept") { - return accept.componentsSeparatedByString(",") - } - - return ["*/*"] - }() - - return validate(statusCode: acceptableStatusCodes).validate(contentType: acceptableContentTypes) - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift b/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift deleted file mode 100644 index c616174..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift +++ /dev/null @@ -1,193 +0,0 @@ -// AuthenticationTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class AuthenticationTestCase: BaseTestCase { - let user = "user" - let password = "password" - var URLString = "" - - override func setUp() { - super.setUp() - - let credentialStorage = NSURLCredentialStorage.sharedCredentialStorage() - - for (protectionSpace, credentials) in credentialStorage.allCredentials { - for (_, credential) in credentials { - credentialStorage.removeCredential(credential, forProtectionSpace: protectionSpace) - } - } - } -} - -// MARK: - - -class BasicAuthenticationTestCase: AuthenticationTestCase { - override func setUp() { - super.setUp() - URLString = "https://httpbin.org/basic-auth/\(user)/\(password)" - } - - func testHTTPBasicAuthenticationWithInvalidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 401") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: "invalid", password: "credentials") - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNil(response, "response should be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, -999, "error should be NSURLErrorDomain Code -999 'cancelled'") - } - } - - func testHTTPBasicAuthenticationWithValidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 200") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: user, password: password) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertEqual(response?.statusCode ?? 0, 200, "response status code should be 200") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - } -} - -// MARK: - - -class HTTPDigestAuthenticationTestCase: AuthenticationTestCase { - let qop = "auth" - - override func setUp() { - super.setUp() - URLString = "https://httpbin.org/digest-auth/\(qop)/\(user)/\(password)" - } - - func testHTTPDigestAuthenticationWithInvalidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 401") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: "invalid", password: "credentials") - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNil(response, "response should be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, -999, "error should be NSURLErrorDomain Code -999 'cancelled'") - } - } - - func testHTTPDigestAuthenticationWithValidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 200") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: user, password: password) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertEqual(response?.statusCode ?? 0, 200, "response status code should be 200") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift b/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift deleted file mode 100644 index a9fe24c..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift +++ /dev/null @@ -1,34 +0,0 @@ -// BaseTestCase.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class BaseTestCase: XCTestCase { - let timeout: NSTimeInterval = 30.0 - - func URLForResource(fileName: String, withExtension: String) -> NSURL { - let bundle = NSBundle(forClass: BaseTestCase.self) - return bundle.URLForResource(fileName, withExtension: withExtension)! - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift b/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift deleted file mode 100644 index 0d3fe3c..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift +++ /dev/null @@ -1,351 +0,0 @@ -// CacheTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -/** - This test case tests all implemented cache policies against various `Cache-Control` header values. These tests - are meant to cover the main cases of `Cache-Control` header usage, but are no means exhaustive. - - These tests work as follows: - - - Set up an `NSURLCache` - - Set up an `Alamofire.Manager` - - Execute requests for all `Cache-Control` headers values to prime the `NSURLCache` with cached responses - - Start up a new test - - Execute another round of the same requests with a given `NSURLRequestCachePolicy` - - Verify whether the response came from the cache or from the network - - This is determined by whether the cached response timestamp matches the new response timestamp - - An important thing to note is the difference in behavior between iOS and OS X. On iOS, a response with - a `Cache-Control` header value of `no-store` is still written into the `NSURLCache` where on OS X, it is not. - The different tests below reflect and demonstrate this behavior. - - For information about `Cache-Control` HTTP headers, please refer to RFC 2616 - Section 14.9. -*/ -class CacheTestCase: BaseTestCase { - - // MARK: - - - struct CacheControl { - static let Public = "public" - static let Private = "private" - static let MaxAgeNonExpired = "max-age=3600" - static let MaxAgeExpired = "max-age=0" - static let NoCache = "no-cache" - static let NoStore = "no-store" - - static var allValues: [String] { - return [ - CacheControl.Public, - CacheControl.Private, - CacheControl.MaxAgeNonExpired, - CacheControl.MaxAgeExpired, - CacheControl.NoCache, - CacheControl.NoStore - ] - } - } - - // MARK: - Properties - - var URLCache: NSURLCache! - var manager: Manager! - - let URLString = "https://httpbin.org/response-headers" - let requestTimeout: NSTimeInterval = 30 - - var requests: [String: NSURLRequest] = [:] - var timestamps: [String: String] = [:] - - // MARK: - Setup and Teardown - - override func setUp() { - super.setUp() - - URLCache = { - let capacity = 50 * 1024 * 1024 // MBs - let URLCache = NSURLCache(memoryCapacity: capacity, diskCapacity: capacity, diskPath: nil) - - return URLCache - }() - - manager = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.HTTPAdditionalHeaders = Alamofire.Manager.defaultHTTPHeaders - configuration.requestCachePolicy = .UseProtocolCachePolicy - configuration.URLCache = self.URLCache - - return configuration - }() - - let manager = Manager(configuration: configuration) - - return manager - }() - - primeCachedResponses() - } - - override func tearDown() { - super.tearDown() - - URLCache.removeAllCachedResponses() - } - - // MARK: - Cache Priming Methods - - /** - Executes a request for all `Cache-Control` header values to load the response into the `URLCache`. - - This implementation leverages dispatch groups to execute all the requests as well as wait an additional - second before returning. This ensures the cache contains responses for all requests that are at least - one second old. This allows the tests to distinguish whether the subsequent responses come from the cache - or the network based on the timestamp of the response. - */ - func primeCachedResponses() { - let dispatchGroup = dispatch_group_create() - let highPriorityDispatchQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0) - - for cacheControl in CacheControl.allValues { - dispatch_group_enter(dispatchGroup) - - let request = startRequest( - cacheControl: cacheControl, - queue: highPriorityDispatchQueue, - completion: { _, response in - let timestamp = response!.allHeaderFields["Date"] as! String - self.timestamps[cacheControl] = timestamp - - dispatch_group_leave(dispatchGroup) - } - ) - - requests[cacheControl] = request - } - - // Wait for all requests to complete - dispatch_group_wait(dispatchGroup, dispatch_time(DISPATCH_TIME_NOW, Int64(10.0 * Float(NSEC_PER_SEC)))) - - // Pause for 1 additional second to ensure all timestamps will be different - dispatch_group_enter(dispatchGroup) - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(1.0 * Float(NSEC_PER_SEC))), highPriorityDispatchQueue) { - dispatch_group_leave(dispatchGroup) - } - - // Wait for our 1 second pause to complete - dispatch_group_wait(dispatchGroup, dispatch_time(DISPATCH_TIME_NOW, Int64(10.0 * Float(NSEC_PER_SEC)))) - } - - // MARK: - Request Helper Methods - - func URLRequest(cacheControl cacheControl: String, cachePolicy: NSURLRequestCachePolicy) -> NSURLRequest { - let parameters = ["Cache-Control": cacheControl] - let URL = NSURL(string: URLString)! - let URLRequest = NSMutableURLRequest(URL: URL, cachePolicy: cachePolicy, timeoutInterval: requestTimeout) - URLRequest.HTTPMethod = Method.GET.rawValue - - return ParameterEncoding.URL.encode(URLRequest, parameters: parameters).0 - } - - func startRequest( - cacheControl cacheControl: String, - cachePolicy: NSURLRequestCachePolicy = .UseProtocolCachePolicy, - queue: dispatch_queue_t = dispatch_get_main_queue(), - completion: (NSURLRequest?, NSHTTPURLResponse?) -> Void) - -> NSURLRequest - { - let urlRequest = URLRequest(cacheControl: cacheControl, cachePolicy: cachePolicy) - - let request = manager.request(urlRequest) - request.response( - queue: queue, - completionHandler: { _, response, data, _ in - completion(request.request, response) - } - ) - - return urlRequest - } - - // MARK: - Test Execution and Verification - - func executeTest( - cachePolicy cachePolicy: NSURLRequestCachePolicy, - cacheControl: String, - shouldReturnCachedResponse: Bool) - { - // Given - let expectation = expectationWithDescription("GET request to httpbin") - var response: NSHTTPURLResponse? - - // When - startRequest(cacheControl: cacheControl, cachePolicy: cachePolicy) { _, responseResponse in - response = responseResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - verifyResponse(response, forCacheControl: cacheControl, isCachedResponse: shouldReturnCachedResponse) - } - - func verifyResponse(response: NSHTTPURLResponse?, forCacheControl cacheControl: String, isCachedResponse: Bool) { - guard let cachedResponseTimestamp = timestamps[cacheControl] else { - XCTFail("cached response timestamp should not be nil") - return - } - - if let - response = response, - timestamp = response.allHeaderFields["Date"] as? String - { - if isCachedResponse { - XCTAssertEqual(timestamp, cachedResponseTimestamp, "timestamps should be equal") - } else { - XCTAssertNotEqual(timestamp, cachedResponseTimestamp, "timestamps should not be equal") - } - } else { - XCTFail("response should not be nil") - } - } - - // MARK: - Cache Helper Methods - - private func isCachedResponseForNoStoreHeaderExpected() -> Bool { - var storedInCache = false - - #if os(iOS) - let operatingSystemVersion = NSOperatingSystemVersion(majorVersion: 8, minorVersion: 3, patchVersion: 0) - - if !NSProcessInfo().isOperatingSystemAtLeastVersion(operatingSystemVersion) { - storedInCache = true - } - #endif - - return storedInCache - } - - // MARK: - Tests - - func testURLCacheContainsCachedResponsesForAllRequests() { - // Given - let publicRequest = requests[CacheControl.Public]! - let privateRequest = requests[CacheControl.Private]! - let maxAgeNonExpiredRequest = requests[CacheControl.MaxAgeNonExpired]! - let maxAgeExpiredRequest = requests[CacheControl.MaxAgeExpired]! - let noCacheRequest = requests[CacheControl.NoCache]! - let noStoreRequest = requests[CacheControl.NoStore]! - - // When - let publicResponse = URLCache.cachedResponseForRequest(publicRequest) - let privateResponse = URLCache.cachedResponseForRequest(privateRequest) - let maxAgeNonExpiredResponse = URLCache.cachedResponseForRequest(maxAgeNonExpiredRequest) - let maxAgeExpiredResponse = URLCache.cachedResponseForRequest(maxAgeExpiredRequest) - let noCacheResponse = URLCache.cachedResponseForRequest(noCacheRequest) - let noStoreResponse = URLCache.cachedResponseForRequest(noStoreRequest) - - // Then - XCTAssertNotNil(publicResponse, "\(CacheControl.Public) response should not be nil") - XCTAssertNotNil(privateResponse, "\(CacheControl.Private) response should not be nil") - XCTAssertNotNil(maxAgeNonExpiredResponse, "\(CacheControl.MaxAgeNonExpired) response should not be nil") - XCTAssertNotNil(maxAgeExpiredResponse, "\(CacheControl.MaxAgeExpired) response should not be nil") - XCTAssertNotNil(noCacheResponse, "\(CacheControl.NoCache) response should not be nil") - - if isCachedResponseForNoStoreHeaderExpected() { - XCTAssertNotNil(noStoreResponse, "\(CacheControl.NoStore) response should not be nil") - } else { - XCTAssertNil(noStoreResponse, "\(CacheControl.NoStore) response should be nil") - } - } - - func testDefaultCachePolicy() { - let cachePolicy: NSURLRequestCachePolicy = .UseProtocolCachePolicy - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: false) - } - - func testIgnoreLocalCacheDataPolicy() { - let cachePolicy: NSURLRequestCachePolicy = .ReloadIgnoringLocalCacheData - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: false) - } - - func testUseLocalCacheDataIfExistsOtherwiseLoadFromNetworkPolicy() { - let cachePolicy: NSURLRequestCachePolicy = .ReturnCacheDataElseLoad - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: true) - - if isCachedResponseForNoStoreHeaderExpected() { - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: true) - } else { - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: false) - } - } - - func testUseLocalCacheDataAndDontLoadFromNetworkPolicy() { - let cachePolicy: NSURLRequestCachePolicy = .ReturnCacheDataDontLoad - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: true) - - if isCachedResponseForNoStoreHeaderExpected() { - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: true) - } else { - // Given - let expectation = expectationWithDescription("GET request to httpbin") - var response: NSHTTPURLResponse? - - // When - startRequest(cacheControl: CacheControl.NoStore, cachePolicy: cachePolicy) { _, responseResponse in - response = responseResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(response, "response should be nil") - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift b/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift deleted file mode 100644 index 2340c0e..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift +++ /dev/null @@ -1,459 +0,0 @@ -// DownloadTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class DownloadInitializationTestCase: BaseTestCase { - let searchPathDirectory: NSSearchPathDirectory = .CachesDirectory - let searchPathDomain: NSSearchPathDomainMask = .UserDomainMask - - func testDownloadClassMethodWithMethodURLAndDestination() { - // Given - let URLString = "https://httpbin.org/" - let destination = Request.suggestedDownloadDestination(directory: searchPathDirectory, domain: searchPathDomain) - - // When - let request = Alamofire.download(.GET, URLString, destination: destination) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should be GET") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testDownloadClassMethodWithMethodURLHeadersAndDestination() { - // Given - let URLString = "https://httpbin.org/" - let destination = Request.suggestedDownloadDestination(directory: searchPathDirectory, domain: searchPathDomain) - - // When - let request = Alamofire.download(.GET, URLString, headers: ["Authorization": "123456"], destination: destination) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should be GET") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class DownloadResponseTestCase: BaseTestCase { - let searchPathDirectory: NSSearchPathDirectory = .CachesDirectory - let searchPathDomain: NSSearchPathDomainMask = .UserDomainMask - - let cachesURL: NSURL = { - let cachesDirectory = NSSearchPathForDirectoriesInDomains(.CachesDirectory, .UserDomainMask, true).first! - let cachesURL = NSURL(fileURLWithPath: cachesDirectory, isDirectory: true) - - return cachesURL - }() - - var randomCachesFileURL: NSURL { - return cachesURL.URLByAppendingPathComponent("\(NSUUID().UUIDString).json") - } - - func testDownloadRequest() { - // Given - let numberOfLines = 100 - let URLString = "https://httpbin.org/stream/\(numberOfLines)" - - let destination = Alamofire.Request.suggestedDownloadDestination( - directory: searchPathDirectory, - domain: searchPathDomain - ) - - let expectation = expectationWithDescription("Download request should download data to file: \(URLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var error: NSError? - - // When - Alamofire.download(.GET, URLString, destination: destination) - .response { responseRequest, responseResponse, _, responseError in - request = responseRequest - response = responseResponse - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNil(error, "error should be nil") - - let fileManager = NSFileManager.defaultManager() - let directory = fileManager.URLsForDirectory(searchPathDirectory, inDomains: self.searchPathDomain)[0] - - do { - let contents = try fileManager.contentsOfDirectoryAtURL( - directory, - includingPropertiesForKeys: nil, - options: .SkipsHiddenFiles - ) - - #if os(iOS) || os(tvOS) - let suggestedFilename = "\(numberOfLines)" - #elseif os(OSX) - let suggestedFilename = "\(numberOfLines).json" - #endif - - let predicate = NSPredicate(format: "lastPathComponent = '\(suggestedFilename)'") - let filteredContents = (contents as NSArray).filteredArrayUsingPredicate(predicate) - XCTAssertEqual(filteredContents.count, 1, "should have one file in Documents") - - if let file = filteredContents.first as? NSURL { - XCTAssertEqual( - file.lastPathComponent ?? "", - "\(suggestedFilename)", - "filename should be \(suggestedFilename)" - ) - - if let data = NSData(contentsOfURL: file) { - XCTAssertGreaterThan(data.length, 0, "data length should be non-zero") - } else { - XCTFail("data should exist for contents of URL") - } - - do { - try fileManager.removeItemAtURL(file) - } catch { - XCTFail("file manager should remove item at URL: \(file)") - } - } else { - XCTFail("file should not be nil") - } - } catch { - XCTFail("contents should not be nil") - } - } - - func testDownloadRequestWithProgress() { - // Given - let randomBytes = 4 * 1024 * 1024 - let URLString = "https://httpbin.org/bytes/\(randomBytes)" - - let fileManager = NSFileManager.defaultManager() - let directory = fileManager.URLsForDirectory(searchPathDirectory, inDomains: self.searchPathDomain)[0] - let filename = "test_download_data" - let fileURL = directory.URLByAppendingPathComponent(filename) - - let expectation = expectationWithDescription("Bytes download progress should be reported: \(URLString)") - - var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] - var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] - var responseRequest: NSURLRequest? - var responseResponse: NSHTTPURLResponse? - var responseData: NSData? - var responseError: ErrorType? - - // When - let download = Alamofire.download(.GET, URLString) { _, _ in - return fileURL - } - download.progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in - let bytes = (bytes: bytesRead, totalBytes: totalBytesRead, totalBytesExpected: totalBytesExpectedToRead) - byteValues.append(bytes) - - let progress = ( - completedUnitCount: download.progress.completedUnitCount, - totalUnitCount: download.progress.totalUnitCount - ) - progressValues.append(progress) - } - download.response { request, response, data, error in - responseRequest = request - responseResponse = response - responseData = data - responseError = error - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(responseRequest, "response request should not be nil") - XCTAssertNotNil(responseResponse, "response should not be nil") - XCTAssertNil(responseData, "response data should be nil") - XCTAssertNil(responseError, "response error should be nil") - - XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") - - if byteValues.count == progressValues.count { - for index in 0..? - - // When - let download = Alamofire.download(.GET, URLString, destination: destination) - download.progress { _, _, _ in - download.cancel() - } - download.responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - XCTAssertNotNil(response.result.error, "result error should not be nil") - } else { - XCTFail("response should not be nil") - } - - XCTAssertNotNil(download.resumeData, "resume data should not be nil") - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/Info.plist b/Carthage/Checkouts/Alamofire/Tests/Info.plist deleted file mode 100644 index ba72822..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift b/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift deleted file mode 100644 index dbd165b..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift +++ /dev/null @@ -1,280 +0,0 @@ -// ManagerTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -import Foundation -import XCTest - -class ManagerTestCase: BaseTestCase { - - // MARK: Initialization Tests - - func testInitializerWithDefaultArguments() { - // Given, When - let manager = Manager() - - // Then - XCTAssertNotNil(manager.session.delegate, "session delegate should not be nil") - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should be nil") - } - - func testInitializerWithSpecifiedArguments() { - // Given - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - let delegate = Manager.SessionDelegate() - let serverTrustPolicyManager = ServerTrustPolicyManager(policies: [:]) - - // When - let manager = Manager( - configuration: configuration, - delegate: delegate, - serverTrustPolicyManager: serverTrustPolicyManager - ) - - // Then - XCTAssertNotNil(manager.session.delegate, "session delegate should not be nil") - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNotNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should not be nil") - } - - func testThatFailableInitializerSucceedsWithDefaultArguments() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - }() - - // When - let manager = Manager(session: session, delegate: delegate) - - // Then - if let manager = manager { - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should be nil") - } else { - XCTFail("manager should not be nil") - } - } - - func testThatFailableInitializerSucceedsWithSpecifiedArguments() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - }() - - let serverTrustPolicyManager = ServerTrustPolicyManager(policies: [:]) - - // When - let manager = Manager(session: session, delegate: delegate, serverTrustPolicyManager: serverTrustPolicyManager) - - // Then - if let manager = manager { - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNotNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should not be nil") - } else { - XCTFail("manager should not be nil") - } - } - - func testThatFailableInitializerFailsWithWhenDelegateDoesNotEqualSessionDelegate() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: Manager.SessionDelegate(), delegateQueue: nil) - }() - - // When - let manager = Manager(session: session, delegate: delegate) - - // Then - XCTAssertNil(manager, "manager should be nil") - } - - func testThatFailableInitializerFailsWhenSessionDelegateIsNil() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: nil, delegateQueue: nil) - }() - - // When - let manager = Manager(session: session, delegate: delegate) - - // Then - XCTAssertNil(manager, "manager should be nil") - } - - // MARK: Start Requests Immediately Tests - - func testSetStartRequestsImmediatelyToFalseAndResumeRequest() { - // Given - let manager = Alamofire.Manager() - manager.startRequestsImmediately = false - - let URL = NSURL(string: "https://httpbin.org/get")! - let URLRequest = NSURLRequest(URL: URL) - - let expectation = expectationWithDescription("\(URL)") - - var response: NSHTTPURLResponse? - - // When - manager.request(URLRequest) - .response { _, responseResponse, _, _ in - response = responseResponse - expectation.fulfill() - } - .resume() - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response, "response should not be nil") - XCTAssertTrue(response?.statusCode == 200, "response status code should be 200") - } - - // MARK: Deinitialization Tests - - func testReleasingManagerWithPendingRequestDeinitializesSuccessfully() { - // Given - var manager: Manager? = Alamofire.Manager() - manager?.startRequestsImmediately = false - - let URL = NSURL(string: "https://httpbin.org/get")! - let URLRequest = NSURLRequest(URL: URL) - - // When - let request = manager?.request(URLRequest) - manager = nil - - // Then - XCTAssertTrue(request?.task.state == .Suspended, "request task state should be '.Suspended'") - XCTAssertNil(manager, "manager should be nil") - } - - func testReleasingManagerWithPendingCanceledRequestDeinitializesSuccessfully() { - // Given - var manager: Manager? = Alamofire.Manager() - manager!.startRequestsImmediately = false - - let URL = NSURL(string: "https://httpbin.org/get")! - let URLRequest = NSURLRequest(URL: URL) - - // When - let request = manager!.request(URLRequest) - request.cancel() - manager = nil - - // Then - let state = request.task.state - XCTAssertTrue(state == .Canceling || state == .Completed, "state should be .Canceling or .Completed") - XCTAssertNil(manager, "manager should be nil") - } -} - -// MARK: - - -class ManagerConfigurationHeadersTestCase: BaseTestCase { - enum ConfigurationType { - case Default, Ephemeral, Background - } - - func testThatDefaultConfigurationHeadersAreSentWithRequest() { - // Given, When, Then - executeAuthorizationHeaderTestForConfigurationType(.Default) - } - - func testThatEphemeralConfigurationHeadersAreSentWithRequest() { - // Given, When, Then - executeAuthorizationHeaderTestForConfigurationType(.Ephemeral) - } - - func testThatBackgroundConfigurationHeadersAreSentWithRequest() { - // Given, When, Then - executeAuthorizationHeaderTestForConfigurationType(.Background) - } - - private func executeAuthorizationHeaderTestForConfigurationType(type: ConfigurationType) { - // Given - let manager: Manager = { - let configuration: NSURLSessionConfiguration = { - let configuration: NSURLSessionConfiguration - - switch type { - case .Default: - configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - case .Ephemeral: - configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - case .Background: - let identifier = "com.alamofire.test.manager-configuration-tests" - configuration = NSURLSessionConfiguration.backgroundSessionConfigurationForAllPlatformsWithIdentifier(identifier) - } - - var headers = Alamofire.Manager.defaultHTTPHeaders - headers["Authorization"] = "Bearer 123456" - configuration.HTTPAdditionalHeaders = headers - - return configuration - }() - - return Manager(configuration: configuration) - }() - - let expectation = expectationWithDescription("request should complete successfully") - - var response: Response? - - // When - manager.request(.GET, "https://httpbin.org/headers") - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be a success") - - if let - headers = response.result.value?["headers" as NSString] as? [String: String], - authorization = headers["Authorization"] - { - XCTAssertEqual(authorization, "Bearer 123456", "authorization header value does not match") - } else { - XCTFail("failed to extract authorization header value") - } - } else { - XCTFail("response should not be nil") - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift b/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift deleted file mode 100644 index 7418ece..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift +++ /dev/null @@ -1,993 +0,0 @@ -// MultipartFormDataTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -struct EncodingCharacters { - static let CRLF = "\r\n" -} - -struct BoundaryGenerator { - enum BoundaryType { - case Initial, Encapsulated, Final - } - - static func boundary(boundaryType boundaryType: BoundaryType, boundaryKey: String) -> String { - let boundary: String - - switch boundaryType { - case .Initial: - boundary = "--\(boundaryKey)\(EncodingCharacters.CRLF)" - case .Encapsulated: - boundary = "\(EncodingCharacters.CRLF)--\(boundaryKey)\(EncodingCharacters.CRLF)" - case .Final: - boundary = "\(EncodingCharacters.CRLF)--\(boundaryKey)--\(EncodingCharacters.CRLF)" - } - - return boundary - } - - static func boundaryData(boundaryType boundaryType: BoundaryType, boundaryKey: String) -> NSData { - return BoundaryGenerator.boundary( - boundaryType: boundaryType, - boundaryKey: boundaryKey - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - } -} - -private func temporaryFileURL() -> NSURL { - let tempDirectoryURL = NSURL(fileURLWithPath: NSTemporaryDirectory()) - let directoryURL = tempDirectoryURL.URLByAppendingPathComponent("com.alamofire.test/multipart.form.data") - - let fileManager = NSFileManager.defaultManager() - do { - try fileManager.createDirectoryAtURL(directoryURL, withIntermediateDirectories: true, attributes: nil) - } catch { - // No-op - will cause tests to fail, not crash - } - - let fileName = NSUUID().UUIDString - let fileURL = directoryURL.URLByAppendingPathComponent(fileName) - - return fileURL -} - -// MARK: - - -class MultipartFormDataPropertiesTestCase: BaseTestCase { - func testThatContentTypeContainsBoundary() { - // Given - let multipartFormData = MultipartFormData() - - // When - let boundary = multipartFormData.boundary - - // Then - let expectedContentType = "multipart/form-data; boundary=\(boundary)" - XCTAssertEqual(multipartFormData.contentType, expectedContentType, "contentType should match expected value") - } - - func testThatContentLengthMatchesTotalBodyPartSize() { - // Given - let multipartFormData = MultipartFormData() - let data1 = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let data2 = "Vim at integre alterum.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - // When - multipartFormData.appendBodyPart(data: data1, name: "data1") - multipartFormData.appendBodyPart(data: data2, name: "data2") - - // Then - let expectedContentLength = UInt64(data1.length + data2.length) - XCTAssertEqual(multipartFormData.contentLength, expectedContentLength, "content length should match expected value") - } -} - -// MARK: - - -class MultipartFormDataEncodingTestCase: BaseTestCase { - let CRLF = EncodingCharacters.CRLF - - func testEncodingDataBodyPart() { - // Given - let multipartFormData = MultipartFormData() - - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"data\"\(CRLF)\(CRLF)" + - "Lorem ipsum dolor sit amet." + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(encodedData, expectedData, "encoded data should match expected data") - } - } - - func testEncodingMultipleDataBodyParts() { - // Given - let multipartFormData = MultipartFormData() - - let french = "français".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let japanese = "日本語".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let emoji = "😃👍🏻🍻🎉".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - multipartFormData.appendBodyPart(data: french, name: "french") - multipartFormData.appendBodyPart(data: japanese, name: "japanese", mimeType: "text/plain") - multipartFormData.appendBodyPart(data: emoji, name: "emoji", mimeType: "text/plain") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"french\"\(CRLF)\(CRLF)" + - "français" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"japanese\"\(CRLF)" + - "Content-Type: text/plain\(CRLF)\(CRLF)" + - "日本語" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"emoji\"\(CRLF)" + - "Content-Type: text/plain\(CRLF)\(CRLF)" + - "😃👍🏻🍻🎉" + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(encodedData, expectedData, "encoded data should match expected data") - } - } - - func testEncodingFileBodyPart() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingMultipleFileBodyParts() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart(fileURL: rainbowImageURL, name: "rainbow") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingStreamBodyPart() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingMultipleStreamBodyParts() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingMultipleBodyPartsWithVaryingTypes() { - // Given - let multipartFormData = MultipartFormData() - - let loremData = "Lorem ipsum.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart(data: loremData, name: "lorem") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"lorem\"\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(loremData) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } -} - -// MARK: - - -class MultipartFormDataWriteEncodedDataToDiskTestCase: BaseTestCase { - let CRLF = EncodingCharacters.CRLF - - func testWritingEncodedDataBodyPartToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"data\"\(CRLF)\(CRLF)" + - "Lorem ipsum dolor sit amet." + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedDataBodyPartsToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let french = "français".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let japanese = "日本語".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let emoji = "😃👍🏻🍻🎉".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - multipartFormData.appendBodyPart(data: french, name: "french") - multipartFormData.appendBodyPart(data: japanese, name: "japanese") - multipartFormData.appendBodyPart(data: emoji, name: "emoji") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"french\"\(CRLF)\(CRLF)" + - "français" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"japanese\"\(CRLF)\(CRLF)" + - "日本語" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"emoji\"\(CRLF)\(CRLF)" + - "😃👍🏻🍻🎉" + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingEncodedFileBodyPartToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedFileBodyPartsToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart(fileURL: rainbowImageURL, name: "rainbow") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingEncodedStreamBodyPartToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedStreamBodyPartsToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedBodyPartsWithVaryingTypesToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let loremData = "Lorem ipsum.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart(data: loremData, name: "lorem") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"lorem\"\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(loremData) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } -} - -// MARK: - - -class MultipartFormDataFailureTestCase: BaseTestCase { - func testThatAppendingFileBodyPartWithInvalidLastPathComponentReturnsError() { - // Given - let fileURL = NSURL(string: "")! - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: fileURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "Failed to extract the fileName of the provided URL: \(fileURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatAppendingFileBodyPartThatIsNotFileURLReturnsError() { - // Given - let fileURL = NSURL(string: "https://example.com/image.jpg")! - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: fileURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "The file URL does not point to a file URL: \(fileURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "error failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatAppendingFileBodyPartThatIsNotReachableReturnsError() { - // Given - let filePath = (NSTemporaryDirectory() as NSString).stringByAppendingPathComponent("does_not_exist.jpg") - let fileURL = NSURL(fileURLWithPath: filePath) - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: fileURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "The file URL is not reachable: \(fileURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "error failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatAppendingFileBodyPartThatIsDirectoryReturnsError() { - // Given - let directoryURL = NSURL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true) - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: directoryURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "The file URL is a directory, not a file: \(directoryURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "error failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatWritingEncodedDataToExistingFileURLFails() { - // Given - let fileURL = temporaryFileURL() - - var writerError: NSError? - - do { - try "dummy data".writeToURL(fileURL, atomically: true, encoding: NSUTF8StringEncoding) - } catch { - writerError = error as NSError - } - - let multipartFormData = MultipartFormData() - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(writerError, "writer error should be nil") - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let encodingError = encodingError { - XCTAssertEqual(encodingError.domain, "com.alamofire.error", "encoding error domain does not match expected value") - XCTAssertEqual(encodingError.code, NSURLErrorBadURL, "encoding error code does not match expected value") - } - } - - func testThatWritingEncodedDataToBadURLFails() { - // Given - let fileURL = NSURL(string: "/this/is/not/a/valid/url")! - - let multipartFormData = MultipartFormData() - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let encodingError = encodingError { - XCTAssertEqual(encodingError.domain, "com.alamofire.error", "encoding error domain does not match expected value") - XCTAssertEqual(encodingError.code, NSURLErrorBadURL, "encoding error code does not match expected value") - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift b/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift deleted file mode 100644 index c583e4b..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift +++ /dev/null @@ -1,37 +0,0 @@ -// NSURLSessionConfiguration+AlamofireTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension NSURLSessionConfiguration { - static func backgroundSessionConfigurationForAllPlatformsWithIdentifier(identifier: String) -> NSURLSessionConfiguration { - let configuration: NSURLSessionConfiguration - - if #available(OSX 10.10, *) { - configuration = NSURLSessionConfiguration.backgroundSessionConfigurationWithIdentifier(identifier) - } else { - configuration = NSURLSessionConfiguration.backgroundSessionConfiguration(identifier) - } - - return configuration - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift b/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift deleted file mode 100644 index 7595076..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift +++ /dev/null @@ -1,220 +0,0 @@ -// NetworkReachabilityManagerTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -import Foundation -import SystemConfiguration -import XCTest - -class NetworkReachabilityManagerTestCase: BaseTestCase { - - // MARK: - Tests - Initialization - - func testThatManagerCanBeInitializedFromHost() { - // Given, When - let manager = NetworkReachabilityManager(host: "localhost") - - // Then - XCTAssertNotNil(manager) - } - - func testThatManagerCanBeInitializedFromAddress() { - // Given, When - let manager = NetworkReachabilityManager() - - // Then - XCTAssertNotNil(manager) - } - - func testThatHostManagerIsReachableOnWiFi() { - // Given, When - let manager = NetworkReachabilityManager(host: "localhost") - - // Then - XCTAssertEqual(manager?.networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - XCTAssertEqual(manager?.isReachable, true) - XCTAssertEqual(manager?.isReachableOnWWAN, false) - XCTAssertEqual(manager?.isReachableOnEthernetOrWiFi, true) - } - - func testThatHostManagerStartsWithReachableStatus() { - // Given, When - let manager = NetworkReachabilityManager(host: "localhost") - - // Then - XCTAssertEqual(manager?.networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - XCTAssertEqual(manager?.isReachable, true) - XCTAssertEqual(manager?.isReachableOnWWAN, false) - XCTAssertEqual(manager?.isReachableOnEthernetOrWiFi, true) - } - - func testThatAddressManagerStartsWithReachableStatus() { - // Given, When - let manager = NetworkReachabilityManager() - - // Then - XCTAssertEqual(manager?.networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - XCTAssertEqual(manager?.isReachable, true) - XCTAssertEqual(manager?.isReachableOnWWAN, false) - XCTAssertEqual(manager?.isReachableOnEthernetOrWiFi, true) - } - - func testThatHostManagerCanBeDeinitialized() { - // Given - var manager: NetworkReachabilityManager? = NetworkReachabilityManager(host: "localhost") - - // When - manager = nil - - // Then - XCTAssertNil(manager) - } - - func testThatAddressManagerCanBeDeinitialized() { - // Given - var manager: NetworkReachabilityManager? = NetworkReachabilityManager() - - // When - manager = nil - - // Then - XCTAssertNil(manager) - } - - // MARK: - Tests - Listener - - func testThatHostManagerIsNotifiedWhenStartListeningIsCalled() { - // Given - let manager = NetworkReachabilityManager(host: "localhost") - let expectation = expectationWithDescription("listener closure should be executed") - - var networkReachabilityStatus: NetworkReachabilityManager.NetworkReachabilityStatus? - - manager?.listener = { status in - networkReachabilityStatus = status - expectation.fulfill() - } - - // When - manager?.startListening() - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - func testThatAddressManagerIsNotifiedWhenStartListeningIsCalled() { - // Given - let manager = NetworkReachabilityManager() - let expectation = expectationWithDescription("listener closure should be executed") - - var networkReachabilityStatus: NetworkReachabilityManager.NetworkReachabilityStatus? - - manager?.listener = { status in - networkReachabilityStatus = status - expectation.fulfill() - } - - // When - manager?.startListening() - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - // MARK: - Tests - Network Reachability Status - - func testThatManagerReturnsNotReachableStatusWhenReachableFlagIsAbsent() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.ConnectionOnDemand] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .NotReachable) - } - - func testThatManagerReturnsNotReachableStatusWhenInterventionIsRequired() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .ConnectionRequired, .ConnectionOnDemand, .InterventionRequired] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .NotReachable) - } - - func testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsNotRequired() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - func testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnDemand() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .ConnectionRequired, .ConnectionOnDemand] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - func testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnTraffic() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .ConnectionRequired, .ConnectionOnTraffic] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - -#if os(iOS) - func testThatManagerReturnsReachableOnWWANStatusWhenIsWWAN() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .IsWWAN] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.WWAN)) - } -#endif -} diff --git a/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift b/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift deleted file mode 100644 index c96f997..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift +++ /dev/null @@ -1,645 +0,0 @@ -// ParameterEncodingTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class ParameterEncodingTestCase: BaseTestCase { - let URLRequest = NSURLRequest(URL: NSURL(string: "https://example.com/")!) -} - -// MARK: - - -class URLParameterEncodingTestCase: ParameterEncodingTestCase { - let encoding: ParameterEncoding = .URL - - // MARK: Tests - Parameter Types - - func testURLParameterEncodeNilParameters() { - // Given - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: nil) - - // Then - XCTAssertNil(URLRequest.URL?.query, "query should be nil") - } - - func testURLParameterEncodeEmptyDictionaryParameter() { - // Given - let parameters: [String: AnyObject] = [:] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertNil(URLRequest.URL?.query, "query should be nil") - } - - func testURLParameterEncodeOneStringKeyStringValueParameter() { - // Given - let parameters = ["foo": "bar"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=bar", "query is incorrect") - } - - func testURLParameterEncodeOneStringKeyStringValueParameterAppendedToQuery() { - // Given - let mutableURLRequest = self.URLRequest.URLRequest - let URLComponents = NSURLComponents(URL: mutableURLRequest.URL!, resolvingAgainstBaseURL: false)! - URLComponents.query = "baz=qux" - mutableURLRequest.URL = URLComponents.URL - - let parameters = ["foo": "bar"] - - // When - let (URLRequest, _) = encoding.encode(mutableURLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "baz=qux&foo=bar", "query is incorrect") - } - - func testURLParameterEncodeTwoStringKeyStringValueParameters() { - // Given - let parameters = ["foo": "bar", "baz": "qux"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "baz=qux&foo=bar", "query is incorrect") - } - - func testURLParameterEncodeStringKeyIntegerValueParameter() { - // Given - let parameters = ["foo": 1] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyDoubleValueParameter() { - // Given - let parameters = ["foo": 1.1] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=1.1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyBoolValueParameter() { - // Given - let parameters = ["foo": true] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyArrayValueParameter() { - // Given - let parameters = ["foo": ["a", 1, true]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%5B%5D=a&foo%5B%5D=1&foo%5B%5D=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyDictionaryValueParameter() { - // Given - let parameters = ["foo": ["bar": 1]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%5Bbar%5D=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyNestedDictionaryValueParameter() { - // Given - let parameters = ["foo": ["bar": ["baz": 1]]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%5Bbar%5D%5Bbaz%5D=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameter() { - // Given - let parameters = ["foo": ["bar": ["baz": ["a", 1, true]]]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedQuery = "foo%5Bbar%5D%5Bbaz%5D%5B%5D=a&foo%5Bbar%5D%5Bbaz%5D%5B%5D=1&foo%5Bbar%5D%5Bbaz%5D%5B%5D=1" - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - // MARK: Tests - All Reserved / Unreserved / Illegal Characters According to RFC 3986 - - func testThatReservedCharactersArePercentEscapedMinusQuestionMarkAndForwardSlash() { - // Given - let generalDelimiters = ":#[]@" - let subDelimiters = "!$&'()*+,;=" - let parameters = ["reserved": "\(generalDelimiters)\(subDelimiters)"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedQuery = "reserved=%3A%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D" - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - func testThatReservedCharactersQuestionMarkAndForwardSlashAreNotPercentEscaped() { - // Given - let parameters = ["reserved": "?/"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "reserved=?/", "query is incorrect") - } - - func testThatUnreservedNumericCharactersAreNotPercentEscaped() { - // Given - let parameters = ["numbers": "0123456789"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "numbers=0123456789", "query is incorrect") - } - - func testThatUnreservedLowercaseCharactersAreNotPercentEscaped() { - // Given - let parameters = ["lowercase": "abcdefghijklmnopqrstuvwxyz"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "lowercase=abcdefghijklmnopqrstuvwxyz", "query is incorrect") - } - - func testThatUnreservedUppercaseCharactersAreNotPercentEscaped() { - // Given - let parameters = ["uppercase": "ABCDEFGHIJKLMNOPQRSTUVWXYZ"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "uppercase=ABCDEFGHIJKLMNOPQRSTUVWXYZ", "query is incorrect") - } - - func testThatIllegalASCIICharactersArePercentEscaped() { - // Given - let parameters = ["illegal": " \"#%<>[]\\^`{}|"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedQuery = "illegal=%20%22%23%25%3C%3E%5B%5D%5C%5E%60%7B%7D%7C" - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - // MARK: Tests - Special Character Queries - - func testURLParameterEncodeStringWithAmpersandKeyStringWithAmpersandValueParameter() { - // Given - let parameters = ["foo&bar": "baz&qux", "foobar": "bazqux"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%26bar=baz%26qux&foobar=bazqux", "query is incorrect") - } - - func testURLParameterEncodeStringWithQuestionMarkKeyStringWithQuestionMarkValueParameter() { - // Given - let parameters = ["?foo?": "?bar?"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "?foo?=?bar?", "query is incorrect") - } - - func testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter() { - // Given - let parameters = ["foo": "/bar/baz/qux"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=/bar/baz/qux", "query is incorrect") - } - - func testURLParameterEncodeStringWithSpaceKeyStringWithSpaceValueParameter() { - // Given - let parameters = [" foo ": " bar "] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "%20foo%20=%20bar%20", "query is incorrect") - } - - func testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameter() { - // Given - let parameters = ["+foo+": "+bar+"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "%2Bfoo%2B=%2Bbar%2B", "query is incorrect") - } - - func testURLParameterEncodeStringKeyPercentEncodedStringValueParameter() { - // Given - let parameters = ["percent": "%25"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "percent=%2525", "query is incorrect") - } - - func testURLParameterEncodeStringKeyNonLatinStringValueParameter() { - // Given - let parameters = [ - "french": "français", - "japanese": "日本語", - "arabic": "العربية", - "emoji": "😃" - ] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedParameterValues = [ - "arabic=%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A%D8%A9", - "emoji=%F0%9F%98%83", - "french=fran%C3%A7ais", - "japanese=%E6%97%A5%E6%9C%AC%E8%AA%9E" - ] - - let expectedQuery = expectedParameterValues.joinWithSeparator("&") - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - func testURLParameterEncodeStringForRequestWithPrecomposedQuery() { - // Given - let URL = NSURL(string: "https://example.com/movies?hd=[1]")! - let parameters = ["page": "0"] - - // When - let (URLRequest, _) = encoding.encode(NSURLRequest(URL: URL), parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "hd=%5B1%5D&page=0", "query is incorrect") - } - - func testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameterForRequestWithPrecomposedQuery() { - // Given - let URL = NSURL(string: "https://example.com/movie?hd=[1]")! - let parameters = ["+foo+": "+bar+"] - - // When - let (URLRequest, _) = encoding.encode(NSURLRequest(URL: URL), parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "hd=%5B1%5D&%2Bfoo%2B=%2Bbar%2B", "query is incorrect") - } - - func testURLParameterEncodeStringWithThousandsOfChineseCharacters() { - // Given - let repeatedCount = 2_000 - let URL = NSURL(string: "https://example.com/movies")! - let parameters = ["chinese": String(count: repeatedCount, repeatedString: "一二三四五六七八九十")] - - // When - let (URLRequest, _) = encoding.encode(NSURLRequest(URL: URL), parameters: parameters) - - // Then - var expected = "chinese=" - for _ in 0.. (NSMutableURLRequest, NSError?) = { URLRequest, parameters in - guard let parameters = parameters else { return (URLRequest.URLRequest, nil) } - - var URLString = URLRequest.URLRequest.URLString + "?" - - parameters.forEach { URLString += "\($0)=\($1)" } - - let mutableURLRequest = URLRequest.URLRequest - mutableURLRequest.URL = NSURL(string: URLString)! - - return (mutableURLRequest, nil) - } - - // When - let encoding: ParameterEncoding = .Custom(encodingClosure) - - // Then - let URL = NSURL(string: "https://example.com")! - let URLRequest = NSURLRequest(URL: URL) - let parameters: [String: AnyObject] = ["foo": "bar"] - - XCTAssertEqual( - encoding.encode(URLRequest, parameters: parameters).0.URLString, - "https://example.com?foo=bar", - "the encoded URL should match the expected value" - ) - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift b/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift deleted file mode 100644 index 1cbaa8c..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift +++ /dev/null @@ -1,617 +0,0 @@ -// RequestTests.swift -// -// Copyright (c) 2014-2015 Alamofire Software Foundation (http://alamofire.org) -// -// 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 Alamofire -import Foundation -import XCTest - -class RequestInitializationTestCase: BaseTestCase { - func testRequestClassMethodWithMethodAndURL() { - // Given - let URLString = "https://httpbin.org/" - - // When - let request = Alamofire.request(.GET, URLString) - - // Then - XCTAssertNotNil(request.request, "request URL request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "request response should be nil") - } - - func testRequestClassMethodWithMethodAndURLAndParameters() { - // Given - let URLString = "https://httpbin.org/get" - - // When - let request = Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - - // Then - XCTAssertNotNil(request.request, "request URL request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") - XCTAssertNotEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertEqual(request.request?.URL?.query ?? "", "foo=bar", "query is incorrect") - XCTAssertNil(request.response, "request response should be nil") - } - - func testRequestClassMethodWithMethodURLParametersAndHeaders() { - // Given - let URLString = "https://httpbin.org/get" - let headers = ["Authorization": "123456"] - - // When - let request = Alamofire.request(.GET, URLString, parameters: ["foo": "bar"], headers: headers) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") - XCTAssertNotEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertEqual(request.request?.URL?.query ?? "", "foo=bar", "query is incorrect") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class RequestResponseTestCase: BaseTestCase { - func testRequestResponse() { - // Given - let URLString = "https://httpbin.org/get" - - let expectation = expectationWithDescription("GET request should succeed: \(URLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - } - - func testRequestResponseWithProgress() { - // Given - let randomBytes = 4 * 1024 * 1024 - let URLString = "https://httpbin.org/bytes/\(randomBytes)" - - let expectation = expectationWithDescription("Bytes download progress should be reported: \(URLString)") - - var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] - var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] - var responseRequest: NSURLRequest? - var responseResponse: NSHTTPURLResponse? - var responseData: NSData? - var responseError: ErrorType? - - // When - let request = Alamofire.request(.GET, URLString) - request.progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in - let bytes = (bytes: bytesRead, totalBytes: totalBytesRead, totalBytesExpected: totalBytesExpectedToRead) - byteValues.append(bytes) - - let progress = ( - completedUnitCount: request.progress.completedUnitCount, - totalUnitCount: request.progress.totalUnitCount - ) - progressValues.append(progress) - } - request.response { request, response, data, error in - responseRequest = request - responseResponse = response - responseData = data - responseError = error - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(responseRequest, "response request should not be nil") - XCTAssertNotNil(responseResponse, "response response should not be nil") - XCTAssertNotNil(responseData, "response data should not be nil") - XCTAssertNil(responseError, "response error should be nil") - - XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") - - if byteValues.count == progressValues.count { - for index in 0..? - - // When - Alamofire.request(.POST, URLString, parameters: parameters) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - - if let - JSON = response.result.value as? [String: AnyObject], - form = JSON["form"] as? [String: String] - { - XCTAssertEqual(form["french"], parameters["french"], "french parameter value should match form value") - XCTAssertEqual(form["japanese"], parameters["japanese"], "japanese parameter value should match form value") - XCTAssertEqual(form["arabic"], parameters["arabic"], "arabic parameter value should match form value") - XCTAssertEqual(form["emoji"], parameters["emoji"], "emoji parameter value should match form value") - } else { - XCTFail("form parameter in JSON should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } - - func testPOSTRequestWithBase64EncodedImages() { - // Given - let URLString = "https://httpbin.org/post" - - let pngBase64EncodedString: String = { - let URL = URLForResource("unicorn", withExtension: "png") - let data = NSData(contentsOfURL: URL)! - - return data.base64EncodedStringWithOptions(.Encoding64CharacterLineLength) - }() - - let jpegBase64EncodedString: String = { - let URL = URLForResource("rainbow", withExtension: "jpg") - let data = NSData(contentsOfURL: URL)! - - return data.base64EncodedStringWithOptions(.Encoding64CharacterLineLength) - }() - - let parameters = [ - "email": "user@alamofire.org", - "png_image": pngBase64EncodedString, - "jpeg_image": jpegBase64EncodedString - ] - - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.POST, URLString, parameters: parameters) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - - if let - JSON = response.result.value as? [String: AnyObject], - form = JSON["form"] as? [String: String] - { - XCTAssertEqual(form["email"], parameters["email"], "email parameter value should match form value") - XCTAssertEqual(form["png_image"], parameters["png_image"], "png_image parameter value should match form value") - XCTAssertEqual(form["jpeg_image"], parameters["jpeg_image"], "jpeg_image parameter value should match form value") - } else { - XCTFail("form parameter in JSON should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -extension Request { - private func preValidate(operation: Void -> Void) -> Self { - delegate.queue.addOperationWithBlock { - operation() - } - - return self - } - - private func postValidate(operation: Void -> Void) -> Self { - delegate.queue.addOperationWithBlock { - operation() - } - - return self - } -} - -// MARK: - - -class RequestExtensionTestCase: BaseTestCase { - func testThatRequestExtensionHasAccessToTaskDelegateQueue() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("GET request should succeed: \(URLString)") - - var responses: [String] = [] - - // When - Alamofire.request(.GET, URLString) - .preValidate { - responses.append("preValidate") - } - .validate() - .postValidate { - responses.append("postValidate") - } - .response { _, _, _, _ in - responses.append("response") - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if responses.count == 3 { - XCTAssertEqual(responses[0], "preValidate", "response at index 0 should be preValidate") - XCTAssertEqual(responses[1], "postValidate", "response at index 1 should be postValidate") - XCTAssertEqual(responses[2], "response", "response at index 2 should be response") - } else { - XCTFail("responses count should be equal to 3") - } - } -} - -// MARK: - - -class RequestDescriptionTestCase: BaseTestCase { - func testRequestDescription() { - // Given - let URLString = "https://httpbin.org/get" - let request = Alamofire.request(.GET, URLString) - let initialRequestDescription = request.description - - let expectation = expectationWithDescription("Request description should update: \(URLString)") - - var finalRequestDescription: String? - var response: NSHTTPURLResponse? - - // When - request.response { _, responseResponse, _, _ in - finalRequestDescription = request.description - response = responseResponse - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(initialRequestDescription, "GET https://httpbin.org/get", "incorrect request description") - XCTAssertEqual( - finalRequestDescription ?? "", - "GET https://httpbin.org/get (\(response?.statusCode ?? -1))", - "incorrect request description" - ) - } -} - -// MARK: - - -class RequestDebugDescriptionTestCase: BaseTestCase { - // MARK: Properties - - let manager: Manager = { - let manager = Manager(configuration: NSURLSessionConfiguration.defaultSessionConfiguration()) - manager.startRequestsImmediately = false - return manager - }() - - let managerDisallowingCookies: Manager = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.HTTPShouldSetCookies = false - - let manager = Manager(configuration: configuration) - manager.startRequestsImmediately = false - - return manager - }() - - // MARK: Tests - - func testGETRequestDebugDescription() { - // Given - let URLString = "https://httpbin.org/get" - - // When - let request = manager.request(.GET, URLString) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertFalse(components.contains("-X"), "command should not contain explicit -X flag") - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - } - - func testPOSTRequestDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - // When - let request = manager.request(.POST, URLString) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - } - - func testPOSTRequestWithJSONParametersDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - // When - let request = manager.request(.POST, URLString, parameters: ["foo": "bar"], encoding: .JSON) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") - XCTAssertTrue( - request.debugDescription.rangeOfString("-H \"Content-Type: application/json\"") != nil, - "command should contain 'application/json' Content-Type" - ) - XCTAssertTrue( - request.debugDescription.rangeOfString("-d \"{\\\"foo\\\":\\\"bar\\\"}\"") != nil, - "command data should contain JSON encoded parameters" - ) - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - } - - func testPOSTRequestWithCookieDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - let properties = [ - NSHTTPCookieDomain: "httpbin.org", - NSHTTPCookiePath: "/post", - NSHTTPCookieName: "foo", - NSHTTPCookieValue: "bar", - ] - - let cookie = NSHTTPCookie(properties: properties)! - manager.session.configuration.HTTPCookieStorage?.setCookie(cookie) - - // When - let request = manager.request(.POST, URLString) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - XCTAssertEqual(components[5..<6], ["-b"], "command should contain -b flag") - } - - func testPOSTRequestWithCookiesDisabledDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - let properties = [ - NSHTTPCookieDomain: "httpbin.org", - NSHTTPCookiePath: "/post", - NSHTTPCookieName: "foo", - NSHTTPCookieValue: "bar", - ] - - let cookie = NSHTTPCookie(properties: properties)! - managerDisallowingCookies.session.configuration.HTTPCookieStorage?.setCookie(cookie) - - // When - let request = managerDisallowingCookies.request(.POST, URLString) - let components = cURLCommandComponents(request) - - // Then - let cookieComponents = components.filter { $0 == "-b" } - XCTAssertTrue(cookieComponents.isEmpty, "command should not contain -b flag") - } - - func testThatRequestWithInvalidURLDebugDescription() { - // Given - let URLString = "invalid_url" - - // When - let request = manager.request(.GET, URLString) - let debugDescription = request.debugDescription - - // Then - XCTAssertNotNil(debugDescription, "debugDescription should not crash") - } - - // MARK: Test Helper Methods - - private func cURLCommandComponents(request: Request) -> [String] { - let whitespaceCharacterSet = NSCharacterSet.whitespaceAndNewlineCharacterSet() - return request.debugDescription.componentsSeparatedByCharactersInSet(whitespaceCharacterSet) - .filter { $0 != "" && $0 != "\\" } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-root-ca.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-root-ca.cer deleted file mode 100644 index b5ae743956bc597fc29a8662f5ec08503ed5c5f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 988 zcmXqLV!mO}#B^W*GZP~d6CrG zy*T|~-Q)wykIUuQsn7d3T_Yf`;PA|c@3|EIrb}htXz6jwnDMMHMzwE2@03*naV}L7 zO#xT48a6M@t_;k(BCmG5ri}fo4!eBt#)u1+heH{E&y{=luswY;!&~(=O0$y`=lUfq z&@nHPGYR{18`a?o;vgO-t@D`@^Ip67-Vh9dha^&geLj%R6|vuKsb-4AOl=UrZ#o7K#4k*nem z|NHg{TF$#7{VpC3K5N7-u;}i&YNeh{hqiyc8ndX{Wy+tF7bo`H`bGUx{mC>p=y;Cf z*PrY$SAT~-w#Zn<)%!i{Xvwz=zn5I8yOy~$wCCi~g=~8-dUn>ozxVE7)SM8zUmI6O zhomD!BhUX5K3Qsw>tClTTdvXxYE= z=0vV@8IuDaZNHw~x5n-Ww@aFM{*p9ZgsjCV&@uU&KV(Sm1Rk3YBiDG&kxu0m-9 diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca1.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca1.cer deleted file mode 100644 index 38596c5924ab478f3de0a4779a86685fe8ee5c60..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1025 zcmXqLV*YE;#PoClGZP~d5E*c@acZ@Bw0-AgWaKtzoNOp%Ai>5Q%EHVe=$Mn3o1d0h zl&TPvpI@Tj>}V)tAOMo%;^BnL8S(;60E%(*u!N)*ml*OJ@PfD;JZ%0&spnC%u5G3e4t$3#Ha)e z4|o7GvNA9?G4eAQG%<29H8Cap!Wxs`dl93XNN~FXem` zx@-UU?9V<)tJYsDaJI-#$ebsqvniqEU)Q;foo_BIagO3TcViL1gM6Z6qW@WqFPC4$ zu^c_&H0kB_1ux27`gZd@Tdx8qr z`WG<|uYKmlPo)6W8PBdbzq(`<_3t`>l6$>x}%AWFI|CjYFldAI~jB+E*J0&AeCeN%& zn;_D^XV#xi35g|oD_`o&6K*=VS#;La6Sg-T@BLf*SL8roZON%kPhW{uT~64#d)>sn zI|KMKGQ8DZwJmx-vsd=z39%C%?aEJa?DyPH>2O+vf1T}9jl`L-HLThTg5o#_JhAY QXD*#^SykQA?i*wc06eg6RR910 diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca2.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca2.cer deleted file mode 100644 index edd135c7a9e6a1e1248fdbe53912c86937eca237..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1025 zcmXqLV*YE;#PoClGZP~d6C<+$Hyfu`n@8JsUPeZ4gT~2*QU(%i%%LpIJc5oniMjb{ znMJ7zLHYS53eJv(LIwgLIW8VfxSSy`&;+0uHxEllYH^7nzX30Z%fZ9uUzD1jpJ&Kz zzzGsy6J`nxHWW1A2XWYWI0EvEN^%nOQVbOh#@%H>Ur zO2F`d2QVWm19KB2KZ8LNBNtN>BO}9^6${rcs{6ffee7?GDI0#c|7Ps@an#_|Qw5>5 zpQPEd)0|!&{@phD^86r?IairH&bD9v^2RxNTVKcgANEtW@HCqq_~F57;oJL_Q6?vB zKf7e=BPsEZ`q^`sTjy)l^?!`qT`);XzF~@h!@G+Xi)W-SUnsKfpzno>h_w4*NndV6 z+>+=Gwc5JymgBFm!0x!eo)Y!##nlPig|8iyCZ%fbpLum-C;wEtnHzRknhJOR{d_w$ zY)V4H)GyA03A0E}7*($Su)~CNs*0hA#Z7b7j$6#x#}mApO=}Nlw%K;noO}?r zG~24;YEHnZnLXm}&CT=FqC5) zW*`L-;0FsZGqeA1Ffal}u&gRbK*Kh3we z)?GKL?r}Mk`hEKW$$66U1>9auW%F-JUEw~n?b;Ss$==?hTsmUhm#1B^a#Y@2Qle*Rlr>s^a2{=CkeE@t3ZAd3lw8`ZSqb?_vhqo70u51m3A; zwzDqVnHj(Gp6n6^or~APuWRmD9+}U1*FN`6^TJ1}_iF#OwFYcmwy8ug!0PbliTNyB RFDICuk`!U#t9f!@KLAIsYnuQ7 diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/expired.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/expired.cer deleted file mode 100644 index af5e484327ddac5c36004f3c945bf668814c8645..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1052 zcmXqLVv#UtVrE#t%*4pV#K>*H&Bm$K=F#?@ml4QmoNg#*Aj8HS%EHVe>X?(5o1d0h zl&TP%nVy%Km#*OKXk;j4AOMo*;^BnL8}b580g7?+u!N)*ml*OJ@PfD;JZ%0&sp-F-B(hcOq zc@0es%ngkUj7$s-jH94jV<^|4vC~k%fDdFaGY`9KMFG&+DFfx!CPpP-2*87tk(GhD ziIJbdpox)-sfm%1Vdu9SGv)MbGVW~+cejb3?)cxMrltFQ|8)J{XX3B(+clP?WhW?4 zKkQ?*xP9loiumhx*NlCHo-X)wa_wjJ56-s#>T`GUN4@N=*GyY?Pr0fuS>%l6r{*vJ z|FMScV+_75tC>FK*QeLD&-C^;mYrkR#2LBsz=6|Q3+)eoKRqpLYx=CD0-@RkWy_EI z#%IrFT8+>W-ITk_KbD7r;;WoQ1q8^?ToMkF$;KAU6!2F&%7cU?b*V! z*MFhfj?J=1>rV1NHW1*vIOEWYmkN#HpR;e?t-AB_*KNBW<*&|tej%h*V$|SP_G{X@ z1W|i=w^w_8KBhXnEEdz}J1 z8yrE54E{IDMgK}>P1(26Mun=*)S0{w zzovZ>ZvWQ#o2z@98NX#C$EpSWX?{~o{EyFm{QZ=$tP{^lHP44TgU`>OckhLokwl*T&nu@tS-8z~8&s|1Ye5 zv+6hdkq`yJKzn=Z0FGNi7d(ynVi4 zkA-xPQGZx0j12~S?+9?9-b0j_9Xwg8Gi?xlg*+vf6uPDseE-UAJ=xhpv*0n Tf48xj{1J&y>gX_zk=X_SmUegD diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/missing-dns-name-and-uri.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/missing-dns-name-and-uri.cer deleted file mode 100644 index 9e4ef3cde3cd05fb909ce62827200b32a5c1f554..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1015 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 Zz_9Dp|69*IZBHC#jlZ9<{JL}B4FD>YcA@|P diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca2.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca2.cer deleted file mode 100644 index 709889db19b2b174e41d56d6e56ed9b79e14bf19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1058 zcmXqLVv#dwVrE;w%*4pV#K>X5&Bm$K=F#?@mywa%pmDmPoPi7*b0`ZlkEml#Vs3s~ zW>Km_aAta5W?s62v!jurkbwY5o{NVQE^o*SGzBQe&BGFsT3lktZ@>%Ua`3SE7p11> z=NWPvaDoKbgqcEv4FwJOK^%4-j)454lAOf66hlP=dAKV$8O4N3fTlPk!mQWJFG@F% z6X!KFH83|cGB7eUH?@co=QRRy4J@HtgT{VCF#{2h!OT3oAor%GC?r)5q>Gyvm4M*@ z4_ro82IeM4eg=akMlPl%Mn;BxD;3Y(X4IQmXQdXJ)6QmJWRNqTEmpMIO8w@n*(MGN ziXmGc_X^9u4RQE%WYzAOE9Qn|eb~95Gt}d{K+)}WMX#<_*o6hASC*+V?lZf8p)`-F z_0V7K?BjuXO+mMIrylQMDOjH~U!}5Ddq>_|N&l#4_a{9`pIdyA@sW{su-w%!%g0Bz z&OI1#$_Y@AzZ8~Z%(&jOK2iB%7}nJ)LOSyHEP z+qFJoZZGpJL8d+bbpxmMzBWj{bf##B$p1oCCT2zk#>KS;)!_6X%g@O8pM{l~nf-Tz zfe|nsWmQ1}8U|`?9NKJ*tgP(JOmG$>8#_phiJ1k)U^OrS=@A6!(K66z11BLplqA%I zMGQHDxWN&`$lxgJQoiKt1*-AMzT`mUA`%xyZbc3bk)OL}s%a`W;nt%FjhBw#h81H#mafbG9 z*Nccc?K)_KJJmT4OE6wS8Y%$BScK4ToPx>##M`t(2BvX-aZxBHdFe!ug}FTuCv zHivgie|LTQswp!od{Q244hvkmP$z-uKEuPvCdP*L*{c^XI~;g&(;nFybLA#0$NtQ0 ZV_i4>{92YXIf)5E8;;F8&;7)w0svYfaTEXm diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/test.alamofire.org.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/test.alamofire.org.cer deleted file mode 100644 index 01c404b34506facde5b7e4bc537e650549a3f36a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1063 zcmXqLVo^3|V&-1J%*4pV#K>vD&Bm$K=F#?@mywa%pmDmPoPi7*b0`ZlkEml#Vs3s~ zW>Km_aAta5W?s62v!kJ*kbwY5o{NVQE^o*SGzBQe&BGFsT3lktZ@>%Ua`3SE7p11> z=NWPvaDoKbgqcEv4FwJOK^%4-j)454lAOf66hlP=dAKV$8O4N3fTlPk!mQWJFG@F% z6X!KFH83|cGB7fOYq^G{m(9!8vcE6Goh&< zzV)SX)ZO`Bac^$rDLb^+wD!3ji$8dZ@1=su{TXwtxElX6WquAheSFQzj8jjvdh!hu zBULV>&(jI}W1GE=b(J{B|NpNzqE8r^&R%5u{NKvTuSX=*+LpXha4S9V_tvs+&bq3} z+>c*Znp*7WYkFy(AtNNAzqF5I-5aCQJMSkczCV`pn>Ev=IBa740w$g5xgJNIrkwhj zH+%Vl2O69a)zKZ*>A6QfoiV#u)5l@+)gUkL?i{Y-f5mzGRxuxR=nyC`Sz|#>mRb&dda7F|x6P#F&^_U<_6R6ObN3kRB}qjW#Ulpb3i@as+XM zBZ!e<`#OFHnQr6Mz_Yo#J(Xiidkc4;+PqL^S=avLE)#{#J!;(&lYVHV?z`+RXZ=ic=an-owfVJZj~nw}@71>P zhQC^`M?4mr9i0@VmExSnvQ&f1wqaw|`V9gV&lU$9n7aD#y=i5t|C{dSZ5KcL(Q~J5 zLT6K#0?$$FRkxqrxS`B8mn*Gr_fpPdj4ORMUp<|mbmZVyj!l2>D;+-99#O}f#N7O} z%%W6<;LP;A%)E33XGbGLAp-%BJQoiqT;7luXbMn_n};PNwYbEP-+&jy<=|oSFG@|% z&oksU-~Ug(c=>rYN}h1uOU^=B5sm zlbaZofB^vyT}D<0<|amd27@L>E~X|%Muu~B7e2(DFP2UJcj>iZ-{i_0zt=X}O}}uL zi_I= z4G@^LV%e(6iz5m`&g_(km|Hv1b-~1y%^bOFS6S<%t2JHutZ$<8N3~GQWRL37f|QV5 zf7e}D>Ti^`?Z>kN)t>7MPjiT#J{fIz*JbBQ=kRlBUpx+fw^U)h&0OWJefjjJ&E`dG zHnN|s4;D!0Hg2_iGvVo;J~gISYt^MEyRAG{D*B<~sHIar6EhKK*%`rv-0j#1ubNzPw@S*@oZeS1xgV#&5ht+tXqu`;KHEYxP$SC`rU-oTy8~$p`S_io#YgUhl=c4XLc#p%{**7&-}NDJ(EkM f@b9xZr!4nfd%ZjPY1|&O@cWB>M6#Dy-B<_!xbJV+ diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-uri.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-uri.cer deleted file mode 100644 index 80838d4d7c0caa339d31118862c0c87e0f1cc6d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1034 zcmXqLVqr6AVtTiLnTe5!iILTSn~hVe&7-99#O}f#N7O} z%%W6<;LP;A%)E33XGbGLAp-%BJQoiqT;7luXbMn_n};PNwYbEP-+&jy<=|oSFG@|% z&oksU-~W-*SW(%JPs~=3)`|)J{ zZ@a*MUw#)nFPmymIy-v7rIHrAGkdf86(7e%FG~HVEa})aCDV1a|6|2{2?;ZU*D%p6|-%b2B8C$zVEEPhy0=$HBG zZp5Nh6PV1NiYGO&geko|wr`DB!Wy9|aw#5B`@}UlpF|7Vr2G6*In{1Zc~|j{PGgL~ z3G2YiNsFf6d-F~rdA-rXeV#jumh5|!KD*k=pNW}~fpKxBK{_}s$nrBX{%2ujW@i80 zU|C75W3U=1fb6N_2YUx&2=zFS)W^ z;_Qn!``$-ePR=g3We=>F)l?ytyX-)~;iv~p&E0PDf|;is&|t#Mxw(noN~;Qm zoGckGu!{<|O1TP4c>P_yQF}Xk#P+hX6Qz0mIxcE&8Rq9?*lFI{9T*(+$NTW|2aV6z zvNla|JE`=kPq6OMl-=>g>cz%wb=n{HH}C$>5LUzVEUW+b(P=90TUNeYbVGcX(y{9) ViJ}EcpL>p^?$Mta5~Lz?4ggBDYXblP diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/wildcard.alamofire.org.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/wildcard.alamofire.org.cer deleted file mode 100644 index 959a5d82d677e0a185d805604dc3fb5465f14e05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1054 zcmXqLVv#avVrE*v%*4pV#K>j9&Bm$K=F#?@mywa%pmDmPoPi7*b0`ZlkEml#Vs3s~ zW>Km_aAta5W?s62v!kJ*kbwY5o{NVQE^o*SGzBQe&BGFsT3lktZ@>%Ua`3SE7p11> z=NWPvaDoKbgqcEv4FwJOK^%4-j)454lAOf66hlP=dAKV$8O4N3fTlPk!mQWJFG@F% z6X!KFH83|cGB7eSFtLmh=QRRy4J@HtgT{%55(Z)*gPD2wwe(Ol50smm7?pq_0S{hA zRtDxKMt%l^CPpr%CPqevOl@{=DX#^g`;Wd2DS_>G_HY2csE!8`Vp;?5aL1Ul$_(DKY%b ztNkBNzL@>M_>%0J7iO`~j&3=i5%ya0W$0_i*9<>eJB~KXz6dM2A@l9mo=EQ^ft^bq z&Dpm$$$IMNqW+f4g~yd6PxO3cynm_gOEWVQGb01z;&OvhaEg%SXJq`(!ph9d{=31z z2pE&HsvrRk12r}dZ8k<$R(574IE#^u9VEuY%mQPu8t8%a2!iye7$~)&CxRw)0pzIR z21gAegVDxw58qxtX?$1a#Ga0}C&$|oAJp7l8agGz$2!9`=X}CL^{=0IsOuhbk+EBP z(0TsTV}Z68?3Wv??{j-M`{#qdw|_s?vEJ1rboLM{hyLo)>4y@OXP3Gv?QRyFXD@Z} zs@5|VPOX^3aTg1HeCs+`pJ|#u_RRY3Ykl%W8B7Ou{7SkW_Gvf-d~XO`8P zjC~XPy5CsNU%w+m<@4TJ`Od8(kEi7x_nI;5`9uaZ-7H diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/intermediate-ca-disig.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/intermediate-ca-disig.cer deleted file mode 100644 index 14866eecc6afb3c1d2d0d6fc6318866853b3de3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1542 zcmXqLVq-FBVt%!NnTe5!NsvQ)Qjl53*AoE@5WsA}%f_kI=F#?@mywa1mBAp$klTQh zjX9KsO_(Xz+fdj*5X4~@=5i`ZEXgd+Ni0i*333T@xnve+rYj`s73&#F8i<2bG7Aeh zJ1RiLgYxrB6oQNl~`{Cvy%teP8|a+ zu$?^02s@2DjTD?yi%K%nGLwNW&d*Z_PAw|SOinduVpKx*Eh8%fa}y&!15licsfm%1 zVN=jaQ37(u96fz6WAC*4?=I$gKHb}@WF4ka)yy?hez;xTYDP5LT$4K$zVWT%m#-X$4&fhsHRb9*Q&5vypt=7J0 zQ8F$`xFFT!z~Pvq_ArwtMSN|*+vygGZjn6~cN?h+6)a!TeLuKqPD1g&6F>j$UNAS& z@oRBGpkhqspUe8386O_mH*_S%vdo=)bn%+#3njV1T`M^jS?)Eqi+VNZzWL?!!fD6C zTW?)GTEF1nj@k)YyZ29jcQe%H!_oWyu4tP~lvdC75}ott@;OW4dwY-k`dgyDY~gD5 z^EtRfeI|Fm>9(* zu!U7}L9xDp3`naWi>QHcqhN7C5in0CCpy4FA32Q!b2M`k(9d41j@?{&SCR#hpoKD(k5>9dGuR*^RbMnfoslqbab@c6AbyICgv2Ha_7dQpx)qn zxn_QxVzo!#oNy~M41KATvh?W>9o|p&&p+{UWR!pHL;X=i1dUEU&w~&Q1I;-*<5*8hE?vcL|O&V9Fd zxwh;x_xM=Xduz3xseJYRXVGdNdz@BH^PB!cRoPuWKJ={Vj&}*cO2-Yg#F#D_Nl2&h zx;njmllN#nqpZUj$6Gf~3HhmCxow{M=(jy%+pHBElJC8BdFvwkKPXuz$3wcNN%~o` z!F;*N+X^e!KlJW=W5fDHhJXL=_v^I}`*&wvFX&jACLwWS&z*hM;X+epmZpflmA6cO KzR8dO_7(t(kV-B9 diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/root-ca-disig.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/root-ca-disig.cer deleted file mode 100644 index e5e2343aa815011b5044128b849639f2971c30be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1389 zcmXqLV$C#YVh&uu%*4pV#K|yeN5}0AT?dm5c-c6$+C196^D;7WvoaV28FCwNvN4CU zun98-dm9QH2!c55!dy;8i6xoEIf-S7FhMS1E|<*W%yflBy<$B>Nds|^N@igJXGaBy zcu;4*IHwBb49)#I$S)@^iW}FUE}Z7ZUGMt)_7JtTU{ApbL)SN%={bEnJVnE z9a&yF?%l_%V#qPE#vtMS+I(A0de%HQD-6l+WGeRZ*^yIIKzvXkzmsxS~ zjY}qz!=|0~;b9Q7iI+Ni;&{%owU-T-?|Jd`VcNAzznQl|7Q1+! z&Yt(WH|_4s^Vd2Zzp+f}($vh&wvu^XTFX?(_xZr{y{9Gb&P~{KC@o>zMwWLcpSA6r zmFBSGx!~JISLW_->5(rEvI*|Jd%l6mKh>ck#y#M~>}T?g)lXbjM7Pd*bT8`a@t;;M zY2HtaLTaAm%-PImE52xxiO{vWO)ETiU#!w_*tbYb{{9nldBNh}6Sz{H7xC8oU}Fq5 zuHC@9}Ql}`Gee`Y>kcbvbt*>jThWlg@B($l^t?yx?hy{#f=i*o*lzn3?~mCDbY zx?;_@TMv&KR{y@}w)xVY^esstyEwlmZ^tN(mW2zxIO(|ttB=}vQW z3g79id#?E(tg*@K70&%#{o3Hd9pCjwuWnoF6J2=nh2g#z7Hl31r5?SybWg}KLh645 zUsLI`?I+oD_}>4w_&B5R$o6_Z(F>}XdzI#Dzh(XA=Dz0bfe%-#AH8`uEqa2mpIn&L z>kaRx?VhGAxa*U1TS>~)6B?!WWleWoGH3iU;$`|=v?t{-?UJ%hg>#$;31nFFm7uk)%le~((ozJI0Dq|XUT z)1QbeWS{L72>kJhGC5SVmOHzwVii>k}%Mx=kQ*?`rGL7_7K+e@G&NgUbR6_PRBP#=Q6C*zZ zP@IdYiII`v;L$}o;m>N%`hGf{*2widxjn-2iSTBHjMBa-xeX30F8oe)JSV9-!~0a( zx47&(qx@pbg&yD*&%IF)YFz{{?=yS>}be~Zxiws?jmN5jwCeO1{SmvG4M7&FJC z@0z@`CdlhCB%05P>16%5;uiO_XQ$5So;rJ|usVAw$AQe7o{{S`S*kVbj;F>hSgdtn zqSK_R?uVfpjdq)q0TZ0tUom1AGxH|Lwf;A0lTG^#H5_wlV6DsP& zI^rQ;1+$TiK}N#i1C6^sGchwVFfMLlJOd1o69%%t5S8U)5n~bQUh>UVuJ&C4@9jTJ zPcZGDt;ySW#6TV-t;`}}Al4wFvUHD?Mv|zL(NBY@lOOG#EaY6V(SRGIfS-khnTchC zK_!SI&r)PiU|_buWPwqeK}JbQft9{~a!P?AJcjg(OOuilL6N4PT$F?0=>d6|`VcXT zP>DsKFvx0E79ImGHV$nzMpjmKW<~>Lke~vKjDeH^9~+N$quj*F&$xh@gOSmIgN-e{ zkq4M<3>rINIv5#QY7D9jEMa^D#x`B32jEWD%}*{aKzIejL%7Sp7Os`4&5)4aftd%P zRWBvA2xv3Vy@D)81_q6S#RWyc{Ft2R087|ScvC%URtKhdMurHb`zFkX%!MC%ef3=# zb>+|e+aK1)w3jyb9)CD@+N@orpFM1CZ{K^p-}~OnF_&c$8WWdGu7Z{OjV z-t&DM!fkf#2)?<=cD4A~Gp}cAU(mc>rtG>s|H)zVZ*D>Be=hkZ>8a+Ntnzqn@82Wt zo9-9hTjpT4dhVMGQlY1AbhKVfkYHkz*zb(TvG9Q#ICx{Cl!=*};TW=jY~imwd@vCN1rF-Dlr~b8{|i0|17G B%wPZj diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.cer deleted file mode 100644 index a9a2bdb609daa7e839322e15a54b17a9b1fd2fe8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1016 zcmXqLV*X;##B^r?GZP~d6DLDgW5|QR=&l|EUN%mxHjlRNyo`+8tPBQ`hTI06Y|No7 zY{E>T!7vVoFq5;Rp`ZajNQPaQ!zr~WJ2fY@(ooAl10=*HtQeA7T#}iWuHc+nRFavN znVeXXTC9+nr{I{An49mGS(IuZC(dhVYG`C=XkcVuX6C)$ToV}tZ70wnBr+U}l*8bzo>F8YBBg8;!~smUdzShal3{mKiw zW$rKDX!iR~*MVgBSeBpF5kHs}KB``FXH#BSZK`X>v05R%w@i5cWJynb=A#}z-`5q@ zABho9nHnM>sl0AYRm_4HTfg@tZ{SE?hF}&z|Qx(p7TKreV6-h6@E{wyyk}m%XF&(C&tHVOMloFUMGT$*cQ* zDBEH*cY&gNpH)h^k&wDZ%aRW?UenW4f{@X{^sd2 z;Jdax-rZ%j^#p%Z4Ue6+t^;7P8ORpo4nB9n_N4y~0qnk-XZlNEX=WRA?vOvS*SqE9CAmmHJ- V-|XpppX}Djx#&}O&ZT(4O#m_vZx#Rm diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.crt b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.crt deleted file mode 100644 index a9a2bdb609daa7e839322e15a54b17a9b1fd2fe8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1016 zcmXqLV*X;##B^r?GZP~d6DLDgW5|QR=&l|EUN%mxHjlRNyo`+8tPBQ`hTI06Y|No7 zY{E>T!7vVoFq5;Rp`ZajNQPaQ!zr~WJ2fY@(ooAl10=*HtQeA7T#}iWuHc+nRFavN znVeXXTC9+nr{I{An49mGS(IuZC(dhVYG`C=XkcVuX6C)$ToV}tZ70wnBr+U}l*8bzo>F8YBBg8;!~smUdzShal3{mKiw zW$rKDX!iR~*MVgBSeBpF5kHs}KB``FXH#BSZK`X>v05R%w@i5cWJynb=A#}z-`5q@ zABho9nHnM>sl0AYRm_4HTfg@tZ{SE?hF}&z|Qx(p7TKreV6-h6@E{wyyk}m%XF&(C&tHVOMloFUMGT$*cQ* zDBEH*cY&gNpH)h^k&wDZ%aRW?UenW4f{@X{^sd2 z;Jdax-rZ%j^#p%Z4Ue6+t^;7P8ORpo4nB9n_N4y~0qnk-XZlNEX=WRA?vOvS*SqE9CAmmHJ- V-|XpppX}Djx#&}O&ZT(4O#m_vZx#Rm diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.der b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.der deleted file mode 100644 index a9a2bdb609daa7e839322e15a54b17a9b1fd2fe8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1016 zcmXqLV*X;##B^r?GZP~d6DLDgW5|QR=&l|EUN%mxHjlRNyo`+8tPBQ`hTI06Y|No7 zY{E>T!7vVoFq5;Rp`ZajNQPaQ!zr~WJ2fY@(ooAl10=*HtQeA7T#}iWuHc+nRFavN znVeXXTC9+nr{I{An49mGS(IuZC(dhVYG`C=XkcVuX6C)$ToV}tZ70wnBr+U}l*8bzo>F8YBBg8;!~smUdzShal3{mKiw zW$rKDX!iR~*MVgBSeBpF5kHs}KB``FXH#BSZK`X>v05R%w@i5cWJynb=A#}z-`5q@ zABho9nHnM>sl0AYRm_4HTfg@tZ{SE?hF}&z|Qx(p7TKreV6-h6@E{wyyk}m%XF&(C&tHVOMloFUMGT$*cQ* zDBEH*cY&gNpH)h^k&wDZ%aRW?UenW4f{@X{^sd2 z;Jdax-rZ%j^#p%Z4Ue6+t^;7P8ORpo4nB9n_N4y~0qnk-XZlNEX=WRA?vOvS*SqE9CAmmHJ- V-|XpppX}Djx#&}O&ZT(4O#m_vZx#Rm diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer deleted file mode 100644 index d22b9ab..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID9DCCAtygAwIBAgIJAIqBVOBRW4qMMA0GCSqGSIb3DQEBCwUAMFkxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoT -IVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZTAeFw0xNTEyMTEwMjA5 -MDlaFw0xNjEyMTAwMjA5MDlaMFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTER -MA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVz -IGluIEFsYW1vRmlyZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJy9 -FTR4QzhYyo2v2yv8SwlBQ32MHQF8Ez1J+YBsyZjcTVOGJtyPxrbJxGuRhyDzKUqz -X/zTsT+JPvZQXXBmyq0l0DhCcK84cHyVLcdEAzukam85EpJRWzSg8kDKzuTx2oLk -X8Zdcj7EEtYWV/5+/YahM4tXYhg+Lqm6koJEVHMld6zfedC7HN+jsTb73IrAY0dd -BPl7WPgDIPEl0kcGI6F7NS0+CKsgX412E5+TGUkvA8VI+e9+cn/EXBdklVQQGSOu -rHpcoOi1VqnQI0hGXlFi4MpamwMG2yArIUU0TXZ7G+/AbUYiGdB6ogvg5UTCfyZy -UXVljSJyzYmLs7hXQK8CAwEAAaOBvjCBuzAdBgNVHQ4EFgQU9EaWHrJGYvpCEW5f -CUEMRk9DlN8wgYsGA1UdIwSBgzCBgIAU9EaWHrJGYvpCEW5fCUEMRk9DlN+hXaRb -MFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkx -KjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZYIJAIqB -VOBRW4qMMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAEeHeXNZGHJW -VImbOHrYmSsZ5jFnzjGw8ynkOrcoJzaxg3OHoo/pNCQ7KcrIa5YPNFiNoaSa/Lzn -LBt6HkM1Vi1rMaERHLWp/W5ruInCu4CuVtQshdNcOEofJ03wdrQylOBZq8MZkTVn -NcqUFg/sBANM/9WhafVi7XaUjWl+V7ZnzdbKP/ywvsiJ+wyKMA7Wt19HMrV2dTBz -CD4vxpwOBev0oTp2NvAHdgNkeK52skHoz+MY8uivVJQr4hqLYJPXUyAcVZCaqeK/ -hxDkbRo6eZsYcjTRqMKtGMVjHHd8alXcVJwcuWkhUYxy8jRf0kFj/9mMie9jRokJ -ovKLbNJfEbI= ------END CERTIFICATE----- diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt deleted file mode 100644 index d22b9ab..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID9DCCAtygAwIBAgIJAIqBVOBRW4qMMA0GCSqGSIb3DQEBCwUAMFkxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoT -IVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZTAeFw0xNTEyMTEwMjA5 -MDlaFw0xNjEyMTAwMjA5MDlaMFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTER -MA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVz -IGluIEFsYW1vRmlyZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJy9 -FTR4QzhYyo2v2yv8SwlBQ32MHQF8Ez1J+YBsyZjcTVOGJtyPxrbJxGuRhyDzKUqz -X/zTsT+JPvZQXXBmyq0l0DhCcK84cHyVLcdEAzukam85EpJRWzSg8kDKzuTx2oLk -X8Zdcj7EEtYWV/5+/YahM4tXYhg+Lqm6koJEVHMld6zfedC7HN+jsTb73IrAY0dd -BPl7WPgDIPEl0kcGI6F7NS0+CKsgX412E5+TGUkvA8VI+e9+cn/EXBdklVQQGSOu -rHpcoOi1VqnQI0hGXlFi4MpamwMG2yArIUU0TXZ7G+/AbUYiGdB6ogvg5UTCfyZy -UXVljSJyzYmLs7hXQK8CAwEAAaOBvjCBuzAdBgNVHQ4EFgQU9EaWHrJGYvpCEW5f -CUEMRk9DlN8wgYsGA1UdIwSBgzCBgIAU9EaWHrJGYvpCEW5fCUEMRk9DlN+hXaRb -MFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkx -KjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZYIJAIqB -VOBRW4qMMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAEeHeXNZGHJW -VImbOHrYmSsZ5jFnzjGw8ynkOrcoJzaxg3OHoo/pNCQ7KcrIa5YPNFiNoaSa/Lzn -LBt6HkM1Vi1rMaERHLWp/W5ruInCu4CuVtQshdNcOEofJ03wdrQylOBZq8MZkTVn -NcqUFg/sBANM/9WhafVi7XaUjWl+V7ZnzdbKP/ywvsiJ+wyKMA7Wt19HMrV2dTBz -CD4vxpwOBev0oTp2NvAHdgNkeK52skHoz+MY8uivVJQr4hqLYJPXUyAcVZCaqeK/ -hxDkbRo6eZsYcjTRqMKtGMVjHHd8alXcVJwcuWkhUYxy8jRf0kFj/9mMie9jRokJ -ovKLbNJfEbI= ------END CERTIFICATE----- diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/keyDER.der b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/keyDER.der deleted file mode 100644 index 969657d561fdd4901b57f95c9d509335fef9149f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1192 zcmV;Z1Xueof&`=j0RRGm0RaGi@<7VYT?F}iSoi}V@g>qn1|y++H7z~}s~}&Eb`zhI8A&e##Yp+@esX`rTo+`O zR1g^>uB>`opy;($sn8=xMqW{3;L2K?0|wh5DrZI@!}QWtvT>*jO;WNqeIi7x>S4OT$bZ`x zvNczIX|&u-A<40-pbpjC{m9oGOf23mX+4o5fYExP{d; zGJ(G9d|848aah}t%27%APx8K1)U2oYrX_Z>jjTukso5s26+Pby^s0LzpBxGU^t1@V@@MK+P>Zx0#`hoHhJJ9Pv+ zu2}wruS#Cc4A4*WjNN9!C*8+io z0L2+&mvfMI=onw{L{9C4>sJWrVJIh3v+rvNSVFze6wZtVqjAB!!H;OYyO0?AV)SRK zQ`Yw4rZ$F~6ai2LhmMk837ev$1(@3@Y-H8Ur;F{0o?T4SVd;0ZxhJadm+bz=WTga} zBrBY>`{2w-j_>e#yyTr>(@Vc7RO5kQ=>ma)0GktpG{fp*3ld zf-zEO^BdvLEP}yz$&6L$MtK5b(KCLR>oB$Fw<_MSU8Tg@Vh^R4AvT9nsl~r$=Ydv>0~^pc?XR>{*L-SKCzAt>#v%t8!Bw2Rj zq|5ViZV=0+HLCdJIFbQsL75)%ea}Lj?lat$27Apl#QwyL!zk%aK>|SwuSC;2T-`Q(3 ziwjdtF8ze4+OU|dXCGxL#O4jp-)^E{lI!uJEGkvIp%UqYtgdW zGSO57>g8>oa2-!Yb!JB>P8gb6L+e(-#>>2PJqfIZUrNROa^4UT9MjdPbtD`>)P+#H Gr7sXSPD%s- diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/randomGibberish.crt b/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/randomGibberish.crt deleted file mode 100644 index 23d1360db50cee1c187393d79d496a0e65c00b5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmV+b5dZIX%2N6t9SajNNvc3?vjsc!=(n&Im|f#R&sbYrIMLrhJyk^@mFhK%Fe#iJ zVq{#6xvPw1e}P$>_w%SIQwBi4vuWM*K+t!mJq<$nx!^+^J#Vj_k`yKTFVwR+RyjI* zdwb3B(-Y$-sh$*aK0PjunNpzvCX+pT2zJqzA3u1-wA@CHqyvWBi`9tbDan4ncr>_) z#Vb@zzzoCu@DUjbd|Qb7`w7zwd$OY( zb#%`C@}YSAmy#OAkj9O;IuR`pWz%5^wlvN;?WQc84rNLGq&Oo|9J7HAK89bQWEcjv zpVLTete?wD6uw0{=d%Oisn}i*z$kxErT|ec`-;q9R09g$UKhh(ucELj_t0TMa76|5 z_>Uxh4)&U0#nUEfjVp{yS#Ke9`_?96$G^v^+@^|Ykn=TTMG;dhpik?XT|cp_x=&}{ zUG_wm-%j!;chf|Osc&5k$aiWjbsd4mA(xllD3gxA&2%I0uuMUwf;F^jAeV@rM!(s^ zTI%;;4Zo+Ki1p%dV}lf0DSu|>FlVdNEp4DH<7XHO?PmZ-vr0z8QTi0 zeD)Nd{#t zG2)}-H%Q7Q6}t3fi}F1>wp#4(OP|p$+=HJKi{D5X9PZt6ROB>tB}08>7TEgi{3nl|&b_D@JyY zxes;a7P=i2ky(tIg_1&&H6z6OHNbs%f&Ibf* z%evyr*Vx=l<4|$hd2{qo$sk0I$>#4WE7-kt8880a_nRL-@T6oBBS*lIyf;v&ThqK< z-SAA$O-tj7ReJ+y`C5JZMLmH(2i6q5gi!&`LNj12 z7+N8Kw%OJ^Fkesq8UEW77b+DDx<-d$@>p*{eOf`!Wj7cN zRWSlGUKq<(B7f|S4PoqKnt!5uZPuYmyVkAP;D&oN>}1#L8K|rvo*g=gi~r`8qz2vy z`_AYe=Zr}BSu*xZc&6)@FRAg?cTV)Ft{@sB#oFiAJ$;IH?O!c`pqE2YwmY)_%XeEQ z3(lFy!ycxgkvE4wU^8!@c*N!3uGRTBohl@sb)@p%<#l(x1p~j9A(Y$m#e4Y~Ot|nE zSTMu8gQq^4P}*egaO>Uv{ejO3vN%aE2uvrXJ0pcvZl!rI8N0Qjj0d0#1_Nf63C z)qZc4!yzqusG|;D{Oyg`(wX?j|@MRS7v&^>hQX-KgfIgPp#iaSIGL z8T&!wj_^EjR603+u0nb-Vloy!LA)xjsinH{deNafvPZDaxxyDYj4@_1V&p5Z8l0o4Bu@Z+5&bR%C z)n0VE>;$l?k)h&5Sbk)2y)A?P?ym4j_Lk-c;xInbLa_FUWUa9M`i7;tYdMq zw@$?qH`o3-1Un<13VSoE7P76=DzJ=SP!0p81*NdO-jkA7J;k+JZP+ynQY6Kc$0<)p zKIm0n(0p8(TjJLk4xtjS-HAF^xu?PNfE@T&*ULDZ`HbHXkg7Q^(lb30A6KsN36;~| z3HJ1Z^^;aPLIQ~=44!8`lbCh%9NG}kDBevn++%k!nAeV|adWtp^I-fxlscJH;lM+$ z-Ptn+e6?TR6)w;lxHiyZ#sUzw^lNjvsB9lrW@FfJF zRG{5%-u!YCrbBzc&d_QVaI*0IAGgtXo=xLBg&;sa^hr4bdgaaYAhx3iZ;IhKpG)AS zAwqk|d81v|90*Uv9I3Xtjx5|`FntOvZ;aZ*hvDQMj!0Jp9g)f}a`ytKu$S+Rkpy2I zkrs^J)EL+FpcexC8uwP}6JbYnA7eZ5Dj!*u?`+ie1v6*zOh>zt2`+}logY}YO%e!h$0Rs@F?iWi zW&a&x`jyPqqWM!jHModWbXHty|85qV{IjhnJ1eae2NS&lYbs10Mwz+J8B7i&QJs}&C&=aZ2?T?gqF;}d=bd;eHBl{zg-)KG7<&MAaV z+9oaDXA41~?0b&YU4n_z?B>zaxD>VZ3ekPoCBBEpgx926hTLa%bhvwYUzO)8vUSS3Z`(y!b)F4s4$2^f7e^j43lg{@53XUyV~+Tx*Bo9AeLDyD1^HCG|E-{}dS2ci z8Y`(W+*5pQQ*2;OmIz*=F#uzKXD+FC6fi^9`p`sqw#X8QIcYmd2^Er`p|==#(OlQi zW6^IUvPT2xXnpOR#w;lzh~@RuD+SK12@57j8FWiDyg_alNkvnu&53I~Bue{@x_$Te z=SMmU=Hrm-qS~yYz#}W<4Q;`gbkz5lMP#QG3Z5)(MCiSl>q7Vb^T6>k_#pn}a;lO* z#J63V^qLCfj)aTwnvk~2EPCJ#`h@#=s!=#M@&!&2x*B7rXGUy!28WWFaa}))W|ziF znZC0>$x6hMyJj-&A>lU|-eWeYW>NQh?}mc1_A<@0EV|9XCJXf6A&{c${IWitoYBXj zylVdAB!jpmMij+yH}5bP7vAi70TEfe_h^dEZMlfsA!Qa?k`6hm^~n{wwW?qJgh<#Z zG9A|<2+hlGF$h*U#rWC?!I0FZze&>MG};}bKPM7b1*C%(mJAFc)W8rjjC0%dErXzt zlwv{ zojN2J9;^w7*w2`rU6!6Wo#4$z*eU}R0kJD)=;}Ht2OGC@dC5^Fv%X+Fy8!(=eB~aw ztX8VXxTm|8!-=UzXERZxFZ?UMSzVe3zyq5nG#C{m_zv(wLW^X8KkeGqygU<|9M+Wd zz_9}c?v%Vh)%e(>du!#_TEb2?r1LY_B#SJ?R!(eG zXK#&f7oMG4SNXPDLZ|j^*^&3G7v#6w2WQ=$dZOvNflQhw`?i8(c8J#xji|+At5kC?s^-oAl-Y diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Images/rainbow.jpg b/Carthage/Checkouts/Alamofire/Tests/Resources/Images/rainbow.jpg deleted file mode 100644 index 91224688e903ce6a71dde6055be8c85c40e55c01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16104 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

>!eq|SSG5b%m{<7>p*+qr53kMe$j7xB3 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 diff --git a/Carthage/Checkouts/Alamofire/Tests/Resources/Images/unicorn.png b/Carthage/Checkouts/Alamofire/Tests/Resources/Images/unicorn.png deleted file mode 100644 index bc504e55c52c14246f7f86adc729316535b24cef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 41646 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 - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseData { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseDataReturnsFailureResultWithOptionalDataAndError() { - // Given - let URLString = "https://invalid-url-here.org/this/does/not/exist" - let expectation = expectationWithDescription("request should fail with 404") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseData { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNil(response.response, "response should be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -class ResponseStringTestCase: BaseTestCase { - func testThatResponseStringReturnsSuccessResultWithValidString() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseString { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseStringReturnsFailureResultWithOptionalDataAndError() { - // Given - let URLString = "https://invalid-url-here.org/this/does/not/exist" - let expectation = expectationWithDescription("request should fail with 404") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseString { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNil(response.response, "response should be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -class ResponseJSONTestCase: BaseTestCase { - func testThatResponseJSONReturnsSuccessResultWithValidJSON() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseStringReturnsFailureResultWithOptionalDataAndError() { - // Given - let URLString = "https://invalid-url-here.org/this/does/not/exist" - let expectation = expectationWithDescription("request should fail with 404") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNil(response.response, "response should be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseJSONReturnsSuccessResultForGETRequest() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - - // The `as NSString` cast is necessary due to a compiler bug. See the following rdar for more info. - // - https://openradar.appspot.com/radar?id=5517037090635776 - if let args = response.result.value?["args" as NSString] as? [String: String] { - XCTAssertEqual(args, ["foo": "bar"], "args should match parameters") - } else { - XCTFail("args should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseJSONReturnsSuccessResultForPOSTRequest() { - // Given - let URLString = "https://httpbin.org/post" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.POST, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - - // The `as NSString` cast is necessary due to a compiler bug. See the following rdar for more info. - // - https://openradar.appspot.com/radar?id=5517037090635776 - if let form = response.result.value?["form" as NSString] as? [String: String] { - XCTAssertEqual(form, ["foo": "bar"], "form should match parameters") - } else { - XCTFail("form should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -class RedirectResponseTestCase: BaseTestCase { - - // MARK: Setup and Teardown - - override func tearDown() { - super.tearDown() - Alamofire.Manager.sharedInstance.delegate.taskWillPerformHTTPRedirection = nil - } - - // MARK: Tests - - func testThatRequestWillPerformHTTPRedirectionByDefault() { - // Given - let redirectURLString = "https://www.apple.com" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - } - - func testThatRequestWillPerformRedirectionMultipleTimesByDefault() { - // Given - let redirectURLString = "https://httpbin.org/get" - let URLString = "https://httpbin.org/redirect/5" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - } - - func testThatTaskOverrideClosureCanPerformHTTPRedirection() { - // Given - let redirectURLString = "https://www.apple.com" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - let delegate: Alamofire.Manager.SessionDelegate = Alamofire.Manager.sharedInstance.delegate - - delegate.taskWillPerformHTTPRedirection = { _, _, _, request in - return request - } - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - } - - func testThatTaskOverrideClosureCanCancelHTTPRedirection() { - // Given - let redirectURLString = "https://www.apple.com" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - - let expectation = expectationWithDescription("Request should not redirect to \(redirectURLString)") - let delegate: Alamofire.Manager.SessionDelegate = Alamofire.Manager.sharedInstance.delegate - - delegate.taskWillPerformHTTPRedirection = { _, _, _, _ in - return nil - } - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", URLString, "response URL should match the origin URL") - XCTAssertEqual(response?.statusCode ?? -1, 302, "response should have a 302 status code") - } - - func testThatTaskOverrideClosureIsCalledMultipleTimesForMultipleHTTPRedirects() { - // Given - let redirectURLString = "https://httpbin.org/get" - let URLString = "https://httpbin.org/redirect/5" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - let delegate: Alamofire.Manager.SessionDelegate = Alamofire.Manager.sharedInstance.delegate - var totalRedirectCount = 0 - - delegate.taskWillPerformHTTPRedirection = { _, _, _, request in - ++totalRedirectCount - return request - } - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - XCTAssertEqual(totalRedirectCount, 5, "total redirect count should be 5") - } - - func testThatRedirectedRequestContainsAllHeadersFromOriginalRequest() { - // Given - let redirectURLString = "https://httpbin.org/get" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - let headers = [ - "Authorization": "1234", - "Custom-Header": "foobar", - ] - - // NOTE: It appears that most headers are maintained during a redirect with the exception of the `Authorization` - // header. It appears that Apple's strips the `Authorization` header from the redirected URL request. If you - // need to maintain the `Authorization` header, you need to manually append it to the redirected request. - - let manager = Manager(configuration: NSURLSessionConfiguration.ephemeralSessionConfiguration()) - - manager.delegate.taskWillPerformHTTPRedirection = { session, task, response, request in - var redirectedRequest = request - - if let - originalRequest = task.originalRequest, - headers = originalRequest.allHTTPHeaderFields, - authorizationHeaderValue = headers["Authorization"] - { - let mutableRequest = request.mutableCopy() as! NSMutableURLRequest - mutableRequest.setValue(authorizationHeaderValue, forHTTPHeaderField: "Authorization") - redirectedRequest = mutableRequest - } - - return redirectedRequest - } - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - - var response: Response? - - // When - manager.request(.GET, URLString, headers: headers) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertNotNil(response?.data, "data should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "response result should be a success") - - if let - JSON = response?.result.value as? [String: AnyObject], - headers = JSON["headers"] as? [String: String] - { - XCTAssertEqual(headers["Custom-Header"], "foobar", "Custom-Header should be equal to foobar") - XCTAssertEqual(headers["Authorization"], "1234", "Authorization header should be equal to 1234") - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift b/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift deleted file mode 100644 index 4b1f002..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift +++ /dev/null @@ -1,145 +0,0 @@ -// ResultTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -import Foundation -import XCTest - -class ResultTestCase: BaseTestCase { - let error = Error.errorWithCode(.StatusCodeValidationFailed, failureReason: "Status code validation failed") - - // MARK: - Is Success Tests - - func testThatIsSuccessPropertyReturnsTrueForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertTrue(result.isSuccess, "result is success should be true for success case") - } - - func testThatIsSuccessPropertyReturnsFalseForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertFalse(result.isSuccess, "result is success should be true for failure case") - } - - // MARK: - Is Failure Tests - - func testThatIsFailurePropertyReturnsFalseForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertFalse(result.isFailure, "result is failure should be false for success case") - } - - func testThatIsFailurePropertyReturnsTrueForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertTrue(result.isFailure, "result is failure should be true for failure case") - } - - // MARK: - Value Tests - - func testThatValuePropertyReturnsValueForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertEqual(result.value ?? "", "success", "result value should match expected value") - } - - func testThatValuePropertyReturnsNilForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertNil(result.value, "result value should be nil for failure case") - } - - // MARK: - Error Tests - - func testThatErrorPropertyReturnsNilForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertTrue(result.error == nil, "result error should be nil for success case") - } - - func testThatErrorPropertyReturnsErrorForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertTrue(result.error != nil, "result error should not be nil for failure case") - } - - // MARK: - Description Tests - - func testThatDescriptionStringMatchesExpectedValueForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertEqual(result.description, "SUCCESS", "result description should match expected value for success case") - } - - func testThatDescriptionStringMatchesExpectedValueForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertEqual(result.description, "FAILURE", "result description should match expected value for failure case") - } - - // MARK: - Debug Description Tests - - func testThatDebugDescriptionStringMatchesExpectedValueForSuccessCase() { - // Given, When - let result = Result.Success("success value") - - // Then - XCTAssertEqual( - result.debugDescription, - "SUCCESS: success value", - "result debug description should match expected value for success case" - ) - } - - func testThatDebugDescriptionStringMatchesExpectedValueForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertEqual( - result.debugDescription, - "FAILURE: \(error)", - "result debug description should match expected value for failure case" - ) - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift b/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift deleted file mode 100644 index 2c24188..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift +++ /dev/null @@ -1,1418 +0,0 @@ -// MultipartFormDataTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -private struct TestCertificates { - // Root Certificates - static let RootCA = TestCertificates.certificateWithFileName("alamofire-root-ca") - - // Intermediate Certificates - static let IntermediateCA1 = TestCertificates.certificateWithFileName("alamofire-signing-ca1") - static let IntermediateCA2 = TestCertificates.certificateWithFileName("alamofire-signing-ca2") - - // Leaf Certificates - Signed by CA1 - static let LeafWildcard = TestCertificates.certificateWithFileName("wildcard.alamofire.org") - static let LeafMultipleDNSNames = TestCertificates.certificateWithFileName("multiple-dns-names") - static let LeafSignedByCA1 = TestCertificates.certificateWithFileName("signed-by-ca1") - static let LeafDNSNameAndURI = TestCertificates.certificateWithFileName("test.alamofire.org") - - // Leaf Certificates - Signed by CA2 - static let LeafExpired = TestCertificates.certificateWithFileName("expired") - static let LeafMissingDNSNameAndURI = TestCertificates.certificateWithFileName("missing-dns-name-and-uri") - static let LeafSignedByCA2 = TestCertificates.certificateWithFileName("signed-by-ca2") - static let LeafValidDNSName = TestCertificates.certificateWithFileName("valid-dns-name") - static let LeafValidURI = TestCertificates.certificateWithFileName("valid-uri") - - static func certificateWithFileName(fileName: String) -> SecCertificate { - class Bundle {} - let filePath = NSBundle(forClass: Bundle.self).pathForResource(fileName, ofType: "cer")! - let data = NSData(contentsOfFile: filePath)! - let certificate = SecCertificateCreateWithData(nil, data)! - - return certificate - } -} - -// MARK: - - -private struct TestPublicKeys { - // Root Public Keys - static let RootCA = TestPublicKeys.publicKeyForCertificate(TestCertificates.RootCA) - - // Intermediate Public Keys - static let IntermediateCA1 = TestPublicKeys.publicKeyForCertificate(TestCertificates.IntermediateCA1) - static let IntermediateCA2 = TestPublicKeys.publicKeyForCertificate(TestCertificates.IntermediateCA2) - - // Leaf Public Keys - Signed by CA1 - static let LeafWildcard = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafWildcard) - static let LeafMultipleDNSNames = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafMultipleDNSNames) - static let LeafSignedByCA1 = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafSignedByCA1) - static let LeafDNSNameAndURI = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafDNSNameAndURI) - - // Leaf Public Keys - Signed by CA2 - static let LeafExpired = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafExpired) - static let LeafMissingDNSNameAndURI = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafMissingDNSNameAndURI) - static let LeafSignedByCA2 = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafSignedByCA2) - static let LeafValidDNSName = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafValidDNSName) - static let LeafValidURI = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafValidURI) - - static func publicKeyForCertificate(certificate: SecCertificate) -> SecKey { - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - SecTrustCreateWithCertificates(certificate, policy, &trust) - - let publicKey = SecTrustCopyPublicKey(trust!)! - - return publicKey - } -} - -// MARK: - - -private enum TestTrusts { - // Leaf Trusts - Signed by CA1 - case LeafWildcard - case LeafMultipleDNSNames - case LeafSignedByCA1 - case LeafDNSNameAndURI - - // Leaf Trusts - Signed by CA2 - case LeafExpired - case LeafMissingDNSNameAndURI - case LeafSignedByCA2 - case LeafValidDNSName - case LeafValidURI - - // Invalid Trusts - case LeafValidDNSNameMissingIntermediate - case LeafValidDNSNameWithIncorrectIntermediate - - var trust: SecTrust { - let trust: SecTrust - - switch self { - case .LeafWildcard: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafWildcard, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafMultipleDNSNames: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafMultipleDNSNames, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafSignedByCA1: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafSignedByCA1, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafDNSNameAndURI: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafDNSNameAndURI, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafExpired: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafExpired, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafMissingDNSNameAndURI: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafMissingDNSNameAndURI, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafSignedByCA2: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafSignedByCA2, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafValidDNSName: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafValidURI: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidURI, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case LeafValidDNSNameMissingIntermediate: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.RootCA - ]) - case LeafValidDNSNameWithIncorrectIntermediate: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - } - - return trust - } - - static func trustWithCertificates(certificates: [SecCertificate]) -> SecTrust { - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - SecTrustCreateWithCertificates(certificates, policy, &trust) - - return trust! - } -} - -// MARK: - Basic X509 and SSL Exploration Tests - - -class ServerTrustPolicyTestCase: BaseTestCase { - func setRootCertificateAsLoneAnchorCertificateForTrust(trust: SecTrust) { - SecTrustSetAnchorCertificates(trust, [TestCertificates.RootCA]) - SecTrustSetAnchorCertificatesOnly(trust, true) - } - - func trustIsValid(trust: SecTrust) -> Bool { - var isValid = false - - var result = SecTrustResultType(kSecTrustResultInvalid) - let status = SecTrustEvaluate(trust, &result) - - if status == errSecSuccess { - let unspecified = SecTrustResultType(kSecTrustResultUnspecified) - let proceed = SecTrustResultType(kSecTrustResultProceed) - - isValid = result == unspecified || result == proceed - } - - return isValid - } -} - -// MARK: - - -class ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase: ServerTrustPolicyTestCase { - func testThatAnchoredRootCertificatePassesBasicX509ValidationWithRootInTrust() { - // Given - let trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafDNSNameAndURI, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatAnchoredRootCertificatePassesBasicX509ValidationWithoutRootInTrust() { - // Given - let trust = TestTrusts.LeafDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatCertificateMissingDNSNamePassesBasicX509Validation() { - // Given - let trust = TestTrusts.LeafMissingDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatExpiredCertificateFailsBasicX509Validation() { - // Given - let trust = TestTrusts.LeafExpired.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } -} - -// MARK: - - -class ServerTrustPolicyExplorationSSLPolicyValidationTestCase: ServerTrustPolicyTestCase { - func testThatAnchoredRootCertificatePassesSSLValidationWithRootInTrust() { - // Given - let trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafDNSNameAndURI, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatAnchoredRootCertificatePassesSSLValidationWithoutRootInTrust() { - // Given - let trust = TestTrusts.LeafDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatCertificateMissingDNSNameFailsSSLValidation() { - // Given - let trust = TestTrusts.LeafMissingDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } - - func testThatWildcardCertificatePassesSSLValidation() { - // Given - let trust = TestTrusts.LeafWildcard.trust // *.alamofire.org - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatDNSNameCertificatePassesSSLValidation() { - // Given - let trust = TestTrusts.LeafValidDNSName.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatURICertificateFailsSSLValidation() { - // Given - let trust = TestTrusts.LeafValidURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } - - func testThatMultipleDNSNamesCertificatePassesSSLValidationForAllEntries() { - // Given - let trust = TestTrusts.LeafMultipleDNSNames.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [ - SecPolicyCreateSSL(true, "test.alamofire.org"), - SecPolicyCreateSSL(true, "blog.alamofire.org"), - SecPolicyCreateSSL(true, "www.alamofire.org") - ] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should not be valid") - } - - func testThatPassingNilForHostParameterAllowsCertificateMissingDNSNameToPassSSLValidation() { - // Given - let trust = TestTrusts.LeafMissingDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, nil)] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should not be valid") - } - - func testThatExpiredCertificateFailsSSLValidation() { - // Given - let trust = TestTrusts.LeafExpired.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } -} - -// MARK: - Server Trust Policy Tests - - -class ServerTrustPolicyPerformDefaultEvaluationTestCase: ServerTrustPolicyTestCase { - - // MARK: Do NOT Validate Host - - func testThatValidCertificateChainPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA2 - ]) - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafMissingDNSNameAndURI.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - // MARK: Validate Host - - func testThatValidCertificateChainPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA2 - ]) - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafMissingDNSNameAndURI.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafWildcard.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatExpiredCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyPinCertificatesTestCase: ServerTrustPolicyTestCase { - - // MARK: Validate Certificate Chain Without Validating Host - - func testThatPinnedLeafCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedIntermediateCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedRootCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA1] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningExpiredLeafCertificateFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - // MARK: Validate Certificate Chain and Host - - func testThatPinnedLeafCertificatePassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedIntermediateCertificatePassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedRootCertificatePassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA1] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningExpiredLeafCertificateFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - // MARK: Do NOT Validate Certificate Chain or Host - - func testThatPinnedLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedIntermediateCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedRootCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA1] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningMultipleCertificatesWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - - let certificates = [ - TestCertificates.LeafMultipleDNSNames, // not in certificate chain - TestCertificates.LeafSignedByCA1, // not in certificate chain - TestCertificates.LeafExpired, // in certificate chain 👍🏼👍🏼 - TestCertificates.LeafWildcard, // not in certificate chain - TestCertificates.LeafDNSNameAndURI, // not in certificate chain - ] - - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyPinPublicKeysTestCase: ServerTrustPolicyTestCase { - - // MARK: Validate Certificate Chain Without Validating Host - - func testThatPinningLeafKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningKeyNotInCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningBackupKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA1, TestPublicKeys.IntermediateCA1, TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - // MARK: Validate Certificate Chain and Host - - func testThatPinningLeafKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningKeyNotInCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningBackupKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA1, TestPublicKeys.IntermediateCA1, TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - // MARK: Do NOT Validate Certificate Chain or Host - - func testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithMissingIntermediateCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyWithoutCertificateChainValidationFailsEvaluationWithMissingIntermediateCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithIncorrectIntermediateCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameWithIncorrectIntermediate.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let publicKeys = [TestPublicKeys.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let publicKeys = [TestPublicKeys.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyDisableEvaluationTestCase: ServerTrustPolicyTestCase { - func testThatCertificateChainMissingIntermediateCertificatePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let serverTrustPolicy = ServerTrustPolicy.DisableEvaluation - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatExpiredLeafCertificatePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let serverTrustPolicy = ServerTrustPolicy.DisableEvaluation - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyCustomEvaluationTestCase: ServerTrustPolicyTestCase { - func testThatReturningTrueFromClosurePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.CustomEvaluation { _, _ in - return true - } - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatReturningFalseFromClosurePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.CustomEvaluation { _, _ in - return false - } - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyCertificatesInBundleTestCase: ServerTrustPolicyTestCase { - func testOnlyValidCertificatesAreDetected() { - // Given - // Files present in bundle in the form of type+encoding+extension [key|cert][DER|PEM].[cer|crt|der|key|pem] - // certDER.cer: DER-encoded well-formed certificate - // certDER.crt: DER-encoded well-formed certificate - // certDER.der: DER-encoded well-formed certificate - // certPEM.*: PEM-encoded well-formed certificates, expected to fail: Apple API only handles DER encoding - // devURandomGibberish.crt: Random data, should fail - // keyDER.der: DER-encoded key, not a certificate, should fail - - // When - let certificates = ServerTrustPolicy.certificatesInBundle( - NSBundle(forClass: ServerTrustPolicyCertificatesInBundleTestCase.self) - ) - - // Then - // Expectation: 18 well-formed certificates in the test bundle plus 4 invalid certificates. - #if os(OSX) - // For some reason, OSX is allowing all certificates to be considered valid. Need to file a - // rdar demonstrating this behavior. - XCTAssertEqual(certificates.count, 22, "Expected 22 well-formed certificates") - #else - XCTAssertEqual(certificates.count, 18, "Expected 18 well-formed certificates") - #endif - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift b/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift deleted file mode 100644 index 6a1a3ab..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift +++ /dev/null @@ -1,31 +0,0 @@ -// NSURLSessionConfiguration+AlamofireTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension String { - init(count: Int, repeatedString: String) { - var value = "" - for _ in 0.. SecCertificate { - class Bundle {} - let filePath = NSBundle(forClass: Bundle.self).pathForResource(fileName, ofType: "cer")! - let data = NSData(contentsOfFile: filePath)! - let certificate = SecCertificateCreateWithData(nil, data)! - - return certificate - } -} - -// MARK: - - -private struct TestPublicKeys { - static let RootCA = TestPublicKeys.publicKeyForCertificate(TestCertificates.RootCA) - static let IntermediateCA = TestPublicKeys.publicKeyForCertificate(TestCertificates.IntermediateCA) - static let Leaf = TestPublicKeys.publicKeyForCertificate(TestCertificates.Leaf) - - static func publicKeyForCertificate(certificate: SecCertificate) -> SecKey { - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - SecTrustCreateWithCertificates(certificate, policy, &trust) - - let publicKey = SecTrustCopyPublicKey(trust!)! - - return publicKey - } -} - -// MARK: - - -class TLSEvaluationExpiredLeafCertificateTestCase: BaseTestCase { - let URL = "https://testssl-expire.disig.sk/" - let host = "testssl-expire.disig.sk" - var configuration: NSURLSessionConfiguration! - - // MARK: Setup and Teardown - - override func setUp() { - super.setUp() - configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - } - - // MARK: Default Behavior Tests - - func testThatExpiredCertificateRequestFailsWithNoServerTrustPolicy() { - // Given - weak var expectation = expectationWithDescription("\(URL)") - let manager = Manager(configuration: configuration) - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorServerCertificateUntrusted, "code should be untrusted server certficate") - } else { - XCTFail("error should be an NSError") - } - } - - // MARK: Server Trust Policy - Perform Default Tests - - func testThatExpiredCertificateRequestFailsWithDefaultServerTrustPolicy() { - // Given - let policies = [host: ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true)] - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - // MARK: Server Trust Policy - Certificate Pinning Tests - - func testThatExpiredCertificateRequestFailsWhenPinningLeafCertificateWithCertificateChainValidation() { - // Given - let certificates = [TestCertificates.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: true, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatExpiredCertificateRequestFailsWhenPinningAllCertificatesWithCertificateChainValidation() { - // Given - let certificates = [TestCertificates.Leaf, TestCertificates.IntermediateCA, TestCertificates.RootCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: true, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningLeafCertificateWithoutCertificateChainValidation() { - // Given - let certificates = [TestCertificates.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCACertificateWithoutCertificateChainValidation() { - // Given - let certificates = [TestCertificates.IntermediateCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningRootCACertificateWithoutCertificateChainValidation() { - // Given - let certificates = [TestCertificates.RootCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - // MARK: Server Trust Policy - Public Key Pinning Tests - - func testThatExpiredCertificateRequestFailsWhenPinningLeafPublicKeyWithCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: true, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningLeafPublicKeyWithoutCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCAPublicKeyWithoutCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.IntermediateCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningRootCAPublicKeyWithoutCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.RootCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - // MARK: Server Trust Policy - Disabling Evaluation Tests - - func testThatExpiredCertificateRequestSucceedsWhenDisablingEvaluation() { - // Given - let policies = [host: ServerTrustPolicy.DisableEvaluation] - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - // MARK: Server Trust Policy - Custom Evaluation Tests - - func testThatExpiredCertificateRequestSucceedsWhenCustomEvaluationReturnsTrue() { - // Given - let policies = [ - host: ServerTrustPolicy.CustomEvaluation { _, _ in - // Implement a custom evaluation routine here... - return true - } - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestFailsWhenCustomEvaluationReturnsFalse() { - // Given - let policies = [ - host: ServerTrustPolicy.CustomEvaluation { _, _ in - // Implement a custom evaluation routine here... - return false - } - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift b/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift deleted file mode 100644 index 11a2d32..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift +++ /dev/null @@ -1,169 +0,0 @@ -// URLProtocolTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class ProxyURLProtocol: NSURLProtocol { - - // MARK: Properties - - struct PropertyKeys { - static let HandledByForwarderURLProtocol = "HandledByProxyURLProtocol" - } - - lazy var session: NSURLSession = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - configuration.HTTPAdditionalHeaders = Alamofire.Manager.defaultHTTPHeaders - - return configuration - }() - - let session = NSURLSession(configuration: configuration, delegate: self, delegateQueue: nil) - - return session - }() - - var activeTask: NSURLSessionTask? - - // MARK: Class Request Methods - - override class func canInitWithRequest(request: NSURLRequest) -> Bool { - if NSURLProtocol.propertyForKey(PropertyKeys.HandledByForwarderURLProtocol, inRequest: request) != nil { - return false - } - - return true - } - - override class func canonicalRequestForRequest(request: NSURLRequest) -> NSURLRequest { - return request - } - - override class func requestIsCacheEquivalent(a: NSURLRequest, toRequest b: NSURLRequest) -> Bool { - return false - } - - // MARK: Loading Methods - - override func startLoading() { - let mutableRequest = request.URLRequest - NSURLProtocol.setProperty(true, forKey: PropertyKeys.HandledByForwarderURLProtocol, inRequest: mutableRequest) - - activeTask = session.dataTaskWithRequest(mutableRequest) - activeTask?.resume() - } - - override func stopLoading() { - activeTask?.cancel() - } -} - -// MARK: - - -extension ProxyURLProtocol: NSURLSessionDelegate { - - // MARK: NSURLSessionDelegate - - func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { - client?.URLProtocol(self, didLoadData: data) - } - - func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { - if let response = task.response { - client?.URLProtocol(self, didReceiveResponse: response, cacheStoragePolicy: .NotAllowed) - } - - client?.URLProtocolDidFinishLoading(self) - } -} - -// MARK: - - -class URLProtocolTestCase: BaseTestCase { - - // MARK: Setup and Teardown Methods - - override func setUp() { - super.setUp() - - let configuration = Alamofire.Manager.sharedInstance.session.configuration - - configuration.protocolClasses = [ProxyURLProtocol.self] - configuration.HTTPAdditionalHeaders = ["Session-Configuration-Header": "foo"] - } - - override func tearDown() { - super.tearDown() - - Alamofire.Manager.sharedInstance.session.configuration.protocolClasses = [] - } - - // MARK: Tests - - func testThatURLProtocolReceivesRequestHeadersAndNotSessionConfigurationHeaders() { - // Given - let URLString = "https://httpbin.org/response-headers" - let URL = NSURL(string: URLString)! - let parameters = ["request-header": "foobar"] - - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.HTTPMethod = Method.GET.rawValue - - let URLRequest = ParameterEncoding.URL.encode(mutableURLRequest, parameters: parameters).0 - - let expectation = expectationWithDescription("GET request should succeed") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(URLRequest) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - if let headers = response?.allHeaderFields as? [String: String] { - XCTAssertEqual(headers["request-header"] ?? "", "foobar", "urlrequest-header should be foobar") - XCTAssertNil(headers["Session-Configuration-Header"], "Session-Configuration-Header should be nil") - } else { - XCTFail("headers should not be nil") - } - } -} diff --git a/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift b/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift deleted file mode 100644 index 7e2b901..0000000 --- a/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift +++ /dev/null @@ -1,766 +0,0 @@ -// UploadTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class UploadFileInitializationTestCase: BaseTestCase { - func testUploadClassMethodWithMethodURLAndFile() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - - // When - let request = Alamofire.upload(.POST, URLString, file: imageURL) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testUploadClassMethodWithMethodURLHeadersAndFile() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - - // When - let request = Alamofire.upload(.POST, URLString, headers: ["Authorization": "123456"], file: imageURL) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class UploadDataInitializationTestCase: BaseTestCase { - func testUploadClassMethodWithMethodURLAndData() { - // Given - let URLString = "https://httpbin.org/" - - // When - let request = Alamofire.upload(.POST, URLString, data: NSData()) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testUploadClassMethodWithMethodURLHeadersAndData() { - // Given - let URLString = "https://httpbin.org/" - - // When - let request = Alamofire.upload(.POST, URLString, headers: ["Authorization": "123456"], data: NSData()) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class UploadStreamInitializationTestCase: BaseTestCase { - func testUploadClassMethodWithMethodURLAndStream() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - let imageStream = NSInputStream(URL: imageURL)! - - // When - let request = Alamofire.upload(.POST, URLString, stream: imageStream) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testUploadClassMethodWithMethodURLHeadersAndStream() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - let imageStream = NSInputStream(URL: imageURL)! - - // When - let request = Alamofire.upload(.POST, URLString, headers: ["Authorization": "123456"], stream: imageStream) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class UploadDataTestCase: BaseTestCase { - func testUploadDataRequest() { - // Given - let URLString = "https://httpbin.org/post" - let data = "Lorem ipsum dolor sit amet".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - let expectation = expectationWithDescription("Upload request should succeed: \(URLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var error: NSError? - - // When - Alamofire.upload(.POST, URLString, data: data) - .response { responseRequest, responseResponse, _, responseError in - request = responseRequest - response = responseResponse - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNil(error, "error should be nil") - } - - func testUploadDataRequestWithProgress() { - // Given - let URLString = "https://httpbin.org/post" - let data: NSData = { - var text = "" - for _ in 1...3_000 { - text += "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " - } - - return text.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - }() - - let expectation = expectationWithDescription("Bytes upload progress should be reported: \(URLString)") - - var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] - var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] - var responseRequest: NSURLRequest? - var responseResponse: NSHTTPURLResponse? - var responseData: NSData? - var responseError: ErrorType? - - // When - let upload = Alamofire.upload(.POST, URLString, data: data) - upload.progress { bytesWritten, totalBytesWritten, totalBytesExpectedToWrite in - let bytes = (bytes: bytesWritten, totalBytes: totalBytesWritten, totalBytesExpected: totalBytesExpectedToWrite) - byteValues.append(bytes) - - let progress = ( - completedUnitCount: upload.progress.completedUnitCount, - totalUnitCount: upload.progress.totalUnitCount - ) - progressValues.append(progress) - } - upload.response { request, response, data, error in - responseRequest = request - responseResponse = response - responseData = data - responseError = error - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(responseRequest, "response request should not be nil") - XCTAssertNotNil(responseResponse, "response response should not be nil") - XCTAssertNotNil(responseData, "response data should not be nil") - XCTAssertNil(responseError, "response error should be nil") - - XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") - - if byteValues.count == progressValues.count { - for index in 0.. Request { - var dataTask: NSURLSessionDataTask! - - dispatch_sync(queue) { - dataTask = self.session.dataTaskWithRequest(URLRequest.URLRequest) - } - - let request = MockRequest(session: session, task: dataTask) - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - } - - class MockRequest: Request { - override var response: NSHTTPURLResponse? { - return MockHTTPURLResponse( - URL: NSURL(string: request!.URLString)!, - statusCode: 204, - HTTPVersion: "HTTP/1.1", - headerFields: nil - ) - } - } - - class MockHTTPURLResponse: NSHTTPURLResponse { - override var MIMEType: String? { return nil } - } - - let manager: Manager = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - configuration.HTTPAdditionalHeaders = Alamofire.Manager.defaultHTTPHeaders - - return configuration - }() - - return MockManager(configuration: configuration) - }() - - let URLString = "https://httpbin.org/delete" - let expectation = expectationWithDescription("request should be stubbed and return 204 status code") - - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - manager.request(.DELETE, URLString) - .validate(contentType: ["*/*"]) - .response { _, responseResponse, responseData, responseError in - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - if let response = response { - XCTAssertEqual(response.statusCode, 204, "response status code should be 204") - XCTAssertNil(response.MIMEType, "response mime type should be nil") - } - } -} - -// MARK: - - -class MultipleValidationTestCase: BaseTestCase { - func testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds() { - // Given - let URLString = "https://httpbin.org/ip" - let expectation = expectationWithDescription("request should succeed and return ip") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate(statusCode: 200..<300) - .validate(contentType: ["application/json"]) - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithStatusCodeError() { - // Given - let URLString = "https://httpbin.org/xml" - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate(statusCode: 400..<600) - .validate(contentType: ["application/octet-stream"]) - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.StatusCodeValidationFailed.rawValue, "code should be status code validation failure") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithContentTypeError() { - // Given - let URLString = "https://httpbin.org/xml" - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate(contentType: ["application/octet-stream"]) - .validate(statusCode: 400..<600) - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.ContentTypeValidationFailed.rawValue, "code should be content type validation failure") - } else { - XCTFail("error should be an NSError") - } - } -} - -// MARK: - - -class AutomaticValidationTestCase: BaseTestCase { - func testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds() { - // Given - let URL = NSURL(string: "https://httpbin.org/ip")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return ip") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithUnacceptableStatusCodeResponseFails() { - // Given - let URLString = "https://httpbin.org/status/404" - let expectation = expectationWithDescription("request should return 404 status code") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.StatusCodeValidationFailed.rawValue, "code should be status code validation failure") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds() { - // Given - let URL = NSURL(string: "https://httpbin.org/ip")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.setValue("application/*", forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return ip") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithAcceptableComplexContentTypeResponseSucceeds() { - // Given - let URL = NSURL(string: "https://httpbin.org/xml")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - - let headerValue = "text/xml, application/xml, application/xhtml+xml, text/html;q=0.9, text/plain;q=0.8,*/*;q=0.5" - mutableURLRequest.setValue(headerValue, forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithUnacceptableContentTypeResponseFails() { - // Given - let URL = NSURL(string: "https://httpbin.org/xml")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.ContentTypeValidationFailed.rawValue, "code should be content type validation failure") - } else { - XCTFail("error should be an NSError") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/.gitignore b/Carthage/Checkouts/AlamofireImage/.gitignore deleted file mode 100644 index 222e8ec..0000000 --- a/Carthage/Checkouts/AlamofireImage/.gitignore +++ /dev/null @@ -1,39 +0,0 @@ -# Mac OS X -.DS_Store - -# Xcode - -## Build generated -build/ -DerivedData - -## Various settings -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata - -## Other -*.xccheckout -*.moved-aside -*.xcuserstate -*.xcscmblueprint - -## Obj-C/Swift specific -*.hmap -*.ipa - -## Playgrounds -timeline.xctimeline -playground.xcworkspace - -# Swift Package Manager -.build/ - -# Carthage -Carthage/Build diff --git a/Carthage/Checkouts/AlamofireImage/.gitmodules b/Carthage/Checkouts/AlamofireImage/.gitmodules deleted file mode 100644 index b07b6de..0000000 --- a/Carthage/Checkouts/AlamofireImage/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "Carthage/Checkouts/Alamofire"] - path = Carthage/Checkouts/Alamofire - url = https://github.com/Alamofire/Alamofire.git diff --git a/Carthage/Checkouts/AlamofireImage/.travis.yml b/Carthage/Checkouts/AlamofireImage/.travis.yml deleted file mode 100644 index fefa2cd..0000000 --- a/Carthage/Checkouts/AlamofireImage/.travis.yml +++ /dev/null @@ -1,73 +0,0 @@ -language: objective-c -osx_image: xcode7.2 -env: - global: - - LC_CTYPE=en_US.UTF-8 - - LANG=en_US.UTF-8 - - WORKSPACE=AlamofireImage.xcworkspace - - IOS_FRAMEWORK_SCHEME="AlamofireImage iOS" - - OSX_FRAMEWORK_SCHEME="AlamofireImage OSX" - - TVOS_FRAMEWORK_SCHEME="AlamofireImage tvOS" - - WATCHOS_FRAMEWORK_SCHEME="AlamofireImage watchOS" - - IOS_SDK=iphonesimulator9.2 - - OSX_SDK=macosx10.11 - - TVOS_SDK=appletvsimulator9.1 - - WATCHOS_SDK=watchsimulator2.1 - - EXAMPLE_SCHEME="iOS Example" - matrix: - - DESTINATION="OS=2.1,name=Apple Watch - 42mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" SDK="$WATCHOS_SDK" RUN_TESTS="NO" BUILD_EXAMPLE="NO" POD_LINT="YES" - - DESTINATION="OS=9.1,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" SDK="$TVOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" - - DESTINATION="arch=x86_64" SCHEME="$OSX_FRAMEWORK_SCHEME" SDK="$OSX_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" - - - DESTINATION="OS=9.0,name=iPad 2" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.0,name=iPhone 6" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - - DESTINATION="OS=9.1,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.1,name=iPhone 6S Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - - DESTINATION="OS=9.2,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.2,name=iPhone 6S Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - - DESTINATION="OS=8.1,name=iPad 2" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.2,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.3,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.4,name=iPhone 5S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" -before_install: - - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - - gem install xcpretty --no-rdoc --no-ri --no-document --quiet -script: - - set -o pipefail - - git submodule update --init --recursive - - xcodebuild -version - - xcodebuild -showsdks - - # Build Framework in Debug and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Framework in ReleaseTest and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Debug if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Release if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Run `pod lib lint` if specified - - if [ $POD_LINT == "YES" ]; then - pod repo update master; - pod lib lint; - fi diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.podspec b/Carthage/Checkouts/AlamofireImage/AlamofireImage.podspec deleted file mode 100644 index 5f58a29..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.podspec +++ /dev/null @@ -1,28 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'AlamofireImage' - s.version = '2.3.1' - s.license = 'MIT' - s.summary = 'AlamofireImage is an image component library for Alamofire' - s.homepage = 'https://github.com/Alamofire/AlamofireImage' - s.social_media_url = 'http://twitter.com/AlamofireSF' - s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' } - - s.source = { :git => 'https://github.com/Alamofire/AlamofireImage.git', :tag => s.version } - s.source_files = 'Source/*.swift' - - s.osx.exclude_files = [ - 'Source/UIButton+AlamofireImage.swift', - 'Source/UIImage*.swift' - ] - s.watchos.exclude_files = [ - 'Source/UIButton+AlamofireImage.swift', - 'Source/UIImageView+AlamofireImage.swift' - ] - - s.ios.deployment_target = '8.0' - s.osx.deployment_target = '10.9' - s.tvos.deployment_target = '9.0' - s.watchos.deployment_target = '2.0' - - s.dependency 'Alamofire', '~> 3.1' -end diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.pbxproj b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.pbxproj deleted file mode 100644 index 455af9c..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.pbxproj +++ /dev/null @@ -1,2711 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 4C0893EC1B936A7A005125D9 /* UIImage+AlamofireImageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0893EB1B936A7A005125D9 /* UIImage+AlamofireImageTests.swift */; }; - 4C0893F51B937404005125D9 /* UIImageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0893F41B937404005125D9 /* UIImageTests.swift */; }; - 4C0894E41B9382EB005125D9 /* apple.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894501B9382EB005125D9 /* apple.jpg */; }; - 4C0894E51B9382EB005125D9 /* apple.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894501B9382EB005125D9 /* apple.jpg */; }; - 4C0894E61B9382EB005125D9 /* pirate.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894511B9382EB005125D9 /* pirate.jpg */; }; - 4C0894E71B9382EB005125D9 /* pirate.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894511B9382EB005125D9 /* pirate.jpg */; }; - 4C0894E81B9382EB005125D9 /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894521B9382EB005125D9 /* rainbow.jpg */; }; - 4C0894E91B9382EB005125D9 /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894521B9382EB005125D9 /* rainbow.jpg */; }; - 4C0894EA1B9382EB005125D9 /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894531B9382EB005125D9 /* unicorn.png */; }; - 4C0894EB1B9382EB005125D9 /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894531B9382EB005125D9 /* unicorn.png */; }; - 4C0897E81B93B0FB005125D9 /* huge_map.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0897E71B93B0FB005125D9 /* huge_map.jpg */; }; - 4C0897E91B93B0FB005125D9 /* huge_map.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0897E71B93B0FB005125D9 /* huge_map.jpg */; }; - 4C0897EB1B93BC0D005125D9 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0897EA1B93BC0D005125D9 /* RequestTests.swift */; }; - 4C0897EC1B93BC0D005125D9 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0897EA1B93BC0D005125D9 /* RequestTests.swift */; }; - 4C1624851AABE8E600A0385D /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1624841AABE8E600A0385D /* BaseTestCase.swift */; }; - 4C1624861AABE8E600A0385D /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1624841AABE8E600A0385D /* BaseTestCase.swift */; }; - 4C16B3871BA9399500A66EF0 /* AlamofireImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C16B37D1BA9399500A66EF0 /* AlamofireImage.framework */; }; - 4C16B39C1BA93A3D00A66EF0 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C16B3971BA9399500A66EF0 /* Alamofire.framework */; }; - 4C16B39F1BA93AA600A66EF0 /* AlamofireImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C54EE8F1AABC04900CD894C /* AlamofireImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4C16B3A01BA93AB700A66EF0 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C8290791B927CE6005E24C8 /* Image.swift */; }; - 4C16B3A11BA93AB700A66EF0 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A051AB4FEC90004D0B8 /* ImageCache.swift */; }; - 4C16B3A21BA93AB700A66EF0 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C96A4771AAE9488008AE0B6 /* ImageDownloader.swift */; }; - 4C16B3A31BA93AB700A66EF0 /* ImageFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A081AB52BD90004D0B8 /* ImageFilter.swift */; }; - 4C16B3A41BA93AB700A66EF0 /* Request+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE611541AABC8D900D35044 /* Request+AlamofireImage.swift */; }; - 4C16B3A51BA93AB700A66EF0 /* UIImage+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C53084F1AB561BF0051DBAC /* UIImage+AlamofireImage.swift */; }; - 4C16B3A61BA93AB700A66EF0 /* UIImageView+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C78EA711AACD28C002C0569 /* UIImageView+AlamofireImage.swift */; }; - 4C16B3A71BA93ADB00A66EF0 /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1624841AABE8E600A0385D /* BaseTestCase.swift */; }; - 4C16B3A81BA93ADB00A66EF0 /* ImageCacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CEBB53F1B93C622001391DE /* ImageCacheTests.swift */; }; - 4C16B3A91BA93ADB00A66EF0 /* ImageDownloaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C5874851B93F81800407E58 /* ImageDownloaderTests.swift */; }; - 4C16B3AA1BA93ADB00A66EF0 /* ImageFilterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C5872C91B93DEAC00407E58 /* ImageFilterTests.swift */; }; - 4C16B3AB1BA93ADB00A66EF0 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0897EA1B93BC0D005125D9 /* RequestTests.swift */; }; - 4C16B3AC1BA93ADB00A66EF0 /* UIImageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0893F41B937404005125D9 /* UIImageTests.swift */; }; - 4C16B3AD1BA93ADB00A66EF0 /* UIImageViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C62D30F1B96C1500011B036 /* UIImageViewTests.swift */; }; - 4C16B3AE1BA93ADB00A66EF0 /* UIImage+AlamofireImageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0893EB1B936A7A005125D9 /* UIImage+AlamofireImageTests.swift */; }; - 4C16B3AF1BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F61B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C16B3B01BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F71B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C16B3B11BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F81B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C16B3B21BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F91B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C16B3B31BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FA1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C16B3B41BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FB1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C16B3B51BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FC1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C16B3B61BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FD1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C16B3B71BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FE1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C16B3B81BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C16B3B91BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873001B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C16B3BA1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873011B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C16B3BB1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873021B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C16B3BC1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873031B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C16B3BD1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873041B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C16B3BE1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873051B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C16B3BF1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873061B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C16B3C01BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873071B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C16B3C11BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C16B3C21BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C16B3C31BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C16B3C41BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C16B3C51BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C16B3C61BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C16B3C71BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730E1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C16B3C81BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730F1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C16B3C91BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873101B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C16B3CA1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C16B3CB1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C16B3CC1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C16B3CD1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C16B3CE1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C16B3CF1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C16B3D01BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C16B3D11BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C16B3D21BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C16B3D31BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png */; }; - 4C16B3D41BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png */; }; - 4C16B3D51BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png */; }; - 4C16B3D61BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png */; }; - 4C16B3D71BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873201B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png */; }; - 4C16B3D81BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873211B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png */; }; - 4C16B3D91BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873231B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C16B3DA1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873241B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C16B3DB1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873251B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C16B3DC1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873261B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C16B3DD1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873271B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C16B3DE1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873281B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C16B3DF1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873291B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C16B3E01BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732A1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C16B3E11BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732B1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C16B3E21BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C16B3E31BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C16B3E41BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C16B3E51BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C16B3E61BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873301B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C16B3E71BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873311B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C16B3E81BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873321B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C16B3E91BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873331B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C16B3EA1BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873341B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C16B3EB1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873351B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C16B3EC1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873361B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C16B3ED1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873371B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C16B3EE1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873381B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C16B3EF1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873391B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C16B3F01BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C16B3F11BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C16B3F21BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C16B3F31BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C16B3F41BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C16B3F51BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C16B3F61BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873401B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C16B3F71BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873411B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C16B3F81BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873421B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C16B3F91BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873431B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C16B3FA1BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873441B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C16B3FB1BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873451B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C16B3FC1BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873461B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C16B3FD1BA93AEF00A66EF0 /* apple-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873481B93EFFB00407E58 /* apple-circle.png */; }; - 4C16B3FE1BA93AEF00A66EF0 /* pirate-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873491B93EFFB00407E58 /* pirate-circle.png */; }; - 4C16B3FF1BA93AEF00A66EF0 /* rainbow-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734A1B93EFFB00407E58 /* rainbow-circle.png */; }; - 4C16B4001BA93AEF00A66EF0 /* unicorn-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734B1B93EFFB00407E58 /* unicorn-circle.png */; }; - 4C16B4021BA93AEF00A66EF0 /* unicorn-sepia.tone.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734E1B93EFFB00407E58 /* unicorn-sepia.tone.png */; }; - 4C16B4031BA93AF200A66EF0 /* apple-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873501B93EFFB00407E58 /* apple-radius-20.png */; }; - 4C16B4041BA93AF200A66EF0 /* pirate-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873511B93EFFB00407E58 /* pirate-radius-20.png */; }; - 4C16B4051BA93AF200A66EF0 /* rainbow-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873521B93EFFB00407E58 /* rainbow-radius-20.png */; }; - 4C16B4061BA93AF200A66EF0 /* unicorn-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873531B93EFFB00407E58 /* unicorn-radius-20.png */; }; - 4C16B4071BA93AFD00A66EF0 /* apple-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873551B93EFFB00407E58 /* apple-scaled-30x60-@1x.png */; }; - 4C16B4081BA93AFD00A66EF0 /* apple-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873561B93EFFB00407E58 /* apple-scaled-30x60-@2x.png */; }; - 4C16B4091BA93AFD00A66EF0 /* apple-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873571B93EFFB00407E58 /* apple-scaled-30x60-@3x.png */; }; - 4C16B40A1BA93AFD00A66EF0 /* apple-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873581B93EFFB00407E58 /* apple-scaled-50x50-@1x.png */; }; - 4C16B40B1BA93AFD00A66EF0 /* apple-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873591B93EFFB00407E58 /* apple-scaled-50x50-@2x.png */; }; - 4C16B40C1BA93AFD00A66EF0 /* apple-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735A1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png */; }; - 4C16B40D1BA93AFD00A66EF0 /* apple-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735B1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png */; }; - 4C16B40E1BA93AFD00A66EF0 /* apple-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735C1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png */; }; - 4C16B40F1BA93AFD00A66EF0 /* apple-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735D1B93EFFB00407E58 /* apple-scaled-60x30-@3x.png */; }; - 4C16B4101BA93AFD00A66EF0 /* pirate-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735E1B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png */; }; - 4C16B4111BA93AFD00A66EF0 /* pirate-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735F1B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png */; }; - 4C16B4121BA93AFD00A66EF0 /* pirate-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873601B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png */; }; - 4C16B4131BA93AFD00A66EF0 /* pirate-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873611B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png */; }; - 4C16B4141BA93AFD00A66EF0 /* pirate-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873621B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png */; }; - 4C16B4151BA93AFD00A66EF0 /* pirate-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873631B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png */; }; - 4C16B4161BA93AFD00A66EF0 /* pirate-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873641B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png */; }; - 4C16B4171BA93AFD00A66EF0 /* pirate-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873651B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png */; }; - 4C16B4181BA93AFD00A66EF0 /* pirate-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873661B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png */; }; - 4C16B4191BA93AFD00A66EF0 /* rainbow-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873671B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png */; }; - 4C16B41A1BA93AFD00A66EF0 /* rainbow-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873681B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png */; }; - 4C16B41B1BA93AFD00A66EF0 /* rainbow-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873691B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png */; }; - 4C16B41C1BA93AFD00A66EF0 /* rainbow-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736A1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png */; }; - 4C16B41D1BA93AFD00A66EF0 /* rainbow-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736B1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png */; }; - 4C16B41E1BA93AFD00A66EF0 /* rainbow-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736C1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png */; }; - 4C16B41F1BA93AFD00A66EF0 /* rainbow-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736D1B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png */; }; - 4C16B4201BA93AFD00A66EF0 /* rainbow-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736E1B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png */; }; - 4C16B4211BA93AFD00A66EF0 /* rainbow-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736F1B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png */; }; - 4C16B4221BA93AFD00A66EF0 /* unicorn-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873701B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png */; }; - 4C16B4231BA93AFD00A66EF0 /* unicorn-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873711B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png */; }; - 4C16B4241BA93AFD00A66EF0 /* unicorn-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873721B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png */; }; - 4C16B4251BA93AFD00A66EF0 /* unicorn-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873731B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png */; }; - 4C16B4261BA93AFD00A66EF0 /* unicorn-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873741B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png */; }; - 4C16B4271BA93AFD00A66EF0 /* unicorn-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873751B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png */; }; - 4C16B4281BA93AFD00A66EF0 /* unicorn-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873761B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png */; }; - 4C16B4291BA93AFD00A66EF0 /* unicorn-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873771B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png */; }; - 4C16B42A1BA93AFD00A66EF0 /* unicorn-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png */; }; - 4C16B42B1BA93AFD00A66EF0 /* pirate-scaled.to.size.circle-100x100-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png */; }; - 4C16B42C1BA93AFD00A66EF0 /* pirate-scaled.to.size.circle-100x100-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png */; }; - 4C16B42D1BA93AFD00A66EF0 /* pirate-scaled.to.size.circle-100x100-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png */; }; - 4C16B42E1BA93AFD00A66EF0 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737E1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png */; }; - 4C16B42F1BA93AFD00A66EF0 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png */; }; - 4C16B4301BA93AFD00A66EF0 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png */; }; - 4C16B4311BA93AFD00A66EF0 /* apple.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894501B9382EB005125D9 /* apple.jpg */; }; - 4C16B4321BA93AFD00A66EF0 /* huge_map.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0897E71B93B0FB005125D9 /* huge_map.jpg */; }; - 4C16B4331BA93AFD00A66EF0 /* pirate.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894511B9382EB005125D9 /* pirate.jpg */; }; - 4C16B4341BA93AFD00A66EF0 /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894521B9382EB005125D9 /* rainbow.jpg */; }; - 4C16B4351BA93AFD00A66EF0 /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C0894531B9382EB005125D9 /* unicorn.png */; }; - 4C16B4361BA93B3300A66EF0 /* AlamofireImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE611321AABC24E00D35044 /* AlamofireImage.framework */; }; - 4C16B4371BA93B4000A66EF0 /* AlamofireImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C9043771AABBFC5001B4E60 /* AlamofireImage.framework */; }; - 4C4D4EC91B9297B300C96855 /* AlamofireImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C54EE8F1AABC04900CD894C /* AlamofireImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4C4D4ECA1B9297BB00C96855 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C8290791B927CE6005E24C8 /* Image.swift */; }; - 4C4D4ECB1B9297BB00C96855 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A051AB4FEC90004D0B8 /* ImageCache.swift */; }; - 4C4D4ECC1B9297BB00C96855 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C96A4771AAE9488008AE0B6 /* ImageDownloader.swift */; }; - 4C4D4ECD1B9297BB00C96855 /* ImageFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A081AB52BD90004D0B8 /* ImageFilter.swift */; }; - 4C4D4ECE1B9297BB00C96855 /* Request+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE611541AABC8D900D35044 /* Request+AlamofireImage.swift */; }; - 4C4D4ECF1B9297BB00C96855 /* UIImage+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C53084F1AB561BF0051DBAC /* UIImage+AlamofireImage.swift */; }; - 4C5308501AB561BF0051DBAC /* UIImage+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C53084F1AB561BF0051DBAC /* UIImage+AlamofireImage.swift */; }; - 4C54EE911AABC04900CD894C /* AlamofireImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C54EE8F1AABC04900CD894C /* AlamofireImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4C5872CA1B93DEAC00407E58 /* ImageFilterTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C5872C91B93DEAC00407E58 /* ImageFilterTests.swift */; }; - 4C5873811B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F61B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873821B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F61B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873831B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F71B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873841B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F71B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873851B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F81B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873861B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F81B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873871B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F91B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C5873881B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872F91B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C5873891B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FA1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C58738A1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FA1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C58738B1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FB1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C58738C1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FB1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C58738D1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FC1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C58738E1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FC1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C58738F1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FD1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873901B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FD1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873911B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FE1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873921B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FE1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873931B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873941B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5872FF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873951B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873001B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873961B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873001B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873971B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873011B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873981B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873011B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873991B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873021B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C58739A1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873021B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C58739B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873031B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C58739C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873031B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C58739D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873041B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C58739E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873041B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C58739F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873051B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C5873A01B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873051B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C5873A11B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873061B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873A21B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873061B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873A31B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873071B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873A41B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873071B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873A51B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873A61B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873A71B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873A81B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873A91B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873AA1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873AB1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C5873AC1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C5873AD1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C5873AE1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C5873AF1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C5873B01B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C5873B11B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730E1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C5873B21B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730E1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C5873B31B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730F1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873B41B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58730F1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873B51B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873101B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873B61B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873101B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873B71B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873B81B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png */; }; - 4C5873B91B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873BA1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png */; }; - 4C5873BB1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873BC1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png */; }; - 4C5873BD1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C5873BE1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png */; }; - 4C5873BF1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C5873C01B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png */; }; - 4C5873C11B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C5873C21B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png */; }; - 4C5873C31B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C5873C41B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png */; }; - 4C5873C51B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873C61B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png */; }; - 4C5873C71B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873C81B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png */; }; - 4C5873C91B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png */; }; - 4C5873CA1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png */; }; - 4C5873CB1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png */; }; - 4C5873CC1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png */; }; - 4C5873CD1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png */; }; - 4C5873CE1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png */; }; - 4C5873CF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png */; }; - 4C5873D01B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58731F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png */; }; - 4C5873D11B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873201B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png */; }; - 4C5873D21B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873201B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png */; }; - 4C5873D31B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873211B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png */; }; - 4C5873D41B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873211B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png */; }; - 4C5873D51B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873231B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C5873D61B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873231B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C5873D71B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873241B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C5873D81B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873241B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C5873D91B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873251B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5873DA1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873251B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5873DB1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873261B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5873DC1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873261B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5873DD1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873271B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5873DE1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873271B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5873DF1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873281B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5873E01B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873281B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5873E11B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873291B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5873E21B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873291B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5873E31B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732A1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C5873E41B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732A1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C5873E51B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732B1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C5873E61B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732B1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C5873E71B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C5873E81B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C5873E91B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C5873EA1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C5873EB1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5873EC1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5873ED1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5873EE1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58732F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5873EF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873301B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5873F01B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873301B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5873F11B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873311B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5873F21B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873311B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5873F31B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873321B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5873F41B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873321B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5873F51B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873331B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C5873F61B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873331B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C5873F71B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873341B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C5873F81B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873341B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C5873F91B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873351B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C5873FA1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873351B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C5873FB1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873361B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C5873FC1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873361B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C5873FD1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873371B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5873FE1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873371B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5873FF1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873381B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5874001B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873381B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5874011B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873391B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5874021B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873391B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5874031B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5874041B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5874051B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5874061B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5874071B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C5874081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C5874091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C58740A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C58740B1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C58740C1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png */; }; - 4C58740D1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C58740E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58733F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png */; }; - 4C58740F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873401B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5874101B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873401B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png */; }; - 4C5874111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873411B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5874121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873411B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png */; }; - 4C5874131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873421B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5874141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873421B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png */; }; - 4C5874151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873431B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5874161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873431B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png */; }; - 4C5874171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873441B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5874181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873441B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png */; }; - 4C5874191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873451B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C58741A1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873451B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png */; }; - 4C58741B1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873461B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C58741C1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873461B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png */; }; - 4C58741D1B93EFFB00407E58 /* apple-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873481B93EFFB00407E58 /* apple-circle.png */; }; - 4C58741E1B93EFFB00407E58 /* apple-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873481B93EFFB00407E58 /* apple-circle.png */; }; - 4C58741F1B93EFFB00407E58 /* pirate-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873491B93EFFB00407E58 /* pirate-circle.png */; }; - 4C5874201B93EFFB00407E58 /* pirate-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873491B93EFFB00407E58 /* pirate-circle.png */; }; - 4C5874211B93EFFB00407E58 /* rainbow-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734A1B93EFFB00407E58 /* rainbow-circle.png */; }; - 4C5874221B93EFFB00407E58 /* rainbow-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734A1B93EFFB00407E58 /* rainbow-circle.png */; }; - 4C5874231B93EFFB00407E58 /* unicorn-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734B1B93EFFB00407E58 /* unicorn-circle.png */; }; - 4C5874241B93EFFB00407E58 /* unicorn-circle.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734B1B93EFFB00407E58 /* unicorn-circle.png */; }; - 4C5874271B93EFFB00407E58 /* unicorn-sepia.tone.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734E1B93EFFB00407E58 /* unicorn-sepia.tone.png */; }; - 4C5874281B93EFFB00407E58 /* unicorn-sepia.tone.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58734E1B93EFFB00407E58 /* unicorn-sepia.tone.png */; }; - 4C5874291B93EFFB00407E58 /* apple-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873501B93EFFB00407E58 /* apple-radius-20.png */; }; - 4C58742A1B93EFFB00407E58 /* apple-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873501B93EFFB00407E58 /* apple-radius-20.png */; }; - 4C58742B1B93EFFB00407E58 /* pirate-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873511B93EFFB00407E58 /* pirate-radius-20.png */; }; - 4C58742C1B93EFFB00407E58 /* pirate-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873511B93EFFB00407E58 /* pirate-radius-20.png */; }; - 4C58742D1B93EFFB00407E58 /* rainbow-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873521B93EFFB00407E58 /* rainbow-radius-20.png */; }; - 4C58742E1B93EFFB00407E58 /* rainbow-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873521B93EFFB00407E58 /* rainbow-radius-20.png */; }; - 4C58742F1B93EFFB00407E58 /* unicorn-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873531B93EFFB00407E58 /* unicorn-radius-20.png */; }; - 4C5874301B93EFFB00407E58 /* unicorn-radius-20.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873531B93EFFB00407E58 /* unicorn-radius-20.png */; }; - 4C5874311B93EFFB00407E58 /* apple-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873551B93EFFB00407E58 /* apple-scaled-30x60-@1x.png */; }; - 4C5874321B93EFFB00407E58 /* apple-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873551B93EFFB00407E58 /* apple-scaled-30x60-@1x.png */; }; - 4C5874331B93EFFB00407E58 /* apple-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873561B93EFFB00407E58 /* apple-scaled-30x60-@2x.png */; }; - 4C5874341B93EFFB00407E58 /* apple-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873561B93EFFB00407E58 /* apple-scaled-30x60-@2x.png */; }; - 4C5874351B93EFFB00407E58 /* apple-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873571B93EFFB00407E58 /* apple-scaled-30x60-@3x.png */; }; - 4C5874361B93EFFB00407E58 /* apple-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873571B93EFFB00407E58 /* apple-scaled-30x60-@3x.png */; }; - 4C5874371B93EFFB00407E58 /* apple-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873581B93EFFB00407E58 /* apple-scaled-50x50-@1x.png */; }; - 4C5874381B93EFFB00407E58 /* apple-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873581B93EFFB00407E58 /* apple-scaled-50x50-@1x.png */; }; - 4C5874391B93EFFB00407E58 /* apple-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873591B93EFFB00407E58 /* apple-scaled-50x50-@2x.png */; }; - 4C58743A1B93EFFB00407E58 /* apple-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873591B93EFFB00407E58 /* apple-scaled-50x50-@2x.png */; }; - 4C58743B1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735A1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png */; }; - 4C58743C1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735A1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png */; }; - 4C58743D1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735B1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png */; }; - 4C58743E1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735B1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png */; }; - 4C58743F1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735C1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png */; }; - 4C5874401B93EFFB00407E58 /* apple-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735C1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png */; }; - 4C5874411B93EFFB00407E58 /* apple-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735D1B93EFFB00407E58 /* apple-scaled-60x30-@3x.png */; }; - 4C5874421B93EFFB00407E58 /* apple-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735D1B93EFFB00407E58 /* apple-scaled-60x30-@3x.png */; }; - 4C5874431B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735E1B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png */; }; - 4C5874441B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735E1B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png */; }; - 4C5874451B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735F1B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png */; }; - 4C5874461B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58735F1B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png */; }; - 4C5874471B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873601B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png */; }; - 4C5874481B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873601B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png */; }; - 4C5874491B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873611B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png */; }; - 4C58744A1B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873611B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png */; }; - 4C58744B1B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873621B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png */; }; - 4C58744C1B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873621B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png */; }; - 4C58744D1B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873631B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png */; }; - 4C58744E1B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873631B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png */; }; - 4C58744F1B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873641B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png */; }; - 4C5874501B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873641B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png */; }; - 4C5874511B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873651B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png */; }; - 4C5874521B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873651B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png */; }; - 4C5874531B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873661B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png */; }; - 4C5874541B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873661B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png */; }; - 4C5874551B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873671B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png */; }; - 4C5874561B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873671B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png */; }; - 4C5874571B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873681B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png */; }; - 4C5874581B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873681B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png */; }; - 4C5874591B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873691B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png */; }; - 4C58745A1B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873691B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png */; }; - 4C58745B1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736A1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png */; }; - 4C58745C1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736A1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png */; }; - 4C58745D1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736B1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png */; }; - 4C58745E1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736B1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png */; }; - 4C58745F1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736C1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png */; }; - 4C5874601B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736C1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png */; }; - 4C5874611B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736D1B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png */; }; - 4C5874621B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736D1B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png */; }; - 4C5874631B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736E1B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png */; }; - 4C5874641B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736E1B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png */; }; - 4C5874651B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736F1B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png */; }; - 4C5874661B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58736F1B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png */; }; - 4C5874671B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873701B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png */; }; - 4C5874681B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873701B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png */; }; - 4C5874691B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873711B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png */; }; - 4C58746A1B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873711B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png */; }; - 4C58746B1B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873721B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png */; }; - 4C58746C1B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873721B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png */; }; - 4C58746D1B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873731B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png */; }; - 4C58746E1B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873731B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png */; }; - 4C58746F1B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873741B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png */; }; - 4C5874701B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873741B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png */; }; - 4C5874711B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873751B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png */; }; - 4C5874721B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873751B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png */; }; - 4C5874731B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873761B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png */; }; - 4C5874741B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873761B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png */; }; - 4C5874751B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873771B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png */; }; - 4C5874761B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873771B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png */; }; - 4C5874771B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png */; }; - 4C5874781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png */; }; - 4C5874791B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png */; }; - 4C58747A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png */; }; - 4C58747B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png */; }; - 4C58747C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png */; }; - 4C58747D1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png */; }; - 4C58747E1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png */; }; - 4C58747F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737E1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png */; }; - 4C5874801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737E1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png */; }; - 4C5874811B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png */; }; - 4C5874821B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C58737F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png */; }; - 4C5874831B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png */; }; - 4C5874841B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C5873801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png */; }; - 4C5874861B93F81800407E58 /* ImageDownloaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C5874851B93F81800407E58 /* ImageDownloaderTests.swift */; }; - 4C5874871B93F81800407E58 /* ImageDownloaderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C5874851B93F81800407E58 /* ImageDownloaderTests.swift */; }; - 4C62D3101B96C1500011B036 /* UIImageViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C62D30F1B96C1500011B036 /* UIImageViewTests.swift */; }; - 4C78EA721AACD28C002C0569 /* UIImageView+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C78EA711AACD28C002C0569 /* UIImageView+AlamofireImage.swift */; }; - 4C8290781B926F19005E24C8 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A051AB4FEC90004D0B8 /* ImageCache.swift */; }; - 4C82907A1B927CE6005E24C8 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C8290791B927CE6005E24C8 /* Image.swift */; }; - 4C82907B1B927CE6005E24C8 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C8290791B927CE6005E24C8 /* Image.swift */; }; - 4C82907C1B927D13005E24C8 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C96A4771AAE9488008AE0B6 /* ImageDownloader.swift */; }; - 4C82907D1B927DA9005E24C8 /* ImageFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A081AB52BD90004D0B8 /* ImageFilter.swift */; }; - 4C96A4781AAE9488008AE0B6 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C96A4771AAE9488008AE0B6 /* ImageDownloader.swift */; }; - 4CB2DBE61C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE31C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png */; }; - 4CB2DBE71C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE31C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png */; }; - 4CB2DBE81C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE31C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png */; }; - 4CB2DBE91C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE41C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png */; }; - 4CB2DBEA1C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE41C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png */; }; - 4CB2DBEB1C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE41C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png */; }; - 4CB2DBEC1C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE51C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png */; }; - 4CB2DBED1C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE51C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png */; }; - 4CB2DBEE1C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png in Resources */ = {isa = PBXBuildFile; fileRef = 4CB2DBE51C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png */; }; - 4CE5AABB1B9BF104003530D6 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE5AAAF1B9BF09A003530D6 /* Alamofire.framework */; }; - 4CE5AABE1B9BF111003530D6 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE5AAAF1B9BF09A003530D6 /* Alamofire.framework */; }; - 4CE5AAC11B9BF11F003530D6 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE5AAAF1B9BF09A003530D6 /* Alamofire.framework */; }; - 4CE6112C1AABC24E00D35044 /* AlamofireImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C54EE8F1AABC04900CD894C /* AlamofireImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CE611551AABC8D900D35044 /* Request+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE611541AABC8D900D35044 /* Request+AlamofireImage.swift */; }; - 4CE611561AABC8D900D35044 /* Request+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE611541AABC8D900D35044 /* Request+AlamofireImage.swift */; }; - 4CEBB5401B93C622001391DE /* ImageCacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CEBB53F1B93C622001391DE /* ImageCacheTests.swift */; }; - 4CEBB5411B93C622001391DE /* ImageCacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CEBB53F1B93C622001391DE /* ImageCacheTests.swift */; }; - 4CFC0A061AB4FEC90004D0B8 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A051AB4FEC90004D0B8 /* ImageCache.swift */; }; - 4CFC0A091AB52BD90004D0B8 /* ImageFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC0A081AB52BD90004D0B8 /* ImageFilter.swift */; }; - CF24CF421C253CB100904E85 /* UIButton+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF24CF411C253CB100904E85 /* UIButton+AlamofireImage.swift */; }; - CF24CF461C253D4F00904E85 /* UIButtonTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF24CF3C1C253CA000904E85 /* UIButtonTests.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 4C16B3881BA9399500A66EF0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4C90436E1AABBFC5001B4E60 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4C16B37C1BA9399500A66EF0; - remoteInfo = "AlamofireImage tvOS"; - }; - 4C16B3961BA9399500A66EF0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4CF626EF1BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS"; - }; - 4C16B3981BA9399500A66EF0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4CF626F81BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS Tests"; - }; - 4C16B39D1BA93A4B00A66EF0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 4CF626EE1BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS"; - }; - 4C9043841AABBFC5001B4E60 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4C90436E1AABBFC5001B4E60 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4C9043761AABBFC5001B4E60; - remoteInfo = AlamofireImage; - }; - 4CE5AAAE1B9BF09A003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F8111E3319A95C8B0040E7D1; - remoteInfo = "Alamofire iOS"; - }; - 4CE5AAB01B9BF09A003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4DD67C0B1A5C55C900ED2280; - remoteInfo = "Alamofire OSX"; - }; - 4CE5AAB21B9BF09A003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = E4202FE01B667AA100C997FB; - remoteInfo = "Alamofire watchOS"; - }; - 4CE5AAB41B9BF09A003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F8111E3E19A95C8B0040E7D1; - remoteInfo = "Alamofire iOS Tests"; - }; - 4CE5AAB61B9BF09A003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F829C6B21A7A94F100A2CD59; - remoteInfo = "Alamofire OSX Tests"; - }; - 4CE5AAB91B9BF0F6003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = F8111E3219A95C8B0040E7D1; - remoteInfo = "Alamofire iOS"; - }; - 4CE5AABC1B9BF10C003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 4DD67C0A1A5C55C900ED2280; - remoteInfo = "Alamofire OSX"; - }; - 4CE5AABF1B9BF11A003530D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = E4202FCD1B667AA100C997FB; - remoteInfo = "Alamofire watchOS"; - }; - 4CE6114E1AABC5C900D35044 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4C90436E1AABBFC5001B4E60 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4CE611281AABC24E00D35044; - remoteInfo = "AlamofireImage OSX"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 4C0893EB1B936A7A005125D9 /* UIImage+AlamofireImageTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+AlamofireImageTests.swift"; sourceTree = ""; }; - 4C0893F41B937404005125D9 /* UIImageTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIImageTests.swift; sourceTree = ""; }; - 4C0894501B9382EB005125D9 /* apple.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = apple.jpg; sourceTree = ""; }; - 4C0894511B9382EB005125D9 /* pirate.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = pirate.jpg; sourceTree = ""; }; - 4C0894521B9382EB005125D9 /* rainbow.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = rainbow.jpg; sourceTree = ""; }; - 4C0894531B9382EB005125D9 /* unicorn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = unicorn.png; sourceTree = ""; }; - 4C0897E71B93B0FB005125D9 /* huge_map.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = huge_map.jpg; sourceTree = ""; }; - 4C0897EA1B93BC0D005125D9 /* RequestTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RequestTests.swift; sourceTree = ""; }; - 4C1624841AABE8E600A0385D /* BaseTestCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseTestCase.swift; sourceTree = ""; }; - 4C16B37D1BA9399500A66EF0 /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C16B3861BA9399500A66EF0 /* AlamofireImage tvOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "AlamofireImage tvOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C4D4EC11B92976900C96855 /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C53084F1AB561BF0051DBAC /* UIImage+AlamofireImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+AlamofireImage.swift"; sourceTree = ""; }; - 4C54EE8F1AABC04900CD894C /* AlamofireImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlamofireImage.h; sourceTree = ""; }; - 4C54EE901AABC04900CD894C /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 4C54EE961AABC08B00CD894C /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 4C5872C91B93DEAC00407E58 /* ImageFilterTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageFilterTests.swift; sourceTree = ""; }; - 4C5872F61B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-30x60-@1x.png"; sourceTree = ""; }; - 4C5872F71B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-30x60-@2x.png"; sourceTree = ""; }; - 4C5872F81B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-30x60-@3x.png"; sourceTree = ""; }; - 4C5872F91B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-50x50-@1x.png"; sourceTree = ""; }; - 4C5872FA1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-50x50-@2x.png"; sourceTree = ""; }; - 4C5872FB1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-50x50-@3x.png"; sourceTree = ""; }; - 4C5872FC1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-60x30-@1x.png"; sourceTree = ""; }; - 4C5872FD1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-60x30-@2x.png"; sourceTree = ""; }; - 4C5872FE1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fill-60x30-@3x.png"; sourceTree = ""; }; - 4C5872FF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-30x60-@1x.png"; sourceTree = ""; }; - 4C5873001B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-30x60-@2x.png"; sourceTree = ""; }; - 4C5873011B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-30x60-@3x.png"; sourceTree = ""; }; - 4C5873021B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-50x50-@1x.png"; sourceTree = ""; }; - 4C5873031B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-50x50-@2x.png"; sourceTree = ""; }; - 4C5873041B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-50x50-@3x.png"; sourceTree = ""; }; - 4C5873051B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-60x30-@1x.png"; sourceTree = ""; }; - 4C5873061B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-60x30-@2x.png"; sourceTree = ""; }; - 4C5873071B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill-60x30-@3x.png"; sourceTree = ""; }; - 4C5873081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-30x60-@1x.png"; sourceTree = ""; }; - 4C5873091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-30x60-@2x.png"; sourceTree = ""; }; - 4C58730A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-30x60-@3x.png"; sourceTree = ""; }; - 4C58730B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-50x50-@1x.png"; sourceTree = ""; }; - 4C58730C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-50x50-@2x.png"; sourceTree = ""; }; - 4C58730D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-50x50-@3x.png"; sourceTree = ""; }; - 4C58730E1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-60x30-@1x.png"; sourceTree = ""; }; - 4C58730F1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-60x30-@2x.png"; sourceTree = ""; }; - 4C5873101B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fill-60x30-@3x.png"; sourceTree = ""; }; - 4C5873111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-30x60-@1x.png"; sourceTree = ""; }; - 4C5873121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-30x60-@2x.png"; sourceTree = ""; }; - 4C5873131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-30x60-@3x.png"; sourceTree = ""; }; - 4C5873141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-50x50-@1x.png"; sourceTree = ""; }; - 4C5873151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-50x50-@2x.png"; sourceTree = ""; }; - 4C5873161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-50x50-@3x.png"; sourceTree = ""; }; - 4C5873171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-60x30-@1x.png"; sourceTree = ""; }; - 4C5873181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-60x30-@2x.png"; sourceTree = ""; }; - 4C5873191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fill-60x30-@3x.png"; sourceTree = ""; }; - 4C58731B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png"; sourceTree = ""; }; - 4C58731C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png"; sourceTree = ""; }; - 4C58731D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png"; sourceTree = ""; }; - 4C58731F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png"; sourceTree = ""; }; - 4C5873201B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png"; sourceTree = ""; }; - 4C5873211B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png"; sourceTree = ""; }; - 4C5873231B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-30x60-@1x.png"; sourceTree = ""; }; - 4C5873241B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-30x60-@2x.png"; sourceTree = ""; }; - 4C5873251B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-30x60-@3x.png"; sourceTree = ""; }; - 4C5873261B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-50x50-@1x.png"; sourceTree = ""; }; - 4C5873271B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-50x50-@2x.png"; sourceTree = ""; }; - 4C5873281B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-50x50-@3x.png"; sourceTree = ""; }; - 4C5873291B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-60x30-@1x.png"; sourceTree = ""; }; - 4C58732A1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-60x30-@2x.png"; sourceTree = ""; }; - 4C58732B1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-aspect.scaled.to.fit-60x30-@3x.png"; sourceTree = ""; }; - 4C58732C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-30x60-@1x.png"; sourceTree = ""; }; - 4C58732D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-30x60-@2x.png"; sourceTree = ""; }; - 4C58732E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-30x60-@3x.png"; sourceTree = ""; }; - 4C58732F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-50x50-@1x.png"; sourceTree = ""; }; - 4C5873301B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-50x50-@2x.png"; sourceTree = ""; }; - 4C5873311B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-50x50-@3x.png"; sourceTree = ""; }; - 4C5873321B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-60x30-@1x.png"; sourceTree = ""; }; - 4C5873331B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-60x30-@2x.png"; sourceTree = ""; }; - 4C5873341B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-aspect.scaled.to.fit-60x30-@3x.png"; sourceTree = ""; }; - 4C5873351B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-30x60-@1x.png"; sourceTree = ""; }; - 4C5873361B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-30x60-@2x.png"; sourceTree = ""; }; - 4C5873371B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-30x60-@3x.png"; sourceTree = ""; }; - 4C5873381B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-50x50-@1x.png"; sourceTree = ""; }; - 4C5873391B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-50x50-@2x.png"; sourceTree = ""; }; - 4C58733A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-50x50-@3x.png"; sourceTree = ""; }; - 4C58733B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-60x30-@1x.png"; sourceTree = ""; }; - 4C58733C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-60x30-@2x.png"; sourceTree = ""; }; - 4C58733D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-aspect.scaled.to.fit-60x30-@3x.png"; sourceTree = ""; }; - 4C58733E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-30x60-@1x.png"; sourceTree = ""; }; - 4C58733F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-30x60-@2x.png"; sourceTree = ""; }; - 4C5873401B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-30x60-@3x.png"; sourceTree = ""; }; - 4C5873411B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-50x50-@1x.png"; sourceTree = ""; }; - 4C5873421B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-50x50-@2x.png"; sourceTree = ""; }; - 4C5873431B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-50x50-@3x.png"; sourceTree = ""; }; - 4C5873441B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-60x30-@1x.png"; sourceTree = ""; }; - 4C5873451B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-60x30-@2x.png"; sourceTree = ""; }; - 4C5873461B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-aspect.scaled.to.fit-60x30-@3x.png"; sourceTree = ""; }; - 4C5873481B93EFFB00407E58 /* apple-circle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-circle.png"; sourceTree = ""; }; - 4C5873491B93EFFB00407E58 /* pirate-circle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-circle.png"; sourceTree = ""; }; - 4C58734A1B93EFFB00407E58 /* rainbow-circle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-circle.png"; sourceTree = ""; }; - 4C58734B1B93EFFB00407E58 /* unicorn-circle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-circle.png"; sourceTree = ""; }; - 4C58734E1B93EFFB00407E58 /* unicorn-sepia.tone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-sepia.tone.png"; sourceTree = ""; }; - 4C5873501B93EFFB00407E58 /* apple-radius-20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-radius-20.png"; sourceTree = ""; }; - 4C5873511B93EFFB00407E58 /* pirate-radius-20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-radius-20.png"; sourceTree = ""; }; - 4C5873521B93EFFB00407E58 /* rainbow-radius-20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-radius-20.png"; sourceTree = ""; }; - 4C5873531B93EFFB00407E58 /* unicorn-radius-20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-radius-20.png"; sourceTree = ""; }; - 4C5873551B93EFFB00407E58 /* apple-scaled-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-30x60-@1x.png"; sourceTree = ""; }; - 4C5873561B93EFFB00407E58 /* apple-scaled-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-30x60-@2x.png"; sourceTree = ""; }; - 4C5873571B93EFFB00407E58 /* apple-scaled-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-30x60-@3x.png"; sourceTree = ""; }; - 4C5873581B93EFFB00407E58 /* apple-scaled-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-50x50-@1x.png"; sourceTree = ""; }; - 4C5873591B93EFFB00407E58 /* apple-scaled-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-50x50-@2x.png"; sourceTree = ""; }; - 4C58735A1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-50x50-@3x.png"; sourceTree = ""; }; - 4C58735B1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-60x30-@1x.png"; sourceTree = ""; }; - 4C58735C1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-60x30-@2x.png"; sourceTree = ""; }; - 4C58735D1B93EFFB00407E58 /* apple-scaled-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "apple-scaled-60x30-@3x.png"; sourceTree = ""; }; - 4C58735E1B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-30x60-@1x.png"; sourceTree = ""; }; - 4C58735F1B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-30x60-@2x.png"; sourceTree = ""; }; - 4C5873601B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-30x60-@3x.png"; sourceTree = ""; }; - 4C5873611B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-50x50-@1x.png"; sourceTree = ""; }; - 4C5873621B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-50x50-@2x.png"; sourceTree = ""; }; - 4C5873631B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-50x50-@3x.png"; sourceTree = ""; }; - 4C5873641B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-60x30-@1x.png"; sourceTree = ""; }; - 4C5873651B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-60x30-@2x.png"; sourceTree = ""; }; - 4C5873661B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled-60x30-@3x.png"; sourceTree = ""; }; - 4C5873671B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-30x60-@1x.png"; sourceTree = ""; }; - 4C5873681B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-30x60-@2x.png"; sourceTree = ""; }; - 4C5873691B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-30x60-@3x.png"; sourceTree = ""; }; - 4C58736A1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-50x50-@1x.png"; sourceTree = ""; }; - 4C58736B1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-50x50-@2x.png"; sourceTree = ""; }; - 4C58736C1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-50x50-@3x.png"; sourceTree = ""; }; - 4C58736D1B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-60x30-@1x.png"; sourceTree = ""; }; - 4C58736E1B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-60x30-@2x.png"; sourceTree = ""; }; - 4C58736F1B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "rainbow-scaled-60x30-@3x.png"; sourceTree = ""; }; - 4C5873701B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-30x60-@1x.png"; sourceTree = ""; }; - 4C5873711B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-30x60-@2x.png"; sourceTree = ""; }; - 4C5873721B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-30x60-@3x.png"; sourceTree = ""; }; - 4C5873731B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-50x50-@1x.png"; sourceTree = ""; }; - 4C5873741B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-50x50-@2x.png"; sourceTree = ""; }; - 4C5873751B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-50x50-@3x.png"; sourceTree = ""; }; - 4C5873761B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-60x30-@1x.png"; sourceTree = ""; }; - 4C5873771B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-60x30-@2x.png"; sourceTree = ""; }; - 4C5873781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-scaled-60x30-@3x.png"; sourceTree = ""; }; - 4C58737A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled.to.size.circle-100x100-@1x.png"; sourceTree = ""; }; - 4C58737B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled.to.size.circle-100x100-@2x.png"; sourceTree = ""; }; - 4C58737C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled.to.size.circle-100x100-@3x.png"; sourceTree = ""; }; - 4C58737E1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png"; sourceTree = ""; }; - 4C58737F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png"; sourceTree = ""; }; - 4C5873801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png"; sourceTree = ""; }; - 4C5874851B93F81800407E58 /* ImageDownloaderTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageDownloaderTests.swift; sourceTree = ""; }; - 4C62D30F1B96C1500011B036 /* UIImageViewTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIImageViewTests.swift; sourceTree = ""; }; - 4C78EA711AACD28C002C0569 /* UIImageView+AlamofireImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImageView+AlamofireImage.swift"; sourceTree = ""; }; - 4C8290791B927CE6005E24C8 /* Image.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Image.swift; sourceTree = ""; }; - 4C9043771AABBFC5001B4E60 /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C9043821AABBFC5001B4E60 /* AlamofireImage iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "AlamofireImage iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C96A4771AAE9488008AE0B6 /* ImageDownloader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageDownloader.swift; sourceTree = ""; }; - 4CB2B2F31C0270C500B442EA /* Info-tvOS.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-tvOS.plist"; sourceTree = ""; }; - 4CB2DBE31C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-blurred-8-ios-8.1.png"; sourceTree = ""; }; - 4CB2DBE41C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-blurred-8-ios-8.3.png"; sourceTree = ""; }; - 4CB2DBE51C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unicorn-blurred-8-ios-9.png"; sourceTree = ""; }; - 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Alamofire.xcodeproj; path = Carthage/Checkouts/Alamofire/Alamofire.xcodeproj; sourceTree = ""; }; - 4CE611321AABC24E00D35044 /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4CE611471AABC5C900D35044 /* AlamofireImage OSX Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "AlamofireImage OSX Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4CE611541AABC8D900D35044 /* Request+AlamofireImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Request+AlamofireImage.swift"; sourceTree = ""; }; - 4CEBB53F1B93C622001391DE /* ImageCacheTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageCacheTests.swift; sourceTree = ""; }; - 4CFC0A051AB4FEC90004D0B8 /* ImageCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageCache.swift; sourceTree = ""; }; - 4CFC0A081AB52BD90004D0B8 /* ImageFilter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageFilter.swift; sourceTree = ""; }; - CF24CF3C1C253CA000904E85 /* UIButtonTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIButtonTests.swift; sourceTree = ""; }; - CF24CF411C253CB100904E85 /* UIButton+AlamofireImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIButton+AlamofireImage.swift"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 4C16B3791BA9399500A66EF0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B39C1BA93A3D00A66EF0 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C16B3831BA9399500A66EF0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B3871BA9399500A66EF0 /* AlamofireImage.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C4D4EBD1B92976900C96855 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CE5AAC11B9BF11F003530D6 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C9043731AABBFC5001B4E60 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CE5AABB1B9BF104003530D6 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C90437F1AABBFC5001B4E60 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B4371BA93B4000A66EF0 /* AlamofireImage.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE6112A1AABC24E00D35044 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CE5AABE1B9BF111003530D6 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE611441AABC5C900D35044 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B4361BA93B3300A66EF0 /* AlamofireImage.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 4C0893EA1B936A4D005125D9 /* Extensions */ = { - isa = PBXGroup; - children = ( - 4C0893EB1B936A7A005125D9 /* UIImage+AlamofireImageTests.swift */, - ); - name = Extensions; - sourceTree = ""; - }; - 4C0894021B9382EB005125D9 /* Resources */ = { - isa = PBXGroup; - children = ( - 4C5872F41B93EFFB00407E58 /* Modified Images */, - 4C08944F1B9382EB005125D9 /* Original Images */, - ); - path = Resources; - sourceTree = ""; - }; - 4C08944F1B9382EB005125D9 /* Original Images */ = { - isa = PBXGroup; - children = ( - 4C0894501B9382EB005125D9 /* apple.jpg */, - 4C0897E71B93B0FB005125D9 /* huge_map.jpg */, - 4C0894511B9382EB005125D9 /* pirate.jpg */, - 4C0894521B9382EB005125D9 /* rainbow.jpg */, - 4C0894531B9382EB005125D9 /* unicorn.png */, - ); - path = "Original Images"; - sourceTree = ""; - }; - 4C54EE8E1AABC04900CD894C /* Source */ = { - isa = PBXGroup; - children = ( - 4C8290791B927CE6005E24C8 /* Image.swift */, - 4CFC0A051AB4FEC90004D0B8 /* ImageCache.swift */, - 4C96A4771AAE9488008AE0B6 /* ImageDownloader.swift */, - 4CFC0A081AB52BD90004D0B8 /* ImageFilter.swift */, - 4C5D84571AAD958A00A42375 /* Extensions */, - 4C54EE931AABC05100CD894C /* Supporting Files */, - ); - path = Source; - sourceTree = ""; - }; - 4C54EE931AABC05100CD894C /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 4C54EE8F1AABC04900CD894C /* AlamofireImage.h */, - 4C54EE901AABC04900CD894C /* Info.plist */, - 4CB2B2F31C0270C500B442EA /* Info-tvOS.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 4C54EE941AABC08B00CD894C /* Tests */ = { - isa = PBXGroup; - children = ( - 4C1624841AABE8E600A0385D /* BaseTestCase.swift */, - 4CEBB53F1B93C622001391DE /* ImageCacheTests.swift */, - 4C5874851B93F81800407E58 /* ImageDownloaderTests.swift */, - 4C5872C91B93DEAC00407E58 /* ImageFilterTests.swift */, - 4C0897EA1B93BC0D005125D9 /* RequestTests.swift */, - CF24CF3C1C253CA000904E85 /* UIButtonTests.swift */, - 4C0893F41B937404005125D9 /* UIImageTests.swift */, - 4C62D30F1B96C1500011B036 /* UIImageViewTests.swift */, - 4C0893EA1B936A4D005125D9 /* Extensions */, - 4C0894021B9382EB005125D9 /* Resources */, - 4C54EE991AABC09000CD894C /* Supporting Files */, - ); - path = Tests; - sourceTree = ""; - }; - 4C54EE991AABC09000CD894C /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 4C54EE961AABC08B00CD894C /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 4C5872F41B93EFFB00407E58 /* Modified Images */ = { - isa = PBXGroup; - children = ( - 4C5872F51B93EFFB00407E58 /* Aspect Scaled to Fill */, - 4C58731A1B93EFFB00407E58 /* Aspect Scaled to Fill Circle */, - 4C58731E1B93EFFB00407E58 /* Aspect Scaled to Fill with Rounded Corners */, - 4C5873221B93EFFB00407E58 /* Aspect Scaled to Fit */, - 4C5873471B93EFFB00407E58 /* Circle */, - 4C58734C1B93EFFB00407E58 /* Core Image Filters */, - 4C58734F1B93EFFB00407E58 /* Radius */, - 4C5873541B93EFFB00407E58 /* Scaled */, - 4C5873791B93EFFB00407E58 /* Scaled to Size Circle */, - 4C58737D1B93EFFB00407E58 /* Scaled with Rounded Corners */, - ); - path = "Modified Images"; - sourceTree = ""; - }; - 4C5872F51B93EFFB00407E58 /* Aspect Scaled to Fill */ = { - isa = PBXGroup; - children = ( - 4C5872F61B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png */, - 4C5872F71B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png */, - 4C5872F81B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png */, - 4C5872F91B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png */, - 4C5872FA1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png */, - 4C5872FB1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png */, - 4C5872FC1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png */, - 4C5872FD1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png */, - 4C5872FE1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png */, - 4C5872FF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png */, - 4C5873001B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png */, - 4C5873011B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png */, - 4C5873021B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png */, - 4C5873031B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png */, - 4C5873041B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png */, - 4C5873051B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png */, - 4C5873061B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png */, - 4C5873071B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png */, - 4C5873081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png */, - 4C5873091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png */, - 4C58730A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png */, - 4C58730B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png */, - 4C58730C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png */, - 4C58730D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png */, - 4C58730E1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png */, - 4C58730F1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png */, - 4C5873101B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png */, - 4C5873111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png */, - 4C5873121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png */, - 4C5873131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png */, - 4C5873141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png */, - 4C5873151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png */, - 4C5873161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png */, - 4C5873171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png */, - 4C5873181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png */, - 4C5873191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png */, - ); - path = "Aspect Scaled to Fill"; - sourceTree = ""; - }; - 4C58731A1B93EFFB00407E58 /* Aspect Scaled to Fill Circle */ = { - isa = PBXGroup; - children = ( - 4C58731B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png */, - 4C58731C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png */, - 4C58731D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png */, - ); - path = "Aspect Scaled to Fill Circle"; - sourceTree = ""; - }; - 4C58731E1B93EFFB00407E58 /* Aspect Scaled to Fill with Rounded Corners */ = { - isa = PBXGroup; - children = ( - 4C58731F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png */, - 4C5873201B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png */, - 4C5873211B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png */, - ); - path = "Aspect Scaled to Fill with Rounded Corners"; - sourceTree = ""; - }; - 4C5873221B93EFFB00407E58 /* Aspect Scaled to Fit */ = { - isa = PBXGroup; - children = ( - 4C5873231B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png */, - 4C5873241B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png */, - 4C5873251B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png */, - 4C5873261B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png */, - 4C5873271B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png */, - 4C5873281B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png */, - 4C5873291B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png */, - 4C58732A1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png */, - 4C58732B1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png */, - 4C58732C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png */, - 4C58732D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png */, - 4C58732E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png */, - 4C58732F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png */, - 4C5873301B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png */, - 4C5873311B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png */, - 4C5873321B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png */, - 4C5873331B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png */, - 4C5873341B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png */, - 4C5873351B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png */, - 4C5873361B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png */, - 4C5873371B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png */, - 4C5873381B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png */, - 4C5873391B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png */, - 4C58733A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png */, - 4C58733B1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png */, - 4C58733C1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png */, - 4C58733D1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png */, - 4C58733E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png */, - 4C58733F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png */, - 4C5873401B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png */, - 4C5873411B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png */, - 4C5873421B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png */, - 4C5873431B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png */, - 4C5873441B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png */, - 4C5873451B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png */, - 4C5873461B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png */, - ); - path = "Aspect Scaled to Fit"; - sourceTree = ""; - }; - 4C5873471B93EFFB00407E58 /* Circle */ = { - isa = PBXGroup; - children = ( - 4C5873481B93EFFB00407E58 /* apple-circle.png */, - 4C5873491B93EFFB00407E58 /* pirate-circle.png */, - 4C58734A1B93EFFB00407E58 /* rainbow-circle.png */, - 4C58734B1B93EFFB00407E58 /* unicorn-circle.png */, - ); - path = Circle; - sourceTree = ""; - }; - 4C58734C1B93EFFB00407E58 /* Core Image Filters */ = { - isa = PBXGroup; - children = ( - 4CB2DBE31C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png */, - 4CB2DBE41C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png */, - 4CB2DBE51C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png */, - 4C58734E1B93EFFB00407E58 /* unicorn-sepia.tone.png */, - ); - path = "Core Image Filters"; - sourceTree = ""; - }; - 4C58734F1B93EFFB00407E58 /* Radius */ = { - isa = PBXGroup; - children = ( - 4C5873501B93EFFB00407E58 /* apple-radius-20.png */, - 4C5873511B93EFFB00407E58 /* pirate-radius-20.png */, - 4C5873521B93EFFB00407E58 /* rainbow-radius-20.png */, - 4C5873531B93EFFB00407E58 /* unicorn-radius-20.png */, - ); - path = Radius; - sourceTree = ""; - }; - 4C5873541B93EFFB00407E58 /* Scaled */ = { - isa = PBXGroup; - children = ( - 4C5873551B93EFFB00407E58 /* apple-scaled-30x60-@1x.png */, - 4C5873561B93EFFB00407E58 /* apple-scaled-30x60-@2x.png */, - 4C5873571B93EFFB00407E58 /* apple-scaled-30x60-@3x.png */, - 4C5873581B93EFFB00407E58 /* apple-scaled-50x50-@1x.png */, - 4C5873591B93EFFB00407E58 /* apple-scaled-50x50-@2x.png */, - 4C58735A1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png */, - 4C58735B1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png */, - 4C58735C1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png */, - 4C58735D1B93EFFB00407E58 /* apple-scaled-60x30-@3x.png */, - 4C58735E1B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png */, - 4C58735F1B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png */, - 4C5873601B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png */, - 4C5873611B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png */, - 4C5873621B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png */, - 4C5873631B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png */, - 4C5873641B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png */, - 4C5873651B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png */, - 4C5873661B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png */, - 4C5873671B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png */, - 4C5873681B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png */, - 4C5873691B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png */, - 4C58736A1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png */, - 4C58736B1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png */, - 4C58736C1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png */, - 4C58736D1B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png */, - 4C58736E1B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png */, - 4C58736F1B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png */, - 4C5873701B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png */, - 4C5873711B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png */, - 4C5873721B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png */, - 4C5873731B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png */, - 4C5873741B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png */, - 4C5873751B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png */, - 4C5873761B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png */, - 4C5873771B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png */, - 4C5873781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png */, - ); - path = Scaled; - sourceTree = ""; - }; - 4C5873791B93EFFB00407E58 /* Scaled to Size Circle */ = { - isa = PBXGroup; - children = ( - 4C58737A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png */, - 4C58737B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png */, - 4C58737C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png */, - ); - path = "Scaled to Size Circle"; - sourceTree = ""; - }; - 4C58737D1B93EFFB00407E58 /* Scaled with Rounded Corners */ = { - isa = PBXGroup; - children = ( - 4C58737E1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png */, - 4C58737F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png */, - 4C5873801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png */, - ); - path = "Scaled with Rounded Corners"; - sourceTree = ""; - }; - 4C5D84571AAD958A00A42375 /* Extensions */ = { - isa = PBXGroup; - children = ( - 4CF6CC601AAD289E007A38CB /* Alamofire */, - 4CF6CC5D1AAD2822007A38CB /* UIKit */, - ); - name = Extensions; - sourceTree = ""; - }; - 4C90436D1AABBFC5001B4E60 = { - isa = PBXGroup; - children = ( - 4C54EE8E1AABC04900CD894C /* Source */, - 4C54EE941AABC08B00CD894C /* Tests */, - 4C9043781AABBFC5001B4E60 /* Products */, - 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */, - ); - sourceTree = ""; - }; - 4C9043781AABBFC5001B4E60 /* Products */ = { - isa = PBXGroup; - children = ( - 4C9043771AABBFC5001B4E60 /* AlamofireImage.framework */, - 4C9043821AABBFC5001B4E60 /* AlamofireImage iOS Tests.xctest */, - 4CE611321AABC24E00D35044 /* AlamofireImage.framework */, - 4CE611471AABC5C900D35044 /* AlamofireImage OSX Tests.xctest */, - 4C4D4EC11B92976900C96855 /* AlamofireImage.framework */, - 4C16B37D1BA9399500A66EF0 /* AlamofireImage.framework */, - 4C16B3861BA9399500A66EF0 /* AlamofireImage tvOS Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 4CE5AAA71B9BF099003530D6 /* Products */ = { - isa = PBXGroup; - children = ( - 4CE5AAAF1B9BF09A003530D6 /* Alamofire.framework */, - 4CE5AAB51B9BF09A003530D6 /* Alamofire iOS Tests.xctest */, - 4CE5AAB11B9BF09A003530D6 /* Alamofire.framework */, - 4CE5AAB71B9BF09A003530D6 /* Alamofire OSX Tests.xctest */, - 4C16B3971BA9399500A66EF0 /* Alamofire.framework */, - 4C16B3991BA9399500A66EF0 /* Alamofire tvOS Tests.xctest */, - 4CE5AAB31B9BF09A003530D6 /* Alamofire.framework */, - ); - name = Products; - sourceTree = ""; - }; - 4CF6CC5D1AAD2822007A38CB /* UIKit */ = { - isa = PBXGroup; - children = ( - CF24CF411C253CB100904E85 /* UIButton+AlamofireImage.swift */, - 4C53084F1AB561BF0051DBAC /* UIImage+AlamofireImage.swift */, - 4C78EA711AACD28C002C0569 /* UIImageView+AlamofireImage.swift */, - ); - name = UIKit; - sourceTree = ""; - }; - 4CF6CC601AAD289E007A38CB /* Alamofire */ = { - isa = PBXGroup; - children = ( - 4CE611541AABC8D900D35044 /* Request+AlamofireImage.swift */, - ); - name = Alamofire; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 4C16B37A1BA9399500A66EF0 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B39F1BA93AA600A66EF0 /* AlamofireImage.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C4D4EBE1B92976900C96855 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C4D4EC91B9297B300C96855 /* AlamofireImage.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C9043741AABBFC5001B4E60 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C54EE911AABC04900CD894C /* AlamofireImage.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE6112B1AABC24E00D35044 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CE6112C1AABC24E00D35044 /* AlamofireImage.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 4C16B37C1BA9399500A66EF0 /* AlamofireImage tvOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4C16B39A1BA9399500A66EF0 /* Build configuration list for PBXNativeTarget "AlamofireImage tvOS" */; - buildPhases = ( - 4C16B3781BA9399500A66EF0 /* Sources */, - 4C16B3791BA9399500A66EF0 /* Frameworks */, - 4C16B37A1BA9399500A66EF0 /* Headers */, - 4C16B37B1BA9399500A66EF0 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4C16B39E1BA93A4B00A66EF0 /* PBXTargetDependency */, - ); - name = "AlamofireImage tvOS"; - productName = "AlamofireImage tvOS"; - productReference = 4C16B37D1BA9399500A66EF0 /* AlamofireImage.framework */; - productType = "com.apple.product-type.framework"; - }; - 4C16B3851BA9399500A66EF0 /* AlamofireImage tvOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4C16B39B1BA9399500A66EF0 /* Build configuration list for PBXNativeTarget "AlamofireImage tvOS Tests" */; - buildPhases = ( - 4C16B3821BA9399500A66EF0 /* Sources */, - 4C16B3831BA9399500A66EF0 /* Frameworks */, - 4C16B3841BA9399500A66EF0 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4C16B3891BA9399500A66EF0 /* PBXTargetDependency */, - ); - name = "AlamofireImage tvOS Tests"; - productName = "AlamofireImage tvOSTests"; - productReference = 4C16B3861BA9399500A66EF0 /* AlamofireImage tvOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 4C4D4EC01B92976900C96855 /* AlamofireImage watchOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4C4D4EC61B92976900C96855 /* Build configuration list for PBXNativeTarget "AlamofireImage watchOS" */; - buildPhases = ( - 4C4D4EBC1B92976900C96855 /* Sources */, - 4C4D4EBD1B92976900C96855 /* Frameworks */, - 4C4D4EBE1B92976900C96855 /* Headers */, - 4C4D4EBF1B92976900C96855 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4CE5AAC01B9BF11A003530D6 /* PBXTargetDependency */, - ); - name = "AlamofireImage watchOS"; - productName = "AlamofireImage watchOS"; - productReference = 4C4D4EC11B92976900C96855 /* AlamofireImage.framework */; - productType = "com.apple.product-type.framework"; - }; - 4C9043761AABBFC5001B4E60 /* AlamofireImage iOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4C90438D1AABBFC5001B4E60 /* Build configuration list for PBXNativeTarget "AlamofireImage iOS" */; - buildPhases = ( - 4C9043721AABBFC5001B4E60 /* Sources */, - 4C9043731AABBFC5001B4E60 /* Frameworks */, - 4C9043741AABBFC5001B4E60 /* Headers */, - 4C9043751AABBFC5001B4E60 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4CE5AABA1B9BF0F6003530D6 /* PBXTargetDependency */, - ); - name = "AlamofireImage iOS"; - productName = AlamofireImage; - productReference = 4C9043771AABBFC5001B4E60 /* AlamofireImage.framework */; - productType = "com.apple.product-type.framework"; - }; - 4C9043811AABBFC5001B4E60 /* AlamofireImage iOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4C9043901AABBFC5001B4E60 /* Build configuration list for PBXNativeTarget "AlamofireImage iOS Tests" */; - buildPhases = ( - 4C90437E1AABBFC5001B4E60 /* Sources */, - 4C90437F1AABBFC5001B4E60 /* Frameworks */, - 4C9043801AABBFC5001B4E60 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4C9043851AABBFC5001B4E60 /* PBXTargetDependency */, - ); - name = "AlamofireImage iOS Tests"; - productName = AlamofireImageTests; - productReference = 4C9043821AABBFC5001B4E60 /* AlamofireImage iOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 4CE611281AABC24E00D35044 /* AlamofireImage OSX */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4CE6112F1AABC24E00D35044 /* Build configuration list for PBXNativeTarget "AlamofireImage OSX" */; - buildPhases = ( - 4CE611291AABC24E00D35044 /* Sources */, - 4CE6112A1AABC24E00D35044 /* Frameworks */, - 4CE6112B1AABC24E00D35044 /* Headers */, - 4CE6112D1AABC24E00D35044 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4CE5AABD1B9BF10C003530D6 /* PBXTargetDependency */, - ); - name = "AlamofireImage OSX"; - productName = AlamofireImage; - productReference = 4CE611321AABC24E00D35044 /* AlamofireImage.framework */; - productType = "com.apple.product-type.framework"; - }; - 4CE611461AABC5C900D35044 /* AlamofireImage OSX Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4CE611501AABC5C900D35044 /* Build configuration list for PBXNativeTarget "AlamofireImage OSX Tests" */; - buildPhases = ( - 4CE611431AABC5C900D35044 /* Sources */, - 4CE611441AABC5C900D35044 /* Frameworks */, - 4CE611451AABC5C900D35044 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4CE6114F1AABC5C900D35044 /* PBXTargetDependency */, - ); - name = "AlamofireImage OSX Tests"; - productName = "AlamofireImage OSX Tests"; - productReference = 4CE611471AABC5C900D35044 /* AlamofireImage OSX Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 4C90436E1AABBFC5001B4E60 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftMigration = 0700; - LastSwiftUpdateCheck = 0700; - LastUpgradeCheck = 0720; - ORGANIZATIONNAME = Alamofire; - TargetAttributes = { - 4C16B37C1BA9399500A66EF0 = { - CreatedOnToolsVersion = 7.1; - }; - 4C16B3851BA9399500A66EF0 = { - CreatedOnToolsVersion = 7.1; - }; - 4C4D4EC01B92976900C96855 = { - CreatedOnToolsVersion = 7.0; - }; - 4C9043761AABBFC5001B4E60 = { - CreatedOnToolsVersion = 6.2; - }; - 4C9043811AABBFC5001B4E60 = { - CreatedOnToolsVersion = 6.2; - }; - 4CE611461AABC5C900D35044 = { - CreatedOnToolsVersion = 6.2; - }; - }; - }; - buildConfigurationList = 4C9043711AABBFC5001B4E60 /* Build configuration list for PBXProject "AlamofireImage" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = 4C90436D1AABBFC5001B4E60; - productRefGroup = 4C9043781AABBFC5001B4E60 /* Products */; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = 4CE5AAA71B9BF099003530D6 /* Products */; - ProjectRef = 4CE5AAA61B9BF099003530D6 /* Alamofire.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - 4C9043761AABBFC5001B4E60 /* AlamofireImage iOS */, - 4C9043811AABBFC5001B4E60 /* AlamofireImage iOS Tests */, - 4CE611281AABC24E00D35044 /* AlamofireImage OSX */, - 4CE611461AABC5C900D35044 /* AlamofireImage OSX Tests */, - 4C16B37C1BA9399500A66EF0 /* AlamofireImage tvOS */, - 4C16B3851BA9399500A66EF0 /* AlamofireImage tvOS Tests */, - 4C4D4EC01B92976900C96855 /* AlamofireImage watchOS */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - 4C16B3971BA9399500A66EF0 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 4C16B3961BA9399500A66EF0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4C16B3991BA9399500A66EF0 /* Alamofire tvOS Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire tvOS Tests.xctest"; - remoteRef = 4C16B3981BA9399500A66EF0 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4CE5AAAF1B9BF09A003530D6 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 4CE5AAAE1B9BF09A003530D6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4CE5AAB11B9BF09A003530D6 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 4CE5AAB01B9BF09A003530D6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4CE5AAB31B9BF09A003530D6 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 4CE5AAB21B9BF09A003530D6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4CE5AAB51B9BF09A003530D6 /* Alamofire iOS Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire iOS Tests.xctest"; - remoteRef = 4CE5AAB41B9BF09A003530D6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 4CE5AAB71B9BF09A003530D6 /* Alamofire OSX Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire OSX Tests.xctest"; - remoteRef = 4CE5AAB61B9BF09A003530D6 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXResourcesBuildPhase section */ - 4C16B37B1BA9399500A66EF0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C16B3841BA9399500A66EF0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B4161BA93AFD00A66EF0 /* pirate-scaled-60x30-@1x.png in Resources */, - 4C16B3F91BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C16B3C71BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C16B3F31BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C16B3CA1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C16B3B61BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C16B3B21BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C16B3D41BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png in Resources */, - 4C16B3B31BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C16B3BE1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C16B4221BA93AFD00A66EF0 /* unicorn-scaled-30x60-@1x.png in Resources */, - 4C16B41D1BA93AFD00A66EF0 /* rainbow-scaled-50x50-@2x.png in Resources */, - 4C16B3EB1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C16B3E51BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C16B3FF1BA93AEF00A66EF0 /* rainbow-circle.png in Resources */, - 4C16B4191BA93AFD00A66EF0 /* rainbow-scaled-30x60-@1x.png in Resources */, - 4CB2DBEB1C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png in Resources */, - 4C16B4281BA93AFD00A66EF0 /* unicorn-scaled-60x30-@1x.png in Resources */, - 4C16B3FD1BA93AEF00A66EF0 /* apple-circle.png in Resources */, - 4C16B3B41BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C16B4121BA93AFD00A66EF0 /* pirate-scaled-30x60-@3x.png in Resources */, - 4C16B3B11BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C16B3C21BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C16B4041BA93AF200A66EF0 /* pirate-radius-20.png in Resources */, - 4C16B3E71BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C16B4061BA93AF200A66EF0 /* unicorn-radius-20.png in Resources */, - 4C16B3F01BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C16B3FA1BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C16B3E21BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C16B3C81BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C16B3B81BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C16B41F1BA93AFD00A66EF0 /* rainbow-scaled-60x30-@1x.png in Resources */, - 4C16B3B01BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C16B4091BA93AFD00A66EF0 /* apple-scaled-30x60-@3x.png in Resources */, - 4C16B42F1BA93AFD00A66EF0 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png in Resources */, - 4C16B3F51BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C16B3D91BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C16B4341BA93AFD00A66EF0 /* rainbow.jpg in Resources */, - 4C16B3E31BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C16B40E1BA93AFD00A66EF0 /* apple-scaled-60x30-@2x.png in Resources */, - 4C16B4251BA93AFD00A66EF0 /* unicorn-scaled-50x50-@1x.png in Resources */, - 4C16B4071BA93AFD00A66EF0 /* apple-scaled-30x60-@1x.png in Resources */, - 4C16B3CB1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C16B3F71BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C16B3BF1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C16B3F11BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C16B3E41BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C16B4231BA93AFD00A66EF0 /* unicorn-scaled-30x60-@2x.png in Resources */, - 4C16B4261BA93AFD00A66EF0 /* unicorn-scaled-50x50-@2x.png in Resources */, - 4C16B4201BA93AFD00A66EF0 /* rainbow-scaled-60x30-@2x.png in Resources */, - 4C16B3F61BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C16B3CD1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C16B41C1BA93AFD00A66EF0 /* rainbow-scaled-50x50-@1x.png in Resources */, - 4C16B42E1BA93AFD00A66EF0 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png in Resources */, - 4CB2DBE81C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png in Resources */, - 4C16B3CE1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C16B40D1BA93AFD00A66EF0 /* apple-scaled-60x30-@1x.png in Resources */, - 4C16B42D1BA93AFD00A66EF0 /* pirate-scaled.to.size.circle-100x100-@3x.png in Resources */, - 4C16B3D61BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png in Resources */, - 4C16B3E11BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C16B4111BA93AFD00A66EF0 /* pirate-scaled-30x60-@2x.png in Resources */, - 4C16B3E61BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C16B3C41BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C16B3D01BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C16B40C1BA93AFD00A66EF0 /* apple-scaled-50x50-@3x.png in Resources */, - 4C16B3F41BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C16B41A1BA93AFD00A66EF0 /* rainbow-scaled-30x60-@2x.png in Resources */, - 4C16B3EE1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C16B3BC1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C16B3D21BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C16B3D51BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png in Resources */, - 4C16B3BB1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C16B3DF1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C16B4031BA93AF200A66EF0 /* apple-radius-20.png in Resources */, - 4C16B3C31BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C16B4211BA93AFD00A66EF0 /* rainbow-scaled-60x30-@3x.png in Resources */, - 4C16B3DB1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C16B3D71BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png in Resources */, - 4C16B42B1BA93AFD00A66EF0 /* pirate-scaled.to.size.circle-100x100-@1x.png in Resources */, - 4C16B42A1BA93AFD00A66EF0 /* unicorn-scaled-60x30-@3x.png in Resources */, - 4C16B3EA1BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C16B3B91BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C16B3EF1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C16B4241BA93AFD00A66EF0 /* unicorn-scaled-30x60-@3x.png in Resources */, - 4C16B3D81BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png in Resources */, - 4C16B3FB1BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C16B41B1BA93AFD00A66EF0 /* rainbow-scaled-30x60-@3x.png in Resources */, - 4CB2DBEE1C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png in Resources */, - 4C16B4171BA93AFD00A66EF0 /* pirate-scaled-60x30-@2x.png in Resources */, - 4C16B3C91BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C16B4311BA93AFD00A66EF0 /* apple.jpg in Resources */, - 4C16B4051BA93AF200A66EF0 /* rainbow-radius-20.png in Resources */, - 4C16B40B1BA93AFD00A66EF0 /* apple-scaled-50x50-@2x.png in Resources */, - 4C16B42C1BA93AFD00A66EF0 /* pirate-scaled.to.size.circle-100x100-@2x.png in Resources */, - 4C16B3B71BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C16B4141BA93AFD00A66EF0 /* pirate-scaled-50x50-@2x.png in Resources */, - 4C16B3DA1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C16B3BA1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C16B4021BA93AEF00A66EF0 /* unicorn-sepia.tone.png in Resources */, - 4C16B3FC1BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C16B3E91BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C16B41E1BA93AFD00A66EF0 /* rainbow-scaled-50x50-@3x.png in Resources */, - 4C16B3F81BA93AEF00A66EF0 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C16B4301BA93AFD00A66EF0 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png in Resources */, - 4C16B3E81BA93AEF00A66EF0 /* pirate-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C16B3AF1BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C16B3D31BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png in Resources */, - 4C16B3CF1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C16B3C01BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C16B4271BA93AFD00A66EF0 /* unicorn-scaled-50x50-@3x.png in Resources */, - 4C16B3C51BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C16B4101BA93AFD00A66EF0 /* pirate-scaled-30x60-@1x.png in Resources */, - 4C16B3C61BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C16B4291BA93AFD00A66EF0 /* unicorn-scaled-60x30-@2x.png in Resources */, - 4C16B3D11BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C16B4081BA93AFD00A66EF0 /* apple-scaled-30x60-@2x.png in Resources */, - 4C16B3BD1BA93AE600A66EF0 /* pirate-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C16B4151BA93AFD00A66EF0 /* pirate-scaled-50x50-@3x.png in Resources */, - 4C16B3CC1BA93AE600A66EF0 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C16B3DC1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C16B4001BA93AEF00A66EF0 /* unicorn-circle.png in Resources */, - 4C16B4351BA93AFD00A66EF0 /* unicorn.png in Resources */, - 4C16B3C11BA93AE600A66EF0 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C16B4331BA93AFD00A66EF0 /* pirate.jpg in Resources */, - 4C16B3FE1BA93AEF00A66EF0 /* pirate-circle.png in Resources */, - 4C16B3F21BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C16B3EC1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C16B4321BA93AFD00A66EF0 /* huge_map.jpg in Resources */, - 4C16B4181BA93AFD00A66EF0 /* pirate-scaled-60x30-@3x.png in Resources */, - 4C16B3ED1BA93AEF00A66EF0 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C16B3DE1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C16B3DD1BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C16B40A1BA93AFD00A66EF0 /* apple-scaled-50x50-@1x.png in Resources */, - 4C16B3B51BA93AE600A66EF0 /* apple-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C16B4131BA93AFD00A66EF0 /* pirate-scaled-50x50-@1x.png in Resources */, - 4C16B40F1BA93AFD00A66EF0 /* apple-scaled-60x30-@3x.png in Resources */, - 4C16B3E01BA93AEF00A66EF0 /* apple-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C4D4EBF1B92976900C96855 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C9043751AABBFC5001B4E60 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C9043801AABBFC5001B4E60 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C5874011B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C5873B31B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5873C31B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C5873A11B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5874211B93EFFB00407E58 /* rainbow-circle.png in Resources */, - 4C5873A31B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C5874671B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png in Resources */, - 4C5873B51B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C58738B1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C5874231B93EFFB00407E58 /* unicorn-circle.png in Resources */, - 4C5874491B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png in Resources */, - 4C5874031B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C5873D31B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png in Resources */, - 4C58745D1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png in Resources */, - 4C5873911B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C0894E41B9382EB005125D9 /* apple.jpg in Resources */, - 4CB2DBE91C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png in Resources */, - 4C5873E31B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5873B11B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C58747B1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png in Resources */, - 4C5873EB1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C5874291B93EFFB00407E58 /* apple-radius-20.png in Resources */, - 4C5873E11B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5873E71B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5874791B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png in Resources */, - 4C5873891B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5874771B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png in Resources */, - 4C58745B1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png in Resources */, - 4C5873CB1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png in Resources */, - 4C5873C71B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C5874111B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5873FF1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5873951B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C5873BF1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5873AD1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5873E91B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C5873F71B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58738D1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C5874351B93EFFB00407E58 /* apple-scaled-30x60-@3x.png in Resources */, - 4C5874331B93EFFB00407E58 /* apple-scaled-30x60-@2x.png in Resources */, - 4C58744B1B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png in Resources */, - 4C5874711B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png in Resources */, - 4C5874091B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58739B1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5873CD1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png in Resources */, - 4C5873A51B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C5873851B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5874751B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png in Resources */, - 4C58746B1B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png in Resources */, - 4C5874631B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png in Resources */, - 4C58744D1B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png in Resources */, - 4C58741F1B93EFFB00407E58 /* pirate-circle.png in Resources */, - 4C5873A71B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C0897E81B93B0FB005125D9 /* huge_map.jpg in Resources */, - 4CB2DBE61C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png in Resources */, - 4C5873EF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C5873BB1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5873DB1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5874191B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5873F91B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5873C91B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png in Resources */, - 4C5873D71B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C5873F11B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C58743D1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png in Resources */, - 4C5873D91B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C58738F1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5873D51B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5874571B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png in Resources */, - 4C5873B71B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C5873D11B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png in Resources */, - 4C5874051B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5874731B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png in Resources */, - 4C5874131B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C0894EA1B9382EB005125D9 /* unicorn.png in Resources */, - 4C5874651B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png in Resources */, - 4C5874451B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png in Resources */, - 4C5873CF1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png in Resources */, - 4C5874271B93EFFB00407E58 /* unicorn-sepia.tone.png in Resources */, - 4C5873B91B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C58740D1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C5874691B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png in Resources */, - 4C5873831B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C5874411B93EFFB00407E58 /* apple-scaled-60x30-@3x.png in Resources */, - 4C5873C11B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C58747D1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png in Resources */, - 4C5873931B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C58741D1B93EFFB00407E58 /* apple-circle.png in Resources */, - 4CB2DBEC1C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png in Resources */, - 4C58739F1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C58746F1B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png in Resources */, - 4C5873DF1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C5873F51B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5873811B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C5874391B93EFFB00407E58 /* apple-scaled-50x50-@2x.png in Resources */, - 4C5874511B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png in Resources */, - 4C58742D1B93EFFB00407E58 /* rainbow-radius-20.png in Resources */, - 4C5874831B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png in Resources */, - 4C5874611B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png in Resources */, - 4C5874591B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png in Resources */, - 4C5873F31B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5874551B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png in Resources */, - 4C5874811B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png in Resources */, - 4C58742B1B93EFFB00407E58 /* pirate-radius-20.png in Resources */, - 4C5873971B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5873ED1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5874371B93EFFB00407E58 /* apple-scaled-50x50-@1x.png in Resources */, - 4C5873E51B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58743B1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png in Resources */, - 4C5874431B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png in Resources */, - 4C5873C51B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5873991B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C58744F1B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png in Resources */, - 4C5873A91B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5874471B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png in Resources */, - 4C5874171B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5873DD1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C5873AF1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C58747F1B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png in Resources */, - 4C0894E81B9382EB005125D9 /* rainbow.jpg in Resources */, - 4C58745F1B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png in Resources */, - 4C5874071B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5874531B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png in Resources */, - 4C5873FB1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C58741B1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58746D1B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png in Resources */, - 4C5873AB1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C5874311B93EFFB00407E58 /* apple-scaled-30x60-@1x.png in Resources */, - 4C0894E61B9382EB005125D9 /* pirate.jpg in Resources */, - 4C58740F1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C58739D1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C58743F1B93EFFB00407E58 /* apple-scaled-60x30-@2x.png in Resources */, - 4C5874151B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C5873BD1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C58740B1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5873FD1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C5873871B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C58742F1B93EFFB00407E58 /* unicorn-radius-20.png in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE6112D1AABC24E00D35044 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE611451AABC5C900D35044 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C5874021B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C5873B41B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5873C41B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C5873A21B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5874221B93EFFB00407E58 /* rainbow-circle.png in Resources */, - 4C5873A41B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C5874681B93EFFB00407E58 /* unicorn-scaled-30x60-@1x.png in Resources */, - 4C5873B61B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C58738C1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C5874241B93EFFB00407E58 /* unicorn-circle.png in Resources */, - 4C58744A1B93EFFB00407E58 /* pirate-scaled-50x50-@1x.png in Resources */, - 4C5874041B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C5873D41B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@3x.png in Resources */, - 4C58745E1B93EFFB00407E58 /* rainbow-scaled-50x50-@2x.png in Resources */, - 4C5873921B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C0894E51B9382EB005125D9 /* apple.jpg in Resources */, - 4CB2DBEA1C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.3.png in Resources */, - 4C5873E41B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5873B21B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C58747C1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@2x.png in Resources */, - 4C5873EC1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C58742A1B93EFFB00407E58 /* apple-radius-20.png in Resources */, - 4C5873E21B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5873E81B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C58747A1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@1x.png in Resources */, - 4C58738A1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5874781B93EFFB00407E58 /* unicorn-scaled-60x30-@3x.png in Resources */, - 4C58745C1B93EFFB00407E58 /* rainbow-scaled-50x50-@1x.png in Resources */, - 4C5873CC1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@2x.png in Resources */, - 4C5873C81B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@3x.png in Resources */, - 4C5874121B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5874001B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5873961B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C5873C01B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5873AE1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5873EA1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C5873F81B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58738E1B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C5874361B93EFFB00407E58 /* apple-scaled-30x60-@3x.png in Resources */, - 4C5874341B93EFFB00407E58 /* apple-scaled-30x60-@2x.png in Resources */, - 4C58744C1B93EFFB00407E58 /* pirate-scaled-50x50-@2x.png in Resources */, - 4C5874721B93EFFB00407E58 /* unicorn-scaled-50x50-@3x.png in Resources */, - 4C58740A1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58739C1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@2x.png in Resources */, - 4C5873CE1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png in Resources */, - 4C5873A61B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C5873861B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5874761B93EFFB00407E58 /* unicorn-scaled-60x30-@2x.png in Resources */, - 4C58746C1B93EFFB00407E58 /* unicorn-scaled-30x60-@3x.png in Resources */, - 4C5874641B93EFFB00407E58 /* rainbow-scaled-60x30-@2x.png in Resources */, - 4C58744E1B93EFFB00407E58 /* pirate-scaled-50x50-@3x.png in Resources */, - 4C5874201B93EFFB00407E58 /* pirate-circle.png in Resources */, - 4C5873A81B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C0897E91B93B0FB005125D9 /* huge_map.jpg in Resources */, - 4CB2DBE71C632D3E000CC9C2 /* unicorn-blurred-8-ios-8.1.png in Resources */, - 4C5873F01B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C5873BC1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5873DC1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C58741A1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5873FA1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5873CA1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png in Resources */, - 4C5873D81B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C5873F21B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C58743E1B93EFFB00407E58 /* apple-scaled-60x30-@1x.png in Resources */, - 4C5873DA1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C5873901B93EFFB00407E58 /* apple-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C5873D61B93EFFB00407E58 /* apple-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5874581B93EFFB00407E58 /* rainbow-scaled-30x60-@2x.png in Resources */, - 4C5873B81B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C5873D21B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@2x.png in Resources */, - 4C5874061B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5874741B93EFFB00407E58 /* unicorn-scaled-60x30-@1x.png in Resources */, - 4C5874141B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C0894EB1B9382EB005125D9 /* unicorn.png in Resources */, - 4C5874661B93EFFB00407E58 /* rainbow-scaled-60x30-@3x.png in Resources */, - 4C5874461B93EFFB00407E58 /* pirate-scaled-30x60-@2x.png in Resources */, - 4C5873D01B93EFFB00407E58 /* pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@1x.png in Resources */, - 4C5874281B93EFFB00407E58 /* unicorn-sepia.tone.png in Resources */, - 4C5873BA1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C58740E1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C58746A1B93EFFB00407E58 /* unicorn-scaled-30x60-@2x.png in Resources */, - 4C5873841B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@2x.png in Resources */, - 4C5874421B93EFFB00407E58 /* apple-scaled-60x30-@3x.png in Resources */, - 4C5873C21B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C58747E1B93EFFB00407E58 /* pirate-scaled.to.size.circle-100x100-@3x.png in Resources */, - 4C5873941B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C58741E1B93EFFB00407E58 /* apple-circle.png in Resources */, - 4CB2DBED1C632D3E000CC9C2 /* unicorn-blurred-8-ios-9.png in Resources */, - 4C5873A01B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-60x30-@1x.png in Resources */, - 4C5874701B93EFFB00407E58 /* unicorn-scaled-50x50-@2x.png in Resources */, - 4C5873E01B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C5873F61B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5873821B93EFFB00407E58 /* apple-aspect.scaled.to.fill-30x60-@1x.png in Resources */, - 4C58743A1B93EFFB00407E58 /* apple-scaled-50x50-@2x.png in Resources */, - 4C5874521B93EFFB00407E58 /* pirate-scaled-60x30-@2x.png in Resources */, - 4C58742E1B93EFFB00407E58 /* rainbow-radius-20.png in Resources */, - 4C5874841B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@3x.png in Resources */, - 4C5874621B93EFFB00407E58 /* rainbow-scaled-60x30-@1x.png in Resources */, - 4C58745A1B93EFFB00407E58 /* rainbow-scaled-30x60-@3x.png in Resources */, - 4C5873F41B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5874561B93EFFB00407E58 /* rainbow-scaled-30x60-@1x.png in Resources */, - 4C5874821B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@2x.png in Resources */, - 4C58742C1B93EFFB00407E58 /* pirate-radius-20.png in Resources */, - 4C5873981B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5873EE1B93EFFB00407E58 /* pirate-aspect.scaled.to.fit-50x50-@1x.png in Resources */, - 4C5874381B93EFFB00407E58 /* apple-scaled-50x50-@1x.png in Resources */, - 4C5873E61B93EFFB00407E58 /* apple-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58743C1B93EFFB00407E58 /* apple-scaled-50x50-@3x.png in Resources */, - 4C5874441B93EFFB00407E58 /* pirate-scaled-30x60-@1x.png in Resources */, - 4C5873C61B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-60x30-@2x.png in Resources */, - 4C58739A1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C5874501B93EFFB00407E58 /* pirate-scaled-60x30-@1x.png in Resources */, - 4C5873AA1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-30x60-@3x.png in Resources */, - 4C5874481B93EFFB00407E58 /* pirate-scaled-30x60-@3x.png in Resources */, - 4C5874181B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@1x.png in Resources */, - 4C5873DE1B93EFFB00407E58 /* apple-aspect.scaled.to.fit-50x50-@2x.png in Resources */, - 4C5873B01B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C5874801B93EFFB00407E58 /* pirate-scaled.to.size.with.rounded.corners-100x100x20-@1x.png in Resources */, - 4C0894E91B9382EB005125D9 /* rainbow.jpg in Resources */, - 4C5874601B93EFFB00407E58 /* rainbow-scaled-50x50-@3x.png in Resources */, - 4C5874081B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-60x30-@2x.png in Resources */, - 4C5874541B93EFFB00407E58 /* pirate-scaled-60x30-@3x.png in Resources */, - 4C5873FC1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@2x.png in Resources */, - 4C58741C1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-60x30-@3x.png in Resources */, - 4C58746E1B93EFFB00407E58 /* unicorn-scaled-50x50-@1x.png in Resources */, - 4C5873AC1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C5874321B93EFFB00407E58 /* apple-scaled-30x60-@1x.png in Resources */, - 4C0894E71B9382EB005125D9 /* pirate.jpg in Resources */, - 4C5874101B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C58739E1B93EFFB00407E58 /* pirate-aspect.scaled.to.fill-50x50-@3x.png in Resources */, - 4C5874401B93EFFB00407E58 /* apple-scaled-60x30-@2x.png in Resources */, - 4C5874161B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-50x50-@3x.png in Resources */, - 4C5873BE1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C58740C1B93EFFB00407E58 /* unicorn-aspect.scaled.to.fit-30x60-@1x.png in Resources */, - 4C5873FE1B93EFFB00407E58 /* rainbow-aspect.scaled.to.fit-30x60-@3x.png in Resources */, - 4C5873881B93EFFB00407E58 /* apple-aspect.scaled.to.fill-50x50-@1x.png in Resources */, - 4C5874301B93EFFB00407E58 /* unicorn-radius-20.png in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 4C16B3781BA9399500A66EF0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B3A11BA93AB700A66EF0 /* ImageCache.swift in Sources */, - 4C16B3A61BA93AB700A66EF0 /* UIImageView+AlamofireImage.swift in Sources */, - 4C16B3A41BA93AB700A66EF0 /* Request+AlamofireImage.swift in Sources */, - 4C16B3A51BA93AB700A66EF0 /* UIImage+AlamofireImage.swift in Sources */, - 4C16B3A31BA93AB700A66EF0 /* ImageFilter.swift in Sources */, - 4C16B3A21BA93AB700A66EF0 /* ImageDownloader.swift in Sources */, - 4C16B3A01BA93AB700A66EF0 /* Image.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C16B3821BA9399500A66EF0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C16B3AB1BA93ADB00A66EF0 /* RequestTests.swift in Sources */, - 4C16B3A81BA93ADB00A66EF0 /* ImageCacheTests.swift in Sources */, - 4C16B3AE1BA93ADB00A66EF0 /* UIImage+AlamofireImageTests.swift in Sources */, - 4C16B3AA1BA93ADB00A66EF0 /* ImageFilterTests.swift in Sources */, - 4C16B3A71BA93ADB00A66EF0 /* BaseTestCase.swift in Sources */, - 4C16B3AD1BA93ADB00A66EF0 /* UIImageViewTests.swift in Sources */, - 4C16B3A91BA93ADB00A66EF0 /* ImageDownloaderTests.swift in Sources */, - 4C16B3AC1BA93ADB00A66EF0 /* UIImageTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C4D4EBC1B92976900C96855 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C4D4ECB1B9297BB00C96855 /* ImageCache.swift in Sources */, - 4C4D4ECE1B9297BB00C96855 /* Request+AlamofireImage.swift in Sources */, - 4C4D4ECF1B9297BB00C96855 /* UIImage+AlamofireImage.swift in Sources */, - 4C4D4ECD1B9297BB00C96855 /* ImageFilter.swift in Sources */, - 4C4D4ECC1B9297BB00C96855 /* ImageDownloader.swift in Sources */, - 4C4D4ECA1B9297BB00C96855 /* Image.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C9043721AABBFC5001B4E60 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C82907A1B927CE6005E24C8 /* Image.swift in Sources */, - 4C96A4781AAE9488008AE0B6 /* ImageDownloader.swift in Sources */, - 4CFC0A091AB52BD90004D0B8 /* ImageFilter.swift in Sources */, - CF24CF421C253CB100904E85 /* UIButton+AlamofireImage.swift in Sources */, - 4C78EA721AACD28C002C0569 /* UIImageView+AlamofireImage.swift in Sources */, - 4C5308501AB561BF0051DBAC /* UIImage+AlamofireImage.swift in Sources */, - 4CFC0A061AB4FEC90004D0B8 /* ImageCache.swift in Sources */, - 4CE611551AABC8D900D35044 /* Request+AlamofireImage.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4C90437E1AABBFC5001B4E60 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C62D3101B96C1500011B036 /* UIImageViewTests.swift in Sources */, - CF24CF461C253D4F00904E85 /* UIButtonTests.swift in Sources */, - 4C0897EB1B93BC0D005125D9 /* RequestTests.swift in Sources */, - 4C5872CA1B93DEAC00407E58 /* ImageFilterTests.swift in Sources */, - 4CEBB5401B93C622001391DE /* ImageCacheTests.swift in Sources */, - 4C0893EC1B936A7A005125D9 /* UIImage+AlamofireImageTests.swift in Sources */, - 4C1624851AABE8E600A0385D /* BaseTestCase.swift in Sources */, - 4C0893F51B937404005125D9 /* UIImageTests.swift in Sources */, - 4C5874861B93F81800407E58 /* ImageDownloaderTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE611291AABC24E00D35044 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C8290781B926F19005E24C8 /* ImageCache.swift in Sources */, - 4C82907D1B927DA9005E24C8 /* ImageFilter.swift in Sources */, - 4C82907B1B927CE6005E24C8 /* Image.swift in Sources */, - 4C82907C1B927D13005E24C8 /* ImageDownloader.swift in Sources */, - 4CE611561AABC8D900D35044 /* Request+AlamofireImage.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CE611431AABC5C900D35044 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C1624861AABE8E600A0385D /* BaseTestCase.swift in Sources */, - 4CEBB5411B93C622001391DE /* ImageCacheTests.swift in Sources */, - 4C5874871B93F81800407E58 /* ImageDownloaderTests.swift in Sources */, - 4C0897EC1B93BC0D005125D9 /* RequestTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 4C16B3891BA9399500A66EF0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4C16B37C1BA9399500A66EF0 /* AlamofireImage tvOS */; - targetProxy = 4C16B3881BA9399500A66EF0 /* PBXContainerItemProxy */; - }; - 4C16B39E1BA93A4B00A66EF0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire tvOS"; - targetProxy = 4C16B39D1BA93A4B00A66EF0 /* PBXContainerItemProxy */; - }; - 4C9043851AABBFC5001B4E60 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4C9043761AABBFC5001B4E60 /* AlamofireImage iOS */; - targetProxy = 4C9043841AABBFC5001B4E60 /* PBXContainerItemProxy */; - }; - 4CE5AABA1B9BF0F6003530D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire iOS"; - targetProxy = 4CE5AAB91B9BF0F6003530D6 /* PBXContainerItemProxy */; - }; - 4CE5AABD1B9BF10C003530D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire OSX"; - targetProxy = 4CE5AABC1B9BF10C003530D6 /* PBXContainerItemProxy */; - }; - 4CE5AAC01B9BF11A003530D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire watchOS"; - targetProxy = 4CE5AABF1B9BF11A003530D6 /* PBXContainerItemProxy */; - }; - 4CE6114F1AABC5C900D35044 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4CE611281AABC24E00D35044 /* AlamofireImage OSX */; - targetProxy = 4CE6114E1AABC5C900D35044 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 4C16B38E1BA9399500A66EF0 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.AlamofireImage; - PRODUCT_NAME = AlamofireImage; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Debug; - }; - 4C16B38F1BA9399500A66EF0 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.AlamofireImage; - PRODUCT_NAME = AlamofireImage; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Release; - }; - 4C16B3901BA9399500A66EF0 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.AlamofireImage-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Debug; - }; - 4C16B3911BA9399500A66EF0 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = NO; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.AlamofireImage-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Release; - }; - 4C4D4EC71B92976900C96855 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.AlamofireImage-watchOS"; - PRODUCT_NAME = AlamofireImage; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = Debug; - }; - 4C4D4EC81B92976900C96855 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.AlamofireImage-watchOS"; - PRODUCT_NAME = AlamofireImage; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = Release; - }; - 4C90438B1AABBFC5001B4E60 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Debug; - }; - 4C90438C1AABBFC5001B4E60 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Release; - }; - 4C90438E1AABBFC5001B4E60 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = AlamofireImage; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 4C90438F1AABBFC5001B4E60 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = AlamofireImage; - SKIP_INSTALL = YES; - }; - name = Release; - }; - 4C9043911AABBFC5001B4E60 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - 4C9043921AABBFC5001B4E60 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; - 4CA12FB01C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = ReleaseTest; - }; - 4CA12FB11C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = AlamofireImage; - SKIP_INSTALL = YES; - }; - name = ReleaseTest; - }; - 4CA12FB21C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = ReleaseTest; - }; - 4CA12FB31C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = AlamofireImage; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = ReleaseTest; - }; - 4CA12FB41C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.10; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = ReleaseTest; - }; - 4CA12FB51C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.AlamofireImage; - PRODUCT_NAME = AlamofireImage; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = ReleaseTest; - }; - 4CA12FB61C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.AlamofireImage-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = ReleaseTest; - }; - 4CA12FB71C2266AC00543972 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.AlamofireImage-watchOS"; - PRODUCT_NAME = AlamofireImage; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = ReleaseTest; - }; - 4CE611301AABC24E00D35044 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CLANG_ENABLE_MODULES = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = AlamofireImage; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 4CE611311AABC24E00D35044 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = AlamofireImage; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Release; - }; - 4CE611511AABC5C900D35044 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.10; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - 4CE611521AABC5C900D35044 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.10; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 4C16B39A1BA9399500A66EF0 /* Build configuration list for PBXNativeTarget "AlamofireImage tvOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C16B38E1BA9399500A66EF0 /* Debug */, - 4C16B38F1BA9399500A66EF0 /* Release */, - 4CA12FB51C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4C16B39B1BA9399500A66EF0 /* Build configuration list for PBXNativeTarget "AlamofireImage tvOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C16B3901BA9399500A66EF0 /* Debug */, - 4C16B3911BA9399500A66EF0 /* Release */, - 4CA12FB61C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4C4D4EC61B92976900C96855 /* Build configuration list for PBXNativeTarget "AlamofireImage watchOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C4D4EC71B92976900C96855 /* Debug */, - 4C4D4EC81B92976900C96855 /* Release */, - 4CA12FB71C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4C9043711AABBFC5001B4E60 /* Build configuration list for PBXProject "AlamofireImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C90438B1AABBFC5001B4E60 /* Debug */, - 4C90438C1AABBFC5001B4E60 /* Release */, - 4CA12FB01C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4C90438D1AABBFC5001B4E60 /* Build configuration list for PBXNativeTarget "AlamofireImage iOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C90438E1AABBFC5001B4E60 /* Debug */, - 4C90438F1AABBFC5001B4E60 /* Release */, - 4CA12FB11C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4C9043901AABBFC5001B4E60 /* Build configuration list for PBXNativeTarget "AlamofireImage iOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C9043911AABBFC5001B4E60 /* Debug */, - 4C9043921AABBFC5001B4E60 /* Release */, - 4CA12FB21C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4CE6112F1AABC24E00D35044 /* Build configuration list for PBXNativeTarget "AlamofireImage OSX" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4CE611301AABC24E00D35044 /* Debug */, - 4CE611311AABC24E00D35044 /* Release */, - 4CA12FB31C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4CE611501AABC5C900D35044 /* Build configuration list for PBXNativeTarget "AlamofireImage OSX Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4CE611511AABC5C900D35044 /* Debug */, - 4CE611521AABC5C900D35044 /* Release */, - 4CA12FB41C2266AC00543972 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 4C90436E1AABBFC5001B4E60 /* Project object */; -} diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1f410d4..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage OSX.xcscheme b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage OSX.xcscheme deleted file mode 100644 index 4972f59..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage OSX.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage iOS.xcscheme b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage iOS.xcscheme deleted file mode 100644 index ca05cdb..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage iOS.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage tvOS.xcscheme b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage tvOS.xcscheme deleted file mode 100644 index 7911e82..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage tvOS.xcscheme +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage watchOS.xcscheme b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage watchOS.xcscheme deleted file mode 100644 index 893a893..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcodeproj/xcshareddata/xcschemes/AlamofireImage watchOS.xcscheme +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 3dddd75..0000000 --- a/Carthage/Checkouts/AlamofireImage/AlamofireImage.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/CHANGELOG.md b/Carthage/Checkouts/AlamofireImage/CHANGELOG.md deleted file mode 100644 index b4b3e51..0000000 --- a/Carthage/Checkouts/AlamofireImage/CHANGELOG.md +++ /dev/null @@ -1,341 +0,0 @@ -# Change Log -All notable changes to this project will be documented in this file. -`AlamofireImage` adheres to [Semantic Versioning](http://semver.org/). - -#### 2.x Releases -- `2.3.x` Releases - [2.3.0](#230) | [2.3.1](#231) -- `2.2.x` Releases - [2.2.0](#220) -- `2.1.x` Releases - [2.1.0](#210) | [2.1.1](#211) -- `2.0.x` Releases - [2.0.0](#200) -- `2.0.0` Betas - [2.0.0-beta.1](#200-beta1) | [2.0.0-beta.2](#200-beta2) - -#### 1.x Releases - -- `1.1.x` Releases - [1.1.0](#110) | [1.1.1](#111) | [1.1.2](#112) -- `1.0.x` Releases - [1.0.0](#100) -- `1.0.0` Betas - [1.0.0-beta.1](#100-beta1) - ---- - -## [2.3.1](https://github.com/Alamofire/AlamofireImage/releases/tag/2.3.1) -Released on 2016-02-07. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.3.1). - -#### Added -- Default value to `completion` parameter in `downloadImage` API in `ImageDownloader. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The Alamofire submodule to the 3.2.0 release. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- Superfluous APIs on `ImageDownloader`, `UIButton` and `UIImageView` extensions and replaced - with default parameter values. - - Removed by [Anthony Miller](https://github.com/AnthonyMDev) in Pull Request - [#81](https://github.com/Alamofire/AlamofireImage/pull/81). - -#### Fixed -- Issue in `UIImage` extension where CoreImage filters were using the incorrect output frame. - - Fixed by [Felipe](https://github.com/fsaint) in Pull Request - [#78](https://github.com/Alamofire/AlamofireImage/pull/78). -- All blur filter tests across all devices and OS's. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Issue where image response serializer was not thread-safe by switching over to - thread-safe UIImage initializer. - - Fixed by [Christian Noon](https://github.com/cnoon) in Regards to Issue - [#75](https://github.com/Alamofire/AlamofireImage/pull/75). -- Build warnings in Xcode 7.3 beta 2 for Swift 2.2. - - Fixed by [James Barrow](https://github.com/Baza207) in Regards to Issue - [#77](https://github.com/Alamofire/AlamofireImage/pull/77). - -## [2.3.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.3.0) -Released on 2016-01-17. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.3.0). - -#### Added -- Alpha properties to `UIImage` extension along with unit tests. - - Added by [Christian Noon](https://github.com/cnoon). -- Condition to `UIImageView` test to verify active request receipt is reset. - - Added by [Jorge Mario Orjuela Gutierrez](https://github.com/jorjuela33) in Pull Request - [#62](https://github.com/Alamofire/AlamofireImage/pull/62). -- `UIButton` extension supporting remote image downloads. - - Added by [Jorge Mario Orjuela Gutierrez](https://github.com/jorjuela33) in Pull Request - [#63](https://github.com/Alamofire/AlamofireImage/pull/63). -- Tests verifying `Accept` header is set properly for button image downloads. - - Added by [Christian Noon](https://github.com/cnoon). -- `UIButton` extension tests around cancelling and restarting image downloads. - - Added by [Christian Noon](https://github.com/cnoon). -- iOS 9.2 devices to the travis yaml device matrix. - - Added by [Christian Noon](https://github.com/cnoon). -- `Carthage/Build` ignore flag to the `.gitignore` file to match Alamofire. - - Added by [Lars Anderson](https://github.com/larsacus) in Pull Request - [#71](https://github.com/Alamofire/AlamofireImage/pull/71). -- `Package.swift` file to support Swift Package Manager (SPM). - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- `UIImage` scaling now uses `af_isOpaque` property where applicable. - - Updated by [Christian Noon](https://github.com/cnoon) in Regards to Issue - [#65](https://github.com/Alamofire/AlamofireImage/issues/65). -- Refactored `UIButton` extension and tests to more closely follow coding standards. - - Updated by [Christian Noon](https://github.com/cnoon). -- Simplified `UIImageView` tests replacing KVO by overriding the image property. - - Updated by [Christian Noon](https://github.com/cnoon). -- Excluded the `UIButton` extension from osx and watchOS targets in podspec. - - Updated by [Christian Noon](https://github.com/cnoon). -- Copyright headers to include 2016! 🎉🎉🎉 - - Updated by [Christian Noon](https://github.com/cnoon). -- The default parameters in `AutoPurgingImageCache` initializer with correct MB values. - - Updated by [Christian Noon](https://github.com/cnoon). -- Several `UIImageView` APIs to public ACL to allow for better reuse. - - Updated by [Christian Noon](https://github.com/cnoon). -- Alamofire submodule to 3.1.5 release. - - Updated by [Christian Noon](https://github.com/cnoon). - ---- - -## [2.2.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.2.0) -Released on 2015-12-16. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.2.0). - -#### Added -- Ability for `ImageDownloader` to enqueue multiple image downloads at once. - - Added by [Jeff Kelley](https://github.com/SlaunchaMan) in Pull Request - [#51](https://github.com/Alamofire/AlamofireImage/pull/51). -- Tests to verify image view can cancel and restart the same request. - - Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue - [#55](https://github.com/Alamofire/AlamofireImage/pull/55). -- Precondition to `ImageCache` ensuring memory capacity is GTE preferred usage after purge. - - Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue - [#56](https://github.com/Alamofire/AlamofireImage/pull/56). -- Ability for image transitions to run when image is cached if specified. - - Added by [Jarrod Robins](https://github.com/jarrodrobins) in Pull Request - [#50](https://github.com/Alamofire/AlamofireImage/pull/50). -- Test to verify Accept header is set correctly on `UIImageView` extension. - - Added by [Christian Noon](https://github.com/cnoon) in Regards to Issue - [#60](https://github.com/Alamofire/AlamofireImage/pull/60). -- Added `ReleaseTest` configuration to allow running tests against optimized build. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- Project to disable testability on release and to only build tests on when testing. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Travis-CI configuration to Xcode 7.2, iOS 9.2, tvOS 9.1 and watchOS 2.1. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Issue where image was not downloaded when cancelled and restarted. - - Fixed by [Christian Noon](https://github.com/cnoon) in Regards to Issue - [#55](https://github.com/Alamofire/AlamofireImage/pull/55). -- Issue where `af_setImageWithURL` was not using acceptable content types. - - Fixed by [Branden Russell](https://github.com/brandenr) in Pull Request - [#61](https://github.com/Alamofire/AlamofireImage/pull/61). - ---- - -## [2.1.1](https://github.com/Alamofire/AlamofireImage/releases/tag/2.1.1) -Released on 2015-11-22. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.1.1). - -#### Added -- Note to the README about storing a strong ref to image downloaders. - - Added by [Muhammad Ishaq](https://github.com/ishaq) in Pull Request - [#45](https://github.com/Alamofire/AlamofireImage/pull/45). -- Custom `Info.plist` for tvOS setting the `UIRequiredDeviceCapabilities` to `arm64`. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The `sessionManager` ACL in the `ImageDownloader` to allow access to the underlying - session and configuration. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Alamofire submodule to the Alamofire 3.1.3 release. - - Updated by [Christian Noon](https://github.com/cnoon). - -## [2.1.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.1.0) -Released on 2015-10-24. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.1.0). - -#### Added -- New tvOS framework and test targets to the project. - - Added by [Christian Noon](https://github.com/cnoon). -- The tvOS deployment target to the podspec. - - Added by [Christian Noon](https://github.com/cnoon). -- The `BITCODE_GENERATION_MODE` user defined setting to tvOS framework target. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The README to include tvOS and bumped the required version of Xcode. - - Updated by [Christian Noon](https://github.com/cnoon). -- The default tvOS and watchOS deployment targets in the Xcode project. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Cartfile and Alamofire submodule to the 3.1.0 release. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Travis-CI yaml file to run watchOS and tvOS builds and tests on xcode7.1 osx_image. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Several typos in the `AutoPurgingImageCache` section of the README. - - Fixed by [Nate Cook](https://github.com/natecook1000) in Pull Request - [#39](https://github.com/Alamofire/AlamofireImage/pull/39). - ---- - -## [2.0.0](https://github.com/Alamofire/AlamofireImage/releases/tag/2.0.0) -Released on 2015-10-17. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.0.0). - -#### Updated -- The cocoapods and carthage instructions in the README. - - Updated by [Christian Noon](https://github.com/cnoon). - ---- - -## [2.0.0-beta.2](https://github.com/Alamofire/AlamofireImage/releases/tag/2.0.0-beta.2) -Released on 2015-10-14. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.0.0-beta.2). - -#### Added -- Ability to use a custom `ImageDownloader` per `UIImageView` instance. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#31](https://github.com/Alamofire/AlamofireImage/pull/31). -- New `ImageDownloader` initializer accepting a custom `Manager` instance using dependency injection. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#32](https://github.com/Alamofire/AlamofireImage/pull/32). -- Ability to add additional acceptable image content types for `Request` validation. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#33](https://github.com/Alamofire/AlamofireImage/pull/33) to address Issues - [#28](https://github.com/Alamofire/AlamofireImage/issues/28) and - [#29](https://github.com/Alamofire/AlamofireImage/issues/29). - -#### Fixed -- Cancelled request completion closures are now called on the main queue. - - Fixed by [Christian Noon](https://github.com/cnoon). - -## [2.0.0-beta.1](https://github.com/Alamofire/AlamofireImage/releases/tag/2.0.0-beta.1) -Released on 2015-09-27. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A2.0.0-beta.1). - -#### Added -- The AlamofireImage 2.0 Migration Guide and also added to the README. - - Added by [Christian Noon](https://github.com/cnoon). -- A new `RequestReceipt` struct to the `ImageDownloader` to improve cancellation reasoning. - - Added by [Kevin Harwood](https://github.com/kcharwood). -- Cancellation tests to the `ImageDownloader` to validate new cancellation behavior. - - Added by [Christian Noon](https://github.com/cnoon). -- Section to the README documenting the `RequestReceipt` usage. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- Cartfile to pick up latest changes from the `master` branch of Alamofire 3.0. - - Updated by [Christian Noon](https://github.com/cnoon). -- All source logic to use the Alamofire 3.0 APIs. - - Updated by [Christian Noon](https://github.com/cnoon). -- All tests to compile and run against the Alamofire 3.0 APIs. - - Updated by [Christian Noon](https://github.com/cnoon). -- All the sample code examples in the README to use all the new APIs. - - Updated by [Christian Noon](https://github.com/cnoon). - ---- - -## [1.1.2](https://github.com/Alamofire/AlamofireImage/releases/tag/1.1.2) -Released on 2015-09-26. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A1.1.2). - -#### Added -- Tests verifying response image serializers support file URLs. - - Added by [Alexander Edge](https://github.com/alexanderedge) in regards to Pull Request - [#19](https://github.com/Alamofire/AlamofireImage/pull/19). -- Tests verifying cached image is set on `UIImageView` if completion closure is set. - - Added by [Kevin Harwood](https://github.com/kcharwood) in Pull Request - [#20](https://github.com/Alamofire/AlamofireImage/pull/20). - -#### Updated -- The `Request` extension to validate file URLs making test mocking easier. - - Updated by [Alexander Edge](https://github.com/alexanderedge) in Pull Request - [#19](https://github.com/Alamofire/AlamofireImage/pull/19). - -#### Fixed -- Issue where cached image was not set on a `UIImageView` if completion closure was set. - - Fixed by [Kevin Harwood](https://github.com/kcharwood) in Pull Request - [#20](https://github.com/Alamofire/AlamofireImage/pull/20). - -## [1.1.1](https://github.com/Alamofire/AlamofireImage/releases/tag/1.1.1) -Released on 2015-09-22. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A1.1.1). - -#### Added -- Tests around the UIImageView extension usage with redirect URLs. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#15](https://github.com/Alamofire/AlamofireImage/pull/15). -- Tests around the UIImageView extension usage with duplicate image requests. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#17](https://github.com/Alamofire/AlamofireImage/pull/17). - -#### Fixed -- Issue where `UIImageView` extension did not support redirect URLs. - - Fixed by [Robert Payne](https://github.com/robertjpayne) in Pull Request - [#16](https://github.com/Alamofire/AlamofireImage/pull/16). -- Issue where duplicate image requests were cancelling the active image download -in the `UIImageView` extension. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#17](https://github.com/Alamofire/AlamofireImage/pull/17). - -## [1.1.0](https://github.com/Alamofire/AlamofireImage/releases/tag/1.1.0) -Released on 2015-09-19. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A1.1.0). - -#### Added -- Custom image transition to the `UIImageView` extension. - - Added by [Kevin Harwood](https://github.com/kcharwood) in Pull Request - [#9](https://github.com/Alamofire/AlamofireImage/pull/9). -- CompositeImageFilter protocol to construct composite image filters. - - Added by [Damien Rambout](https://github.com/damienrambout) in Pull Request - [#8](https://github.com/Alamofire/AlamofireImage/pull/8). -- `DynamicImageFilter` and `DynamicCompositeImageFilter` structs to make it easy -to create custom image filters. - - Added by [Damien Rambout](https://github.com/damienrambout) in Pull Request - [#14](https://github.com/Alamofire/AlamofireImage/pull/14). - -#### Updated -- `ImageDownloader` download image completion closures to be optional. - - Updated by [Christian Noon](https://github.com/cnoon). -- Completion callback behavior of the `UIImageView` extension methods to be called before -the image transition occurs. - - Updated by [Kevin Harwood](https://github.com/kcharwood) in Pull Request - [#9](https://github.com/Alamofire/AlamofireImage/pull/9). -- Rounded corner radius image filter can now be adjusted by the image scale. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#10](https://github.com/Alamofire/AlamofireImage/pull/10). -- Enabled APPLICATION_EXTENSION_API_ONLY in watchOS framework. - - Updated by [James Barrow](https://github.com/Baza207) in Pull Request - [#11](https://github.com/Alamofire/AlamofireImage/pull/11). -- The podspec file to allow all Alamofire 2.x versions. - - Updated by [Christian Noon](https://github.com/cnoon). - -## [1.0.0](https://github.com/Alamofire/AlamofireImage/releases/tag/1.0.0) -Released on 2015-09-09. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/AlamofireImage/issues?utf8=✓&q=milestone%3A1.0.0). - -#### Updated -- Alamofire dependency to `~> 2.0` for CocoaPods and Carthage. - - Updated by [Christian Noon](https://github.com/cnoon). -- Alamofire submodule to 2.0.0 release commit. - - Updated by [Christian Noon](https://github.com/cnoon). -- Xcode `APPLICATION_EXTENSION_API_ONLY` to `YES` for iOS and OSX frameworks. - - Updated by [Matt Delves](https://github.com/mattdelves) in Pull Request - [#4](https://github.com/Alamofire/AlamofireImage/pull/4). - -#### Fixed -- Issue in `ImageDownloader` where the wrong image was being stored in the image cache. - - Fixed by [Robin Eggenkamp](https://github.com/Edubits) in Pull Request - [#3](https://github.com/Alamofire/AlamofireImage/pull/3). - ---- - -## [1.0.0-beta.1](https://github.com/Alamofire/AlamofireImage/releases/tag/1.0.0-beta.1) -Released on 2015-09-05. - -#### Added -- Initial release of AlamofireImage. - - Added by [Christian Noon](https://github.com/cnoon). diff --git a/Carthage/Checkouts/AlamofireImage/CONTRIBUTING.md b/Carthage/Checkouts/AlamofireImage/CONTRIBUTING.md deleted file mode 100644 index 5de3be7..0000000 --- a/Carthage/Checkouts/AlamofireImage/CONTRIBUTING.md +++ /dev/null @@ -1,91 +0,0 @@ -# Contributing Guidelines - -This document contains information and guidelines about contributing to this project. -Please read it before you start participating. - -**Topics** - -* [Asking Questions](#asking-questions) -* [Reporting Security Issues](#reporting-security-issues) -* [Reporting Issues](#reporting-other-issues) -* [Developers Certificate of Origin](#developers-certificate-of-origin) -* [Code of Conduct](#code-of-conduct) - -## Asking Questions - -We don't use GitHub as a support forum. -For any usage questions that are not specific to the project itself, -please ask on [Stack Overflow](https://stackoverflow.com) instead. -By doing so, you'll be more likely to quickly solve your problem, -and you'll allow anyone else with the same question to find the answer. -This also allows maintainers to focus on improving the project for others. - -## Reporting Security Issues - -The Alamofire Software Foundation takes security seriously. -If you discover a security issue, please bring it to our attention right away! - -Please **DO NOT** file a public issue, -instead send your report privately to . -This will help ensure that any vulnerabilities that _are_ found -can be [disclosed responsibly](http://en.wikipedia.org/wiki/Responsible_disclosure) -to any affected parties. - -## Reporting Other Issues - -A great way to contribute to the project -is to send a detailed issue when you encounter an problem. -We always appreciate a well-written, thorough bug report. - -Check that the project issues database -doesn't already include that problem or suggestion before submitting an issue. -If you find a match, add a quick "+1" or "I have this problem too." -Doing this helps prioritize the most common problems and requests. - -When reporting issues, please include the following: - -* The version of Xcode you're using -* The version of iOS or OS X you're targeting -* The full output of any stack trace or compiler error -* A code snippet that reproduces the described behavior, if applicable -* Any other details that would be useful in understanding the problem - -This information will help us review and fix your issue faster. - -## Developer's Certificate of Origin 1.1 - -By making a contribution to this project, I certify that: - -- (a) The contribution was created in whole or in part by me and I - have the right to submit it under the open source license - indicated in the file; or - -- (b) The contribution is based upon previous work that, to the best - of my knowledge, is covered under an appropriate open source - license and I have the right under that license to submit that - work with modifications, whether created in whole or in part - by me, under the same open source license (unless I am - permitted to submit under a different license), as indicated - in the file; or - -- (c) The contribution was provided directly to me by some other - person who certified (a), (b) or (c) and I have not modified - it. - -- (d) I understand and agree that this project and the contribution - are public and that a record of the contribution (including all - personal information I submit with it, including my sign-off) is - maintained indefinitely and may be redistributed consistent with - this project or the open source license(s) involved. - -## Code of Conduct - -The Code of Conduct governs how we behave in public or in private -whenever the project will be judged by our actions. -We expect it to be honored by everyone who contributes to this project. - -See [CONDUCT.md](https://github.com/Alamofire/Foundation/blob/master/CONDUCT.md) for details. - ---- - -*Some of the ideas and wording for the statements above were based on work by the [Docker](https://github.com/docker/docker/blob/master/CONTRIBUTING.md) and [Linux](http://elinux.org/Developer_Certificate_Of_Origin) communities. We commend them for their efforts to facilitate collaboration in their projects.* diff --git a/Carthage/Checkouts/AlamofireImage/Cartfile b/Carthage/Checkouts/AlamofireImage/Cartfile deleted file mode 100644 index ed40326..0000000 --- a/Carthage/Checkouts/AlamofireImage/Cartfile +++ /dev/null @@ -1 +0,0 @@ -github "Alamofire/Alamofire" ~> 3.1 diff --git a/Carthage/Checkouts/AlamofireImage/Cartfile.resolved b/Carthage/Checkouts/AlamofireImage/Cartfile.resolved deleted file mode 100644 index defe82a..0000000 --- a/Carthage/Checkouts/AlamofireImage/Cartfile.resolved +++ /dev/null @@ -1 +0,0 @@ -github "Alamofire/Alamofire" "3.2.0" diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.gitignore b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.gitignore deleted file mode 100644 index 222e8ec..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.gitignore +++ /dev/null @@ -1,39 +0,0 @@ -# Mac OS X -.DS_Store - -# Xcode - -## Build generated -build/ -DerivedData - -## Various settings -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata - -## Other -*.xccheckout -*.moved-aside -*.xcuserstate -*.xcscmblueprint - -## Obj-C/Swift specific -*.hmap -*.ipa - -## Playgrounds -timeline.xctimeline -playground.xcworkspace - -# Swift Package Manager -.build/ - -# Carthage -Carthage/Build diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.travis.yml b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.travis.yml deleted file mode 100644 index 637cda6..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/.travis.yml +++ /dev/null @@ -1,60 +0,0 @@ -language: objective-c -osx_image: xcode7.2 -env: - global: - - LC_CTYPE=en_US.UTF-8 - - LANG=en_US.UTF-8 - - WORKSPACE=Alamofire.xcworkspace - - IOS_FRAMEWORK_SCHEME="Alamofire iOS" - - OSX_FRAMEWORK_SCHEME="Alamofire OSX" - - TVOS_FRAMEWORK_SCHEME="Alamofire tvOS" - - WATCHOS_FRAMEWORK_SCHEME="Alamofire watchOS" - - IOS_SDK=iphonesimulator9.2 - - OSX_SDK=macosx10.11 - - TVOS_SDK=appletvsimulator9.1 - - WATCHOS_SDK=watchsimulator2.1 - - EXAMPLE_SCHEME="iOS Example" - matrix: - - DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="YES" - - DESTINATION="OS=8.2,name=iPhone 5" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.3,name=iPhone 5S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=8.4,name=iPhone 6" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.1,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="OS=9.2,name=iPhone 6S Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="YES" POD_LINT="NO" - - DESTINATION="arch=x86_64" SCHEME="$OSX_FRAMEWORK_SCHEME" SDK="$OSX_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" - - DESTINATION="OS=9.1,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" SDK="$TVOS_SDK" RUN_TESTS="YES" BUILD_EXAMPLE="NO" POD_LINT="NO" - - DESTINATION="OS=2.1,name=Apple Watch - 38mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" SDK="$WATCHOS_SDK" RUN_TESTS="NO" BUILD_EXAMPLE="NO" POD_LINT="NO" -script: - - set -o pipefail - - xcodebuild -version - - xcodebuild -showsdks - - # Build Framework in Debug and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Framework in ReleaseTest and Run Tests if specified - - if [ $RUN_TESTS == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO test | xcpretty -c; - else - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Debug if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Build Example in Release if specified - - if [ $BUILD_EXAMPLE == "YES" ]; then - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c; - fi - - # Run `pod lib lint` if specified - - if [ $POD_LINT == "YES" ]; then - pod lib lint; - fi diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.podspec b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.podspec deleted file mode 100644 index 9690c3e..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.podspec +++ /dev/null @@ -1,17 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'Alamofire' - s.version = '3.2.0' - s.license = 'MIT' - s.summary = 'Elegant HTTP Networking in Swift' - s.homepage = 'https://github.com/Alamofire/Alamofire' - s.social_media_url = 'http://twitter.com/AlamofireSF' - s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' } - s.source = { :git => 'https://github.com/Alamofire/Alamofire.git', :tag => s.version } - - s.ios.deployment_target = '8.0' - s.osx.deployment_target = '10.9' - s.tvos.deployment_target = '9.0' - s.watchos.deployment_target = '2.0' - - s.source_files = 'Source/*.swift' -end diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj deleted file mode 100644 index ccf8e9e..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1852 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 4C0B58391B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */; }; - 4C0B583A1B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */; }; - 4C0B62511BB1001C009302D3 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C0B62521BB1001C009302D3 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C0B62531BB1001C009302D3 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C0E5BF81B673D3400816CCC /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4C0E5BF91B673D3400816CCC /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4C1DC8541B68908E00476DE3 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4C1DC8551B68908E00476DE3 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4C23EB431B327C5B0090E0BC /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - 4C23EB441B327C5B0090E0BC /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - 4C256A531B096C770065714F /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C256A501B096C2C0065714F /* BaseTestCase.swift */; }; - 4C256A541B096C770065714F /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C256A501B096C2C0065714F /* BaseTestCase.swift */; }; - 4C3238E71B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */; }; - 4C3238E81B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */; }; - 4C33A1391B5207DB00873DFF /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1231B5207DB00873DFF /* rainbow.jpg */; }; - 4C33A13A1B5207DB00873DFF /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1231B5207DB00873DFF /* rainbow.jpg */; }; - 4C33A13B1B5207DB00873DFF /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1241B5207DB00873DFF /* unicorn.png */; }; - 4C33A13C1B5207DB00873DFF /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1241B5207DB00873DFF /* unicorn.png */; }; - 4C33A1431B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */; }; - 4C33A1441B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */; }; - 4C341BBA1B1A865A00C1B34D /* CacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C341BB91B1A865A00C1B34D /* CacheTests.swift */; }; - 4C341BBB1B1A865A00C1B34D /* CacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C341BB91B1A865A00C1B34D /* CacheTests.swift */; }; - 4C3D00541C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4C3D00551C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4C3D00561C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4C3D00581C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */; }; - 4C3D00591C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */; }; - 4C3D005A1C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */; }; - 4C4CBE7B1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */; }; - 4C4CBE7C1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */; }; - 4C574E6A1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C574E6B1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C574E6C1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C574E6D1C67D207000B3128 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C574E691C67D207000B3128 /* Timeline.swift */; }; - 4C743CF61C22772D00BCB23E /* certDER.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F831C1A72F8002DA1A9 /* certDER.cer */; }; - 4C743CF71C22772D00BCB23E /* certDER.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F841C1A72F8002DA1A9 /* certDER.crt */; }; - 4C743CF81C22772D00BCB23E /* certDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F851C1A72F8002DA1A9 /* certDER.der */; }; - 4C743CF91C22772D00BCB23E /* certPEM.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F861C1A72F8002DA1A9 /* certPEM.cer */; }; - 4C743CFA1C22772D00BCB23E /* certPEM.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F871C1A72F8002DA1A9 /* certPEM.crt */; }; - 4C743CFB1C22772D00BCB23E /* randomGibberish.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */; }; - 4C743CFC1C22772D00BCB23E /* keyDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */; }; - 4C743CFD1C22772D00BCB23E /* alamofire-root-ca.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */; }; - 4C743CFE1C22772D00BCB23E /* alamofire-signing-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */; }; - 4C743CFF1C22772D00BCB23E /* alamofire-signing-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */; }; - 4C743D001C22772D00BCB23E /* multiple-dns-names.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C441B535F400017E0BF /* multiple-dns-names.cer */; }; - 4C743D011C22772D00BCB23E /* signed-by-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C451B535F400017E0BF /* signed-by-ca1.cer */; }; - 4C743D021C22772D00BCB23E /* test.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C461B535F400017E0BF /* test.alamofire.org.cer */; }; - 4C743D031C22772D00BCB23E /* wildcard.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */; }; - 4C743D041C22772D00BCB23E /* expired.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C4F1B535F540017E0BF /* expired.cer */; }; - 4C743D051C22772D00BCB23E /* missing-dns-name-and-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */; }; - 4C743D061C22772D00BCB23E /* signed-by-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C511B535F540017E0BF /* signed-by-ca2.cer */; }; - 4C743D071C22772D00BCB23E /* valid-dns-name.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C521B535F540017E0BF /* valid-dns-name.cer */; }; - 4C743D081C22772D00BCB23E /* valid-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C531B535F540017E0BF /* valid-uri.cer */; }; - 4C743D091C22772D00BCB23E /* intermediate-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */; }; - 4C743D0A1C22772D00BCB23E /* root-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */; }; - 4C743D0B1C22772D00BCB23E /* testssl-expire.disig.sk.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */; }; - 4C743D0C1C22772E00BCB23E /* certDER.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F831C1A72F8002DA1A9 /* certDER.cer */; }; - 4C743D0D1C22772E00BCB23E /* certDER.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F841C1A72F8002DA1A9 /* certDER.crt */; }; - 4C743D0E1C22772E00BCB23E /* certDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F851C1A72F8002DA1A9 /* certDER.der */; }; - 4C743D0F1C22772E00BCB23E /* certPEM.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F861C1A72F8002DA1A9 /* certPEM.cer */; }; - 4C743D101C22772E00BCB23E /* certPEM.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F871C1A72F8002DA1A9 /* certPEM.crt */; }; - 4C743D111C22772E00BCB23E /* randomGibberish.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */; }; - 4C743D121C22772E00BCB23E /* keyDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */; }; - 4C743D131C22772E00BCB23E /* alamofire-root-ca.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */; }; - 4C743D141C22772E00BCB23E /* alamofire-signing-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */; }; - 4C743D151C22772E00BCB23E /* alamofire-signing-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */; }; - 4C743D161C22772E00BCB23E /* multiple-dns-names.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C441B535F400017E0BF /* multiple-dns-names.cer */; }; - 4C743D171C22772E00BCB23E /* signed-by-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C451B535F400017E0BF /* signed-by-ca1.cer */; }; - 4C743D181C22772E00BCB23E /* test.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C461B535F400017E0BF /* test.alamofire.org.cer */; }; - 4C743D191C22772E00BCB23E /* wildcard.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */; }; - 4C743D1A1C22772E00BCB23E /* expired.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C4F1B535F540017E0BF /* expired.cer */; }; - 4C743D1B1C22772E00BCB23E /* missing-dns-name-and-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */; }; - 4C743D1C1C22772E00BCB23E /* signed-by-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C511B535F540017E0BF /* signed-by-ca2.cer */; }; - 4C743D1D1C22772E00BCB23E /* valid-dns-name.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C521B535F540017E0BF /* valid-dns-name.cer */; }; - 4C743D1E1C22772E00BCB23E /* valid-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C531B535F540017E0BF /* valid-uri.cer */; }; - 4C743D1F1C22772E00BCB23E /* intermediate-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */; }; - 4C743D201C22772E00BCB23E /* root-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */; }; - 4C743D211C22772E00BCB23E /* testssl-expire.disig.sk.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */; }; - 4C743D221C22772F00BCB23E /* certDER.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F831C1A72F8002DA1A9 /* certDER.cer */; }; - 4C743D231C22772F00BCB23E /* certDER.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F841C1A72F8002DA1A9 /* certDER.crt */; }; - 4C743D241C22772F00BCB23E /* certDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F851C1A72F8002DA1A9 /* certDER.der */; }; - 4C743D251C22772F00BCB23E /* certPEM.cer in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F861C1A72F8002DA1A9 /* certPEM.cer */; }; - 4C743D261C22772F00BCB23E /* certPEM.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F871C1A72F8002DA1A9 /* certPEM.crt */; }; - 4C743D271C22772F00BCB23E /* randomGibberish.crt in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */; }; - 4C743D281C22772F00BCB23E /* keyDER.der in Resources */ = {isa = PBXBuildFile; fileRef = B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */; }; - 4C743D291C22772F00BCB23E /* alamofire-root-ca.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */; }; - 4C743D2A1C22772F00BCB23E /* alamofire-signing-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */; }; - 4C743D2B1C22772F00BCB23E /* alamofire-signing-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */; }; - 4C743D2C1C22772F00BCB23E /* multiple-dns-names.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C441B535F400017E0BF /* multiple-dns-names.cer */; }; - 4C743D2D1C22772F00BCB23E /* signed-by-ca1.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C451B535F400017E0BF /* signed-by-ca1.cer */; }; - 4C743D2E1C22772F00BCB23E /* test.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C461B535F400017E0BF /* test.alamofire.org.cer */; }; - 4C743D2F1C22772F00BCB23E /* wildcard.alamofire.org.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */; }; - 4C743D301C22772F00BCB23E /* expired.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C4F1B535F540017E0BF /* expired.cer */; }; - 4C743D311C22772F00BCB23E /* missing-dns-name-and-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */; }; - 4C743D321C22772F00BCB23E /* signed-by-ca2.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C511B535F540017E0BF /* signed-by-ca2.cer */; }; - 4C743D331C22772F00BCB23E /* valid-dns-name.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C521B535F540017E0BF /* valid-dns-name.cer */; }; - 4C743D341C22772F00BCB23E /* valid-uri.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C531B535F540017E0BF /* valid-uri.cer */; }; - 4C743D351C22772F00BCB23E /* intermediate-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */; }; - 4C743D361C22772F00BCB23E /* root-ca-disig.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */; }; - 4C743D371C22772F00BCB23E /* testssl-expire.disig.sk.cer in Resources */ = {isa = PBXBuildFile; fileRef = 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */; }; - 4C7C8D221B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */; }; - 4C7C8D231B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */; }; - 4C80F9F81BB730EF001B46D2 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B62501BB1001C009302D3 /* Response.swift */; }; - 4C80F9F91BB730F6001B46D2 /* String+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */; }; - 4C811F8D1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - 4C811F8E1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - 4C83F41B1B749E0E00203445 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4C83F41C1B749E0E00203445 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4C83F41D1B749E0E00203445 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4CA028C51B7466C500C84163 /* ResultTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA028C41B7466C500C84163 /* ResultTests.swift */; }; - 4CA028C61B7466C500C84163 /* ResultTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA028C41B7466C500C84163 /* ResultTests.swift */; }; - 4CB928291C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CB9282A1C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CB9282B1C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CB9282C1C66BFBC00CE5F08 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB928281C66BFBC00CE5F08 /* Notifications.swift */; }; - 4CCFA79A1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */; }; - 4CCFA79B1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */; }; - 4CDE2C371AF8932A00BABAE5 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - 4CDE2C381AF8932A00BABAE5 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - 4CDE2C3A1AF899EC00BABAE5 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - 4CDE2C3B1AF899EC00BABAE5 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - 4CDE2C3D1AF89D4900BABAE5 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - 4CDE2C3E1AF89D4900BABAE5 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - 4CDE2C401AF89E0700BABAE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - 4CDE2C411AF89E0700BABAE5 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - 4CDE2C431AF89F0900BABAE5 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - 4CDE2C441AF89F0900BABAE5 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - 4CDE2C461AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - 4CDE2C471AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - 4CE2724F1AF88FB500F1D59A /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - 4CE272501AF88FB500F1D59A /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - 4CEC605A1B745C9100E684F4 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4CEC605B1B745C9100E684F4 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4CEC605C1B745C9B00E684F4 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CEE82AD1C6813CF00E9C9F0 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */; }; - 4CF626F91BA7CB3E0011A099 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */; }; - 4CF627061BA7CBE30011A099 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4CF627071BA7CBF60011A099 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - 4CF627081BA7CBF60011A099 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DC8531B68908E00476DE3 /* Error.swift */; }; - 4CF627091BA7CBF60011A099 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - 4CF6270A1BA7CBF60011A099 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - 4CF6270B1BA7CBF60011A099 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - 4CF6270C1BA7CBF60011A099 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E5BF71B673D3400816CCC /* Result.swift */; }; - 4CF6270D1BA7CBF60011A099 /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - 4CF6270E1BA7CBF60011A099 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - 4CF6270F1BA7CBF60011A099 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - 4CF627101BA7CBF60011A099 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - 4CF627111BA7CBF60011A099 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C83F41A1B749E0E00203445 /* Stream.swift */; }; - 4CF627121BA7CBF60011A099 /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - 4CF627131BA7CBF60011A099 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - 4CF627141BA7CC240011A099 /* BaseTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C256A501B096C2C0065714F /* BaseTestCase.swift */; }; - 4CF627151BA7CC240011A099 /* AuthenticationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */; }; - 4CF627161BA7CC240011A099 /* ManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D1C6F419D52968002E74FE /* ManagerTests.swift */; }; - 4CF627171BA7CC240011A099 /* ParameterEncodingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */; }; - 4CF627181BA7CC240011A099 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5D19A9674D0040E7D1 /* RequestTests.swift */; }; - 4CF627191BA7CC240011A099 /* ResponseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */; }; - 4CF6271A1BA7CC240011A099 /* ResultTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CA028C41B7466C500C84163 /* ResultTests.swift */; }; - 4CF6271B1BA7CC240011A099 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */; }; - 4CF6271C1BA7CC240011A099 /* CacheTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C341BB91B1A865A00C1B34D /* CacheTests.swift */; }; - 4CF6271D1BA7CC240011A099 /* DownloadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */; }; - 4CF6271E1BA7CC240011A099 /* MultipartFormDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */; }; - 4CF6271F1BA7CC240011A099 /* ResponseSerializationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */; }; - 4CF627201BA7CC240011A099 /* ServerTrustPolicyTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */; }; - 4CF627211BA7CC240011A099 /* TLSEvaluationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */; }; - 4CF627221BA7CC240011A099 /* UploadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5F19A9674D0040E7D1 /* UploadTests.swift */; }; - 4CF627231BA7CC240011A099 /* URLProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */; }; - 4CF627241BA7CC240011A099 /* ValidationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */; }; - 4CF627341BA7CC300011A099 /* rainbow.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1231B5207DB00873DFF /* rainbow.jpg */; }; - 4CF627351BA7CC300011A099 /* unicorn.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C33A1241B5207DB00873DFF /* unicorn.png */; }; - 4DD67C241A5C58FB00ED2280 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DD67C251A5C590000ED2280 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - 8035DB621BAB492500466CB3 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8111E3319A95C8B0040E7D1 /* Alamofire.framework */; }; - E4202FCF1B667AA100C997FB /* Upload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */; }; - E4202FD01B667AA100C997FB /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */; }; - E4202FD11B667AA100C997FB /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C391AF899EC00BABAE5 /* Request.swift */; }; - E4202FD21B667AA100C997FB /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */; }; - E4202FD31B667AA100C997FB /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C361AF8932A00BABAE5 /* Manager.swift */; }; - E4202FD41B667AA100C997FB /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - E4202FD51B667AA100C997FB /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */; }; - E4202FD61B667AA100C997FB /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */; }; - E4202FD71B667AA100C997FB /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */; }; - E4202FD81B667AA100C997FB /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE2C421AF89F0900BABAE5 /* Validation.swift */; }; - F8111E3919A95C8B0040E7D1 /* Alamofire.h in Headers */ = {isa = PBXBuildFile; fileRef = F8111E3819A95C8B0040E7D1 /* Alamofire.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F8111E6019A9674D0040E7D1 /* DownloadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */; }; - F8111E6119A9674D0040E7D1 /* ParameterEncodingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */; }; - F8111E6419A9674D0040E7D1 /* UploadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5F19A9674D0040E7D1 /* UploadTests.swift */; }; - F829C6B81A7A94F100A2CD59 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */; }; - F829C6BE1A7A950600A2CD59 /* ParameterEncodingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */; }; - F829C6BF1A7A950600A2CD59 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5D19A9674D0040E7D1 /* RequestTests.swift */; }; - F829C6C01A7A950600A2CD59 /* ManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D1C6F419D52968002E74FE /* ManagerTests.swift */; }; - F829C6C11A7A950600A2CD59 /* ResponseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */; }; - F829C6C21A7A950600A2CD59 /* UploadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5F19A9674D0040E7D1 /* UploadTests.swift */; }; - F829C6C31A7A950600A2CD59 /* DownloadTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */; }; - F829C6C41A7A950600A2CD59 /* AuthenticationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */; }; - F829C6C51A7A950600A2CD59 /* ValidationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */; }; - F86AEFE71AE6A312007D9C76 /* TLSEvaluationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */; }; - F86AEFE81AE6A315007D9C76 /* TLSEvaluationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */; }; - F8858DDD19A96B4300F55F93 /* RequestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5D19A9674D0040E7D1 /* RequestTests.swift */; }; - F8858DDE19A96B4400F55F93 /* ResponseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */; }; - F897FF4119AA800700AB5182 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F897FF4019AA800700AB5182 /* Alamofire.swift */; }; - F8AE910219D28DCC0078C7B2 /* ValidationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */; }; - F8D1C6F519D52968002E74FE /* ManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D1C6F419D52968002E74FE /* ManagerTests.swift */; }; - F8E6024519CB46A800A3E7F1 /* AuthenticationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 4CF626FA1BA7CB3E0011A099 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F8111E2A19A95C8B0040E7D1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4CF626EE1BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS"; - }; - F8111E6519A967880040E7D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F8111E2A19A95C8B0040E7D1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F8111E3219A95C8B0040E7D1; - remoteInfo = Alamofire; - }; - F829C6B91A7A94F100A2CD59 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F8111E2A19A95C8B0040E7D1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4DD67C0A1A5C55C900ED2280; - remoteInfo = "Alamofire OSX"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResponseSerializationTests.swift; sourceTree = ""; }; - 4C0B62501BB1001C009302D3 /* Response.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Response.swift; sourceTree = ""; }; - 4C0E02681BF99A18004E7F18 /* Info-tvOS.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-tvOS.plist"; path = "Source/Info-tvOS.plist"; sourceTree = SOURCE_ROOT; }; - 4C0E5BF71B673D3400816CCC /* Result.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Result.swift; sourceTree = ""; }; - 4C1DC8531B68908E00476DE3 /* Error.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; - 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MultipartFormData.swift; sourceTree = ""; }; - 4C256A501B096C2C0065714F /* BaseTestCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseTestCase.swift; sourceTree = ""; }; - 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MultipartFormDataTests.swift; sourceTree = ""; }; - 4C33A1231B5207DB00873DFF /* rainbow.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = rainbow.jpg; sourceTree = ""; }; - 4C33A1241B5207DB00873DFF /* unicorn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = unicorn.png; sourceTree = ""; }; - 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServerTrustPolicyTests.swift; sourceTree = ""; }; - 4C341BB91B1A865A00C1B34D /* CacheTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CacheTests.swift; sourceTree = ""; }; - 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManager.swift; sourceTree = ""; }; - 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkReachabilityManagerTests.swift; sourceTree = ""; }; - 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "String+AlamofireTests.swift"; sourceTree = ""; }; - 4C574E691C67D207000B3128 /* Timeline.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Timeline.swift; sourceTree = ""; }; - 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "NSURLSessionConfiguration+AlamofireTests.swift"; sourceTree = ""; }; - 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ServerTrustPolicy.swift; sourceTree = ""; }; - 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "alamofire-root-ca.cer"; path = "alamofire.org/alamofire-root-ca.cer"; sourceTree = ""; }; - 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "alamofire-signing-ca1.cer"; path = "alamofire.org/alamofire-signing-ca1.cer"; sourceTree = ""; }; - 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "alamofire-signing-ca2.cer"; path = "alamofire.org/alamofire-signing-ca2.cer"; sourceTree = ""; }; - 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = wildcard.alamofire.org.cer; path = alamofire.org/wildcard.alamofire.org.cer; sourceTree = ""; }; - 4C812C441B535F400017E0BF /* multiple-dns-names.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "multiple-dns-names.cer"; path = "alamofire.org/multiple-dns-names.cer"; sourceTree = ""; }; - 4C812C451B535F400017E0BF /* signed-by-ca1.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "signed-by-ca1.cer"; path = "alamofire.org/signed-by-ca1.cer"; sourceTree = ""; }; - 4C812C461B535F400017E0BF /* test.alamofire.org.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = test.alamofire.org.cer; path = alamofire.org/test.alamofire.org.cer; sourceTree = ""; }; - 4C812C4F1B535F540017E0BF /* expired.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = expired.cer; path = alamofire.org/expired.cer; sourceTree = ""; }; - 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "missing-dns-name-and-uri.cer"; path = "alamofire.org/missing-dns-name-and-uri.cer"; sourceTree = ""; }; - 4C812C511B535F540017E0BF /* signed-by-ca2.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "signed-by-ca2.cer"; path = "alamofire.org/signed-by-ca2.cer"; sourceTree = ""; }; - 4C812C521B535F540017E0BF /* valid-dns-name.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "valid-dns-name.cer"; path = "alamofire.org/valid-dns-name.cer"; sourceTree = ""; }; - 4C812C531B535F540017E0BF /* valid-uri.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "valid-uri.cer"; path = "alamofire.org/valid-uri.cer"; sourceTree = ""; }; - 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "intermediate-ca-disig.cer"; path = "disig.sk/intermediate-ca-disig.cer"; sourceTree = ""; }; - 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "root-ca-disig.cer"; path = "disig.sk/root-ca-disig.cer"; sourceTree = ""; }; - 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = "testssl-expire.disig.sk.cer"; path = "disig.sk/testssl-expire.disig.sk.cer"; sourceTree = ""; }; - 4C83F41A1B749E0E00203445 /* Stream.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stream.swift; sourceTree = ""; }; - 4CA028C41B7466C500C84163 /* ResultTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResultTests.swift; sourceTree = ""; }; - 4CB928281C66BFBC00CE5F08 /* Notifications.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Notifications.swift; sourceTree = ""; }; - 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = URLProtocolTests.swift; sourceTree = ""; }; - 4CDE2C361AF8932A00BABAE5 /* Manager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Manager.swift; sourceTree = ""; }; - 4CDE2C391AF899EC00BABAE5 /* Request.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Request.swift; sourceTree = ""; }; - 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Download.swift; sourceTree = ""; }; - 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Upload.swift; sourceTree = ""; }; - 4CDE2C421AF89F0900BABAE5 /* Validation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Validation.swift; sourceTree = ""; }; - 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResponseSerialization.swift; sourceTree = ""; }; - 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParameterEncoding.swift; sourceTree = ""; }; - 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4CF626F81BA7CB3E0011A099 /* Alamofire tvOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Alamofire tvOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 72998D721BF26173006D3F69 /* Info-tvOS.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-tvOS.plist"; sourceTree = ""; }; - B39E2F831C1A72F8002DA1A9 /* certDER.cer */ = {isa = PBXFileReference; lastKnownFileType = file; name = certDER.cer; path = selfSignedAndMalformedCerts/certDER.cer; sourceTree = ""; }; - B39E2F841C1A72F8002DA1A9 /* certDER.crt */ = {isa = PBXFileReference; lastKnownFileType = file; name = certDER.crt; path = selfSignedAndMalformedCerts/certDER.crt; sourceTree = ""; }; - B39E2F851C1A72F8002DA1A9 /* certDER.der */ = {isa = PBXFileReference; lastKnownFileType = file; name = certDER.der; path = selfSignedAndMalformedCerts/certDER.der; sourceTree = ""; }; - B39E2F861C1A72F8002DA1A9 /* certPEM.cer */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = certPEM.cer; path = selfSignedAndMalformedCerts/certPEM.cer; sourceTree = ""; }; - B39E2F871C1A72F8002DA1A9 /* certPEM.crt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = certPEM.crt; path = selfSignedAndMalformedCerts/certPEM.crt; sourceTree = ""; }; - B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */ = {isa = PBXFileReference; lastKnownFileType = file; name = randomGibberish.crt; path = selfSignedAndMalformedCerts/randomGibberish.crt; sourceTree = ""; }; - B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */ = {isa = PBXFileReference; lastKnownFileType = file; name = keyDER.der; path = selfSignedAndMalformedCerts/keyDER.der; sourceTree = ""; }; - E4202FE01B667AA100C997FB /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F8111E3319A95C8B0040E7D1 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F8111E3719A95C8B0040E7D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F8111E3819A95C8B0040E7D1 /* Alamofire.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Alamofire.h; sourceTree = ""; }; - F8111E3E19A95C8B0040E7D1 /* Alamofire iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Alamofire iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - F8111E4119A95C8B0040E7D1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DownloadTests.swift; sourceTree = ""; }; - F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ParameterEncodingTests.swift; sourceTree = ""; }; - F8111E5D19A9674D0040E7D1 /* RequestTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RequestTests.swift; sourceTree = ""; }; - F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ResponseTests.swift; sourceTree = ""; }; - F8111E5F19A9674D0040E7D1 /* UploadTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UploadTests.swift; sourceTree = ""; }; - F829C6B21A7A94F100A2CD59 /* Alamofire OSX Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Alamofire OSX Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TLSEvaluationTests.swift; sourceTree = ""; }; - F897FF4019AA800700AB5182 /* Alamofire.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Alamofire.swift; sourceTree = ""; }; - F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ValidationTests.swift; sourceTree = ""; }; - F8D1C6F419D52968002E74FE /* ManagerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ManagerTests.swift; sourceTree = ""; }; - F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AuthenticationTests.swift; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 4CF626EB1BA7CB3E0011A099 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF626F51BA7CB3E0011A099 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CF626F91BA7CB3E0011A099 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C071A5C55C900ED2280 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FD91B667AA100C997FB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E2F19A95C8B0040E7D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3B19A95C8B0040E7D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8035DB621BAB492500466CB3 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F829C6AF1A7A94F100A2CD59 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F829C6B81A7A94F100A2CD59 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 4C256A4E1B09656A0065714F /* Core */ = { - isa = PBXGroup; - children = ( - F8E6024419CB46A800A3E7F1 /* AuthenticationTests.swift */, - F8D1C6F419D52968002E74FE /* ManagerTests.swift */, - F8111E5C19A9674D0040E7D1 /* ParameterEncodingTests.swift */, - F8111E5D19A9674D0040E7D1 /* RequestTests.swift */, - F8111E5E19A9674D0040E7D1 /* ResponseTests.swift */, - 4CA028C41B7466C500C84163 /* ResultTests.swift */, - ); - name = Core; - sourceTree = ""; - }; - 4C256A4F1B09656E0065714F /* Features */ = { - isa = PBXGroup; - children = ( - 4C341BB91B1A865A00C1B34D /* CacheTests.swift */, - F8111E5B19A9674D0040E7D1 /* DownloadTests.swift */, - 4C3238E61B3604DB00FE04AE /* MultipartFormDataTests.swift */, - 4C3D00571C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift */, - 4C0B58381B747A4400C0B99C /* ResponseSerializationTests.swift */, - 4C33A1421B52089C00873DFF /* ServerTrustPolicyTests.swift */, - F86AEFE51AE6A282007D9C76 /* TLSEvaluationTests.swift */, - F8111E5F19A9674D0040E7D1 /* UploadTests.swift */, - 4CCFA7991B2BE71600B6F460 /* URLProtocolTests.swift */, - F8AE910119D28DCC0078C7B2 /* ValidationTests.swift */, - ); - name = Features; - sourceTree = ""; - }; - 4C3238E91B3617A600FE04AE /* Resources */ = { - isa = PBXGroup; - children = ( - 4C33A1171B5207DB00873DFF /* Certificates */, - 4C33A1221B5207DB00873DFF /* Images */, - ); - name = Resources; - sourceTree = ""; - }; - 4C33A1171B5207DB00873DFF /* Certificates */ = { - isa = PBXGroup; - children = ( - B39E2F821C1A72E5002DA1A9 /* Varying Encoding Types and Extensions */, - 4C812C391B535F060017E0BF /* alamofire.org */, - 4C812C381B535F000017E0BF /* disig.sk */, - ); - name = Certificates; - path = Resources/Certificates; - sourceTree = ""; - }; - 4C33A1221B5207DB00873DFF /* Images */ = { - isa = PBXGroup; - children = ( - 4C33A1231B5207DB00873DFF /* rainbow.jpg */, - 4C33A1241B5207DB00873DFF /* unicorn.png */, - ); - name = Images; - path = Resources/Images; - sourceTree = ""; - }; - 4C33A13D1B52080800873DFF /* Root */ = { - isa = PBXGroup; - children = ( - 4C812C3A1B535F220017E0BF /* alamofire-root-ca.cer */, - ); - name = Root; - sourceTree = ""; - }; - 4C33A13E1B52081100873DFF /* Intermediate */ = { - isa = PBXGroup; - children = ( - 4C812C3D1B535F2E0017E0BF /* alamofire-signing-ca1.cer */, - 4C812C3E1B535F2E0017E0BF /* alamofire-signing-ca2.cer */, - ); - name = Intermediate; - sourceTree = ""; - }; - 4C33A13F1B52081A00873DFF /* Leaf */ = { - isa = PBXGroup; - children = ( - 4C33A1401B52084400873DFF /* Signed by CA1 */, - 4C33A1411B52084E00873DFF /* Signed by CA2 */, - ); - name = Leaf; - sourceTree = ""; - }; - 4C33A1401B52084400873DFF /* Signed by CA1 */ = { - isa = PBXGroup; - children = ( - 4C812C441B535F400017E0BF /* multiple-dns-names.cer */, - 4C812C451B535F400017E0BF /* signed-by-ca1.cer */, - 4C812C461B535F400017E0BF /* test.alamofire.org.cer */, - 4C812C431B535F400017E0BF /* wildcard.alamofire.org.cer */, - ); - name = "Signed by CA1"; - sourceTree = ""; - }; - 4C33A1411B52084E00873DFF /* Signed by CA2 */ = { - isa = PBXGroup; - children = ( - 4C812C4F1B535F540017E0BF /* expired.cer */, - 4C812C501B535F540017E0BF /* missing-dns-name-and-uri.cer */, - 4C812C511B535F540017E0BF /* signed-by-ca2.cer */, - 4C812C521B535F540017E0BF /* valid-dns-name.cer */, - 4C812C531B535F540017E0BF /* valid-uri.cer */, - ); - name = "Signed by CA2"; - sourceTree = ""; - }; - 4C7C8D201B9D0D7300948136 /* Extensions */ = { - isa = PBXGroup; - children = ( - 4C7C8D211B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift */, - 4C4CBE7A1BAF700C0024D659 /* String+AlamofireTests.swift */, - ); - name = Extensions; - sourceTree = ""; - }; - 4C812C381B535F000017E0BF /* disig.sk */ = { - isa = PBXGroup; - children = ( - 4C812C5E1B535F6D0017E0BF /* intermediate-ca-disig.cer */, - 4C812C5F1B535F6D0017E0BF /* root-ca-disig.cer */, - 4C812C601B535F6D0017E0BF /* testssl-expire.disig.sk.cer */, - ); - name = disig.sk; - sourceTree = ""; - }; - 4C812C391B535F060017E0BF /* alamofire.org */ = { - isa = PBXGroup; - children = ( - 4C33A13D1B52080800873DFF /* Root */, - 4C33A13E1B52081100873DFF /* Intermediate */, - 4C33A13F1B52081A00873DFF /* Leaf */, - ); - name = alamofire.org; - sourceTree = ""; - }; - 4CDE2C481AF8A14A00BABAE5 /* Core */ = { - isa = PBXGroup; - children = ( - 4C1DC8531B68908E00476DE3 /* Error.swift */, - 4CDE2C361AF8932A00BABAE5 /* Manager.swift */, - 4CB928281C66BFBC00CE5F08 /* Notifications.swift */, - 4CE2724E1AF88FB500F1D59A /* ParameterEncoding.swift */, - 4CDE2C391AF899EC00BABAE5 /* Request.swift */, - 4C0B62501BB1001C009302D3 /* Response.swift */, - 4C0E5BF71B673D3400816CCC /* Result.swift */, - ); - name = Core; - sourceTree = ""; - }; - 4CDE2C491AF8A14E00BABAE5 /* Features */ = { - isa = PBXGroup; - children = ( - 4CDE2C3C1AF89D4900BABAE5 /* Download.swift */, - 4C23EB421B327C5B0090E0BC /* MultipartFormData.swift */, - 4C3D00531C66A63000D1F709 /* NetworkReachabilityManager.swift */, - 4CDE2C451AF89FF300BABAE5 /* ResponseSerialization.swift */, - 4C811F8C1B51856D00E0F59A /* ServerTrustPolicy.swift */, - 4C83F41A1B749E0E00203445 /* Stream.swift */, - 4C574E691C67D207000B3128 /* Timeline.swift */, - 4CDE2C3F1AF89E0700BABAE5 /* Upload.swift */, - 4CDE2C421AF89F0900BABAE5 /* Validation.swift */, - ); - name = Features; - sourceTree = ""; - }; - B39E2F821C1A72E5002DA1A9 /* Varying Encoding Types and Extensions */ = { - isa = PBXGroup; - children = ( - B39E2F831C1A72F8002DA1A9 /* certDER.cer */, - B39E2F841C1A72F8002DA1A9 /* certDER.crt */, - B39E2F851C1A72F8002DA1A9 /* certDER.der */, - B39E2F861C1A72F8002DA1A9 /* certPEM.cer */, - B39E2F871C1A72F8002DA1A9 /* certPEM.crt */, - B39E2F891C1A72F8002DA1A9 /* randomGibberish.crt */, - B39E2F8A1C1A72F8002DA1A9 /* keyDER.der */, - ); - name = "Varying Encoding Types and Extensions"; - sourceTree = ""; - }; - F8111E2919A95C8B0040E7D1 = { - isa = PBXGroup; - children = ( - F8111E3519A95C8B0040E7D1 /* Source */, - F8111E3F19A95C8B0040E7D1 /* Tests */, - F8111E3419A95C8B0040E7D1 /* Products */, - ); - sourceTree = ""; - }; - F8111E3419A95C8B0040E7D1 /* Products */ = { - isa = PBXGroup; - children = ( - F8111E3319A95C8B0040E7D1 /* Alamofire.framework */, - F8111E3E19A95C8B0040E7D1 /* Alamofire iOS Tests.xctest */, - 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */, - F829C6B21A7A94F100A2CD59 /* Alamofire OSX Tests.xctest */, - E4202FE01B667AA100C997FB /* Alamofire.framework */, - 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */, - 4CF626F81BA7CB3E0011A099 /* Alamofire tvOS Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - F8111E3519A95C8B0040E7D1 /* Source */ = { - isa = PBXGroup; - children = ( - F897FF4019AA800700AB5182 /* Alamofire.swift */, - 4CDE2C481AF8A14A00BABAE5 /* Core */, - 4CDE2C491AF8A14E00BABAE5 /* Features */, - F8111E3619A95C8B0040E7D1 /* Supporting Files */, - ); - path = Source; - sourceTree = ""; - }; - F8111E3619A95C8B0040E7D1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - F8111E3819A95C8B0040E7D1 /* Alamofire.h */, - F8111E3719A95C8B0040E7D1 /* Info.plist */, - 72998D721BF26173006D3F69 /* Info-tvOS.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - F8111E3F19A95C8B0040E7D1 /* Tests */ = { - isa = PBXGroup; - children = ( - 4C256A501B096C2C0065714F /* BaseTestCase.swift */, - 4C256A4E1B09656A0065714F /* Core */, - 4C7C8D201B9D0D7300948136 /* Extensions */, - 4C256A4F1B09656E0065714F /* Features */, - 4C3238E91B3617A600FE04AE /* Resources */, - F8111E4019A95C8B0040E7D1 /* Supporting Files */, - ); - path = Tests; - sourceTree = ""; - }; - F8111E4019A95C8B0040E7D1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - F8111E4119A95C8B0040E7D1 /* Info.plist */, - 4C0E02681BF99A18004E7F18 /* Info-tvOS.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 4CF626EC1BA7CB3E0011A099 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CF627061BA7CBE30011A099 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C081A5C55C900ED2280 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4DD67C241A5C58FB00ED2280 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FDA1B667AA100C997FB /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CEC605C1B745C9B00E684F4 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3019A95C8B0040E7D1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F8111E3919A95C8B0040E7D1 /* Alamofire.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 4CF626EE1BA7CB3E0011A099 /* Alamofire tvOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4CF627041BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS" */; - buildPhases = ( - 4CF626EA1BA7CB3E0011A099 /* Sources */, - 4CF626EB1BA7CB3E0011A099 /* Frameworks */, - 4CF626EC1BA7CB3E0011A099 /* Headers */, - 4CF626ED1BA7CB3E0011A099 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire tvOS"; - productName = "Alamofire tvOS"; - productReference = 4CF626EF1BA7CB3E0011A099 /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - 4CF626F71BA7CB3E0011A099 /* Alamofire tvOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4CF627051BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS Tests" */; - buildPhases = ( - 4CF626F41BA7CB3E0011A099 /* Sources */, - 4CF626F51BA7CB3E0011A099 /* Frameworks */, - 4CF626F61BA7CB3E0011A099 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 4CF626FB1BA7CB3E0011A099 /* PBXTargetDependency */, - ); - name = "Alamofire tvOS Tests"; - productName = "Alamofire tvOSTests"; - productReference = 4CF626F81BA7CB3E0011A099 /* Alamofire tvOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 4DD67C0A1A5C55C900ED2280 /* Alamofire OSX */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4DD67C1E1A5C55C900ED2280 /* Build configuration list for PBXNativeTarget "Alamofire OSX" */; - buildPhases = ( - 4DD67C061A5C55C900ED2280 /* Sources */, - 4DD67C071A5C55C900ED2280 /* Frameworks */, - 4DD67C081A5C55C900ED2280 /* Headers */, - 4DD67C091A5C55C900ED2280 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire OSX"; - productName = AlamofireOSX; - productReference = 4DD67C0B1A5C55C900ED2280 /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - E4202FCD1B667AA100C997FB /* Alamofire watchOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = E4202FDD1B667AA100C997FB /* Build configuration list for PBXNativeTarget "Alamofire watchOS" */; - buildPhases = ( - E4202FCE1B667AA100C997FB /* Sources */, - E4202FD91B667AA100C997FB /* Frameworks */, - E4202FDA1B667AA100C997FB /* Headers */, - E4202FDC1B667AA100C997FB /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire watchOS"; - productName = Alamofire; - productReference = E4202FE01B667AA100C997FB /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - F8111E3219A95C8B0040E7D1 /* Alamofire iOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8111E4619A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS" */; - buildPhases = ( - F8111E2E19A95C8B0040E7D1 /* Sources */, - F8111E2F19A95C8B0040E7D1 /* Frameworks */, - F8111E3019A95C8B0040E7D1 /* Headers */, - F8111E3119A95C8B0040E7D1 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Alamofire iOS"; - productName = Alamofire; - productReference = F8111E3319A95C8B0040E7D1 /* Alamofire.framework */; - productType = "com.apple.product-type.framework"; - }; - F8111E3D19A95C8B0040E7D1 /* Alamofire iOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8111E4919A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS Tests" */; - buildPhases = ( - F8111E3A19A95C8B0040E7D1 /* Sources */, - F8111E3B19A95C8B0040E7D1 /* Frameworks */, - F8111E3C19A95C8B0040E7D1 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - F8111E6619A967880040E7D1 /* PBXTargetDependency */, - ); - name = "Alamofire iOS Tests"; - productName = AlamofireTests; - productReference = F8111E3E19A95C8B0040E7D1 /* Alamofire iOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - F829C6B11A7A94F100A2CD59 /* Alamofire OSX Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = F829C6BB1A7A94F100A2CD59 /* Build configuration list for PBXNativeTarget "Alamofire OSX Tests" */; - buildPhases = ( - F829C6AE1A7A94F100A2CD59 /* Sources */, - F829C6AF1A7A94F100A2CD59 /* Frameworks */, - F829C6B01A7A94F100A2CD59 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - F829C6BA1A7A94F100A2CD59 /* PBXTargetDependency */, - ); - name = "Alamofire OSX Tests"; - productName = "Alamofire OSX Tests"; - productReference = F829C6B21A7A94F100A2CD59 /* Alamofire OSX Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - F8111E2A19A95C8B0040E7D1 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0700; - LastUpgradeCheck = 0700; - ORGANIZATIONNAME = Alamofire; - TargetAttributes = { - 4CF626EE1BA7CB3E0011A099 = { - CreatedOnToolsVersion = 7.1; - }; - 4CF626F71BA7CB3E0011A099 = { - CreatedOnToolsVersion = 7.1; - }; - 4DD67C0A1A5C55C900ED2280 = { - CreatedOnToolsVersion = 6.1.1; - }; - F8111E3219A95C8B0040E7D1 = { - CreatedOnToolsVersion = 6.0; - }; - F8111E3D19A95C8B0040E7D1 = { - CreatedOnToolsVersion = 6.0; - }; - F829C6B11A7A94F100A2CD59 = { - CreatedOnToolsVersion = 6.1.1; - }; - }; - }; - buildConfigurationList = F8111E2D19A95C8B0040E7D1 /* Build configuration list for PBXProject "Alamofire" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = F8111E2919A95C8B0040E7D1; - productRefGroup = F8111E3419A95C8B0040E7D1 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - F8111E3219A95C8B0040E7D1 /* Alamofire iOS */, - F8111E3D19A95C8B0040E7D1 /* Alamofire iOS Tests */, - 4DD67C0A1A5C55C900ED2280 /* Alamofire OSX */, - F829C6B11A7A94F100A2CD59 /* Alamofire OSX Tests */, - 4CF626EE1BA7CB3E0011A099 /* Alamofire tvOS */, - 4CF626F71BA7CB3E0011A099 /* Alamofire tvOS Tests */, - E4202FCD1B667AA100C997FB /* Alamofire watchOS */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 4CF626ED1BA7CB3E0011A099 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF626F61BA7CB3E0011A099 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C743D031C22772D00BCB23E /* wildcard.alamofire.org.cer in Resources */, - 4C743CFF1C22772D00BCB23E /* alamofire-signing-ca2.cer in Resources */, - 4C743D061C22772D00BCB23E /* signed-by-ca2.cer in Resources */, - 4CF627341BA7CC300011A099 /* rainbow.jpg in Resources */, - 4C743D081C22772D00BCB23E /* valid-uri.cer in Resources */, - 4C743CFC1C22772D00BCB23E /* keyDER.der in Resources */, - 4C743CF81C22772D00BCB23E /* certDER.der in Resources */, - 4C743D051C22772D00BCB23E /* missing-dns-name-and-uri.cer in Resources */, - 4C743CFB1C22772D00BCB23E /* randomGibberish.crt in Resources */, - 4C743D0B1C22772D00BCB23E /* testssl-expire.disig.sk.cer in Resources */, - 4C743CFE1C22772D00BCB23E /* alamofire-signing-ca1.cer in Resources */, - 4C743D001C22772D00BCB23E /* multiple-dns-names.cer in Resources */, - 4C743D011C22772D00BCB23E /* signed-by-ca1.cer in Resources */, - 4C743D021C22772D00BCB23E /* test.alamofire.org.cer in Resources */, - 4C743CF61C22772D00BCB23E /* certDER.cer in Resources */, - 4C743D0A1C22772D00BCB23E /* root-ca-disig.cer in Resources */, - 4C743CFD1C22772D00BCB23E /* alamofire-root-ca.cer in Resources */, - 4C743CF91C22772D00BCB23E /* certPEM.cer in Resources */, - 4CF627351BA7CC300011A099 /* unicorn.png in Resources */, - 4C743CFA1C22772D00BCB23E /* certPEM.crt in Resources */, - 4C743D091C22772D00BCB23E /* intermediate-ca-disig.cer in Resources */, - 4C743CF71C22772D00BCB23E /* certDER.crt in Resources */, - 4C743D071C22772D00BCB23E /* valid-dns-name.cer in Resources */, - 4C743D041C22772D00BCB23E /* expired.cer in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C091A5C55C900ED2280 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FDC1B667AA100C997FB /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3119A95C8B0040E7D1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3C19A95C8B0040E7D1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C743D2F1C22772F00BCB23E /* wildcard.alamofire.org.cer in Resources */, - 4C743D2B1C22772F00BCB23E /* alamofire-signing-ca2.cer in Resources */, - 4C743D321C22772F00BCB23E /* signed-by-ca2.cer in Resources */, - 4C33A13B1B5207DB00873DFF /* unicorn.png in Resources */, - 4C743D341C22772F00BCB23E /* valid-uri.cer in Resources */, - 4C743D281C22772F00BCB23E /* keyDER.der in Resources */, - 4C743D241C22772F00BCB23E /* certDER.der in Resources */, - 4C743D311C22772F00BCB23E /* missing-dns-name-and-uri.cer in Resources */, - 4C743D271C22772F00BCB23E /* randomGibberish.crt in Resources */, - 4C743D371C22772F00BCB23E /* testssl-expire.disig.sk.cer in Resources */, - 4C743D2A1C22772F00BCB23E /* alamofire-signing-ca1.cer in Resources */, - 4C743D2C1C22772F00BCB23E /* multiple-dns-names.cer in Resources */, - 4C743D2D1C22772F00BCB23E /* signed-by-ca1.cer in Resources */, - 4C743D2E1C22772F00BCB23E /* test.alamofire.org.cer in Resources */, - 4C743D221C22772F00BCB23E /* certDER.cer in Resources */, - 4C743D361C22772F00BCB23E /* root-ca-disig.cer in Resources */, - 4C743D291C22772F00BCB23E /* alamofire-root-ca.cer in Resources */, - 4C743D251C22772F00BCB23E /* certPEM.cer in Resources */, - 4C33A1391B5207DB00873DFF /* rainbow.jpg in Resources */, - 4C743D261C22772F00BCB23E /* certPEM.crt in Resources */, - 4C743D351C22772F00BCB23E /* intermediate-ca-disig.cer in Resources */, - 4C743D231C22772F00BCB23E /* certDER.crt in Resources */, - 4C743D331C22772F00BCB23E /* valid-dns-name.cer in Resources */, - 4C743D301C22772F00BCB23E /* expired.cer in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F829C6B01A7A94F100A2CD59 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C743D191C22772E00BCB23E /* wildcard.alamofire.org.cer in Resources */, - 4C743D151C22772E00BCB23E /* alamofire-signing-ca2.cer in Resources */, - 4C743D1C1C22772E00BCB23E /* signed-by-ca2.cer in Resources */, - 4C33A13C1B5207DB00873DFF /* unicorn.png in Resources */, - 4C743D1E1C22772E00BCB23E /* valid-uri.cer in Resources */, - 4C743D121C22772E00BCB23E /* keyDER.der in Resources */, - 4C743D0E1C22772E00BCB23E /* certDER.der in Resources */, - 4C743D1B1C22772E00BCB23E /* missing-dns-name-and-uri.cer in Resources */, - 4C743D111C22772E00BCB23E /* randomGibberish.crt in Resources */, - 4C743D211C22772E00BCB23E /* testssl-expire.disig.sk.cer in Resources */, - 4C743D141C22772E00BCB23E /* alamofire-signing-ca1.cer in Resources */, - 4C743D161C22772E00BCB23E /* multiple-dns-names.cer in Resources */, - 4C743D171C22772E00BCB23E /* signed-by-ca1.cer in Resources */, - 4C743D181C22772E00BCB23E /* test.alamofire.org.cer in Resources */, - 4C743D0C1C22772E00BCB23E /* certDER.cer in Resources */, - 4C743D201C22772E00BCB23E /* root-ca-disig.cer in Resources */, - 4C743D131C22772E00BCB23E /* alamofire-root-ca.cer in Resources */, - 4C743D0F1C22772E00BCB23E /* certPEM.cer in Resources */, - 4C33A13A1B5207DB00873DFF /* rainbow.jpg in Resources */, - 4C743D101C22772E00BCB23E /* certPEM.crt in Resources */, - 4C743D1F1C22772E00BCB23E /* intermediate-ca-disig.cer in Resources */, - 4C743D0D1C22772E00BCB23E /* certDER.crt in Resources */, - 4C743D1D1C22772E00BCB23E /* valid-dns-name.cer in Resources */, - 4C743D1A1C22772E00BCB23E /* expired.cer in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 4CF626EA1BA7CB3E0011A099 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6C1C67D207000B3128 /* Timeline.swift in Sources */, - 4CF627121BA7CBF60011A099 /* Upload.swift in Sources */, - 4CF627111BA7CBF60011A099 /* Stream.swift in Sources */, - 4CF6270C1BA7CBF60011A099 /* Result.swift in Sources */, - 4CF627081BA7CBF60011A099 /* Error.swift in Sources */, - 4CF627131BA7CBF60011A099 /* Validation.swift in Sources */, - 4CF6270E1BA7CBF60011A099 /* MultipartFormData.swift in Sources */, - 4C80F9F81BB730EF001B46D2 /* Response.swift in Sources */, - 4CB9282B1C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4CF627091BA7CBF60011A099 /* Manager.swift in Sources */, - 4CF6270F1BA7CBF60011A099 /* ResponseSerialization.swift in Sources */, - 4CF6270B1BA7CBF60011A099 /* Request.swift in Sources */, - 4C3D00561C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */, - 4CF6270A1BA7CBF60011A099 /* ParameterEncoding.swift in Sources */, - 4CF627101BA7CBF60011A099 /* ServerTrustPolicy.swift in Sources */, - 4CF6270D1BA7CBF60011A099 /* Download.swift in Sources */, - 4CF627071BA7CBF60011A099 /* Alamofire.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF626F41BA7CB3E0011A099 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CF627181BA7CC240011A099 /* RequestTests.swift in Sources */, - 4CF627211BA7CC240011A099 /* TLSEvaluationTests.swift in Sources */, - 4CF627221BA7CC240011A099 /* UploadTests.swift in Sources */, - 4C80F9F91BB730F6001B46D2 /* String+AlamofireTests.swift in Sources */, - 4CF6271E1BA7CC240011A099 /* MultipartFormDataTests.swift in Sources */, - 4CF627201BA7CC240011A099 /* ServerTrustPolicyTests.swift in Sources */, - 4CF627241BA7CC240011A099 /* ValidationTests.swift in Sources */, - 4CF627141BA7CC240011A099 /* BaseTestCase.swift in Sources */, - 4CF627151BA7CC240011A099 /* AuthenticationTests.swift in Sources */, - 4CF627171BA7CC240011A099 /* ParameterEncodingTests.swift in Sources */, - 4CF627191BA7CC240011A099 /* ResponseTests.swift in Sources */, - 4CF627231BA7CC240011A099 /* URLProtocolTests.swift in Sources */, - 4CF6271C1BA7CC240011A099 /* CacheTests.swift in Sources */, - 4CF627161BA7CC240011A099 /* ManagerTests.swift in Sources */, - 4CF6271A1BA7CC240011A099 /* ResultTests.swift in Sources */, - 4CF6271B1BA7CC240011A099 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */, - 4C3D005A1C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */, - 4CF6271F1BA7CC240011A099 /* ResponseSerializationTests.swift in Sources */, - 4CF6271D1BA7CC240011A099 /* DownloadTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4DD67C061A5C55C900ED2280 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6B1C67D207000B3128 /* Timeline.swift in Sources */, - 4CDE2C411AF89E0700BABAE5 /* Upload.swift in Sources */, - 4CE272501AF88FB500F1D59A /* ParameterEncoding.swift in Sources */, - 4CDE2C3B1AF899EC00BABAE5 /* Request.swift in Sources */, - 4CDE2C471AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */, - 4C1DC8551B68908E00476DE3 /* Error.swift in Sources */, - 4CDE2C381AF8932A00BABAE5 /* Manager.swift in Sources */, - 4C0B62521BB1001C009302D3 /* Response.swift in Sources */, - 4CB9282A1C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4DD67C251A5C590000ED2280 /* Alamofire.swift in Sources */, - 4C23EB441B327C5B0090E0BC /* MultipartFormData.swift in Sources */, - 4C811F8E1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */, - 4C3D00551C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */, - 4C83F41C1B749E0E00203445 /* Stream.swift in Sources */, - 4CDE2C3E1AF89D4900BABAE5 /* Download.swift in Sources */, - 4CDE2C441AF89F0900BABAE5 /* Validation.swift in Sources */, - 4C0E5BF91B673D3400816CCC /* Result.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4202FCE1B667AA100C997FB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6D1C67D207000B3128 /* Timeline.swift in Sources */, - 4CEE82AD1C6813CF00E9C9F0 /* NetworkReachabilityManager.swift in Sources */, - E4202FCF1B667AA100C997FB /* Upload.swift in Sources */, - E4202FD01B667AA100C997FB /* ParameterEncoding.swift in Sources */, - E4202FD11B667AA100C997FB /* Request.swift in Sources */, - 4CEC605A1B745C9100E684F4 /* Error.swift in Sources */, - E4202FD21B667AA100C997FB /* ResponseSerialization.swift in Sources */, - E4202FD31B667AA100C997FB /* Manager.swift in Sources */, - 4C0B62531BB1001C009302D3 /* Response.swift in Sources */, - 4CB9282C1C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4CEC605B1B745C9100E684F4 /* Result.swift in Sources */, - E4202FD41B667AA100C997FB /* Alamofire.swift in Sources */, - E4202FD51B667AA100C997FB /* MultipartFormData.swift in Sources */, - 4C83F41D1B749E0E00203445 /* Stream.swift in Sources */, - E4202FD61B667AA100C997FB /* ServerTrustPolicy.swift in Sources */, - E4202FD71B667AA100C997FB /* Download.swift in Sources */, - E4202FD81B667AA100C997FB /* Validation.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E2E19A95C8B0040E7D1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C574E6A1C67D207000B3128 /* Timeline.swift in Sources */, - 4CDE2C401AF89E0700BABAE5 /* Upload.swift in Sources */, - 4CE2724F1AF88FB500F1D59A /* ParameterEncoding.swift in Sources */, - 4CDE2C3A1AF899EC00BABAE5 /* Request.swift in Sources */, - 4CDE2C461AF89FF300BABAE5 /* ResponseSerialization.swift in Sources */, - 4C1DC8541B68908E00476DE3 /* Error.swift in Sources */, - 4CDE2C371AF8932A00BABAE5 /* Manager.swift in Sources */, - 4C0B62511BB1001C009302D3 /* Response.swift in Sources */, - F897FF4119AA800700AB5182 /* Alamofire.swift in Sources */, - 4C23EB431B327C5B0090E0BC /* MultipartFormData.swift in Sources */, - 4C811F8D1B51856D00E0F59A /* ServerTrustPolicy.swift in Sources */, - 4C3D00541C66A63000D1F709 /* NetworkReachabilityManager.swift in Sources */, - 4C83F41B1B749E0E00203445 /* Stream.swift in Sources */, - 4CDE2C3D1AF89D4900BABAE5 /* Download.swift in Sources */, - 4CDE2C431AF89F0900BABAE5 /* Validation.swift in Sources */, - 4CB928291C66BFBC00CE5F08 /* Notifications.swift in Sources */, - 4C0E5BF81B673D3400816CCC /* Result.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F8111E3A19A95C8B0040E7D1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C3238E71B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */, - 4C33A1431B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */, - 4C341BBA1B1A865A00C1B34D /* CacheTests.swift in Sources */, - 4C4CBE7B1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */, - 4CA028C51B7466C500C84163 /* ResultTests.swift in Sources */, - 4CCFA79A1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */, - F86AEFE71AE6A312007D9C76 /* TLSEvaluationTests.swift in Sources */, - 4C0B58391B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */, - F8858DDD19A96B4300F55F93 /* RequestTests.swift in Sources */, - 4C256A531B096C770065714F /* BaseTestCase.swift in Sources */, - F8E6024519CB46A800A3E7F1 /* AuthenticationTests.swift in Sources */, - F8858DDE19A96B4400F55F93 /* ResponseTests.swift in Sources */, - F8D1C6F519D52968002E74FE /* ManagerTests.swift in Sources */, - F8AE910219D28DCC0078C7B2 /* ValidationTests.swift in Sources */, - F8111E6119A9674D0040E7D1 /* ParameterEncodingTests.swift in Sources */, - F8111E6419A9674D0040E7D1 /* UploadTests.swift in Sources */, - 4C3D00581C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */, - F8111E6019A9674D0040E7D1 /* DownloadTests.swift in Sources */, - 4C7C8D221B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F829C6AE1A7A94F100A2CD59 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C3238E81B3604DB00FE04AE /* MultipartFormDataTests.swift in Sources */, - 4C33A1441B52089C00873DFF /* ServerTrustPolicyTests.swift in Sources */, - 4C341BBB1B1A865A00C1B34D /* CacheTests.swift in Sources */, - 4C4CBE7C1BAF700C0024D659 /* String+AlamofireTests.swift in Sources */, - 4CA028C61B7466C500C84163 /* ResultTests.swift in Sources */, - 4CCFA79B1B2BE71600B6F460 /* URLProtocolTests.swift in Sources */, - F829C6BE1A7A950600A2CD59 /* ParameterEncodingTests.swift in Sources */, - 4C0B583A1B747A4400C0B99C /* ResponseSerializationTests.swift in Sources */, - F829C6BF1A7A950600A2CD59 /* RequestTests.swift in Sources */, - 4C256A541B096C770065714F /* BaseTestCase.swift in Sources */, - F829C6C01A7A950600A2CD59 /* ManagerTests.swift in Sources */, - F829C6C11A7A950600A2CD59 /* ResponseTests.swift in Sources */, - F829C6C21A7A950600A2CD59 /* UploadTests.swift in Sources */, - F829C6C31A7A950600A2CD59 /* DownloadTests.swift in Sources */, - F829C6C41A7A950600A2CD59 /* AuthenticationTests.swift in Sources */, - F829C6C51A7A950600A2CD59 /* ValidationTests.swift in Sources */, - 4C3D00591C66A8B900D1F709 /* NetworkReachabilityManagerTests.swift in Sources */, - F86AEFE81AE6A315007D9C76 /* TLSEvaluationTests.swift in Sources */, - 4C7C8D231B9D0D9000948136 /* NSURLSessionConfiguration+AlamofireTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 4CF626FB1BA7CB3E0011A099 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4CF626EE1BA7CB3E0011A099 /* Alamofire tvOS */; - targetProxy = 4CF626FA1BA7CB3E0011A099 /* PBXContainerItemProxy */; - }; - F8111E6619A967880040E7D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F8111E3219A95C8B0040E7D1 /* Alamofire iOS */; - targetProxy = F8111E6519A967880040E7D1 /* PBXContainerItemProxy */; - }; - F829C6BA1A7A94F100A2CD59 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 4DD67C0A1A5C55C900ED2280 /* Alamofire OSX */; - targetProxy = F829C6B91A7A94F100A2CD59 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 4C0FFAF81C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 1; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = ReleaseTest; - }; - 4C0FFAF91C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - }; - name = ReleaseTest; - }; - 4C0FFAFA1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = ReleaseTest; - }; - 4C0FFAFB1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = ReleaseTest; - }; - 4C0FFAFC1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = ReleaseTest; - }; - 4C0FFAFD1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = ReleaseTest; - }; - 4C0FFAFE1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.Alamofire-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = ReleaseTest; - }; - 4C0FFAFF1C212C71009085A1 /* ReleaseTest */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=watchsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULE_NAME = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = ReleaseTest; - }; - 4CF627001BA7CB3E0011A099 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Debug; - }; - 4CF627011BA7CB3E0011A099 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Source/Info-tvOS.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Release; - }; - 4CF627021BA7CB3E0011A099 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.Alamofire-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Debug; - }; - 4CF627031BA7CB3E0011A099 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.Alamofire-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - TVOS_DEPLOYMENT_TARGET = 9.0; - }; - name = Release; - }; - 4DD67C1F1A5C55C900ED2280 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - FRAMEWORK_VERSION = A; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - 4DD67C201A5C55C900ED2280 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_VERSION = A; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SDKROOT = macosx; - SKIP_INSTALL = YES; - }; - name = Release; - }; - E4202FDE1B667AA100C997FB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=watchsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULE_NAME = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = watchos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = 4; - }; - name = Debug; - }; - E4202FDF1B667AA100C997FB /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=watchsimulator*]" = ""; - COPY_PHASE_STRIP = NO; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULE_NAME = ""; - PRODUCT_BUNDLE_IDENTIFIER = com.alamofire.Alamofire; - PRODUCT_NAME = Alamofire; - SDKROOT = watchos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = 4; - }; - name = Release; - }; - F8111E4419A95C8B0040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Debug; - }; - F8111E4519A95C8B0040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 1; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MACOSX_DEPLOYMENT_TARGET = 10.9; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 9.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Release; - }; - F8111E4719A95C8B0040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = marker; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - F8111E4819A95C8B0040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - BITCODE_GENERATION_MODE = bitcode; - CLANG_ENABLE_MODULES = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - INFOPLIST_FILE = Source/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = Alamofire; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - }; - name = Release; - }; - F8111E4A19A95C8B0040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - F8111E4B19A95C8B0040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=iphonesimulator*]" = ""; - FRAMEWORK_SEARCH_PATHS = "$(inherited)"; - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; - F829C6BC1A7A94F100A2CD59 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - F829C6BD1A7A94F100A2CD59 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - COMBINE_HIDPI_IMAGES = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(DEVELOPER_FRAMEWORKS_DIR)", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.9; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 4CF627041BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4CF627001BA7CB3E0011A099 /* Debug */, - 4CF627011BA7CB3E0011A099 /* Release */, - 4C0FFAFD1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4CF627051BA7CB3E0011A099 /* Build configuration list for PBXNativeTarget "Alamofire tvOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4CF627021BA7CB3E0011A099 /* Debug */, - 4CF627031BA7CB3E0011A099 /* Release */, - 4C0FFAFE1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4DD67C1E1A5C55C900ED2280 /* Build configuration list for PBXNativeTarget "Alamofire OSX" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4DD67C1F1A5C55C900ED2280 /* Debug */, - 4DD67C201A5C55C900ED2280 /* Release */, - 4C0FFAFB1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E4202FDD1B667AA100C997FB /* Build configuration list for PBXNativeTarget "Alamofire watchOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E4202FDE1B667AA100C997FB /* Debug */, - E4202FDF1B667AA100C997FB /* Release */, - 4C0FFAFF1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E2D19A95C8B0040E7D1 /* Build configuration list for PBXProject "Alamofire" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E4419A95C8B0040E7D1 /* Debug */, - F8111E4519A95C8B0040E7D1 /* Release */, - 4C0FFAF81C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E4619A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E4719A95C8B0040E7D1 /* Debug */, - F8111E4819A95C8B0040E7D1 /* Release */, - 4C0FFAF91C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E4919A95C8B0040E7D1 /* Build configuration list for PBXNativeTarget "Alamofire iOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E4A19A95C8B0040E7D1 /* Debug */, - F8111E4B19A95C8B0040E7D1 /* Release */, - 4C0FFAFA1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F829C6BB1A7A94F100A2CD59 /* Build configuration list for PBXNativeTarget "Alamofire OSX Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F829C6BC1A7A94F100A2CD59 /* Debug */, - F829C6BD1A7A94F100A2CD59 /* Release */, - 4C0FFAFC1C212C71009085A1 /* ReleaseTest */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = F8111E2A19A95C8B0040E7D1 /* Project object */; -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 7d39b0e..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme deleted file mode 100644 index 2052c92..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire OSX.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme deleted file mode 100644 index b5f528e..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire iOS.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme deleted file mode 100644 index bdf82c7..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire tvOS.xcscheme +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme deleted file mode 100644 index 9f7c434..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcodeproj/xcshareddata/xcschemes/Alamofire watchOS.xcscheme +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 748f4a0..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Alamofire.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CHANGELOG.md b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CHANGELOG.md deleted file mode 100644 index 4c77692..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CHANGELOG.md +++ /dev/null @@ -1,1193 +0,0 @@ -# Change Log -All notable changes to this project will be documented in this file. -`Alamofire` adheres to [Semantic Versioning](http://semver.org/). - -#### 3.x Releases -- `3.2.x` Releases - [3.2.0](#320) -- `3.1.x` Releases - [3.1.0](#310) | [3.1.1](#311) | [3.1.2](#312) | [3.1.3](#313) | [3.1.4](#314) | [3.1.5](#315) -- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301) -- `3.0.0` Betas - [3.0.0-beta.1](#300-beta1) | [3.0.0-beta.2](#300-beta2) | [3.0.0-beta.3](#300-beta3) - -#### 2.x Releases -- `2.0.x` Releases - [2.0.0](#200) | [2.0.1](#201) | [2.0.2](#202) -- `2.0.0` Betas - [2.0.0-beta.1](#200-beta1) | [2.0.0-beta.2](#200-beta2) | [2.0.0-beta.3](#200-beta3) | [2.0.0-beta.4](#200-beta4) - -#### 1.x Releases -- `1.3.x` Releases - [1.3.0](#130) | [1.3.1](#131) -- `1.2.x` Releases - [1.2.0](#120) | [1.2.1](#121) | [1.2.2](#122) | [1.2.3](#123) -- `1.1.x` Releases - [1.1.0](#110) | [1.1.1](#111) | [1.1.2](#112) | [1.1.3](#113) | [1.1.4](#114) | [1.1.5](#115) -- `1.0.x` Releases - [1.0.0](#100) | [1.0.1](#101) - ---- - -## [3.2.0](https://github.com/Alamofire/Alamofire/releases/tag/3.2.0) -Released on 2016-02-07. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.2.0). - -#### Added -- Notifications that post when an `NSURLSessionTask` changes state to allow support for the - network activity indicator. - - Added by [Christian Noon](https://github.com/cnoon). -- `Timeline` struct to capture timings throughout the lifecycle of a `Request`. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1054](https://github.com/Alamofire/Alamofire/issues/1054). -- A new `Timeline` section to the README. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1054](https://github.com/Alamofire/Alamofire/issues/1054). -- `NetworkReachabilityManager` to listen for reachability status changes. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1053](https://github.com/Alamofire/Alamofire/issues/1053). -- Unit tests for all the testable network reachability manager APIs. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1053](https://github.com/Alamofire/Alamofire/issues/1053). -- A new `Network Reachability` section to the README. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#1053](https://github.com/Alamofire/Alamofire/issues/1053). - -#### Updated -- The `NSURLSessionStream` APIs to support `tvOS`. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `ParameterEncoding` encode method to allow empty parameters to still be encoded. - - Updated by [Christian Noon](https://github.com/cnoon) in Regards to Issues - [#1032](https://github.com/Alamofire/Alamofire/issues/1032) and - [#1049](https://github.com/Alamofire/Alamofire/issues/1049). - -#### Fixed -- Broken CocoaDocs generation by moving iOS Example project into Examples folder. - - Fixed by [Jon Shier](https://github.com/jshier) in Pull Request - [#1027](https://github.com/Alamofire/Alamofire/issues/1027) in Regards to Issue - [#1025](https://github.com/Alamofire/Alamofire/issues/1025). - ---- - -## [3.1.5](https://github.com/Alamofire/Alamofire/releases/tag/3.1.5) -Released on 2016-01-17. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.5). - -#### Added -- `Package.swift` to the project to support Swift Package Manager (SPM). - - Added by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#979](https://github.com/Alamofire/Alamofire/pull/979). -- Safeguards to the `Request` class's `debugDescription` property. - - Added by [tokorom](https://github.com/tokorom) in Pull Request - [#983](https://github.com/Alamofire/Alamofire/pull/983). - -#### Updated -- `Accept-Language` header generation to use functional style. - - Updated by [Dapeng Gao](https://github.com/dapenggao) in Pull Request - [#982](https://github.com/Alamofire/Alamofire/pull/982). -- `Accept-Encoding` and `Accept-Language` header values to have separator spaces between values. - - Updated by [Christian Noon](https://github.com/cnoon). -- Copyright headers to include 2016! 🎉🎉🎉 - - Updated by [Christian Noon](https://github.com/cnoon). - -## [3.1.4](https://github.com/Alamofire/Alamofire/releases/tag/3.1.4) -Released on 2015-12-16. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.4). - -#### Added -- `NSTemporaryExceptionMinimumTLSVersion` documentation to the ATS section in the README. - - Added by [Marandon Antoine](https://github.com/ntnmrndn) in Pull Request - [#952](https://github.com/Alamofire/Alamofire/pull/952). -- Added `ReleaseTest` configuration to allow running tests against optimized build. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- Carthage instructions in the README to clearly callout the `carthage update` command. - - Updated by [vlad](https://github.com/vlastachu) in Pull Request - [#955](https://github.com/Alamofire/Alamofire/pull/955). -- `ParameterEncoding` to early out when passed an empty parameters dictionary. - - Updated by [Anthony Miller](https://github.com/AnthonyMDev) in Pull Request - [#954](https://github.com/Alamofire/Alamofire/pull/954). -- The `certificatesInBundle` to support `cer`, `crt` and `der` extensions. - - Updated by [Jacob Jennings](https://github.com/jacobjennings) in Pull Request - [#956](https://github.com/Alamofire/Alamofire/pull/956). -- The `ENABLE_TESTABILITY` flag to `NO` for Release configuration and disabled tests for - non-test builds to better support Carthage. - - Updated by [Jed Lewison](https://github.com/jedlewison) in Pull Request - [#953](https://github.com/Alamofire/Alamofire/pull/953). -- The server certificates for the TLS tests and added all certificates to all test targets. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Travis-CI configuration to Xcode 7.2, iOS 9.2, tvOS 9.1 and watchOS 2.1. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- `SecCertificate` array Swift workaround in `ServerTrustPolicy` for Xcode 7.2. - - Removed by [Christian Noon](https://github.com/cnoon). - -## [3.1.3](https://github.com/Alamofire/Alamofire/releases/tag/3.1.3) -Released on 2015-11-22. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.3). - -#### Added -- Custom `Info.plist` for tvOS setting the `UIRequiredDeviceCapabilities` to `arm64`. - - Added by [Simon Støvring](https://github.com/simonbs) in Pull Request - [#913](https://github.com/Alamofire/Alamofire/pull/913). - -#### Updated -- All code samples in the README to use `https` instead of `http`. - - Updated by [Tomonobu Sato](https://github.com/tmnb) in Pull Request - [#912](https://github.com/Alamofire/Alamofire/pull/912). - -## [3.1.2](https://github.com/Alamofire/Alamofire/releases/tag/3.1.2) -Released on 2015-11-06. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.2). - -#### Updated -- Code signing on iOS simulator builds to not sign simulator builds. - - Updated by [John Heaton](https://github.com/JRHeaton) in Pull Request - [#903](https://github.com/Alamofire/Alamofire/pull/903). -- Code signing on watchOS and tvOS simulators builds to not sign simulator builds. - - Updated by [Christian Noon](https://github.com/cnoon). - -## [3.1.1](https://github.com/Alamofire/Alamofire/releases/tag/3.1.1) -Released on 2015-10-31. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.1). - -#### Added -- Support for 204 response status codes in the response serializers. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#889](https://github.com/Alamofire/Alamofire/pull/889). -- ATS section to the README explaining how to configure the settings. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#876](https://github.com/Alamofire/Alamofire/issues/876). - -#### Updated -- Several unnecessary uses of `NSString` with `String`. - - Updated by [Nicholas Maccharoli](https://github.com/Nirma) in Pull Request - [#885](https://github.com/Alamofire/Alamofire/pull/885). -- Content type validation to always succeeds when server data is `nil` or zero length. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#890](https://github.com/Alamofire/Alamofire/pull/890). - -#### Removed -- The mention of rdar://22307360 from the README since Xcode 7.1 has been released. - - Removed by [Elvis Nuñez](https://github.com/3lvis) in Pull Request - [#891](https://github.com/Alamofire/Alamofire/pull/891). -- An unnecessary availability check now that Xcode 7.1 is out of beta. - - Removed by [Christian Noon](https://github.com/cnoon). -- The playground from the project due to instability reasons. - - Removed by [Christian Noon](https://github.com/cnoon). -- The data length checks in the `responseData` and `responseString` serializers. - - Removed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#889](https://github.com/Alamofire/Alamofire/pull/889). - -## [3.1.0](https://github.com/Alamofire/Alamofire/releases/tag/3.1.0) -Released on 2015-10-22. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.1.0). - -#### Added -- New tvOS framework and test targets to the project. - - Added by [Bob Scarano](https://github.com/bscarano) in Pull Request - [#767](https://github.com/Alamofire/Alamofire/pull/767). -- The tvOS deployment target to the podspec. - - Added by [Christian Noon](https://github.com/cnoon). -- The `BITCODE_GENERATION_MODE` user defined setting to tvOS framework target. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The README to include tvOS and bumped the required version of Xcode. - - Updated by [Christian Noon](https://github.com/cnoon). -- The default tvOS and watchOS deployment targets in the Xcode project. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `APPLICATION_EXTENSION_API_ONLY` enabled flag to `YES` in the tvOS framework target. - - Updated by [James Barrow](https://github.com/Baza207) in Pull Request - [#771](https://github.com/Alamofire/Alamofire/pull/771). -- The Travis-CI yaml file to run watchOS and tvOS builds and tests on xcode7.1 osx_image. - - Updated by [Christian Noon](https://github.com/cnoon). - ---- - -## [3.0.1](https://github.com/Alamofire/Alamofire/releases/tag/3.0.1) -Released on 2015-10-19. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.1). - -#### Added -- Tests around content type validation with accept parameters. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Content type validation issue where parameter parsing on `;` was incorrect. - - Fixed by [Christian Noon](https://github.com/cnoon). - -## [3.0.0](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0) -Released on 2015-10-10. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0). - -#### Updated -- `Downloading a File` code sample in the README to compile against Swift 2.0. - - Updated by [Screon](https://github.com/Screon) in Pull Request - [#827](https://github.com/Alamofire/Alamofire/pull/827). -- Download code samples in the README to use `response` serializer. - - Updated by [Christian Noon](https://github.com/cnoon). -- CocoaPods and Carthage installation instructions for 3.0. - - Updated by [Christian Noon](https://github.com/cnoon). -- Carthage description and installation instructions in the README. - - Updated by [Ashton Williams](https://github.com/Ashton-W) in Pull Request - [#843](https://github.com/Alamofire/Alamofire/pull/843). -- URL encoding internals to leverage the dictionary keys lazy evaluation. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Small typo in the Alamofire 3.0 Migration Guide `Response` section. - - Fixed by [neugartf](https://github.com/neugartf) in Pull Request - [#826](https://github.com/Alamofire/Alamofire/pull/826). -- User defined `BITCODE_GENERATION_MODE` setting for Carthage builds. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#835](https://github.com/Alamofire/Alamofire/issues/835). - ---- - -## [3.0.0-beta.3](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0-beta.3) -Released on 2015-09-27. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0-beta.3). - -#### Updated -- The `Response` initializer to have a `public` ACL instead of `internal`. - - Updated by [Christian Noon](https://github.com/cnoon). - -## [3.0.0-beta.2](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0-beta.2) -Released on 2015-09-26. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0-beta.2). - -#### Added -- Tests around the header behavior for redirected requests. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#798](https://github.com/Alamofire/Alamofire/issues/798). -- A migration guide for Alamofire 3.0 documenting all API changes. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- `Response` initializer to have `internal` ACL. - - Updated by [Christian Noon](https://github.com/cnoon). -- All sample code in the README to conform to the Alamofire 3.0 APIs. - - Updated by [Christian Noon](https://github.com/cnoon). -- URL percent escaping to only batch on OS's where required improving -overall performance. - - Updated by [Christian Noon](https://github.com/cnoon). -- Basic auth example in the README to compile on Swift 2.0. - - Updated by [David F. Muir V](https://github.com/dfmuir) in Pull Request - [#810](https://github.com/Alamofire/Alamofire/issues/810). - -#### Fixed -- Compiler errors in the playground due to the new response serializer APIs. - - Fixed by [Christian Noon](https://github.com/cnoon). - -## [3.0.0-beta.1](https://github.com/Alamofire/Alamofire/releases/tag/3.0.0-beta.1) -Released on 2015-09-21. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.0.0-beta.1). - -#### Added -- A new `Response` struct to simplify response serialization. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#792](https://github.com/Alamofire/Alamofire/pull/792). -- A new initializer to the `Manager` allowing dependency injection of the -underlying `NSURLSession`. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#795](https://github.com/Alamofire/Alamofire/pull/795). -- Tests around the new `Manager` initialization methods. - -#### Updated -- Result type to take two generic parameters (`Value` and `Error`) where `Error` -conforms to `ErrorType`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- All response serializers to now return the original server data as `NSData?`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- The `TaskDelegate` to store an error as an `NSError` instead of `ErrorType`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- The `ValidationResult` failure case to require an `NSError` instead of `ErrorType`. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- All tests around response serialization and `Result` type usage. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#791](https://github.com/Alamofire/Alamofire/pull/791). -- All response serializers to use the new `Response` type. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - - [#792](https://github.com/Alamofire/Alamofire/pull/792). -- The designated initializer for a `Manager` to accept a `SessionDelegate` parameter -allowing dependency injection for better background session support. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#795](https://github.com/Alamofire/Alamofire/pull/795). - ---- - -## [2.0.2](https://github.com/Alamofire/Alamofire/releases/tag/2.0.2) -Released on 2015-09-20. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.2). - -#### Updated -- The Embedded Framework documentation to include `git init` info. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#782](https://github.com/Alamofire/Alamofire/issues/782). - -#### Fixed -- Alamofire iOS framework target by adding Alamofire iOS Tests as Target Dependency. - - Fixed by [Nicky Gerritsen](https://github.com/nickygerritsen) in Pull Request - [#780](https://github.com/Alamofire/Alamofire/pull/780). -- Percent encoding issue for long Chinese strings using URL parameter encoding. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#206](https://github.com/Alamofire/Alamofire/issues/206). - -## [2.0.1](https://github.com/Alamofire/Alamofire/releases/tag/2.0.1) -Released on 2015-09-16. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.1). - -#### Updated -- The CocoaPods installation instructions in the README. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Carthage installation instructions in the README. - - Updated by [Gustavo Barbosa](https://github.com/barbosa) in Pull Request - [#759](https://github.com/Alamofire/Alamofire/pull/759). - -#### Fixed -- The link to the 2.0 migration guide in the README. - - Fixed by [Dwight Watson](https://github.com/dwightwatson) in Pull Request - [#750](https://github.com/Alamofire/Alamofire/pull/750). -- Issue where NTLM authentication credentials were not used for authentication challenges. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#721](https://github.com/Alamofire/Alamofire/pull/721). - -## [2.0.0](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0) -Released on 2015-09-09. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0). - -#### Added -- A new `URLEncodedInURL` case to the `ParameterEncoding` for encoding in the URL. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#742](https://github.com/Alamofire/Alamofire/pull/742). - ---- - -## [2.0.0-beta.4](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.4) -Released on 2015-09-06. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.4). - -#### Added -- The `parameters` and `encoding` parameters to download APIs. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#719](https://github.com/Alamofire/Alamofire/issues/719). -- Section to the README about wildcard domain matching with server trust policies. - - Added by [Sai](https://github.com/sai-prasanna) in Pull Request - [#718](https://github.com/Alamofire/Alamofire/pull/718). -- A UTF-8 charset to Content-Type header for a URL encoded body. - - Added by [Cheolhee Han](https://github.com/cheolhee) in Pull Request - [#731](https://github.com/Alamofire/Alamofire/pull/731). -- Tests around posting unicode parameters with URL encoding. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Pull Request - [#731](https://github.com/Alamofire/Alamofire/pull/731). -- Tests for uploading base 64 encoded image data inside JSON. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#738](https://github.com/Alamofire/Alamofire/issues/738). -- An Alamofire 2.0 migration guide document to the new Documentation folder. - - Added by [Christian Noon](https://github.com/cnoon). -- A Migration Guides section to the README with link to 2.0 guide. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- Response serialization to prevent unnecessary call to response serializer. - - Updated by [Julien Ducret](https://github.com/brocoo) in Pull Request - [#716](https://github.com/Alamofire/Alamofire/pull/716). -- Travis-CI yaml file to support iOS 9, OSX 10.11 and Xcode 7. - - Updated by [Christian Noon](https://github.com/cnoon). -- Result types to store an `ErrorType` instead of `NSError`. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#732](https://github.com/Alamofire/Alamofire/issues/732). -- Docstrings on the download method to be more accurate. - - Updated by [Christian Noon](https://github.com/cnoon). -- The README to require Xcode 7 beta 6. - - Updated by [Christian Noon](https://github.com/cnoon). -- The background session section of the README to use non-deprecated API. - - Updated by [David F. Muir V](https://github.com/dfmuir) in Pull Request - [#724](https://github.com/Alamofire/Alamofire/pull/724). -- The playground to use the `Result` type. - - Updated by [Jonas Schmid](https://github.com/jschmid) in Pull Request - [#726](https://github.com/Alamofire/Alamofire/pull/726). -- Updated progress code samples in the README to show how to call onto the main queue. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- The AFNetworking sections from the FAQ in the README. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Issue on Windows where the wildcarded cert name in the test suite included asterisk. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#723](https://github.com/Alamofire/Alamofire/issues/723). -- Crash when multipart form data was uploaded from in-memory data on background session. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#740](https://github.com/Alamofire/Alamofire/issues/740). -- Issue where the background session completion handler was not called on the main queue. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#728](https://github.com/Alamofire/Alamofire/issues/728). - -## [2.0.0-beta.3](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.3) -Released on 2015-08-25. - -#### Removed -- The override for `NSMutableURLRequest` for the `URLRequestConvertible` protocol -conformance that could cause unwanted URL request referencing. - - Removed by [Christian Noon](https://github.com/cnoon). - -## [2.0.0-beta.2](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.2) -Released on 2015-08-24. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.2). - -#### Added -- Host and certificate chain validation section to the README. - - Added by [Christian Noon](https://github.com/cnoon). -- Tests verifying configuration headers are sent with all configuration types. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#692](https://github.com/Alamofire/Alamofire/issues/692). -- New rdar to the list in the README about the #available check issue. - - Added by [Christian Noon](https://github.com/cnoon). -- Override for `NSMutableURLRequest` for the `URLRequestConvertible` protocol. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- The README to note that CocoaPods 0.38.2 is required. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#682](https://github.com/Alamofire/Alamofire/issues/682). -- The README to include note about keeping a reference to the `Manager`. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#681](https://github.com/Alamofire/Alamofire/issues/681). -- Server trust host validation over to use SSL policy evaluation. - - Updated by [Christian Noon](https://github.com/cnoon). -- The documentation for the `URLRequestConvertible` section in the README. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `ServerTrustPolicyManager` to be more flexible by using `public` ACL. - - Updated by [Jan Riehn](https://github.com/jriehn) in Pull Request - [#696](https://github.com/Alamofire/Alamofire/pull/696). -- The `ServerTrustPolicyManager` policies property to use `public` ACL and -added docstrings. - - Updated by [Christian Noon](https://github.com/cnoon). -- The Ono response serializer example for Swift 2.0 in the README. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#700](https://github.com/Alamofire/Alamofire/issues/700). -- `Result` failure case to store an `ErrorType` instead of `NSError`. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#703](https://github.com/Alamofire/Alamofire/issues/703). -- All source code to compile with Xcode 7 beta 6. - - Updated by [Michael Gray](https://github.com/mishagray) in Pull Request - [#707](https://github.com/Alamofire/Alamofire/pull/707). - -#### Removed -- The `required` declaration on the `Manager` init method. - - Removed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#672](https://github.com/Alamofire/Alamofire/issues/672). - -#### Fixed -- Issue where the `TaskDelegate` operation queue would leak if the task was -never started. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Compiler issue on OS X target when creating background configurations -in the test suite. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#693](https://github.com/Alamofire/Alamofire/issues/693). - -## [2.0.0-beta.1](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.1) -Released on 2015-08-10. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.1). - -#### Added -- A `watchOS` deployment target to the podspec. - - Added by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#574](https://github.com/Alamofire/Alamofire/pull/574). -- Full screen support in the iOS Example App. - - Added by [Corinne Krych](https://github.com/corinnekrych) in Pull Request - [#612](https://github.com/Alamofire/Alamofire/pull/612). -- Temporary workaround for `SecCertificate` array compiler crash. - - Added by [Robert Rasmussen](https://github.com/robrasmussen) in Issue - [#610](https://github.com/Alamofire/Alamofire/issues/610). -- `Result` and `Error` types to refactor response validation and serialization. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#627](https://github.com/Alamofire/Alamofire/pull/627). -- Tests around response data, string and json serialization result behavior. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#627](https://github.com/Alamofire/Alamofire/pull/627). -- `CustomStringConvertible` and `CustomDebugStringConvertible` conformance -to the `Result` enumeration. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#648](https://github.com/Alamofire/Alamofire/pull/648). -- A Resume Data section to the README inside the Downloads section. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#648](https://github.com/Alamofire/Alamofire/pull/648). -- A `watchOS` framework target to the project. - - Added by [Tobias Ottenweller](https://github.com/tomco) in Pull Request - [#616](https://github.com/Alamofire/Alamofire/pull/616). -- `Result` tests pushing code coverage for `Result` enum to 100%. - - Added by [Christian Noon](https://github.com/cnoon). -- Tests around all response serializer usage. - - Added by [Christian Noon](https://github.com/cnoon). -- Public docstrings for all public `SessionDelegate` methods. - - Added by [Christian Noon](https://github.com/cnoon). -- A section to the README that calls out all open rdars affecting Alamofire. - - Added by [Christian Noon](https://github.com/cnoon). -- Test for wildcard validation that contains response with nil MIME type. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#662](https://github.com/Alamofire/Alamofire/pull/662). -- Support for stream tasks in iOS 9+ and OSX 10.11+. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#659](https://github.com/Alamofire/Alamofire/pull/659). - -#### Updated -- All logic to compile against Swift 2.0. - - Updated by [Christian Noon](https://github.com/cnoon). -- All logic to use the latest Swift 2.0 conventions. - - Updated by [Christian Noon](https://github.com/cnoon). -- All public docstrings to the latest Swift 2.0 syntax. - - Updated by [Christian Noon](https://github.com/cnoon). -- `URLRequestConvertible` to return an `NSMutableURLRequest`. - - Updated by [Christian Noon](https://github.com/cnoon). -- All HTTP requests to HTTPS to better align with ATS. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `escape` method in `ParameterEncoding` to use non-deprecated methods. - - Updated by [Christian Noon](https://github.com/cnoon). -- All source code and docstrings to fit roughly within 120 characters. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `MultipartFormData` encoding to leverage Swift 2.0 error handling. - - Updated by [Christian Noon](https://github.com/cnoon). -- All README code samples to match the latest Swift 2.0 API changes. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#648](https://github.com/Alamofire/Alamofire/pull/648). -- All frameworks to enable code coverage generation. - - Updated by [Christian Noon](https://github.com/cnoon). -- All frameworks to set the enable testability flag to YES for release builds. - - Updated by [Christian Noon](https://github.com/cnoon) in regard to Issue - [#652](https://github.com/Alamofire/Alamofire/issues/652). -- `ParameterEncoding` to leverage guard for parameters to increase safety. - - Updated by [Christian Noon](https://github.com/cnoon). -- iOS Example App to use optional bind around response to safely extract headers. - - Updated by [John Pope](https://github.com/johndpope) in Pull Request - [#665](https://github.com/Alamofire/Alamofire/pull/665). -- The `queryComponents` and `escape` methods in `ParameterEncoding` to `public` to -better support `.Custom` encoding. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#660](https://github.com/Alamofire/Alamofire/pull/660). -- The static error convenience functions to a public ACL. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#668](https://github.com/Alamofire/Alamofire/issues/668). - -#### Removed -- Explicit string values in `ParameterEncoding` since they are now implied. - - Removed by [Christian Noon](https://github.com/cnoon). -- An OSX cookie check in the `CustomDebugStringConvertible` conformance of a `Request`. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Issue in automatic validation tests where mutable URL request was not used. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Potential crash cases in Validation MIME type logic exposed by chaining. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Compiler issue in the iOS Example App around `Result` type usage. - - Fixed by [Jan Kase](https://github.com/jankase) in Pull Request - [#639](https://github.com/Alamofire/Alamofire/pull/639). -- The error code in the custom response serializers section of the README. - - Fixed by [Christian Noon](https://github.com/cnoon). - ---- - -## [1.3.1](https://github.com/Alamofire/Alamofire/releases/tag/1.3.1) -Released on 2015-08-10. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.3.1). - -#### Fixed -- Issue where a completed task was not released by the `SessionDelegate` if the -task override closure was set. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#622](https://github.com/Alamofire/Alamofire/issues/622). - -## [1.3.0](https://github.com/Alamofire/Alamofire/releases/tag/1.3.0) -Released on 2015-07-24. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.3.0). - -#### Added -- Test case around `NSURLProtocol` checking header passthrough behaviors. - - Added by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#473](https://github.com/Alamofire/Alamofire/issues/473). -- Stream method on `Request` to receive data incrementally from data responses. - - Added by [Peter Sobot](https://github.com/psobot) in Pull Request - [#512](https://github.com/Alamofire/Alamofire/pull/512). -- Example to the README demonstrating how to use the `responseCollection` serializer. - - Added by [Josh Brown](https://github.com/joshuatbrown) in Pull Request - [#532](https://github.com/Alamofire/Alamofire/pull/532). -- Link to the README to the CocoaDocs documentation for Alamofire. - - Added by [Robert](https://github.com/rojotek) in Pull Request - [#541](https://github.com/Alamofire/Alamofire/pull/541). -- Support for uploading `MultipartFormData` in-memory and streaming from disk. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#539](https://github.com/Alamofire/Alamofire/pull/539). -- Tests for uploading `MultipartFormData` with complete code coverage. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#539](https://github.com/Alamofire/Alamofire/pull/539). -- The iOS 8.4 simulator to the Travis CI builds by switching to the Xcode 6.4 build. - - Added by [Syo Ikeda](https://github.com/ikesyo) in Pull Request - [#568](https://github.com/Alamofire/Alamofire/pull/568). -- Tests for the custom header support with complete code coverage. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#586](https://github.com/Alamofire/Alamofire/pull/586). -- Section to the README about new HTTP header support in the global functions. - - Added by [Christian Noon](https://github.com/cnoon). -- Basic auth `Authorization` header example to the README. - - Added by [Christian Noon](https://github.com/cnoon). -- TLS certificate and public key pinning support through the `ServerTrustPolicy`. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#581](https://github.com/Alamofire/Alamofire/pull/581). -- Tests for TLS certificate and public key pinning with complete code coverage. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#581](https://github.com/Alamofire/Alamofire/pull/581). -- Security section to the README detailing various server trust policies. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#581](https://github.com/Alamofire/Alamofire/pull/581). -- The `resumeData` property to `Request` to expose outside data response serializer. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#595](https://github.com/Alamofire/Alamofire/pull/595). -- Download request sample to iOS example app. - - Added by [Kengo Yokoyama](https://github.com/kentya6) in Pull Request - [#579](https://github.com/Alamofire/Alamofire/pull/579). - -#### Updated -- The INFOPLIST_FILE Xcode project setting to be a relative path. - - Updated by [Christian Noon](https://github.com/cnoon). -- Exposed persistence parameter for basic auth credentials. - - Updated by [Christian Noon](https://github.com/cnoon) in regard to Issue - [#537](https://github.com/Alamofire/Alamofire/issues/537). -- The Travis CI builds to run a full `pod lib lint` pass on the source. - - Updated by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#542](https://github.com/Alamofire/Alamofire/pull/542). -- All cases of force unwrapping with optional binding and where clause when applicable. - - Updated by [Syo Ikeda](https://github.com/ikesyo) in Pull Request - [#557](https://github.com/Alamofire/Alamofire/pull/557). -- The `ParameterEncoding` encode return tuple to return a mutable URL request. - - Updated by [Petr Korolev](https://github.com/skywinder) in Pull Request - [#478](https://github.com/Alamofire/Alamofire/pull/478). -- The `URLRequest` convenience method to return a mutable `NSURLRequest`. - - Updated by [Christian Noon](https://github.com/cnoon). -- The `request` / `download` / `upload` methods to support custom headers. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#586](https://github.com/Alamofire/Alamofire/pull/586). -- The global `request` / `download` / `upload` method external parameters convention. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#586](https://github.com/Alamofire/Alamofire/pull/586). -- Response serialization to use generics and a `ResponseSerializer` protocol. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#593](https://github.com/Alamofire/Alamofire/pull/593). -- Download task delegate to store resume data for a failed download if available. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#595](https://github.com/Alamofire/Alamofire/pull/595). -- The `TaskDelegate.queue` to public to allow custom request extension operations. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#590](https://github.com/Alamofire/Alamofire/pull/590). -- The README code samples for Advanced Response Serialization. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- An unnecessary `NSURLSessionConfiguration` type declaration that can be inferred. - - Removed by [Avismara](https://github.com/avismarahl) in Pull Request - [#576](https://github.com/Alamofire/Alamofire/pull/576). -- Unnecessary `respondsToSelector` overrides for `SessionDelegate` methods. - - Removed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#590](https://github.com/Alamofire/Alamofire/pull/590). -- Unnecessary calls to `self` throughout source, test and example logic. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- Random test suite basic auth failures by clearing credentials in `setUp` method. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Error where wildcard was failing due to missing response MIME type. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#598](https://github.com/Alamofire/Alamofire/pull/598). -- Typo in the basic auth headers example code in the README. - - Fixed by [蒲公英の生活](https://github.com/fewspider) in Pull Request - [#605](https://github.com/Alamofire/Alamofire/pull/605). -- Issue where the example app was printing elapsed time in optional form. - - Fixed by [Christian Noon](https://github.com/cnoon). - -#### Upgrade Notes -There are a couple changes in the 1.3.0 release that are not fully backwards -compatible and need to be called out. - -* The global `request` / `download` / `upload` external parameter naming conventions -were not consistent nor did they match the `Manager` equivalents. By making them -consistent across the board, this introduced the possibility that you "may" need to -make slight modifications to your global function calls. -* In order to support generic response serializers, the lowest level -`Request.response` method had to be converted to a generic method leveraging the new -`ResponseSerializer` protocol. This has many advantages, the most obvious being that -the `response` convenience method now returns an `NSData?` optional instead of an -`AnyObject?` optional. Nice! - - > Please note that every effort is taken to maintain proper semantic versioning. In -these two rare cases, it was deemed to be in the best interest of the community to -slightly break semantic versioning to unify naming conventions as well as expose a -much more powerful form of response serialization. - - > If you have any issues, please don't hesitate to reach out through -[GitHub](https://github.com/Alamofire/Alamofire/issues) or -[Twitter](https://twitter.com/AlamofireSF). - ---- - -## [1.2.3](https://github.com/Alamofire/Alamofire/releases/tag/1.2.3) -Released on 2015-06-12. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.2.3). - -#### Added -- Tests for data task progress closure and NSProgress updates. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#494](https://github.com/Alamofire/Alamofire/pull/494). -- More robust tests around download and upload progress. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#494](https://github.com/Alamofire/Alamofire/pull/494). -- More robust redirect tests around default behavior and task override closures. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#507](https://github.com/Alamofire/Alamofire/pull/507). -- The "[" and "]" to the legal escape characters and added more documentation. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#504](https://github.com/Alamofire/Alamofire/pull/504). -- Percent escaping tests around reserved / unreserved / illegal characters. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#504](https://github.com/Alamofire/Alamofire/pull/504). -- Tests for various Cache-Control headers with different request cache policies. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#505](https://github.com/Alamofire/Alamofire/pull/505). -- Link to Carthage in the README. - - Added by [Josh Brown](https://github.com/joshuatbrown) in Pull Request - [#520](https://github.com/Alamofire/Alamofire/pull/520). - -#### Updated -- iOS 7 instructions to cover multiple Swift files in the README. - - Updated by [Sébastien Michoy](https://github.com/SebastienMichoy) in regards - to Issue [#479](https://github.com/Alamofire/Alamofire/pull/479). -- All tests to follow the Given / When / Then structure. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#489](https://github.com/Alamofire/Alamofire/pull/489). -- All tests to be crash safe. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#489](https://github.com/Alamofire/Alamofire/pull/489). -- The OS X tests so that they are all passing again. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#489](https://github.com/Alamofire/Alamofire/pull/489). -- Re-enabled Travis-CI tests for both iOS and Mac OS X. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). -- Travis-CI test suite to run all tests in both debug and release. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). -- Travis-CI test suite to run all tests on iOS 8.1, 8.2 and 8.3 as well as Mac OS X 10.10. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). -- Travis-CI test suite to run `pod lib lint` against the latest version of CocoaPods. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#506](https://github.com/Alamofire/Alamofire/pull/506). - -#### Fixed -- Random deinitialization test failure by handling task state race condition. - - Fixed by [Christian Noon](https://github.com/cnoon). -- Typo in the API Parameter Abstraction in the README. - - Fixed by [Josh Brown](https://github.com/joshuatbrown) in Pull Request - [#500](https://github.com/Alamofire/Alamofire/pull/500). -- Cookies are now only applied in the DebugPrintable API when appropriate. - - Fixed by [Alex Plescan](https://github.com/alexpls) in Pull Request - [#516](https://github.com/Alamofire/Alamofire/pull/516). - -## [1.2.2](https://github.com/Alamofire/Alamofire/releases/tag/1.2.2) -Released on 2015-05-13. All issues associated with this milestone can be found using this -[filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.2.2). - -#### Added -- Contributing Guidelines document to the project. - - Added by [Mattt Thompson](https://github.com/mattt). -- Documentation to the `URLStringConvertible` protocol around RFC specs. - - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#464](https://github.com/Alamofire/Alamofire/pull/464). -- The `Carthage/Build` ignore flag to the `.gitignore` file. - - Added by [Tomáš Slíž](https://github.com/tomassliz) in Pull Request - [#451](https://github.com/Alamofire/Alamofire/pull/451). -- The `.DS_Store` ignore flag to the `.gitignore` file. - - Added by [Christian Noon](https://github.com/cnoon). -- Response status code asserts for redirect tests. - - Added by [Christian Noon](https://github.com/cnoon). -- A CHANGELOG to the project documenting each official release. - - Added by [Christian Noon](https://github.com/cnoon). - -#### Updated -- `SessionDelegate` override closure properties to match the method signatures. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#456](https://github.com/Alamofire/Alamofire/pull/456). -- Documentation for the `Printable` protocol on `Request` to reference output stream -rather than the specific `OutputStreamType`. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Deployment targets to iOS 8.0 and OS X 10.9 for the respective frameworks. - - Updated by [Christian Noon](https://github.com/cnoon). -- `SessionDelegate` willPerformHTTPRedirection method to accept optional return type -from override closure. - - Updated by [Chungsub Kim](https://github.com/subicura) in Pull Request - [#469](https://github.com/Alamofire/Alamofire/pull/469). -- Embedded Framework and Source File documentation in the README. - - Updated by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#427](https://github.com/Alamofire/Alamofire/pull/427). -- Alamofire source to be split into multiple core files and feature files. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#471](https://github.com/Alamofire/Alamofire/pull/471). -- `TaskDelegate` override closure signatures and delegate method implementations. - - Updated by [Christian Noon](https://github.com/cnoon). - -#### Removed -- Travis-CI build status from the README until Xcode 6.3 is supported. - - Removed by [Mattt Thompson](https://github.com/mattt). -- Unnecessary parentheses from closure parameters and typealiases. - - Removed by [Christian Noon](https://github.com/cnoon). - -#### Fixed -- `SessionDelegate` override closure documentation. - - Fixed by [Siemen Sikkema](https://github.com/siemensikkema) in Pull Request - [#448](https://github.com/Alamofire/Alamofire/pull/448). -- Some inaccurate documentation on several of the public `SessionDelegate` closures. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#456](https://github.com/Alamofire/Alamofire/pull/456). -- A deinit race condition where the task delegate queue could fail to `dispatch_release`. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#379](https://github.com/Alamofire/Alamofire/pull/379). -- `TaskDelegate` to only set `qualityOfService` for `NSOperationQueue` on iOS 8+. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#472](https://github.com/Alamofire/Alamofire/pull/472). -- Expectation order issue in the redirect tests. - - Fixed by [Christian Noon](https://github.com/cnoon). -- `DataTaskDelegate` behavior ensuring `NSProgress` values and `progress` override -closures are always updated and executed. - - Fixed by [Christian Noon](https://github.com/cnoon) in regards to Issue - [#407](https://github.com/Alamofire/Alamofire/pull/407). - -## [1.2.1](https://github.com/Alamofire/Alamofire/releases/tag/1.2.1) -Released on 2015-04-21. - -#### Added -- Redirect tests for the `SessionDelegate`. - - Added by [Jonathan Hersh](https://github.com/jhersh) in Pull Request - [#424](https://github.com/Alamofire/Alamofire/pull/424). -- TLS evaluation test case. - - Added by [Mattt Thompson](https://github.com/mattt). -- Additional guards to ensure unique task identifiers for upload and download tasks. - - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#393](https://github.com/Alamofire/Alamofire/pull/393). - -#### Updated -- Required Xcode version to Xcode to 6.3 in the README. - - Updated by [Mattt Thompson](https://github.com/mattt). -- SSL validation to use default system validation by default. - - Updated by [Michael Thole](https://github.com/mthole) in Pull Request - [#394](https://github.com/Alamofire/Alamofire/pull/394). - -## [1.2.0](https://github.com/Alamofire/Alamofire/releases/tag/1.2.0) -Released on 2015-04-09. - -#### Added -- New `testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter` -test. - - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#370](https://github.com/Alamofire/Alamofire/pull/370). -- New `backgroundCompletionHandler` property to the `Manager` called when the -session background tasks finish. - - Added by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). - -#### Updated -- `Request` computed property `progress` to no longer be an optional type. - - Updated by [Pitiphong Phongpattranont](https://github.com/pitiphong-p) in - Pull Request - [#404](https://github.com/Alamofire/Alamofire/pull/404). -- All logic to Swift 1.2. - - Updated by [Aron Cedercrantz](https://github.com/rastersize) and - [Mattt Thompson](https://github.com/mattt). -- The `responseString` serializer to respect server provided character encoding with -overrideable configuration, default string response serialization to ISO-8859-1, as -per the HTTP/1.1 specification. - - Updated by [Kyle Fuller](https://github.com/kylef) and - [Mattt Thompson](https://github.com/mattt) in Pull Request - [#359](https://github.com/Alamofire/Alamofire/pull/359) which also resolved Issue - [#358](https://github.com/Alamofire/Alamofire/pull/358). -- `SessionDelegate` methods to first call the override closures if set. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). -- `SessionDelegate` and all override closures to a public ACL allowing for customization. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). -- `SessionDelegate` class to `final`. - - Updated by [Mattt Thompson](https://github.com/mattt). -- `SessionDelegate` header documentation for method override properties. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Xcode project to set `APPLICATION_EXTENSION_API_ONLY` to `YES` for OS X target. - - Updated by [Mattt Thompson](https://github.com/mattt). - -#### Removed -- Ambiguous response serializer methods that collided with default parameters. - - Removed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#408](https://github.com/Alamofire/Alamofire/pull/408). -- `SessionDelegate` initializer and replaced with default property value. - - Removed by [Mattt Thompson](https://github.com/mattt). - -#### Fixed -- Async tests where asserts were potentially not being run by by moving -`expectation.fullfill()` to end of closures. - - Fixed by [Nate Cook](https://github.com/natecook1000) in Pull Request - [#420](https://github.com/Alamofire/Alamofire/pull/420). -- Small grammatical error in the ParameterEncoding section of the README. - - Fixed by [Aaron Brager](https://github.com/getaaron) in Pull Request - [#416](https://github.com/Alamofire/Alamofire/pull/416). -- Typo in a download test comment. - - Fixed by [Aaron Brager](https://github.com/getaaron) in Pull Request - [#413](https://github.com/Alamofire/Alamofire/pull/413). -- Signature mismatch in the `dataTaskDidBecomeDownloadTask` override closure. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). -- Issue in the `SessionDelegate` where the `DataTaskDelegate` was not being called. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#317](https://github.com/Alamofire/Alamofire/pull/317). - ---- - -## [1.1.5](https://github.com/Alamofire/Alamofire/releases/tag/1.1.5) -Released on 2015-03-26. - -#### Added -- Convenience upload functions to the `Manager`. - - Added by [Olivier Bohrer](https://github.com/obohrer) in Pull Request - [#334](https://github.com/Alamofire/Alamofire/pull/334). -- Info to the README about Swift 1.2 support. - - Added by [Mattt Thompson](https://github.com/mattt). - -#### Updated -- All request / upload / download methods on `Manager` to match the top-level functions. - - Updated by [Mattt Thompson](https://github.com/mattt). -- The `testDownloadRequest` to no longer remove the downloaded file. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Ono XML response serializer example in the README. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Travis-CI settings to only build the master branch. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Code signing identities for the frameworks and targets to better support Carthage. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#400](https://github.com/Alamofire/Alamofire/pull/400). -- iOS deployment target to iOS 8.0 for iOS target and tests. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#401](https://github.com/Alamofire/Alamofire/pull/401). -- Legal characters to be escaped according to RFC 3986 Section 3.4. - - Updated by [Stephane Lizeray](https://github.com/slizeray) in Pull Request - [#370](https://github.com/Alamofire/Alamofire/pull/370). - -#### Fixed -- Travis-CI scheme issue, added podspec linting and added ENV variables. - - Fixed by [Jonathan Hersh](https://github.com/jhersh) in Pull Request - [#351](https://github.com/Alamofire/Alamofire/pull/351). -- Code sample in the README in the Manual Parameter Encoding section. - - Fixed by [Petr Korolev](https://github.com/skywinder) in Pull Request - [#381](https://github.com/Alamofire/Alamofire/pull/381). - -## [1.1.4](https://github.com/Alamofire/Alamofire/releases/tag/1.1.4) -Released on 2015-01-30. - -#### Added -- Podspec argument `requires_arc` to the podspec file. - - Added by [Mattt Thompson](https://github.com/mattt). -- Support for Travis-CI for automated testing purposes. - - Added by [Kyle Fuller](https://github.com/kylef) in Pull Request - [#279](https://github.com/Alamofire/Alamofire/pull/279). - -#### Updated -- Installation instructions in the README to include CocoaPods, Carthage and -Embedded Frameworks. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Travis-CI to use Xcode 6.1.1. - - Updated by [Mattt Thompson](https://github.com/mattt). -- The `download` method on `Manager` to use `Request.DownloadFileDestination` typealias. - - Updated by [Alexander Strakovich](https://github.com/astrabot) in Pull Request - [#318](https://github.com/Alamofire/Alamofire/pull/318). -- `RequestTests` to no longer delete all cookies in default session configuration. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Travis-CI yaml file to only build the active architecture. - - Updated by [Mattt Thompson](https://github.com/mattt). -- Deployment targets to iOS 7.0 and Mac OS X 10.9. - - Updated by [Mattt Thompson](https://github.com/mattt). - -#### Removed -- The `tearDown` method in the `AlamofireDownloadResponseTestCase`. - - Removed by [Mattt Thompson](https://github.com/mattt). - -#### Fixed -- Small formatting issue in the CocoaPods Podfile example in the README. - - Fixed by [rborkow](https://github.com/rborkow) in Pull Request - [#313](https://github.com/Alamofire/Alamofire/pull/313). -- Several issues with the iOS and OSX targets in the Xcode project. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- The `testDownloadRequest` in `DownloadTests` by adding `.json` file extension. - - Fixed by [Martin Kavalar](https://github.com/mk) in Pull Request - [#302](https://github.com/Alamofire/Alamofire/pull/302). -- The `AlamofireRequestDebugDescriptionTestCase` on OSX. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Spec validation error with CocoaPods 0.36.0.beta-1 by disabling -b flags in `cURL` -debug on OSX. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Travis-CI build issue by adding suppport for an `iOS Example` scheme. - - Fixed by [Yasuharu Ozaki](https://github.com/yasuoza) in Pull Request - [#322](https://github.com/Alamofire/Alamofire/pull/322). - -## [1.1.3](https://github.com/Alamofire/Alamofire/releases/tag/1.1.3) -Released on 2015-01-09. - -#### Added -- Podspec file to support CocoaPods deployment. - - Added by [Marius Rackwitz](https://github.com/mrackwitz) in Pull Request - [#218](https://github.com/Alamofire/Alamofire/pull/218). -- Shared scheme to support Carthage deployments. - - Added by [Yosuke Ishikawa](https://github.com/ishkawa) in Pull Request - [#228](https://github.com/Alamofire/Alamofire/pull/228). -- New target for Alamofire OSX framework. - - Added by [Martin Kavalar](https://github.com/mk) in Pull Request - [#293](https://github.com/Alamofire/Alamofire/pull/293). - -#### Updated -- Upload and Download progress state to be updated before calling progress closure. - - Updated by [Alexander Strakovich](https://github.com/astrabot) in Pull Request - [#278](https://github.com/Alamofire/Alamofire/pull/278). - -#### Fixed -- Some casting code logic in the Generic Response Object Serialization example in -the README. - - Fixed by [Philip Heinser](https://github.com/philipheinser) in Pull Request - [#258](https://github.com/Alamofire/Alamofire/pull/258). -- Indentation formatting of the `responseString` parameter documentation. - - Fixed by [Ah.Miao](https://github.com/mrahmiao) in Pull Request - [#291](https://github.com/Alamofire/Alamofire/pull/291). - -## [1.1.2](https://github.com/Alamofire/Alamofire/releases/tag/1.1.2) -Released on 2014-12-21. - -#### Added -- POST request JSON response test. - - Added by [Mattt Thompson](https://github.com/mattt). - -#### Updated -- The response object example to use a failable initializer in the README. - - Updated by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#230](https://github.com/Alamofire/Alamofire/pull/230). -- Router example in the README by removing extraneous force unwrap. - - Updated by [Arnaud Mesureur](https://github.com/nsarno) in Pull Request - [#247](https://github.com/Alamofire/Alamofire/pull/247). -- Xcode project `APPLICATION_EXTENSION_API_ONLY` flag to `YES`. - - Updated by [Michael Latta](https://github.com/technomage) in Pull Request - [#273](https://github.com/Alamofire/Alamofire/pull/273). -- Default HTTP header creation by moving it into a public class method. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#261](https://github.com/Alamofire/Alamofire/pull/261). - -#### Fixed -- Upload stream method to set `HTTPBodyStream` for streamed request. - - Fixed by [Florent Vilmart](https://github.com/flovilmart) and - [Mattt Thompson](https://github.com/mattt) in Pull Request - [#241](https://github.com/Alamofire/Alamofire/pull/241). -- ParameterEncoding to compose percent-encoded query strings from -percent-encoded components. - - Fixed by [Oleh Sannikov](https://github.com/sunnycows) in Pull Request - [#249](https://github.com/Alamofire/Alamofire/pull/249). -- Serialization handling of NSData with 0 bytes. - - Fixed by [Mike Owens](https://github.com/mowens) in Pull Request - [#254](https://github.com/Alamofire/Alamofire/pull/254). -- Issue where `suggestedDownloadDestination` parameters were being ignored. - - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request - [#257](https://github.com/Alamofire/Alamofire/pull/257). -- Crash caused by `Manager` deinitialization and added documentation. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#269](https://github.com/Alamofire/Alamofire/pull/269). - -## [1.1.1](https://github.com/Alamofire/Alamofire/releases/tag/1.1.1) -Released on 2014-11-20. - -#### Updated -- Dispatch-based synchronized access to subdelegates. - - Updated by [Mattt Thompson](https://github.com/mattt) in regards to Pull Request - [#175](https://github.com/Alamofire/Alamofire/pull/175). -- iOS 7 instructions in the README. - - Updated by [Mattt Thompson](https://github.com/mattt). -- CRUD example in the README to work on Xcode 6.1. - - Updated by [John Beynon](https://github.com/johnbeynon) in Pull Request - [#187](https://github.com/Alamofire/Alamofire/pull/187). -- The `cURL` example annotation in the README to pick up `bash` syntax highlighting. - - Updated by [Samuel E. Giddins](https://github.com/segiddins) in Pull Request - [#208](https://github.com/Alamofire/Alamofire/pull/208). - -#### Fixed -- Out-of-memory exception by replacing `stringByAddingPercentEncodingWithAllowedCharacters` -with `CFURLCreateStringByAddingPercentEscapes`. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#206](https://github.com/Alamofire/Alamofire/pull/206). -- Several issues in the README examples where an NSURL initializer needs to be unwrapped. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Pull Request - [#213](https://github.com/Alamofire/Alamofire/pull/213). -- Possible exception when force unwrapping optional header properties. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Optional cookie entry in `cURL` output. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issue - [#226](https://github.com/Alamofire/Alamofire/pull/226). -- Optional `textLabel` property on cells in the example app. - - Fixed by [Mattt Thompson](https://github.com/mattt). - -## [1.1.0](https://github.com/Alamofire/Alamofire/releases/tag/1.1.0) -Released on 2014-10-20. - -#### Updated -- Project to support Swift 1.1 and Xcode 6.1. - - Updated by [Aral Balkan](https://github.com/aral), - [Ross Kimes](https://github.com/rosskimes), - [Orta Therox](https://github.com/orta), - [Nico du Plessis](https://github.com/nduplessis) - and [Mattt Thompson](https://github.com/mattt). - ---- - -## [1.0.1](https://github.com/Alamofire/Alamofire/releases/tag/1.0.1) -Released on 2014-10-20. - -#### Added -- Tests for upload and download with progress. - - Added by [Mattt Thompson](https://github.com/mattt). -- Test for question marks in url encoded query. - - Added by [Mattt Thompson](https://github.com/mattt). -- The `NSURLSessionConfiguration` headers to `cURL` representation. - - Added by [Matthias Ryne Cheow](https://github.com/rynecheow) in Pull Request - [#140](https://github.com/Alamofire/Alamofire/pull/140). -- Parameter encoding tests for key/value pairs containing spaces. - - Added by [Mattt Thompson](https://github.com/mattt). -- Percent character encoding for the `+` character. - - Added by [Niels van Hoorn](https://github.com/nvh) in Pull Request - [#167](https://github.com/Alamofire/Alamofire/pull/167). -- Escaping for quotes to support JSON in `cURL` commands. - - Added by [John Gibb](https://github.com/johngibb) in Pull Request - [#178](https://github.com/Alamofire/Alamofire/pull/178). -- The `request` method to the `Manager` bringing it more inline with the top-level methods. - - Added by Brian Smith. - -#### Fixed -- Parameter encoding of ampersands and escaping of characters. - - Fixed by [Mattt Thompson](https://github.com/mattt) in regards to Issues - [#146](https://github.com/Alamofire/Alamofire/pull/146) and - [#162](https://github.com/Alamofire/Alamofire/pull/162). -- Parameter encoding of `HTTPBody` from occurring twice. - - Fixed by Yuri in Pull Request - [#153](https://github.com/Alamofire/Alamofire/pull/153). -- Extraneous dispatch to background by using weak reference for delegate in response. - - Fixed by [Mattt Thompson](https://github.com/mattt). -- Response handler threading issue by adding a `subdelegateQueue` to the `SessionDelegate`. - - Fixed by [Essan Parto](https://github.com/parto) in Pull Request - [#171](https://github.com/Alamofire/Alamofire/pull/171). -- Challenge issue where basic auth credentials were not being unwrapped. - - Fixed by [Mattt Thompson](https://github.com/mattt). - -## [1.0.0](https://github.com/Alamofire/Alamofire/releases/tag/1.0.0) -Released on 2014-09-25. - -#### Added -- Initial release of Alamofire. - - Added by [Mattt Thompson](https://github.com/mattt). diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CONTRIBUTING.md b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CONTRIBUTING.md deleted file mode 100644 index 5de3be7..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/CONTRIBUTING.md +++ /dev/null @@ -1,91 +0,0 @@ -# Contributing Guidelines - -This document contains information and guidelines about contributing to this project. -Please read it before you start participating. - -**Topics** - -* [Asking Questions](#asking-questions) -* [Reporting Security Issues](#reporting-security-issues) -* [Reporting Issues](#reporting-other-issues) -* [Developers Certificate of Origin](#developers-certificate-of-origin) -* [Code of Conduct](#code-of-conduct) - -## Asking Questions - -We don't use GitHub as a support forum. -For any usage questions that are not specific to the project itself, -please ask on [Stack Overflow](https://stackoverflow.com) instead. -By doing so, you'll be more likely to quickly solve your problem, -and you'll allow anyone else with the same question to find the answer. -This also allows maintainers to focus on improving the project for others. - -## Reporting Security Issues - -The Alamofire Software Foundation takes security seriously. -If you discover a security issue, please bring it to our attention right away! - -Please **DO NOT** file a public issue, -instead send your report privately to . -This will help ensure that any vulnerabilities that _are_ found -can be [disclosed responsibly](http://en.wikipedia.org/wiki/Responsible_disclosure) -to any affected parties. - -## Reporting Other Issues - -A great way to contribute to the project -is to send a detailed issue when you encounter an problem. -We always appreciate a well-written, thorough bug report. - -Check that the project issues database -doesn't already include that problem or suggestion before submitting an issue. -If you find a match, add a quick "+1" or "I have this problem too." -Doing this helps prioritize the most common problems and requests. - -When reporting issues, please include the following: - -* The version of Xcode you're using -* The version of iOS or OS X you're targeting -* The full output of any stack trace or compiler error -* A code snippet that reproduces the described behavior, if applicable -* Any other details that would be useful in understanding the problem - -This information will help us review and fix your issue faster. - -## Developer's Certificate of Origin 1.1 - -By making a contribution to this project, I certify that: - -- (a) The contribution was created in whole or in part by me and I - have the right to submit it under the open source license - indicated in the file; or - -- (b) The contribution is based upon previous work that, to the best - of my knowledge, is covered under an appropriate open source - license and I have the right under that license to submit that - work with modifications, whether created in whole or in part - by me, under the same open source license (unless I am - permitted to submit under a different license), as indicated - in the file; or - -- (c) The contribution was provided directly to me by some other - person who certified (a), (b) or (c) and I have not modified - it. - -- (d) I understand and agree that this project and the contribution - are public and that a record of the contribution (including all - personal information I submit with it, including my sign-off) is - maintained indefinitely and may be redistributed consistent with - this project or the open source license(s) involved. - -## Code of Conduct - -The Code of Conduct governs how we behave in public or in private -whenever the project will be judged by our actions. -We expect it to be honored by everyone who contributes to this project. - -See [CONDUCT.md](https://github.com/Alamofire/Foundation/blob/master/CONDUCT.md) for details. - ---- - -*Some of the ideas and wording for the statements above were based on work by the [Docker](https://github.com/docker/docker/blob/master/CONTRIBUTING.md) and [Linux](http://elinux.org/Developer_Certificate_Of_Origin) communities. We commend them for their efforts to facilitate collaboration in their projects.* diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md deleted file mode 100644 index 5716906..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 2.0 Migration Guide.md +++ /dev/null @@ -1,202 +0,0 @@ -# Alamofire 2.0 Migration Guide - -Alamofire 2.0 is the latest major release of Alamofire, an HTTP networking library for iOS, Mac OS X and watchOS written in Swift. As a major release, following Semantic Versioning conventions, 2.0 introduces several API-breaking changes that one should be aware of. - -This guide is provided in order to ease the transition of existing applications using Alamofire 1.x to the latest APIs, as well as explain the design and structure of new and changed functionality. - -## New Requirements - -Alamofire 2.0 officially supports iOS 8+, Mac OS X 10.9+, Xcode 7 and Swift 2.0. If you'd like to use Alamofire in a project targeting iOS 7 and Swift 1.x, use the latest tagged 1.x release. - ---- - -## Breaking API Changes - -### Swift 2.0 - -The biggest change between Alamofire 1.x and Alamofire 2.0 is Swift 2.0. Swift 2 brought many new features to take advantage of such as error handling, protocol extensions and availability checking. Other new features such as `guard` and `defer` do not affect the public APIs, but allowed us to create much cleaner implementations of the same logic. All of the source files, test logic and example code has been updated to reflect the latest Swift 2.0 paradigms. - -> It is not possible to use Alamofire 2.0 without Swift 2.0. - -### Response Serializers - -The most significant logic change made to Alamofire 2.0 is its new response serialization system leveraging `Result` types. Previously in Alamofire 1.x, each response serializer used the same completion handler signature: - -```swift -public func response(completionHandler: (NSURLRequest, NSHTTPURLResponse?, AnyObject?, NSError?) -> Void) -> Self { - return response(serializer: Request.responseDataSerializer(), completionHandler: completionHandler) -} -``` - -Alamofire 2.0 has redesigned the entire response serialization process to make it much easier to access the original server data without serialization, or serialize the response into a non-optional `Result` type defining whether the `Request` was successful. - -#### No Response Serialization - -The first `response` serializer is non-generic and does not process the server data in any way. It merely forwards on the accumulated information from the `NSURLSessionDelegate` callbacks. - -```swift -public func response( - queue queue: dispatch_queue_t? = nil, - completionHandler: (NSURLRequest?, NSHTTPURLResponse?, NSData?, ErrorType?) -> Void) - -> Self -{ - delegate.queue.addOperationWithBlock { - dispatch_async(queue ?? dispatch_get_main_queue()) { - completionHandler(self.request, self.response, self.delegate.data, self.delegate.error) - } - } - - return self -} -``` - -Another important note of this change is the return type of `data` is now an `NSData` type. You no longer need to cast the `data` parameter from an `AnyObject?` to an `NSData?`. - -#### Generic Response Serializers - -The second, more powerful response serializer leverages generics along with a `Result` type to eliminate the case of the dreaded double optional. - -```swift -public func response( - queue queue: dispatch_queue_t? = nil, - responseSerializer: T, - completionHandler: (NSURLRequest?, NSHTTPURLResponse?, Result) -> Void) - -> Self -{ - delegate.queue.addOperationWithBlock { - let result: Result = { - if let error = self.delegate.error { - return .Failure(self.delegate.data, error) - } else { - return responseSerializer.serializeResponse(self.request, self.response, self.delegate.data) - } - }() - - dispatch_async(queue ?? dispatch_get_main_queue()) { - completionHandler(self.request, self.response, result) - } - } - - return self -} -``` - -##### Response Data - -```swift -Alamofire.request(.GET, "http://httpbin.org/get") - .responseData { _, _, result in - print("Success: \(result.isSuccess)") - print("Response: \(result)") - } -``` - -##### Response String - -```swift -Alamofire.request(.GET, "http://httpbin.org/get") - .responseString { _, _, result in - print("Success: \(result.isSuccess)") - print("Response String: \(result.value)") - } -``` - -##### Response JSON - -```swift -Alamofire.request(.GET, "http://httpbin.org/get") - .responseJSON { _, _, result in - print(result) - debugPrint(result) - } -``` - -#### Result Types - -The `Result` enumeration was added to handle the case of the double optional return type. Previously, the return value and error were both optionals. Checking if one was `nil` did not ensure the other was also not `nil`. This case has been blogged about many times and can be solved by a `Result` type. Alamofire 2.0 brings a `Result` type to the response serializers to make it much easier to handle success and failure cases. - -```swift -public enum Result { - case Success(Value) - case Failure(NSData?, ErrorType) -} -``` - -There are also many other convenience computed properties to make accessing the data inside easy. The `Result` type also conforms to the `CustomStringConvertible` and `CustomDebugStringConvertible` protocols to make it easier to debug. - -#### Error Types - -While Alamofire still only generates `NSError` objects, all `Result` types have been converted to store `ErrorType` objects to allow custom response serializer implementations to use any `ErrorType` they wish. This also includes the `ValidationResult` and `MultipartFormDataEncodingResult` types as well. - -### URLRequestConvertible - -In order to make it easier to deal with non-common scenarios, the `URLRequestConvertible` protocol now returns an `NSMutableURLRequest`. Alamofire 2.0 makes it much easier to customize the URL request after is has been encoded. This should only affect a small amount of users. - -```swift -public protocol URLRequestConvertible { - var URLRequest: NSMutableURLRequest { get } -} -``` - -### Multipart Form Data - -Encoding `MultipartFormData` previous returned an `EncodingResult` to encapsulate any possible errors that occurred during encoding. Alamofire 2.0 uses the new Swift 2.0 error handling instead making it easier to use. This change is mostly encapsulated internally and should only affect a very small subset of users. - ---- - -## Updated ACLs and New Features - -### Parameter Encoding - -#### ACL Updates - -The `ParameterEncoding` enumeration implementation was previously hidden behind `internal` and `private` ACLs. Alamofire 2.0 opens up the `queryComponents` and `escape` methods to make it much easier to implement `.Custom` cases. - -#### Encoding in the URL - -In the previous versions of Alamofire, `.URL` encoding would automatically append the query string to either the URL or HTTP body depending on which HTTP method was set in the `NSURLRequest`. While this satisfies the majority of common use cases, it made it quite difficult to append query string parameter to a URL for HTTP methods such as `PUT` and `POST`. In Alamofire 2.0, we've added a second URL encoding case, `.URLEncodedInURL`, that always appends the query string to the URL regardless of HTTP method. - -### Server Trust Policies - -In Alamofire 1.x, the `ServerTrustPolicyManager` methods were internal making it impossible to implement any custom domain matching behavior. Alamofire 2.0 opens up the internals with a `public` ACL allowing more flexible server trust policy matching behavior (i.e. wildcarded domains) through subclassing. - -```swift -class CustomServerTrustPolicyManager: ServerTrustPolicyManager { - override func serverTrustPolicyForHost(host: String) -> ServerTrustPolicy? { - var policy: ServerTrustPolicy? - - // Implement your custom domain matching behavior... - - return policy - } -} -``` - -### Download Requests - -The global and `Manager` download APIs now support `parameters` and `encoding` parameters to better support dynamic payloads used in background sessions. Constructing a `download` request is now the same as constructing a `data` request with the addition of a `destination` parameter. - -```swift -public func download( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil, - destination: Request.DownloadFileDestination) - -> Request -{ - return Manager.sharedInstance.download( - method, - URLString, - parameters: parameters, - encoding: encoding, - headers: headers, - destination: destination - ) -} -``` - -### Stream Tasks - -Alamofire 2.0 adds support for creating `NSURLSessionStreamTask` tasks for iOS 9 and OS X 10.11. It also extends the `SessionDelegate` to support all the new `NSURLSessionStreamDelegate` APIs. diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md deleted file mode 100644 index 38736fc..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Documentation/Alamofire 3.0 Migration Guide.md +++ /dev/null @@ -1,186 +0,0 @@ -# Alamofire 3.0 Migration Guide - -Alamofire 3.0 is the latest major release of Alamofire, an HTTP networking library for iOS, Mac OS X and watchOS written in Swift. As a major release, following Semantic Versioning conventions, 3.0 introduces several API-breaking changes that one should be aware of. - -This guide is provided in order to ease the transition of existing applications using Alamofire 2.x to the latest APIs, as well as explain the design and structure of new and changed functionality. - -## Requirements - -Alamofire 3.0 officially supports iOS 8+, Mac OS X 10.9+, watchOS 2.0, Xcode 7 and Swift 2.0. If you'd like to use Alamofire in a project targeting iOS 7 and Swift 1.x, use the latest tagged 1.x release. - -## Reasons for Bumping to 3.0 - -The [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) (ASF) tries to do everything possible to avoid MAJOR version bumps. We realize the challenges involved with migrating large projects from one MAJOR version to another. With that said, we also want to make sure we're always producing the highest quality APIs and features possible. - -After releasing Alamofire 2.0, it became clear that the response serialization system still had some room for improvement. After much debate, we decided to strictly follow semver and move forward with all the core logic changes becoming Alamofire 3.0. We've also made some fairly significant changes that should give us more flexibility moving forward to help avoid the need for MAJOR version bumps to maintain backwards compatibility. - -## Benefits of Upgrading - -The benefits of upgrading can be summarized as follows: - -* No more casting a response serializer `error` from an `ErrorType` to an `NSError`. -* Original server data is now ALWAYS returned in all response serializers regardless of whether the result was a `.Success` or `.Failure`. -* Custom response serializers are now ALWAYS called regardless of whether an `error` occurred. -* Custom response serializers are now passed in the `error` allowing you to switch between different parsing schemes if necessary. -* Custom response serializers can now wrap up any Alamofire `NSError` into a `CustomError` type of your choosing. -* `Manager` initialization can now accept custom `NSURLSession` or `SessionDelegate` objects using dependency injection. - ---- - -## Breaking API Changes - -Alamofire 3.0 contains some breaking API changes to the foundational classes supporting the response serialization system. It is important to understand how these changes affect the common usage patterns. - -### Result Type - -The `Result` type was introduced in Alamofire 2.0 as a single generic parameter with the following signature: - -```swift -public enum Result { - case Success(Value) - case Failure(NSData?, ErrorType) -} -``` - -While this was a significant improvement on the behavior of Alamofire 1.0, there was still room for improvement. By defining the `.Failure` case to take an `ErrorType`, all consumers needed to cast the `ErrorType` to some concrete object such as an `NSError` before being able to interact with it. This was certainly not ideal. Additionally, by only allowing the `NSData?` from the server to be appended in a `.Failure` case, it was not possible to access the original server data in a `.Success` case. - -In Alamofire 3.0, the `Result` type has been redesigned to be a double generic type that does not store the `NSData?` in the `.Failure` case. - -```swift -public enum Result { - case Success(Value) - case Failure(Error) -} -``` - -These changes allow Alamofire to return the original server data in both cases. It also removes the requirement of having to cast the `ErrorType` when working with the `.Failure` case error object. - -### Response - -In order to avoid constantly having to change the response serializer completion closure signatures, Alamofire 3.0 introduces a `Response` struct. All response serializers (with the exception of `response`) return a generic `Response` struct. - -```swift -public struct Response { - /// The URL request sent to the server. - public let request: NSURLRequest? - - /// The server's response to the URL request. - public let response: NSHTTPURLResponse? - - /// The data returned by the server. - public let data: NSData? - - /// The result of response serialization. - public let result: Result -} -``` - -This unifies the signature of all response serializer completion closures by only needing to specify a single parameter rather than three or four. If another major release of Alamofire needs to modify the signature, thankfully the number of parameters in all response serializers will NOT need to change. Given the fact that the Swift compiler can present some fairly misleading compiler errors when the arguments are not correct, this should help alleviate some painful updates between MAJOR version bumps of Alamofire. - -### Response Serializers - -The biggest change in Alamofire 3.0 are the response serializers. They are now powered by the new `Response` struct and updated `Result` type. These two generic classes make it VERY easy to interact with the response serializers in a consistent, type-safe manner. - -```swift -Alamofire.request(.GET, "http://httpbin.org/get", parameters: ["foo": "bar"]) - .responseJSON { response in - debugPrint(response) // prints detailed description of all response properties - - print(response.request) // original URL request - print(response.response) // URL response - print(response.data) // server data - print(response.result) // result of response serialization - - if let JSON = response.result.value { - print("JSON: \(JSON)") - } - } -``` - -Besides the single response parameter in the completion closure, the other major callouts are that the original server data is always available whether the `Result` was a `.Success` or `.Failure`. Additionally, both the `value` and `error` of the `Result` type are strongly typed objects thanks to the power of generics. All default response serializer errors will be an `NSError` type. Custom response serializers can specify any custom `ErrorType`. - -#### Response Serializer Type - -For those wishing to create custom response serializer types, you'll need to familiarize yourself with the new `ResponseSerializerType` protocol and generic `ResponseSerializer` struct. - -```swift -public protocol ResponseSerializerType { - /// The type of serialized object to be created by this `ResponseSerializerType`. - typealias SerializedObject - - /// The type of error to be created by this `ResponseSerializer` if serialization fails. - typealias ErrorObject: ErrorType - - /** - A closure used by response handlers that takes a request, response, data and error and returns a result. - */ - var serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result { get } -} -``` - -All the possible information about the `Request` is now passed into the `serializeResponse` closure. In Alamofire 3.0, the `serializeResponse` closure is ALWAYS called whether an error occurred or not. This is for several reasons. - -1. Passing the error into the response serializer allows the implementation to switch parsing schemes based on what error occurred. For example, some APIs will return different payload schemas when certain errors occur. The new design allows you to switch on the error type and use different parsing logic. -2. Any error produced by Alamofire will always be an `NSError`. If your custom response serializer returns `CustomError` types, then the `NSError` returned by Alamofire must be converted into a `CustomError` type. This makes it MUCH easier to wrap Alamofire errors in your own `CustomError` type objects. - > This is also required for all the generics logic to work properly. - -### Validation Result - -The `ValidationResult` enumeration in Alamofire 3.0 has been updated to take an `NSError` in the `.Failure` case. The reasoning for this change is that all Alamofire errors generated need to be `NSError` types. If not, it introduces the need to cast all error objects coming from Alamofire at the response serializer level. - -```swift -public enum ValidationResult { - case Success - case Failure(NSError) -} -``` - -> If you are extending the `Request` type in any way that can produce an error, that error always needs to be of type `NSError`. If you'd like to wrap the error into a `CustomError` type, it should be wrapped in a custom response serializer implementation. - ---- - -## New Features - -### Dependency Injection - -Alamofire 3.0 leverages [dependency injection](https://en.wikipedia.org/wiki/Dependency_injection) to allow some powerful new customizations to take place for the URL session and delegate. - -#### Session Delegate - -In previous versions of Alamofire, the `SessionDelegate` was automatically created by the `Manager` instance. While this is convenient, it can be problematic for background sessions. One may need to hook up the task override closures before instantiating the URL session. Otherwise the URL session delegate could be called before the task override closures are able to be set. - -In Alamofire 3.0, the `Manager` initializer adds the ability to provide a custom `SessionDelegate` object with the task override closures already set using dependency injection. This greatly increases the flexibility of Alamofire in regards to background sessions. - -```swift -public init( - configuration: NSURLSessionConfiguration = NSURLSessionConfiguration.defaultSessionConfiguration(), - delegate: SessionDelegate = SessionDelegate(), - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) -{ - self.delegate = delegate - self.session = NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) -} -``` - -#### URL Session - -Alamofire 3.0 also adds the ability to use dependency injection to provide a custom `NSURLSession` to the `Manager` instance. This provides complete control over the URL session initialization if you need it allowing `NSURLSession` subclasses for various kinds of testing and DVR implementations. - -```swift -public init?( - session: NSURLSession, - delegate: SessionDelegate, - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) -{ - self.delegate = delegate - self.session = session - - guard delegate === session.delegate else { return nil } - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) -} -``` - -> We're very excited to see what the community comes up with given these new possibilities with Alamofire 3.0. diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard deleted file mode 100644 index 6f3cd58..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Base.lproj/Main.storyboard +++ /dev/null @@ -1,342 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index eeea76c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "1x" - }, - { - "idiom" : "ipad", - "size" : "76x76", - "scale" : "2x" - }, - { - "idiom" : "ipad", - "size" : "83.5x83.5", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json deleted file mode 100644 index 6f870a4..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "images" : [ - { - "orientation" : "portrait", - "idiom" : "iphone", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "portrait", - "idiom" : "iphone", - "subtype" : "retina4", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "portrait", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "1x" - }, - { - "orientation" : "landscape", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "1x" - }, - { - "orientation" : "portrait", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "landscape", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json deleted file mode 100644 index bd086a5..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "Logo.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "Logo@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo.png b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Images.xcassets/Logo.imageset/Logo.png deleted file mode 100644 index 4060979e1fd1d494326f16a587fb776564fd42db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5710 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�`?0BIRk+%}&$3Y+=eI`EQ!G4W3>*m+`u=>I@ z^bWi51Kkvim`TaQXEqw$zsL={ha*Kq%{6GmEYlVm++kU7rlb0bHsn+Y*wqmpd4|AM zV!5Md{WOPbK+PAlAeDC4fZzZ(Mj)SPF% zZQ-6gnzk9GRQyA^$BUo?KB%ZSrye_+dIvI9kN$F<)C^O6;xtGQDQs60I|Y4;(y*w> zu&Ap5-m@d z?v=C6xIfEd9f{#X+DhvMguo!_kGM~&>H0rbmqvn_h5WX~UVE@A&kM^ox!&58GR!wi z8OVmo*{bVP(_2*7y0nHT5iH18xpUpCWU>7L()ljqiQ`C*dXK+dOdaEq{&1Fto`k;{ z(69IWV5v7bHlTXGzvZtwG@41gD;2Men4>~>8Aa=_Le1VA$#RI6%~RZ{&!#w9@Vq_3 zN0OaT1!|Grj3Hbtv8ii3d^KOiNMAB3+pFK+q4~r7V-nu<+5(b%liBQr_paXgQE?%; zI1lDqy##G@#e4SYeOUbo2QifY3{0UGCnm?_qano(a-01^DU(b+!`XyacQ2gE=m@cp zf;795FuL(XTg02Za*^rGarEOuSGQRPC3YfM_=;^g8}@0B!}#=L1D5%tOInYK$s8LG z7!Q5&rLF012dzi$*xek5*|j~*ior;Ay5;{0xLWb0d~dP%n@NC<Ey*uIQby*XP z6Iwof%S|zAZ)h~u419_cc9!ugalsv^n){N&wogp2_Ob_?@~X!am$so4-`F9qG`ECN zsg(R&u=QDK5X`l{n#Vti?icXtlv?4W31ae#_HH1;5?Y=J=#*r0@?Tx4QmNoe)18$& zt7T&VeNru9xdv0pP5v6rCD#2mT~&yG3CcQ^Yyg{KOzX|0X{qgR`lWnx$>aoc62#g* zr_-Gir2;JZX=3Q(Jf&a~t1Q_1OyHVASaP_KUACe`mG9ZuYgnsNrGLcy_N|Bs>^t0 z4HX0hE1VI1mZX=<&7>R=!9tY^`>133o&cKd3|Sp9O_M|CKQ6@$(mAmI5im}hWMO(S zaZINcUW)0cxyZT4WV~V`@C13!WRAz=`_YAd^rhFZ`gTe#6_$Hva;E3^LKHKU|GOn& d+Ro@eWJhqh_=R~RhTk{5IUI-M#S+etGxV`+Rqd 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

F4mjn*ITn!dUWa|u#B4O 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 JrIcC7{{vs>`_}*f diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist deleted file mode 100644 index 9f0225e..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Resources/Info.plist +++ /dev/null @@ -1,57 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Alamofire - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UIMainStoryboardFile - Main - UILaunchStoryboardName - LaunchScreen - UIRequiredDeviceCapabilities - - armv7 - - UIStatusBarTintParameters - - UINavigationBar - - Style - UIBarStyleDefault - Translucent - - - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift deleted file mode 100644 index 4690d4b..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/AppDelegate.swift +++ /dev/null @@ -1,61 +0,0 @@ -// AppDelegate.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 UIKit - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDelegate { - - var window: UIWindow? - - // MARK: - UIApplicationDelegate - - func application( - application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) - -> Bool - { - let splitViewController = window!.rootViewController as! UISplitViewController - let navigationController = splitViewController.viewControllers.last as! UINavigationController - navigationController.topViewController!.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem() - splitViewController.delegate = self - - return true - } - - // MARK: - UISplitViewControllerDelegate - - func splitViewController( - splitViewController: UISplitViewController, - collapseSecondaryViewController secondaryViewController: UIViewController, - ontoPrimaryViewController primaryViewController: UIViewController) - -> Bool - { - if let secondaryAsNavController = secondaryViewController as? UINavigationController { - if let topAsDetailController = secondaryAsNavController.topViewController as? DetailViewController { - return topAsDetailController.request == nil - } - } - - return false - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift deleted file mode 100644 index 47bf0b3..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/DetailViewController.swift +++ /dev/null @@ -1,204 +0,0 @@ -// DetailViewController.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import UIKit - -class DetailViewController: UITableViewController { - enum Sections: Int { - case Headers, Body - } - - var request: Alamofire.Request? { - didSet { - oldValue?.cancel() - - title = request?.description - refreshControl?.endRefreshing() - headers.removeAll() - body = nil - elapsedTime = nil - } - } - - var headers: [String: String] = [:] - var body: String? - var elapsedTime: NSTimeInterval? - var segueIdentifier: String? - - static let numberFormatter: NSNumberFormatter = { - let formatter = NSNumberFormatter() - formatter.numberStyle = .DecimalStyle - return formatter - }() - - // MARK: View Lifecycle - - override func awakeFromNib() { - super.awakeFromNib() - refreshControl?.addTarget(self, action: "refresh", forControlEvents: .ValueChanged) - - } - - override func viewDidAppear(animated: Bool) { - super.viewDidAppear(animated) - - refresh() - } - - // MARK: IBActions - - @IBAction func refresh() { - guard let request = request else { - return - } - - refreshControl?.beginRefreshing() - - let start = CACurrentMediaTime() - request.responseString { response in - let end = CACurrentMediaTime() - self.elapsedTime = end - start - - if let response = response.response { - for (field, value) in response.allHeaderFields { - self.headers["\(field)"] = "\(value)" - } - } - - if let segueIdentifier = self.segueIdentifier { - switch segueIdentifier { - case "GET", "POST", "PUT", "DELETE": - self.body = response.result.value - case "DOWNLOAD": - self.body = self.downloadedBodyString() - default: - break - } - } - - self.tableView.reloadData() - self.refreshControl?.endRefreshing() - } - } - - private func downloadedBodyString() -> String { - let fileManager = NSFileManager.defaultManager() - let cachesDirectory = fileManager.URLsForDirectory(.CachesDirectory, inDomains: .UserDomainMask)[0] - - do { - let contents = try fileManager.contentsOfDirectoryAtURL( - cachesDirectory, - includingPropertiesForKeys: nil, - options: .SkipsHiddenFiles - ) - - if let - fileURL = contents.first, - data = NSData(contentsOfURL: fileURL) - { - let json = try NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions()) - let prettyData = try NSJSONSerialization.dataWithJSONObject(json, options: .PrettyPrinted) - - if let prettyString = NSString(data: prettyData, encoding: NSUTF8StringEncoding) as? String { - try fileManager.removeItemAtURL(fileURL) - return prettyString - } - } - } catch { - // No-op - } - - return "" - } -} - -// MARK: - UITableViewDataSource - -extension DetailViewController { - override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - switch Sections(rawValue: section)! { - case .Headers: - return headers.count - case .Body: - return body == nil ? 0 : 1 - } - } - - override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { - switch Sections(rawValue: indexPath.section)! { - case .Headers: - let cell = tableView.dequeueReusableCellWithIdentifier("Header")! - let field = headers.keys.sort(<)[indexPath.row] - let value = headers[field] - - cell.textLabel?.text = field - cell.detailTextLabel?.text = value - - return cell - case .Body: - let cell = tableView.dequeueReusableCellWithIdentifier("Body")! - cell.textLabel?.text = body - - return cell - } - } -} - -// MARK: - UITableViewDelegate - -extension DetailViewController { - override func numberOfSectionsInTableView(tableView: UITableView) -> Int { - return 2 - } - - override func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? { - if self.tableView(tableView, numberOfRowsInSection: section) == 0 { - return "" - } - - switch Sections(rawValue: section)! { - case .Headers: - return "Headers" - case .Body: - return "Body" - } - } - - override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat { - switch Sections(rawValue: indexPath.section)! { - case .Body: - return 300 - default: - return tableView.rowHeight - } - } - - override func tableView(tableView: UITableView, titleForFooterInSection section: Int) -> String? { - if Sections(rawValue: section) == .Body, let elapsedTime = elapsedTime { - let elapsedTimeText = DetailViewController.numberFormatter.stringFromNumber(elapsedTime) ?? "???" - return "Elapsed Time: \(elapsedTimeText) sec" - } - - return "" - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift deleted file mode 100644 index 5a69799..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/Source/MasterViewController.swift +++ /dev/null @@ -1,95 +0,0 @@ -// MasterViewController.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import UIKit - -class MasterViewController: UITableViewController { - - @IBOutlet weak var titleImageView: UIImageView! - - var detailViewController: DetailViewController? = nil - var objects = NSMutableArray() - - // MARK: - View Lifecycle - - override func awakeFromNib() { - super.awakeFromNib() - - navigationItem.titleView = titleImageView - } - - override func viewDidLoad() { - super.viewDidLoad() - - if let split = splitViewController { - let controllers = split.viewControllers - - if let - navigationController = controllers.last as? UINavigationController, - topViewController = navigationController.topViewController as? DetailViewController - { - detailViewController = topViewController - } - } - } - - // MARK: - UIStoryboardSegue - - override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { - if let - navigationController = segue.destinationViewController as? UINavigationController, - detailViewController = navigationController.topViewController as? DetailViewController - { - func requestForSegue(segue: UIStoryboardSegue) -> Request? { - switch segue.identifier! { - case "GET": - detailViewController.segueIdentifier = "GET" - return Alamofire.request(.GET, "https://httpbin.org/get") - case "POST": - detailViewController.segueIdentifier = "POST" - return Alamofire.request(.POST, "https://httpbin.org/post") - case "PUT": - detailViewController.segueIdentifier = "PUT" - return Alamofire.request(.PUT, "https://httpbin.org/put") - case "DELETE": - detailViewController.segueIdentifier = "DELETE" - return Alamofire.request(.DELETE, "https://httpbin.org/delete") - case "DOWNLOAD": - detailViewController.segueIdentifier = "DOWNLOAD" - let destination = Alamofire.Request.suggestedDownloadDestination( - directory: .CachesDirectory, - domain: .UserDomainMask - ) - return Alamofire.download(.GET, "https://httpbin.org/stream/1", destination: destination) - default: - return nil - } - } - - if let request = requestForSegue(segue) { - detailViewController.request = request - } - } - } -} - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj deleted file mode 100644 index 083ae51..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.pbxproj +++ /dev/null @@ -1,468 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 31E476821C55DE6D00968569 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 31E4766A1C55DD5900968569 /* Alamofire.framework */; }; - 31E476831C55DE6D00968569 /* Alamofire.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 31E4766A1C55DD5900968569 /* Alamofire.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - 4C6D2C801C67EFE100846168 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D2C7D1C67EFE100846168 /* AppDelegate.swift */; }; - 4C6D2C811C67EFE100846168 /* DetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D2C7E1C67EFE100846168 /* DetailViewController.swift */; }; - 4C6D2C821C67EFE100846168 /* MasterViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D2C7F1C67EFE100846168 /* MasterViewController.swift */; }; - 4C6D2C8F1C67EFEC00846168 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4C6D2C8C1C67EFEC00846168 /* Images.xcassets */; }; - 4C6D2C981C67F03B00846168 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4C6D2C961C67F03B00846168 /* Main.storyboard */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 31E476691C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F8111E3319A95C8B0040E7D1; - remoteInfo = "Alamofire iOS"; - }; - 31E4766B1C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F8111E3E19A95C8B0040E7D1; - remoteInfo = "Alamofire iOS Tests"; - }; - 31E4766D1C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4DD67C0B1A5C55C900ED2280; - remoteInfo = "Alamofire OSX"; - }; - 31E4766F1C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = F829C6B21A7A94F100A2CD59; - remoteInfo = "Alamofire OSX Tests"; - }; - 31E476711C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4CF626EF1BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS"; - }; - 31E476731C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 4CF626F81BA7CB3E0011A099; - remoteInfo = "Alamofire tvOS Tests"; - }; - 31E476751C55DD5900968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = E4202FE01B667AA100C997FB; - remoteInfo = "Alamofire watchOS"; - }; - 31E476841C55DE6D00968569 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = F8111E3219A95C8B0040E7D1; - remoteInfo = "Alamofire iOS"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - F818D0E519CA8D15006034B1 /* Copy Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - 31E476831C55DE6D00968569 /* Alamofire.framework in Copy Frameworks */, - ); - name = "Copy Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Alamofire.xcodeproj; path = ../Alamofire.xcodeproj; sourceTree = ""; }; - 4C6D2C7D1C67EFE100846168 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = Source/AppDelegate.swift; sourceTree = SOURCE_ROOT; }; - 4C6D2C7E1C67EFE100846168 /* DetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DetailViewController.swift; path = Source/DetailViewController.swift; sourceTree = SOURCE_ROOT; }; - 4C6D2C7F1C67EFE100846168 /* MasterViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = MasterViewController.swift; path = Source/MasterViewController.swift; sourceTree = SOURCE_ROOT; }; - 4C6D2C8C1C67EFEC00846168 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Resources/Images.xcassets; sourceTree = SOURCE_ROOT; }; - 4C6D2C8D1C67EFEC00846168 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = SOURCE_ROOT; }; - 4C6D2C971C67F03B00846168 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Main.storyboard; sourceTree = ""; }; - F8111E0519A951050040E7D1 /* iOS Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iOS Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - F8111E0219A951050040E7D1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 31E476821C55DE6D00968569 /* Alamofire.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 31E476601C55DD5900968569 /* Products */ = { - isa = PBXGroup; - children = ( - 31E4766A1C55DD5900968569 /* Alamofire.framework */, - 31E4766C1C55DD5900968569 /* Alamofire iOS Tests.xctest */, - 31E4766E1C55DD5900968569 /* Alamofire.framework */, - 31E476701C55DD5900968569 /* Alamofire OSX Tests.xctest */, - 31E476721C55DD5900968569 /* Alamofire.framework */, - 31E476741C55DD5900968569 /* Alamofire tvOS Tests.xctest */, - 31E476761C55DD5900968569 /* Alamofire.framework */, - ); - name = Products; - sourceTree = ""; - }; - 4C6D2C951C67F03B00846168 /* Base.lproj */ = { - isa = PBXGroup; - children = ( - 4C6D2C961C67F03B00846168 /* Main.storyboard */, - ); - name = Base.lproj; - path = Resources/Base.lproj; - sourceTree = SOURCE_ROOT; - }; - F8111DFC19A951050040E7D1 = { - isa = PBXGroup; - children = ( - F8111E0719A951050040E7D1 /* Source */, - F8111E0619A951050040E7D1 /* Products */, - 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */, - ); - sourceTree = ""; - }; - F8111E0619A951050040E7D1 /* Products */ = { - isa = PBXGroup; - children = ( - F8111E0519A951050040E7D1 /* iOS Example.app */, - ); - name = Products; - sourceTree = ""; - }; - F8111E0719A951050040E7D1 /* Source */ = { - isa = PBXGroup; - children = ( - 4C6D2C7D1C67EFE100846168 /* AppDelegate.swift */, - 4C6D2C7E1C67EFE100846168 /* DetailViewController.swift */, - 4C6D2C7F1C67EFE100846168 /* MasterViewController.swift */, - F8111E0819A951050040E7D1 /* Supporting Files */, - ); - name = Source; - path = Example; - sourceTree = ""; - }; - F8111E0819A951050040E7D1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 4C6D2C8D1C67EFEC00846168 /* Info.plist */, - 4C6D2C8C1C67EFEC00846168 /* Images.xcassets */, - 4C6D2C951C67F03B00846168 /* Base.lproj */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - F8111E0419A951050040E7D1 /* iOS Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = F8111E2319A951050040E7D1 /* Build configuration list for PBXNativeTarget "iOS Example" */; - buildPhases = ( - F8111E0119A951050040E7D1 /* Sources */, - F8111E0219A951050040E7D1 /* Frameworks */, - F8111E0319A951050040E7D1 /* Resources */, - F818D0E519CA8D15006034B1 /* Copy Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 31E476851C55DE6D00968569 /* PBXTargetDependency */, - ); - name = "iOS Example"; - productName = Alamofire; - productReference = F8111E0519A951050040E7D1 /* iOS Example.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - F8111DFD19A951050040E7D1 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0720; - LastUpgradeCheck = 0700; - ORGANIZATIONNAME = Alamofire; - TargetAttributes = { - F8111E0419A951050040E7D1 = { - CreatedOnToolsVersion = 6.0; - }; - }; - }; - buildConfigurationList = F8111E0019A951050040E7D1 /* Build configuration list for PBXProject "iOS Example" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = F8111DFC19A951050040E7D1; - productRefGroup = F8111E0619A951050040E7D1 /* Products */; - projectDirPath = ""; - projectReferences = ( - { - ProductGroup = 31E476601C55DD5900968569 /* Products */; - ProjectRef = 31E4765F1C55DD5900968569 /* Alamofire.xcodeproj */; - }, - ); - projectRoot = ""; - targets = ( - F8111E0419A951050040E7D1 /* iOS Example */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXReferenceProxy section */ - 31E4766A1C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E476691C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E4766C1C55DD5900968569 /* Alamofire iOS Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire iOS Tests.xctest"; - remoteRef = 31E4766B1C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E4766E1C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E4766D1C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476701C55DD5900968569 /* Alamofire OSX Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire OSX Tests.xctest"; - remoteRef = 31E4766F1C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476721C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E476711C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476741C55DD5900968569 /* Alamofire tvOS Tests.xctest */ = { - isa = PBXReferenceProxy; - fileType = wrapper.cfbundle; - path = "Alamofire tvOS Tests.xctest"; - remoteRef = 31E476731C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 31E476761C55DD5900968569 /* Alamofire.framework */ = { - isa = PBXReferenceProxy; - fileType = wrapper.framework; - path = Alamofire.framework; - remoteRef = 31E476751C55DD5900968569 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; -/* End PBXReferenceProxy section */ - -/* Begin PBXResourcesBuildPhase section */ - F8111E0319A951050040E7D1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C6D2C8F1C67EFEC00846168 /* Images.xcassets in Resources */, - 4C6D2C981C67F03B00846168 /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - F8111E0119A951050040E7D1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C6D2C801C67EFE100846168 /* AppDelegate.swift in Sources */, - 4C6D2C821C67EFE100846168 /* MasterViewController.swift in Sources */, - 4C6D2C811C67EFE100846168 /* DetailViewController.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 31E476851C55DE6D00968569 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Alamofire iOS"; - targetProxy = 31E476841C55DE6D00968569 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 4C6D2C961C67F03B00846168 /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 4C6D2C971C67F03B00846168 /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - F8111E2119A951050040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - F8111E2219A951050040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F8111E2419A951050040E7D1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - CLANG_ENABLE_MODULES = YES; - EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; - INFOPLIST_FILE = Resources/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "iOS Example"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - F8111E2519A951050040E7D1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - CLANG_ENABLE_MODULES = YES; - EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; - INFOPLIST_FILE = Resources/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "com.alamofire.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "iOS Example"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - F8111E0019A951050040E7D1 /* Build configuration list for PBXProject "iOS Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E2119A951050040E7D1 /* Debug */, - F8111E2219A951050040E7D1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F8111E2319A951050040E7D1 /* Build configuration list for PBXNativeTarget "iOS Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F8111E2419A951050040E7D1 /* Debug */, - F8111E2519A951050040E7D1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = F8111DFD19A951050040E7D1 /* Project object */; -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index bfe77a2..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme deleted file mode 100644 index ea36dc5..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/LICENSE b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/LICENSE deleted file mode 100644 index bf300e4..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) - -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. diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Package.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Package.swift deleted file mode 100644 index c6088ba..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Package.swift +++ /dev/null @@ -1,27 +0,0 @@ -// Package.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 PackageDescription - -let package = Package( - name: "Alamofire" -) diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/README.md b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/README.md deleted file mode 100644 index 0905d05..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/README.md +++ /dev/null @@ -1,1195 +0,0 @@ -![Alamofire: Elegant Networking in Swift](https://raw.githubusercontent.com/Alamofire/Alamofire/assets/alamofire.png) - -[![Build Status](https://travis-ci.org/Alamofire/Alamofire.svg)](https://travis-ci.org/Alamofire/Alamofire) -[![Cocoapods Compatible](https://img.shields.io/cocoapods/v/Alamofire.svg)](https://img.shields.io/cocoapods/v/Alamofire.svg) -[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) -[![Platform](https://img.shields.io/cocoapods/p/Alamofire.svg?style=flat)](http://cocoadocs.org/docsets/Alamofire) -[![Twitter](https://img.shields.io/badge/twitter-@AlamofireSF-blue.svg?style=flat)](http://twitter.com/AlamofireSF) - -Alamofire is an HTTP networking library written in Swift. - -## Features - -- [x] Chainable Request / Response methods -- [x] URL / JSON / plist Parameter Encoding -- [x] Upload File / Data / Stream / MultipartFormData -- [x] Download using Request or Resume data -- [x] Authentication with NSURLCredential -- [x] HTTP Response Validation -- [x] TLS Certificate and Public Key Pinning -- [x] Progress Closure & NSProgress -- [x] cURL Debug Output -- [x] Comprehensive Unit Test Coverage -- [x] [Complete Documentation](http://cocoadocs.org/docsets/Alamofire) - -## Requirements - -- iOS 8.0+ / Mac OS X 10.9+ / tvOS 9.0+ / watchOS 2.0+ -- Xcode 7.2+ - -## Migration Guides - -- [Alamofire 3.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%203.0%20Migration%20Guide.md) -- [Alamofire 2.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%202.0%20Migration%20Guide.md) - -## Communication - -- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). (Tag 'alamofire') -- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). -- If you **found a bug**, open an issue. -- If you **have a feature request**, open an issue. -- If you **want to contribute**, submit a pull request. - -## Installation - -> **Embedded frameworks require a minimum deployment target of iOS 8 or OS X Mavericks (10.9).** -> -> Alamofire is no longer supported on iOS 7 due to the lack of support for frameworks. Without frameworks, running Travis-CI against iOS 7 would require a second duplicated test target. The separate test suite would need to import all the Swift files and the tests would need to be duplicated and re-written. This split would be too difficult to maintain to ensure the highest possible quality of the Alamofire ecosystem. - -### CocoaPods - -[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command: - -```bash -$ gem install cocoapods -``` - -> CocoaPods 0.39.0+ is required to build Alamofire 3.0.0+. - -To integrate Alamofire into your Xcode project using CocoaPods, specify it in your `Podfile`: - -```ruby -source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '8.0' -use_frameworks! - -pod 'Alamofire', '~> 3.0' -``` - -Then, run the following command: - -```bash -$ pod install -``` - -### Carthage - -[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. - -You can install Carthage with [Homebrew](http://brew.sh/) using the following command: - -```bash -$ brew update -$ brew install carthage -``` - -To integrate Alamofire into your Xcode project using Carthage, specify it in your `Cartfile`: - -```ogdl -github "Alamofire/Alamofire" ~> 3.0 -``` - -Run `carthage update` to build the framework and drag the built `Alamofire.framework` into your Xcode project. - -### Manually - -If you prefer not to use either of the aforementioned dependency managers, you can integrate Alamofire into your project manually. - -#### Embedded Framework - -- Open up Terminal, `cd` into your top-level project directory, and run the following command "if" your project is not initialized as a git repository: - -```bash -$ git init -``` - -- Add Alamofire as a git [submodule](http://git-scm.com/docs/git-submodule) by running the following command: - -```bash -$ git submodule add https://github.com/Alamofire/Alamofire.git -``` - -- Open the new `Alamofire` folder, and drag the `Alamofire.xcodeproj` into the Project Navigator of your application's Xcode project. - - > It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter. - -- Select the `Alamofire.xcodeproj` in the Project Navigator and verify the deployment target matches that of your application target. -- Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar. -- In the tab bar at the top of that window, open the "General" panel. -- Click on the `+` button under the "Embedded Binaries" section. -- You will see two different `Alamofire.xcodeproj` folders each with two different versions of the `Alamofire.framework` nested inside a `Products` folder. - - > It does not matter which `Products` folder you choose from, but it does matter whether you choose the top or bottom `Alamofire.framework`. - -- Select the top `Alamofire.framework` for iOS and the bottom one for OS X. - - > You can verify which one you selected by inspecting the build log for your project. The build target for `Alamofire` will be listed as either `Alamofire iOS` or `Alamofire OSX`. - -- And that's it! - -> The `Alamofire.framework` is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device. - ---- - -## Usage - -### Making a Request - -```swift -import Alamofire - -Alamofire.request(.GET, "https://httpbin.org/get") -``` - -### Response Handling - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .responseJSON { response in - print(response.request) // original URL request - print(response.response) // URL response - print(response.data) // server data - print(response.result) // result of response serialization - - if let JSON = response.result.value { - print("JSON: \(JSON)") - } - } -``` - -> Networking in Alamofire is done _asynchronously_. Asynchronous programming may be a source of frustration to programmers unfamiliar with the concept, but there are [very good reasons](https://developer.apple.com/library/ios/qa/qa1693/_index.html) for doing it this way. - -> Rather than blocking execution to wait for a response from the server, a [callback](http://en.wikipedia.org/wiki/Callback_%28computer_programming%29) is specified to handle the response once it's received. The result of a request is only available inside the scope of a response handler. Any execution contingent on the response or data received from the server must be done within a handler. - -### Response Serialization - -**Built-in Response Methods** - -- `response()` -- `responseData()` -- `responseString(encoding: NSStringEncoding)` -- `responseJSON(options: NSJSONReadingOptions)` -- `responsePropertyList(options: NSPropertyListReadOptions)` - -#### Response Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .response { request, response, data, error in - print(request) - print(response) - print(data) - print(error) - } -``` - -> The `response` serializer does NOT evaluate any of the response data. It merely forwards on all the information directly from the URL session delegate. We strongly encourage you to leverage the other response serializers taking advantage of `Response` and `Result` types. - -#### Response Data Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .responseData { response in - print(response.request) - print(response.response) - print(response.result) - } -``` - -#### Response String Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") - .responseString { response in - print("Success: \(response.result.isSuccess)") - print("Response String: \(response.result.value)") - } -``` - -#### Response JSON Handler - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") - .responseJSON { response in - debugPrint(response) - } -``` - -#### Chained Response Handlers - -Response handlers can even be chained: - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") - .responseString { response in - print("Response String: \(response.result.value)") - } - .responseJSON { response in - print("Response JSON: \(response.result.value)") - } -``` - -### HTTP Methods - -`Alamofire.Method` lists the HTTP methods defined in [RFC 7231 §4.3](http://tools.ietf.org/html/rfc7231#section-4.3): - -```swift -public enum Method: String { - case OPTIONS, GET, HEAD, POST, PUT, PATCH, DELETE, TRACE, CONNECT -} -``` - -These values can be passed as the first argument of the `Alamofire.request` method: - -```swift -Alamofire.request(.POST, "https://httpbin.org/post") - -Alamofire.request(.PUT, "https://httpbin.org/put") - -Alamofire.request(.DELETE, "https://httpbin.org/delete") -``` - -### Parameters - -#### GET Request With URL-Encoded Parameters - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) -// https://httpbin.org/get?foo=bar -``` - -#### POST Request With URL-Encoded Parameters - -```swift -let parameters = [ - "foo": "bar", - "baz": ["a", 1], - "qux": [ - "x": 1, - "y": 2, - "z": 3 - ] -] - -Alamofire.request(.POST, "https://httpbin.org/post", parameters: parameters) -// HTTP body: foo=bar&baz[]=a&baz[]=1&qux[x]=1&qux[y]=2&qux[z]=3 -``` - -### Parameter Encoding - -Parameters can also be encoded as JSON, Property List, or any custom format, using the `ParameterEncoding` enum: - -```swift -enum ParameterEncoding { - case URL - case URLEncodedInURL - case JSON - case PropertyList(format: NSPropertyListFormat, options: NSPropertyListWriteOptions) - case Custom((URLRequestConvertible, [String: AnyObject]?) -> (NSMutableURLRequest, NSError?)) - - func encode(request: NSURLRequest, parameters: [String: AnyObject]?) -> (NSURLRequest, NSError?) - { ... } -} -``` - -- `URL`: A query string to be set as or appended to any existing URL query for `GET`, `HEAD`, and `DELETE` requests, or set as the body for requests with any other HTTP method. The `Content-Type` HTTP header field of an encoded request with HTTP body is set to `application/x-www-form-urlencoded`. _Since there is no published specification for how to encode collection types, Alamofire follows the convention of appending `[]` to the key for array values (`foo[]=1&foo[]=2`), and appending the key surrounded by square brackets for nested dictionary values (`foo[bar]=baz`)._ -- `URLEncodedInURL`: Creates query string to be set as or appended to any existing URL query. Uses the same implementation as the `.URL` case, but always applies the encoded result to the URL. -- `JSON`: Uses `NSJSONSerialization` to create a JSON representation of the parameters object, which is set as the body of the request. The `Content-Type` HTTP header field of an encoded request is set to `application/json`. -- `PropertyList`: Uses `NSPropertyListSerialization` to create a plist representation of the parameters object, according to the associated format and write options values, which is set as the body of the request. The `Content-Type` HTTP header field of an encoded request is set to `application/x-plist`. -- `Custom`: Uses the associated closure value to construct a new request given an existing request and parameters. - -#### Manual Parameter Encoding of an NSURLRequest - -```swift -let URL = NSURL(string: "https://httpbin.org/get")! -var request = NSMutableURLRequest(URL: URL) - -let parameters = ["foo": "bar"] -let encoding = Alamofire.ParameterEncoding.URL -(request, _) = encoding.encode(request, parameters: parameters) -``` - -#### POST Request with JSON-encoded Parameters - -```swift -let parameters = [ - "foo": [1,2,3], - "bar": [ - "baz": "qux" - ] -] - -Alamofire.request(.POST, "https://httpbin.org/post", parameters: parameters, encoding: .JSON) -// HTTP body: {"foo": [1, 2, 3], "bar": {"baz": "qux"}} -``` - -### HTTP Headers - -Adding a custom HTTP header to a `Request` is supported directly in the global `request` method. This makes it easy to attach HTTP headers to a `Request` that can be constantly changing. - -> For HTTP headers that do not change, it is recommended to set them on the `NSURLSessionConfiguration` so they are automatically applied to any `NSURLSessionTask` created by the underlying `NSURLSession`. - -```swift -let headers = [ - "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==", - "Content-Type": "application/x-www-form-urlencoded" -] - -Alamofire.request(.GET, "https://httpbin.org/get", headers: headers) - .responseJSON { response in - debugPrint(response) - } -``` - -### Caching - -Caching is handled on the system framework level by [`NSURLCache`](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLCache_Class/Reference/Reference.html#//apple_ref/occ/cl/NSURLCache). - -### Uploading - -**Supported Upload Types** - -- File -- Data -- Stream -- MultipartFormData - -#### Uploading a File - -```swift -let fileURL = NSBundle.mainBundle().URLForResource("Default", withExtension: "png") -Alamofire.upload(.POST, "https://httpbin.org/post", file: fileURL) -``` - -#### Uploading with Progress - -```swift -Alamofire.upload(.POST, "https://httpbin.org/post", file: fileURL) - .progress { bytesWritten, totalBytesWritten, totalBytesExpectedToWrite in - print(totalBytesWritten) - - // This closure is NOT called on the main queue for performance - // reasons. To update your ui, dispatch to the main queue. - dispatch_async(dispatch_get_main_queue()) { - print("Total bytes written on main queue: \(totalBytesWritten)") - } - } - .responseJSON { response in - debugPrint(response) - } -``` - -#### Uploading MultipartFormData - -```swift -Alamofire.upload( - .POST, - "https://httpbin.org/post", - multipartFormData: { multipartFormData in - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart(fileURL: rainbowImageURL, name: "rainbow") - }, - encodingCompletion: { encodingResult in - switch encodingResult { - case .Success(let upload, _, _): - upload.responseJSON { response in - debugPrint(response) - } - case .Failure(let encodingError): - print(encodingError) - } - } -) -``` - -### Downloading - -**Supported Download Types** - -- Request -- Resume Data - -#### Downloading a File - -```swift -Alamofire.download(.GET, "https://httpbin.org/stream/100") { temporaryURL, response in - let fileManager = NSFileManager.defaultManager() - let directoryURL = fileManager.URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0] - let pathComponent = response.suggestedFilename - - return directoryURL.URLByAppendingPathComponent(pathComponent!) -} -``` - -#### Using the Default Download Destination - -```swift -let destination = Alamofire.Request.suggestedDownloadDestination(directory: .DocumentDirectory, domain: .UserDomainMask) -Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) -``` - -#### Downloading a File w/Progress - -```swift -Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) - .progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in - print(totalBytesRead) - - // This closure is NOT called on the main queue for performance - // reasons. To update your ui, dispatch to the main queue. - dispatch_async(dispatch_get_main_queue()) { - print("Total bytes read on main queue: \(totalBytesRead)") - } - } - .response { _, _, _, error in - if let error = error { - print("Failed with error: \(error)") - } else { - print("Downloaded file successfully") - } - } -``` - -#### Accessing Resume Data for Failed Downloads - -```swift -Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) - .response { _, _, data, _ in - if let - data = data, - resumeDataString = NSString(data: data, encoding: NSUTF8StringEncoding) - { - print("Resume Data: \(resumeDataString)") - } else { - print("Resume Data was empty") - } - } -``` - -> The `data` parameter is automatically populated with the `resumeData` if available. - -```swift -let download = Alamofire.download(.GET, "https://httpbin.org/stream/100", destination: destination) -download.response { _, _, _, _ in - if let - resumeData = download.resumeData, - resumeDataString = NSString(data: resumeData, encoding: NSUTF8StringEncoding) - { - print("Resume Data: \(resumeDataString)") - } else { - print("Resume Data was empty") - } -} -``` - -### Authentication - -Authentication is handled on the system framework level by [`NSURLCredential` and `NSURLAuthenticationChallenge`](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLAuthenticationChallenge_Class/Reference/Reference.html). - -**Supported Authentication Schemes** - -- [HTTP Basic](http://en.wikipedia.org/wiki/Basic_access_authentication) -- [HTTP Digest](http://en.wikipedia.org/wiki/Digest_access_authentication) -- [Kerberos](http://en.wikipedia.org/wiki/Kerberos_%28protocol%29) -- [NTLM](http://en.wikipedia.org/wiki/NT_LAN_Manager) - -#### HTTP Basic Authentication - -The `authenticate` method on a `Request` will automatically provide an `NSURLCredential` to an `NSURLAuthenticationChallenge` when appropriate: - -```swift -let user = "user" -let password = "password" - -Alamofire.request(.GET, "https://httpbin.org/basic-auth/\(user)/\(password)") - .authenticate(user: user, password: password) - .responseJSON { response in - debugPrint(response) - } -``` - -Depending upon your server implementation, an `Authorization` header may also be appropriate: - -```swift -let user = "user" -let password = "password" - -let credentialData = "\(user):\(password)".dataUsingEncoding(NSUTF8StringEncoding)! -let base64Credentials = credentialData.base64EncodedStringWithOptions([]) - -let headers = ["Authorization": "Basic \(base64Credentials)"] - -Alamofire.request(.GET, "https://httpbin.org/basic-auth/user/password", headers: headers) - .responseJSON { response in - debugPrint(response) - } -``` - -#### Authentication with NSURLCredential - -```swift -let user = "user" -let password = "password" - -let credential = NSURLCredential(user: user, password: password, persistence: .ForSession) - -Alamofire.request(.GET, "https://httpbin.org/basic-auth/\(user)/\(password)") - .authenticate(usingCredential: credential) - .responseJSON { response in - debugPrint(response) - } -``` - -### Validation - -By default, Alamofire treats any completed request to be successful, regardless of the content of the response. Calling `validate` before a response handler causes an error to be generated if the response had an unacceptable status code or MIME type. - -#### Manual Validation - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .validate(statusCode: 200..<300) - .validate(contentType: ["application/json"]) - .response { response in - print(response) - } -``` - -#### Automatic Validation - -Automatically validates status code within `200...299` range, and that the `Content-Type` header of the response matches the `Accept` header of the request, if one is provided. - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .validate() - .responseJSON { response in - switch response.result { - case .Success: - print("Validation Successful") - case .Failure(let error): - print(error) - } - } -``` - -### Timeline - -Alamofire collects timings throughout the lifecycle of a `Request` and creates a `Timeline` object exposed as a property on a `Response`. - -```swift -Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - .validate() - .responseJSON { response in - print(response.timeline) - } -``` - -The above reports the following `Timeline` info: - -- `Latency`: 0.428 seconds -- `Request Duration`: 0.428 seconds -- `Serialization Duration`: 0.001 seconds -- `Total Duration`: 0.429 seconds - -### Printable - -```swift -let request = Alamofire.request(.GET, "https://httpbin.org/ip") - -print(request) -// GET https://httpbin.org/ip (200) -``` - -### DebugPrintable - -```swift -let request = Alamofire.request(.GET, "https://httpbin.org/get", parameters: ["foo": "bar"]) - -debugPrint(request) -``` - -#### Output (cURL) - -```bash -$ curl -i \ - -H "User-Agent: Alamofire" \ - -H "Accept-Encoding: Accept-Encoding: gzip;q=1.0,compress;q=0.5" \ - -H "Accept-Language: en;q=1.0,fr;q=0.9,de;q=0.8,zh-Hans;q=0.7,zh-Hant;q=0.6,ja;q=0.5" \ - "https://httpbin.org/get?foo=bar" -``` - ---- - -## Advanced Usage - -> Alamofire is built on `NSURLSession` and the Foundation URL Loading System. To make the most of -this framework, it is recommended that you be familiar with the concepts and capabilities of the underlying networking stack. - -**Recommended Reading** - -- [URL Loading System Programming Guide](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html) -- [NSURLSession Class Reference](https://developer.apple.com/library/mac/documentation/Foundation/Reference/NSURLSession_class/Introduction/Introduction.html#//apple_ref/occ/cl/NSURLSession) -- [NSURLCache Class Reference](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLCache_Class/Reference/Reference.html#//apple_ref/occ/cl/NSURLCache) -- [NSURLAuthenticationChallenge Class Reference](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURLAuthenticationChallenge_Class/Reference/Reference.html) - -### Manager - -Top-level convenience methods like `Alamofire.request` use a shared instance of `Alamofire.Manager`, which is configured with the default `NSURLSessionConfiguration`. - -As such, the following two statements are equivalent: - -```swift -Alamofire.request(.GET, "https://httpbin.org/get") -``` - -```swift -let manager = Alamofire.Manager.sharedInstance -manager.request(NSURLRequest(URL: NSURL(string: "https://httpbin.org/get")!)) -``` - -Applications can create managers for background and ephemeral sessions, as well as new managers that customize the default session configuration, such as for default headers (`HTTPAdditionalHeaders`) or timeout interval (`timeoutIntervalForRequest`). - -#### Creating a Manager with Default Configuration - -```swift -let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() -let manager = Alamofire.Manager(configuration: configuration) -``` - -#### Creating a Manager with Background Configuration - -```swift -let configuration = NSURLSessionConfiguration.backgroundSessionConfigurationWithIdentifier("com.example.app.background") -let manager = Alamofire.Manager(configuration: configuration) -``` - -#### Creating a Manager with Ephemeral Configuration - -```swift -let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() -let manager = Alamofire.Manager(configuration: configuration) -``` - -#### Modifying Session Configuration - -```swift -var defaultHeaders = Alamofire.Manager.sharedInstance.session.configuration.HTTPAdditionalHeaders ?? [:] -defaultHeaders["DNT"] = "1 (Do Not Track Enabled)" - -let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() -configuration.HTTPAdditionalHeaders = defaultHeaders - -let manager = Alamofire.Manager(configuration: configuration) -``` - -> This is **not** recommended for `Authorization` or `Content-Type` headers. Instead, use `URLRequestConvertible` and `ParameterEncoding`, respectively. - -### Request - -The result of a `request`, `upload`, or `download` method is an instance of `Alamofire.Request`. A request is always created using a constructor method from an owning manager, and never initialized directly. - -Methods like `authenticate`, `validate` and `responseData` return the caller in order to facilitate chaining. - -Requests can be suspended, resumed, and cancelled: - -- `suspend()`: Suspends the underlying task and dispatch queue -- `resume()`: Resumes the underlying task and dispatch queue. If the owning manager does not have `startRequestsImmediately` set to `true`, the request must call `resume()` in order to start. -- `cancel()`: Cancels the underlying task, producing an error that is passed to any registered response handlers. - -### Response Serialization - -#### Creating a Custom Response Serializer - -Alamofire provides built-in response serialization for strings, JSON, and property lists, but others can be added in extensions on `Alamofire.Request`. - -For example, here's how a response handler using [Ono](https://github.com/mattt/Ono) might be implemented: - -```swift -extension Request { - public static func XMLResponseSerializer() -> ResponseSerializer { - return ResponseSerializer { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - guard let validData = data else { - let failureReason = "Data could not be serialized. Input data was nil." - let error = Error.errorWithCode(.DataSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - do { - let XML = try ONOXMLDocument(data: validData) - return .Success(XML) - } catch { - return .Failure(error as NSError) - } - } - } - - public func responseXMLDocument(completionHandler: Response -> Void) -> Self { - return response(responseSerializer: Request.XMLResponseSerializer(), completionHandler: completionHandler) - } -} -``` - -#### Generic Response Object Serialization - -Generics can be used to provide automatic, type-safe response object serialization. - -```swift -public protocol ResponseObjectSerializable { - init?(response: NSHTTPURLResponse, representation: AnyObject) -} - -extension Request { - public func responseObject(completionHandler: Response -> Void) -> Self { - let responseSerializer = ResponseSerializer { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - let JSONResponseSerializer = Request.JSONResponseSerializer(options: .AllowFragments) - let result = JSONResponseSerializer.serializeResponse(request, response, data, error) - - switch result { - case .Success(let value): - if let - response = response, - responseObject = T(response: response, representation: value) - { - return .Success(responseObject) - } else { - let failureReason = "JSON could not be serialized into response object: \(value)" - let error = Error.errorWithCode(.JSONSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - case .Failure(let error): - return .Failure(error) - } - } - - return response(responseSerializer: responseSerializer, completionHandler: completionHandler) - } -} -``` - -```swift -final class User: ResponseObjectSerializable { - let username: String - let name: String - - init?(response: NSHTTPURLResponse, representation: AnyObject) { - self.username = response.URL!.lastPathComponent! - self.name = representation.valueForKeyPath("name") as! String - } -} -``` - -```swift -Alamofire.request(.GET, "https://example.com/users/mattt") - .responseObject { (response: Response) in - debugPrint(response) - } -``` - -The same approach can also be used to handle endpoints that return a representation of a collection of objects: - -```swift -public protocol ResponseCollectionSerializable { - static func collection(response response: NSHTTPURLResponse, representation: AnyObject) -> [Self] -} - -extension Alamofire.Request { - public func responseCollection(completionHandler: Response<[T], NSError> -> Void) -> Self { - let responseSerializer = ResponseSerializer<[T], NSError> { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - let JSONSerializer = Request.JSONResponseSerializer(options: .AllowFragments) - let result = JSONSerializer.serializeResponse(request, response, data, error) - - switch result { - case .Success(let value): - if let response = response { - return .Success(T.collection(response: response, representation: value)) - } else { - let failureReason = "Response collection could not be serialized due to nil response" - let error = Error.errorWithCode(.JSONSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - case .Failure(let error): - return .Failure(error) - } - } - - return response(responseSerializer: responseSerializer, completionHandler: completionHandler) - } -} -``` - -```swift -final class User: ResponseObjectSerializable, ResponseCollectionSerializable { - let username: String - let name: String - - init?(response: NSHTTPURLResponse, representation: AnyObject) { - self.username = response.URL!.lastPathComponent! - self.name = representation.valueForKeyPath("name") as! String - } - - static func collection(response response: NSHTTPURLResponse, representation: AnyObject) -> [User] { - var users: [User] = [] - - if let representation = representation as? [[String: AnyObject]] { - for userRepresentation in representation { - if let user = User(response: response, representation: userRepresentation) { - users.append(user) - } - } - } - - return users - } -} -``` - -```swift -Alamofire.request(.GET, "http://example.com/users") - .responseCollection { (response: Response<[User], NSError>) in - debugPrint(response) - } -``` - -### URLStringConvertible - -Types adopting the `URLStringConvertible` protocol can be used to construct URL strings, which are then used to construct URL requests. `NSString`, `NSURL`, `NSURLComponents`, and `NSURLRequest` conform to `URLStringConvertible` by default, allowing any of them to be passed as `URLString` parameters to the `request`, `upload`, and `download` methods: - -```swift -let string = NSString(string: "https://httpbin.org/post") -Alamofire.request(.POST, string) - -let URL = NSURL(string: string)! -Alamofire.request(.POST, URL) - -let URLRequest = NSURLRequest(URL: URL) -Alamofire.request(.POST, URLRequest) // overrides `HTTPMethod` of `URLRequest` - -let URLComponents = NSURLComponents(URL: URL, resolvingAgainstBaseURL: true) -Alamofire.request(.POST, URLComponents) -``` - -Applications interacting with web applications in a significant manner are encouraged to have custom types conform to `URLStringConvertible` as a convenient way to map domain-specific models to server resources. - -#### Type-Safe Routing - -```swift -extension User: URLStringConvertible { - static let baseURLString = "http://example.com" - - var URLString: String { - return User.baseURLString + "/users/\(username)/" - } -} -``` - -```swift -let user = User(username: "mattt") -Alamofire.request(.GET, user) // http://example.com/users/mattt -``` - -### URLRequestConvertible - -Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests. `NSURLRequest` conforms to `URLRequestConvertible` by default, allowing it to be passed into `request`, `upload`, and `download` methods directly (this is the recommended way to specify custom HTTP body for individual requests): - -```swift -let URL = NSURL(string: "https://httpbin.org/post")! -let mutableURLRequest = NSMutableURLRequest(URL: URL) -mutableURLRequest.HTTPMethod = "POST" - -let parameters = ["foo": "bar"] - -do { - mutableURLRequest.HTTPBody = try NSJSONSerialization.dataWithJSONObject(parameters, options: NSJSONWritingOptions()) -} catch { - // No-op -} - -mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") - -Alamofire.request(mutableURLRequest) -``` - -Applications interacting with web applications in a significant manner are encouraged to have custom types conform to `URLRequestConvertible` as a way to ensure consistency of requested endpoints. Such an approach can be used to abstract away server-side inconsistencies and provide type-safe routing, as well as manage authentication credentials and other state. - -#### API Parameter Abstraction - -```swift -enum Router: URLRequestConvertible { - static let baseURLString = "http://example.com" - static let perPage = 50 - - case Search(query: String, page: Int) - - // MARK: URLRequestConvertible - - var URLRequest: NSMutableURLRequest { - let result: (path: String, parameters: [String: AnyObject]) = { - switch self { - case .Search(let query, let page) where page > 1: - return ("/search", ["q": query, "offset": Router.perPage * page]) - case .Search(let query, _): - return ("/search", ["q": query]) - } - }() - - let URL = NSURL(string: Router.baseURLString)! - let URLRequest = NSURLRequest(URL: URL.URLByAppendingPathComponent(result.path)) - let encoding = Alamofire.ParameterEncoding.URL - - return encoding.encode(URLRequest, parameters: result.parameters).0 - } -} -``` - -```swift -Alamofire.request(Router.Search(query: "foo bar", page: 1)) // ?q=foo%20bar&offset=50 -``` - -#### CRUD & Authorization - -```swift -enum Router: URLRequestConvertible { - static let baseURLString = "http://example.com" - static var OAuthToken: String? - - case CreateUser([String: AnyObject]) - case ReadUser(String) - case UpdateUser(String, [String: AnyObject]) - case DestroyUser(String) - - var method: Alamofire.Method { - switch self { - case .CreateUser: - return .POST - case .ReadUser: - return .GET - case .UpdateUser: - return .PUT - case .DestroyUser: - return .DELETE - } - } - - var path: String { - switch self { - case .CreateUser: - return "/users" - case .ReadUser(let username): - return "/users/\(username)" - case .UpdateUser(let username, _): - return "/users/\(username)" - case .DestroyUser(let username): - return "/users/\(username)" - } - } - - // MARK: URLRequestConvertible - - var URLRequest: NSMutableURLRequest { - let URL = NSURL(string: Router.baseURLString)! - let mutableURLRequest = NSMutableURLRequest(URL: URL.URLByAppendingPathComponent(path)) - mutableURLRequest.HTTPMethod = method.rawValue - - if let token = Router.OAuthToken { - mutableURLRequest.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization") - } - - switch self { - case .CreateUser(let parameters): - return Alamofire.ParameterEncoding.JSON.encode(mutableURLRequest, parameters: parameters).0 - case .UpdateUser(_, let parameters): - return Alamofire.ParameterEncoding.URL.encode(mutableURLRequest, parameters: parameters).0 - default: - return mutableURLRequest - } - } -} -``` - -```swift -Alamofire.request(Router.ReadUser("mattt")) // GET /users/mattt -``` - -### Security - -Using a secure HTTPS connection when communicating with servers and web services is an important step in securing sensitive data. By default, Alamofire will evaluate the certificate chain provided by the server using Apple's built in validation provided by the Security framework. While this guarantees the certificate chain is valid, it does not prevent man-in-the-middle (MITM) attacks or other potential vulnerabilities. In order to mitigate MITM attacks, applications dealing with sensitive customer data or financial information should use certificate or public key pinning provided by the `ServerTrustPolicy`. - -#### ServerTrustPolicy - -The `ServerTrustPolicy` enumeration evaluates the server trust generally provided by an `NSURLAuthenticationChallenge` when connecting to a server over a secure HTTPS connection. - -```swift -let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: ServerTrustPolicy.certificatesInBundle(), - validateCertificateChain: true, - validateHost: true -) -``` - -There are many different cases of server trust evaluation giving you complete control over the validation process: - -* `PerformDefaultEvaluation`: Uses the default server trust evaluation while allowing you to control whether to validate the host provided by the challenge. -* `PinCertificates`: Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned certificates match one of the server certificates. -* `PinPublicKeys`: Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned public keys match one of the server certificate public keys. -* `DisableEvaluation`: Disables all evaluation which in turn will always consider any server trust as valid. -* `CustomEvaluation`: Uses the associated closure to evaluate the validity of the server trust thus giving you complete control over the validation process. Use with caution. - -#### Server Trust Policy Manager - -The `ServerTrustPolicyManager` is responsible for storing an internal mapping of server trust policies to a particular host. This allows Alamofire to evaluate each host against a different server trust policy. - -```swift -let serverTrustPolicies: [String: ServerTrustPolicy] = [ - "test.example.com": .PinCertificates( - certificates: ServerTrustPolicy.certificatesInBundle(), - validateCertificateChain: true, - validateHost: true - ), - "insecure.expired-apis.com": .DisableEvaluation -] - -let manager = Manager( - serverTrustPolicyManager: ServerTrustPolicyManager(policies: serverTrustPolicies) -) -``` - -> Make sure to keep a reference to the new `Manager` instance, otherwise your requests will all get cancelled when your `manager` is deallocated. - -These server trust policies will result in the following behavior: - -* `test.example.com` will always use certificate pinning with certificate chain and host validation enabled thus requiring the following criteria to be met to allow the TLS handshake to succeed: - * Certificate chain MUST be valid. - * Certificate chain MUST include one of the pinned certificates. - * Challenge host MUST match the host in the certificate chain's leaf certificate. -* `insecure.expired-apis.com` will never evaluate the certificate chain and will always allow the TLS handshake to succeed. -* All other hosts will use the default evaluation provided by Apple. - -##### Subclassing Server Trust Policy Manager - -If you find yourself needing more flexible server trust policy matching behavior (i.e. wildcarded domains), then subclass the `ServerTrustPolicyManager` and override the `serverTrustPolicyForHost` method with your own custom implementation. - -```swift -class CustomServerTrustPolicyManager: ServerTrustPolicyManager { - override func serverTrustPolicyForHost(host: String) -> ServerTrustPolicy? { - var policy: ServerTrustPolicy? - - // Implement your custom domain matching behavior... - - return policy - } -} -``` - -#### Validating the Host - -The `.PerformDefaultEvaluation`, `.PinCertificates` and `.PinPublicKeys` server trust policies all take a `validateHost` parameter. Setting the value to `true` will cause the server trust evaluation to verify that hostname in the certificate matches the hostname of the challenge. If they do not match, evaluation will fail. A `validateHost` value of `false` will still evaluate the full certificate chain, but will not validate the hostname of the leaf certificate. - -> It is recommended that `validateHost` always be set to `true` in production environments. - -#### Validating the Certificate Chain - -Pinning certificates and public keys both have the option of validating the certificate chain using the `validateCertificateChain` parameter. By setting this value to `true`, the full certificate chain will be evaluated in addition to performing a byte equality check against the pinned certficates or public keys. A value of `false` will skip the certificate chain validation, but will still perform the byte equality check. - -There are several cases where it may make sense to disable certificate chain validation. The most common use cases for disabling validation are self-signed and expired certificates. The evaluation would always fail in both of these cases, but the byte equality check will still ensure you are receiving the certificate you expect from the server. - -> It is recommended that `validateCertificateChain` always be set to `true` in production environments. - -#### App Transport Security - -With the addition of App Transport Security (ATS) in iOS 9, it is possible that using a custom `ServerTrustPolicyManager` with several `ServerTrustPolicy` objects will have no effect. If you continuously see `CFNetwork SSLHandshake failed (-9806)` errors, you have probably run into this problem. Apple's ATS system overrides the entire challenge system unless you configure the ATS settings in your app's plist to disable enough of it to allow your app to evaluate the server trust. - -If you run into this problem (high probability with self-signed certificates), you can work around this issue by adding the following to your `Info.plist`. - -```xml - - NSAppTransportSecurity - - NSExceptionDomains - - example.com - - NSExceptionAllowsInsecureHTTPLoads - - NSExceptionRequiresForwardSecrecy - - NSIncludesSubdomains - - - NSTemporaryExceptionMinimumTLSVersion - TLSv1.2 - - - - -``` - -Whether you need to set the `NSExceptionRequiresForwardSecrecy` to `NO` depends on whether your TLS connection is using an allowed cipher suite. In certain cases, it will need to be set to `NO`. The `NSExceptionAllowsInsecureHTTPLoads` MUST be set to `YES` in order to allow the `SessionDelegate` to receive challenge callbacks. Once the challenge callbacks are being called, the `ServerTrustPolicyManager` will take over the server trust evaluation. You may also need to specify the `NSTemporaryExceptionMinimumTLSVersion` if you're trying to connect to a host that only supports TLS versions less than `1.2`. - -> It is recommended to always use valid certificates in production environments. - -### Network Reachability - -The `NetworkReachabilityManager` listens for reachability changes of hosts and addresses for both WWAN and WiFi network interfaces. - -```swift -let manager = NetworkReachabilityManager(host: "www.apple.com") - -manager?.listener = { status in - print("Network Status Changed: \(status)") -} - -manager?.startListening() -``` - -> Make sure to remember to retain the `manager` in the above example, or no status changes will be reported. - -There are some important things to remember when using network reachability to determine what to do next. - -* **Do NOT** use Reachability to determine if a network request should be sent. - * You should **ALWAYS** send it. -* When Reachability is restored, use the event to retry failed network requests. - * Even though the network requests may still fail, this is a good moment to retry them. -* The network reachability status can be useful for determining why a network request may have failed. - * If a network request fails, it is more useful to tell the user that the network request failed due to being offline rather than a more technical errror, such as "request timed out." - -> It is recommended to check out [WWDC 2012 Session 706, "Networking Best Practices"](https://developer.apple.com/videos/play/wwdc2012-706/) for more info. - ---- - -## Component Libraries - -In order to keep Alamofire focused specifically on core networking implementations, additional component libraries have been created by the [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) to bring additional functionality to the Alamofire ecosystem. - -* [AlamofireImage](https://github.com/Alamofire/AlamofireImage) - An image library including image response serializers, `UIImage` and `UIImageView` extensions, custom image filters, an auto-purging in-memory cache and a priority-based image downloading system. - -## Open Rdars - -The following rdars have some affect on the current implementation of Alamofire. - -* [rdar://21349340](http://www.openradar.me/radar?id=5517037090635776) - Compiler throwing warning due to toll-free bridging issue in test case - -## FAQ - -### What's the origin of the name Alamofire? - -Alamofire is named after the [Alamo Fire flower](https://aggie-horticulture.tamu.edu/wildseed/alamofire.html), a hybrid variant of the Bluebonnet, the official state flower of Texas. - ---- - -## Credits - -Alamofire is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). You can follow them on Twitter at [@AlamofireSF](https://twitter.com/AlamofireSF) for project updates and releases. - -### Security Disclosure - -If you believe you have identified a security vulnerability with Alamofire, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker. - -## License - -Alamofire is released under the MIT license. See LICENSE for details. diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.h b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.h deleted file mode 100644 index c27948a..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.h +++ /dev/null @@ -1,26 +0,0 @@ -// Alamofire.h -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation; - -FOUNDATION_EXPORT double AlamofireVersionNumber; -FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.swift deleted file mode 100644 index b866f42..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Alamofire.swift +++ /dev/null @@ -1,368 +0,0 @@ -// Alamofire.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -// MARK: - URLStringConvertible - -/** - Types adopting the `URLStringConvertible` protocol can be used to construct URL strings, which are then used to - construct URL requests. -*/ -public protocol URLStringConvertible { - /** - A URL that conforms to RFC 2396. - - Methods accepting a `URLStringConvertible` type parameter parse it according to RFCs 1738 and 1808. - - See https://tools.ietf.org/html/rfc2396 - See https://tools.ietf.org/html/rfc1738 - See https://tools.ietf.org/html/rfc1808 - */ - var URLString: String { get } -} - -extension String: URLStringConvertible { - public var URLString: String { - return self - } -} - -extension NSURL: URLStringConvertible { - public var URLString: String { - return absoluteString - } -} - -extension NSURLComponents: URLStringConvertible { - public var URLString: String { - return URL!.URLString - } -} - -extension NSURLRequest: URLStringConvertible { - public var URLString: String { - return URL!.URLString - } -} - -// MARK: - URLRequestConvertible - -/** - Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests. -*/ -public protocol URLRequestConvertible { - /// The URL request. - var URLRequest: NSMutableURLRequest { get } -} - -extension NSURLRequest: URLRequestConvertible { - public var URLRequest: NSMutableURLRequest { - return self.mutableCopy() as! NSMutableURLRequest - } -} - -// MARK: - Convenience - -func URLRequest( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil) - -> NSMutableURLRequest -{ - let mutableURLRequest = NSMutableURLRequest(URL: NSURL(string: URLString.URLString)!) - mutableURLRequest.HTTPMethod = method.rawValue - - if let headers = headers { - for (headerField, headerValue) in headers { - mutableURLRequest.setValue(headerValue, forHTTPHeaderField: headerField) - } - } - - return mutableURLRequest -} - -// MARK: - Request Methods - -/** - Creates a request using the shared manager instance for the specified method, URL string, parameters, and - parameter encoding. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - - returns: The created request. -*/ -public func request( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil) - -> Request -{ - return Manager.sharedInstance.request( - method, - URLString, - parameters: parameters, - encoding: encoding, - headers: headers - ) -} - -/** - Creates a request using the shared manager instance for the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - - returns: The created request. -*/ -public func request(URLRequest: URLRequestConvertible) -> Request { - return Manager.sharedInstance.request(URLRequest.URLRequest) -} - -// MARK: - Upload Methods - -// MARK: File - -/** - Creates an upload request using the shared manager instance for the specified method, URL string, and file. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter file: The file to upload. - - - returns: The created upload request. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - file: NSURL) - -> Request -{ - return Manager.sharedInstance.upload(method, URLString, headers: headers, file: file) -} - -/** - Creates an upload request using the shared manager instance for the specified URL request and file. - - - parameter URLRequest: The URL request. - - parameter file: The file to upload. - - - returns: The created upload request. -*/ -public func upload(URLRequest: URLRequestConvertible, file: NSURL) -> Request { - return Manager.sharedInstance.upload(URLRequest, file: file) -} - -// MARK: Data - -/** - Creates an upload request using the shared manager instance for the specified method, URL string, and data. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter data: The data to upload. - - - returns: The created upload request. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - data: NSData) - -> Request -{ - return Manager.sharedInstance.upload(method, URLString, headers: headers, data: data) -} - -/** - Creates an upload request using the shared manager instance for the specified URL request and data. - - - parameter URLRequest: The URL request. - - parameter data: The data to upload. - - - returns: The created upload request. -*/ -public func upload(URLRequest: URLRequestConvertible, data: NSData) -> Request { - return Manager.sharedInstance.upload(URLRequest, data: data) -} - -// MARK: Stream - -/** - Creates an upload request using the shared manager instance for the specified method, URL string, and stream. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter stream: The stream to upload. - - - returns: The created upload request. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - stream: NSInputStream) - -> Request -{ - return Manager.sharedInstance.upload(method, URLString, headers: headers, stream: stream) -} - -/** - Creates an upload request using the shared manager instance for the specified URL request and stream. - - - parameter URLRequest: The URL request. - - parameter stream: The stream to upload. - - - returns: The created upload request. -*/ -public func upload(URLRequest: URLRequestConvertible, stream: NSInputStream) -> Request { - return Manager.sharedInstance.upload(URLRequest, stream: stream) -} - -// MARK: MultipartFormData - -/** - Creates an upload request using the shared manager instance for the specified method and URL string. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. -*/ -public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (Manager.MultipartFormDataEncodingResult -> Void)?) -{ - return Manager.sharedInstance.upload( - method, - URLString, - headers: headers, - multipartFormData: multipartFormData, - encodingMemoryThreshold: encodingMemoryThreshold, - encodingCompletion: encodingCompletion - ) -} - -/** - Creates an upload request using the shared manager instance for the specified method and URL string. - - - parameter URLRequest: The URL request. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. -*/ -public func upload( - URLRequest: URLRequestConvertible, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (Manager.MultipartFormDataEncodingResult -> Void)?) -{ - return Manager.sharedInstance.upload( - URLRequest, - multipartFormData: multipartFormData, - encodingMemoryThreshold: encodingMemoryThreshold, - encodingCompletion: encodingCompletion - ) -} - -// MARK: - Download Methods - -// MARK: URL Request - -/** - Creates a download request using the shared manager instance for the specified method and URL string. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. -*/ -public func download( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil, - destination: Request.DownloadFileDestination) - -> Request -{ - return Manager.sharedInstance.download( - method, - URLString, - parameters: parameters, - encoding: encoding, - headers: headers, - destination: destination - ) -} - -/** - Creates a download request using the shared manager instance for the specified URL request. - - - parameter URLRequest: The URL request. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. -*/ -public func download(URLRequest: URLRequestConvertible, destination: Request.DownloadFileDestination) -> Request { - return Manager.sharedInstance.download(URLRequest, destination: destination) -} - -// MARK: Resume Data - -/** - Creates a request using the shared manager instance for downloading from the resume data produced from a - previous request cancellation. - - - parameter resumeData: The resume data. This is an opaque data blob produced by `NSURLSessionDownloadTask` - when a task is cancelled. See `NSURLSession -downloadTaskWithResumeData:` for additional - information. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. -*/ -public func download(resumeData data: NSData, destination: Request.DownloadFileDestination) -> Request { - return Manager.sharedInstance.download(data, destination: destination) -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Download.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Download.swift deleted file mode 100644 index 2ebe40f..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Download.swift +++ /dev/null @@ -1,246 +0,0 @@ -// Download.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension Manager { - private enum Downloadable { - case Request(NSURLRequest) - case ResumeData(NSData) - } - - private func download(downloadable: Downloadable, destination: Request.DownloadFileDestination) -> Request { - var downloadTask: NSURLSessionDownloadTask! - - switch downloadable { - case .Request(let request): - dispatch_sync(queue) { - downloadTask = self.session.downloadTaskWithRequest(request) - } - case .ResumeData(let resumeData): - dispatch_sync(queue) { - downloadTask = self.session.downloadTaskWithResumeData(resumeData) - } - } - - let request = Request(session: session, task: downloadTask) - - if let downloadDelegate = request.delegate as? Request.DownloadTaskDelegate { - downloadDelegate.downloadTaskDidFinishDownloadingToURL = { session, downloadTask, URL in - return destination(URL, downloadTask.response as! NSHTTPURLResponse) - } - } - - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - // MARK: Request - - /** - Creates a download request for the specified method, URL string, parameters, parameter encoding, headers - and destination. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. - */ - public func download( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil, - destination: Request.DownloadFileDestination) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - let encodedURLRequest = encoding.encode(mutableURLRequest, parameters: parameters).0 - - return download(encodedURLRequest, destination: destination) - } - - /** - Creates a request for downloading from the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. - */ - public func download(URLRequest: URLRequestConvertible, destination: Request.DownloadFileDestination) -> Request { - return download(.Request(URLRequest.URLRequest), destination: destination) - } - - // MARK: Resume Data - - /** - Creates a request for downloading from the resume data produced from a previous request cancellation. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter resumeData: The resume data. This is an opaque data blob produced by `NSURLSessionDownloadTask` - when a task is cancelled. See `NSURLSession -downloadTaskWithResumeData:` for - additional information. - - parameter destination: The closure used to determine the destination of the downloaded file. - - - returns: The created download request. - */ - public func download(resumeData: NSData, destination: Request.DownloadFileDestination) -> Request { - return download(.ResumeData(resumeData), destination: destination) - } -} - -// MARK: - - -extension Request { - /** - A closure executed once a request has successfully completed in order to determine where to move the temporary - file written to during the download process. The closure takes two arguments: the temporary file URL and the URL - response, and returns a single argument: the file URL where the temporary file should be moved. - */ - public typealias DownloadFileDestination = (NSURL, NSHTTPURLResponse) -> NSURL - - /** - Creates a download file destination closure which uses the default file manager to move the temporary file to a - file URL in the first available directory with the specified search path directory and search path domain mask. - - - parameter directory: The search path directory. `.DocumentDirectory` by default. - - parameter domain: The search path domain mask. `.UserDomainMask` by default. - - - returns: A download file destination closure. - */ - public class func suggestedDownloadDestination( - directory directory: NSSearchPathDirectory = .DocumentDirectory, - domain: NSSearchPathDomainMask = .UserDomainMask) - -> DownloadFileDestination - { - return { temporaryURL, response -> NSURL in - let directoryURLs = NSFileManager.defaultManager().URLsForDirectory(directory, inDomains: domain) - - if !directoryURLs.isEmpty { - return directoryURLs[0].URLByAppendingPathComponent(response.suggestedFilename!) - } - - return temporaryURL - } - } - - /// The resume data of the underlying download task if available after a failure. - public var resumeData: NSData? { - var data: NSData? - - if let delegate = delegate as? DownloadTaskDelegate { - data = delegate.resumeData - } - - return data - } - - // MARK: - DownloadTaskDelegate - - class DownloadTaskDelegate: TaskDelegate, NSURLSessionDownloadDelegate { - var downloadTask: NSURLSessionDownloadTask? { return task as? NSURLSessionDownloadTask } - var downloadProgress: ((Int64, Int64, Int64) -> Void)? - - var resumeData: NSData? - override var data: NSData? { return resumeData } - - // MARK: - NSURLSessionDownloadDelegate - - // MARK: Override Closures - - var downloadTaskDidFinishDownloadingToURL: ((NSURLSession, NSURLSessionDownloadTask, NSURL) -> NSURL)? - var downloadTaskDidWriteData: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64, Int64) -> Void)? - var downloadTaskDidResumeAtOffset: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64) -> Void)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didFinishDownloadingToURL location: NSURL) - { - if let downloadTaskDidFinishDownloadingToURL = downloadTaskDidFinishDownloadingToURL { - do { - let destination = downloadTaskDidFinishDownloadingToURL(session, downloadTask, location) - try NSFileManager.defaultManager().moveItemAtURL(location, toURL: destination) - } catch { - self.error = error as NSError - } - } - } - - func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didWriteData bytesWritten: Int64, - totalBytesWritten: Int64, - totalBytesExpectedToWrite: Int64) - { - if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } - - if let downloadTaskDidWriteData = downloadTaskDidWriteData { - downloadTaskDidWriteData( - session, - downloadTask, - bytesWritten, - totalBytesWritten, - totalBytesExpectedToWrite - ) - } else { - progress.totalUnitCount = totalBytesExpectedToWrite - progress.completedUnitCount = totalBytesWritten - - downloadProgress?(bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) - } - } - - func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didResumeAtOffset fileOffset: Int64, - expectedTotalBytes: Int64) - { - if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset { - downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes) - } else { - progress.totalUnitCount = expectedTotalBytes - progress.completedUnitCount = fileOffset - } - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Error.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Error.swift deleted file mode 100644 index 7a813f1..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Error.swift +++ /dev/null @@ -1,66 +0,0 @@ -// Error.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// The `Error` struct provides a convenience for creating custom Alamofire NSErrors. -public struct Error { - /// The domain used for creating all Alamofire errors. - public static let Domain = "com.alamofire.error" - - /// The custom error codes generated by Alamofire. - public enum Code: Int { - case InputStreamReadFailed = -6000 - case OutputStreamWriteFailed = -6001 - case ContentTypeValidationFailed = -6002 - case StatusCodeValidationFailed = -6003 - case DataSerializationFailed = -6004 - case StringSerializationFailed = -6005 - case JSONSerializationFailed = -6006 - case PropertyListSerializationFailed = -6007 - } - - /** - Creates an `NSError` with the given error code and failure reason. - - - parameter code: The error code. - - parameter failureReason: The failure reason. - - - returns: An `NSError` with the given error code and failure reason. - */ - public static func errorWithCode(code: Code, failureReason: String) -> NSError { - return errorWithCode(code.rawValue, failureReason: failureReason) - } - - /** - Creates an `NSError` with the given error code and failure reason. - - - parameter code: The error code. - - parameter failureReason: The failure reason. - - - returns: An `NSError` with the given error code and failure reason. - */ - public static func errorWithCode(code: Int, failureReason: String) -> NSError { - let userInfo = [NSLocalizedFailureReasonErrorKey: failureReason] - return NSError(domain: Domain, code: code, userInfo: userInfo) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist deleted file mode 100644 index 07bfcd5..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info-tvOS.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 3.2.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - UIRequiredDeviceCapabilities - - arm64 - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info.plist b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info.plist deleted file mode 100644 index 340121d..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 3.2.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Manager.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Manager.swift deleted file mode 100644 index b10045c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Manager.swift +++ /dev/null @@ -1,695 +0,0 @@ -// Manager.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - Responsible for creating and managing `Request` objects, as well as their underlying `NSURLSession`. -*/ -public class Manager { - - // MARK: - Properties - - /** - A shared instance of `Manager`, used by top-level Alamofire request methods, and suitable for use directly - for any ad hoc requests. - */ - public static let sharedInstance: Manager = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.HTTPAdditionalHeaders = Manager.defaultHTTPHeaders - - return Manager(configuration: configuration) - }() - - /** - Creates default values for the "Accept-Encoding", "Accept-Language" and "User-Agent" headers. - */ - public static let defaultHTTPHeaders: [String: String] = { - // Accept-Encoding HTTP Header; see https://tools.ietf.org/html/rfc7230#section-4.2.3 - let acceptEncoding: String = "gzip;q=1.0, compress;q=0.5" - - // Accept-Language HTTP Header; see https://tools.ietf.org/html/rfc7231#section-5.3.5 - let acceptLanguage = NSLocale.preferredLanguages().prefix(6).enumerate().map { index, languageCode in - let quality = 1.0 - (Double(index) * 0.1) - return "\(languageCode);q=\(quality)" - }.joinWithSeparator(", ") - - // User-Agent Header; see https://tools.ietf.org/html/rfc7231#section-5.5.3 - let userAgent: String = { - if let info = NSBundle.mainBundle().infoDictionary { - let executable: AnyObject = info[kCFBundleExecutableKey as String] ?? "Unknown" - let bundle: AnyObject = info[kCFBundleIdentifierKey as String] ?? "Unknown" - let version: AnyObject = info[kCFBundleVersionKey as String] ?? "Unknown" - let os: AnyObject = NSProcessInfo.processInfo().operatingSystemVersionString ?? "Unknown" - - var mutableUserAgent = NSMutableString(string: "\(executable)/\(bundle) (\(version); OS \(os))") as CFMutableString - let transform = NSString(string: "Any-Latin; Latin-ASCII; [:^ASCII:] Remove") as CFString - - if CFStringTransform(mutableUserAgent, UnsafeMutablePointer(nil), transform, false) { - return mutableUserAgent as String - } - } - - return "Alamofire" - }() - - return [ - "Accept-Encoding": acceptEncoding, - "Accept-Language": acceptLanguage, - "User-Agent": userAgent - ] - }() - - let queue = dispatch_queue_create(nil, DISPATCH_QUEUE_SERIAL) - - /// The underlying session. - public let session: NSURLSession - - /// The session delegate handling all the task and session delegate callbacks. - public let delegate: SessionDelegate - - /// Whether to start requests immediately after being constructed. `true` by default. - public var startRequestsImmediately: Bool = true - - /** - The background completion handler closure provided by the UIApplicationDelegate - `application:handleEventsForBackgroundURLSession:completionHandler:` method. By setting the background - completion handler, the SessionDelegate `sessionDidFinishEventsForBackgroundURLSession` closure implementation - will automatically call the handler. - - If you need to handle your own events before the handler is called, then you need to override the - SessionDelegate `sessionDidFinishEventsForBackgroundURLSession` and manually call the handler when finished. - - `nil` by default. - */ - public var backgroundCompletionHandler: (() -> Void)? - - // MARK: - Lifecycle - - /** - Initializes the `Manager` instance with the specified configuration, delegate and server trust policy. - - - parameter configuration: The configuration used to construct the managed session. - `NSURLSessionConfiguration.defaultSessionConfiguration()` by default. - - parameter delegate: The delegate used when initializing the session. `SessionDelegate()` by - default. - - parameter serverTrustPolicyManager: The server trust policy manager to use for evaluating all server trust - challenges. `nil` by default. - - - returns: The new `Manager` instance. - */ - public init( - configuration: NSURLSessionConfiguration = NSURLSessionConfiguration.defaultSessionConfiguration(), - delegate: SessionDelegate = SessionDelegate(), - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) - { - self.delegate = delegate - self.session = NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) - } - - /** - Initializes the `Manager` instance with the specified session, delegate and server trust policy. - - - parameter session: The URL session. - - parameter delegate: The delegate of the URL session. Must equal the URL session's delegate. - - parameter serverTrustPolicyManager: The server trust policy manager to use for evaluating all server trust - challenges. `nil` by default. - - - returns: The new `Manager` instance if the URL session's delegate matches the delegate parameter. - */ - public init?( - session: NSURLSession, - delegate: SessionDelegate, - serverTrustPolicyManager: ServerTrustPolicyManager? = nil) - { - self.delegate = delegate - self.session = session - - guard delegate === session.delegate else { return nil } - - commonInit(serverTrustPolicyManager: serverTrustPolicyManager) - } - - private func commonInit(serverTrustPolicyManager serverTrustPolicyManager: ServerTrustPolicyManager?) { - session.serverTrustPolicyManager = serverTrustPolicyManager - - delegate.sessionDidFinishEventsForBackgroundURLSession = { [weak self] session in - guard let strongSelf = self else { return } - dispatch_async(dispatch_get_main_queue()) { strongSelf.backgroundCompletionHandler?() } - } - } - - deinit { - session.invalidateAndCancel() - } - - // MARK: - Request - - /** - Creates a request for the specified method, URL string, parameters, parameter encoding and headers. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter parameters: The parameters. `nil` by default. - - parameter encoding: The parameter encoding. `.URL` by default. - - parameter headers: The HTTP headers. `nil` by default. - - - returns: The created request. - */ - public func request( - method: Method, - _ URLString: URLStringConvertible, - parameters: [String: AnyObject]? = nil, - encoding: ParameterEncoding = .URL, - headers: [String: String]? = nil) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - let encodedURLRequest = encoding.encode(mutableURLRequest, parameters: parameters).0 - return request(encodedURLRequest) - } - - /** - Creates a request for the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - - returns: The created request. - */ - public func request(URLRequest: URLRequestConvertible) -> Request { - var dataTask: NSURLSessionDataTask! - dispatch_sync(queue) { dataTask = self.session.dataTaskWithRequest(URLRequest.URLRequest) } - - let request = Request(session: session, task: dataTask) - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - // MARK: - SessionDelegate - - /** - Responsible for handling all delegate callbacks for the underlying session. - */ - public final class SessionDelegate: NSObject, NSURLSessionDelegate, NSURLSessionTaskDelegate, NSURLSessionDataDelegate, NSURLSessionDownloadDelegate { - private var subdelegates: [Int: Request.TaskDelegate] = [:] - private let subdelegateQueue = dispatch_queue_create(nil, DISPATCH_QUEUE_CONCURRENT) - - subscript(task: NSURLSessionTask) -> Request.TaskDelegate? { - get { - var subdelegate: Request.TaskDelegate? - dispatch_sync(subdelegateQueue) { subdelegate = self.subdelegates[task.taskIdentifier] } - - return subdelegate - } - - set { - dispatch_barrier_async(subdelegateQueue) { self.subdelegates[task.taskIdentifier] = newValue } - } - } - - /** - Initializes the `SessionDelegate` instance. - - - returns: The new `SessionDelegate` instance. - */ - public override init() { - super.init() - } - - // MARK: - NSURLSessionDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionDelegate method `URLSession:didBecomeInvalidWithError:`. - public var sessionDidBecomeInvalidWithError: ((NSURLSession, NSError?) -> Void)? - - /// Overrides default behavior for NSURLSessionDelegate method `URLSession:didReceiveChallenge:completionHandler:`. - public var sessionDidReceiveChallenge: ((NSURLSession, NSURLAuthenticationChallenge) -> (NSURLSessionAuthChallengeDisposition, NSURLCredential?))? - - /// Overrides default behavior for NSURLSessionDelegate method `URLSessionDidFinishEventsForBackgroundURLSession:`. - public var sessionDidFinishEventsForBackgroundURLSession: ((NSURLSession) -> Void)? - - // MARK: Delegate Methods - - /** - Tells the delegate that the session has been invalidated. - - - parameter session: The session object that was invalidated. - - parameter error: The error that caused invalidation, or nil if the invalidation was explicit. - */ - public func URLSession(session: NSURLSession, didBecomeInvalidWithError error: NSError?) { - sessionDidBecomeInvalidWithError?(session, error) - } - - /** - Requests credentials from the delegate in response to a session-level authentication request from the remote server. - - - parameter session: The session containing the task that requested authentication. - - parameter challenge: An object that contains the request for authentication. - - parameter completionHandler: A handler that your delegate method must call providing the disposition and credential. - */ - public func URLSession( - session: NSURLSession, - didReceiveChallenge challenge: NSURLAuthenticationChallenge, - completionHandler: ((NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)) - { - var disposition: NSURLSessionAuthChallengeDisposition = .PerformDefaultHandling - var credential: NSURLCredential? - - if let sessionDidReceiveChallenge = sessionDidReceiveChallenge { - (disposition, credential) = sessionDidReceiveChallenge(session, challenge) - } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { - let host = challenge.protectionSpace.host - - if let - serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicyForHost(host), - serverTrust = challenge.protectionSpace.serverTrust - { - if serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) { - disposition = .UseCredential - credential = NSURLCredential(forTrust: serverTrust) - } else { - disposition = .CancelAuthenticationChallenge - } - } - } - - completionHandler(disposition, credential) - } - - /** - Tells the delegate that all messages enqueued for a session have been delivered. - - - parameter session: The session that no longer has any outstanding requests. - */ - public func URLSessionDidFinishEventsForBackgroundURLSession(session: NSURLSession) { - sessionDidFinishEventsForBackgroundURLSession?(session) - } - - // MARK: - NSURLSessionTaskDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:`. - public var taskWillPerformHTTPRedirection: ((NSURLSession, NSURLSessionTask, NSHTTPURLResponse, NSURLRequest) -> NSURLRequest?)? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:didReceiveChallenge:completionHandler:`. - public var taskDidReceiveChallenge: ((NSURLSession, NSURLSessionTask, NSURLAuthenticationChallenge) -> (NSURLSessionAuthChallengeDisposition, NSURLCredential?))? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:session:task:needNewBodyStream:`. - public var taskNeedNewBodyStream: ((NSURLSession, NSURLSessionTask) -> NSInputStream!)? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:`. - public var taskDidSendBodyData: ((NSURLSession, NSURLSessionTask, Int64, Int64, Int64) -> Void)? - - /// Overrides default behavior for NSURLSessionTaskDelegate method `URLSession:task:didCompleteWithError:`. - public var taskDidComplete: ((NSURLSession, NSURLSessionTask, NSError?) -> Void)? - - // MARK: Delegate Methods - - /** - Tells the delegate that the remote server requested an HTTP redirect. - - - parameter session: The session containing the task whose request resulted in a redirect. - - parameter task: The task whose request resulted in a redirect. - - parameter response: An object containing the server’s response to the original request. - - parameter request: A URL request object filled out with the new location. - - parameter completionHandler: A closure that your handler should call with either the value of the request - parameter, a modified URL request object, or NULL to refuse the redirect and - return the body of the redirect response. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - willPerformHTTPRedirection response: NSHTTPURLResponse, - newRequest request: NSURLRequest, - completionHandler: ((NSURLRequest?) -> Void)) - { - var redirectRequest: NSURLRequest? = request - - if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection { - redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request) - } - - completionHandler(redirectRequest) - } - - /** - Requests credentials from the delegate in response to an authentication request from the remote server. - - - parameter session: The session containing the task whose request requires authentication. - - parameter task: The task whose request requires authentication. - - parameter challenge: An object that contains the request for authentication. - - parameter completionHandler: A handler that your delegate method must call providing the disposition and credential. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didReceiveChallenge challenge: NSURLAuthenticationChallenge, - completionHandler: ((NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)) - { - if let taskDidReceiveChallenge = taskDidReceiveChallenge { - completionHandler(taskDidReceiveChallenge(session, task, challenge)) - } else if let delegate = self[task] { - delegate.URLSession( - session, - task: task, - didReceiveChallenge: challenge, - completionHandler: completionHandler - ) - } else { - URLSession(session, didReceiveChallenge: challenge, completionHandler: completionHandler) - } - } - - /** - Tells the delegate when a task requires a new request body stream to send to the remote server. - - - parameter session: The session containing the task that needs a new body stream. - - parameter task: The task that needs a new body stream. - - parameter completionHandler: A completion handler that your delegate method should call with the new body stream. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - needNewBodyStream completionHandler: ((NSInputStream?) -> Void)) - { - if let taskNeedNewBodyStream = taskNeedNewBodyStream { - completionHandler(taskNeedNewBodyStream(session, task)) - } else if let delegate = self[task] { - delegate.URLSession(session, task: task, needNewBodyStream: completionHandler) - } - } - - /** - Periodically informs the delegate of the progress of sending body content to the server. - - - parameter session: The session containing the data task. - - parameter task: The data task. - - parameter bytesSent: The number of bytes sent since the last time this delegate method was called. - - parameter totalBytesSent: The total number of bytes sent so far. - - parameter totalBytesExpectedToSend: The expected length of the body data. - */ - public func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didSendBodyData bytesSent: Int64, - totalBytesSent: Int64, - totalBytesExpectedToSend: Int64) - { - if let taskDidSendBodyData = taskDidSendBodyData { - taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend) - } else if let delegate = self[task] as? Request.UploadTaskDelegate { - delegate.URLSession( - session, - task: task, - didSendBodyData: bytesSent, - totalBytesSent: totalBytesSent, - totalBytesExpectedToSend: totalBytesExpectedToSend - ) - } - } - - /** - Tells the delegate that the task finished transferring data. - - - parameter session: The session containing the task whose request finished transferring data. - - parameter task: The task whose request finished transferring data. - - parameter error: If an error occurred, an error object indicating how the transfer failed, otherwise nil. - */ - public func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { - if let taskDidComplete = taskDidComplete { - taskDidComplete(session, task, error) - } else if let delegate = self[task] { - delegate.URLSession(session, task: task, didCompleteWithError: error) - } - - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidComplete, object: task) - - self[task] = nil - } - - // MARK: - NSURLSessionDataDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:didReceiveResponse:completionHandler:`. - public var dataTaskDidReceiveResponse: ((NSURLSession, NSURLSessionDataTask, NSURLResponse) -> NSURLSessionResponseDisposition)? - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:didBecomeDownloadTask:`. - public var dataTaskDidBecomeDownloadTask: ((NSURLSession, NSURLSessionDataTask, NSURLSessionDownloadTask) -> Void)? - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:didReceiveData:`. - public var dataTaskDidReceiveData: ((NSURLSession, NSURLSessionDataTask, NSData) -> Void)? - - /// Overrides default behavior for NSURLSessionDataDelegate method `URLSession:dataTask:willCacheResponse:completionHandler:`. - public var dataTaskWillCacheResponse: ((NSURLSession, NSURLSessionDataTask, NSCachedURLResponse) -> NSCachedURLResponse!)? - - // MARK: Delegate Methods - - /** - Tells the delegate that the data task received the initial reply (headers) from the server. - - - parameter session: The session containing the data task that received an initial reply. - - parameter dataTask: The data task that received an initial reply. - - parameter response: A URL response object populated with headers. - - parameter completionHandler: A completion handler that your code calls to continue the transfer, passing a - constant to indicate whether the transfer should continue as a data task or - should become a download task. - */ - public func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didReceiveResponse response: NSURLResponse, - completionHandler: ((NSURLSessionResponseDisposition) -> Void)) - { - var disposition: NSURLSessionResponseDisposition = .Allow - - if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse { - disposition = dataTaskDidReceiveResponse(session, dataTask, response) - } - - completionHandler(disposition) - } - - /** - Tells the delegate that the data task was changed to a download task. - - - parameter session: The session containing the task that was replaced by a download task. - - parameter dataTask: The data task that was replaced by a download task. - - parameter downloadTask: The new download task that replaced the data task. - */ - public func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didBecomeDownloadTask downloadTask: NSURLSessionDownloadTask) - { - if let dataTaskDidBecomeDownloadTask = dataTaskDidBecomeDownloadTask { - dataTaskDidBecomeDownloadTask(session, dataTask, downloadTask) - } else { - let downloadDelegate = Request.DownloadTaskDelegate(task: downloadTask) - self[downloadTask] = downloadDelegate - } - } - - /** - Tells the delegate that the data task has received some of the expected data. - - - parameter session: The session containing the data task that provided data. - - parameter dataTask: The data task that provided data. - - parameter data: A data object containing the transferred data. - */ - public func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { - if let dataTaskDidReceiveData = dataTaskDidReceiveData { - dataTaskDidReceiveData(session, dataTask, data) - } else if let delegate = self[dataTask] as? Request.DataTaskDelegate { - delegate.URLSession(session, dataTask: dataTask, didReceiveData: data) - } - } - - /** - Asks the delegate whether the data (or upload) task should store the response in the cache. - - - parameter session: The session containing the data (or upload) task. - - parameter dataTask: The data (or upload) task. - - parameter proposedResponse: The default caching behavior. This behavior is determined based on the current - caching policy and the values of certain received headers, such as the Pragma - and Cache-Control headers. - - parameter completionHandler: A block that your handler must call, providing either the original proposed - response, a modified version of that response, or NULL to prevent caching the - response. If your delegate implements this method, it must call this completion - handler; otherwise, your app leaks memory. - */ - public func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - willCacheResponse proposedResponse: NSCachedURLResponse, - completionHandler: ((NSCachedURLResponse?) -> Void)) - { - if let dataTaskWillCacheResponse = dataTaskWillCacheResponse { - completionHandler(dataTaskWillCacheResponse(session, dataTask, proposedResponse)) - } else if let delegate = self[dataTask] as? Request.DataTaskDelegate { - delegate.URLSession( - session, - dataTask: dataTask, - willCacheResponse: proposedResponse, - completionHandler: completionHandler - ) - } else { - completionHandler(proposedResponse) - } - } - - // MARK: - NSURLSessionDownloadDelegate - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionDownloadDelegate method `URLSession:downloadTask:didFinishDownloadingToURL:`. - public var downloadTaskDidFinishDownloadingToURL: ((NSURLSession, NSURLSessionDownloadTask, NSURL) -> Void)? - - /// Overrides default behavior for NSURLSessionDownloadDelegate method `URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:`. - public var downloadTaskDidWriteData: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64, Int64) -> Void)? - - /// Overrides default behavior for NSURLSessionDownloadDelegate method `URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:`. - public var downloadTaskDidResumeAtOffset: ((NSURLSession, NSURLSessionDownloadTask, Int64, Int64) -> Void)? - - // MARK: Delegate Methods - - /** - Tells the delegate that a download task has finished downloading. - - - parameter session: The session containing the download task that finished. - - parameter downloadTask: The download task that finished. - - parameter location: A file URL for the temporary file. Because the file is temporary, you must either - open the file for reading or move it to a permanent location in your app’s sandbox - container directory before returning from this delegate method. - */ - public func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didFinishDownloadingToURL location: NSURL) - { - if let downloadTaskDidFinishDownloadingToURL = downloadTaskDidFinishDownloadingToURL { - downloadTaskDidFinishDownloadingToURL(session, downloadTask, location) - } else if let delegate = self[downloadTask] as? Request.DownloadTaskDelegate { - delegate.URLSession(session, downloadTask: downloadTask, didFinishDownloadingToURL: location) - } - } - - /** - Periodically informs the delegate about the download’s progress. - - - parameter session: The session containing the download task. - - parameter downloadTask: The download task. - - parameter bytesWritten: The number of bytes transferred since the last time this delegate - method was called. - - parameter totalBytesWritten: The total number of bytes transferred so far. - - parameter totalBytesExpectedToWrite: The expected length of the file, as provided by the Content-Length - header. If this header was not provided, the value is - `NSURLSessionTransferSizeUnknown`. - */ - public func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didWriteData bytesWritten: Int64, - totalBytesWritten: Int64, - totalBytesExpectedToWrite: Int64) - { - if let downloadTaskDidWriteData = downloadTaskDidWriteData { - downloadTaskDidWriteData(session, downloadTask, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) - } else if let delegate = self[downloadTask] as? Request.DownloadTaskDelegate { - delegate.URLSession( - session, - downloadTask: downloadTask, - didWriteData: bytesWritten, - totalBytesWritten: totalBytesWritten, - totalBytesExpectedToWrite: totalBytesExpectedToWrite - ) - } - } - - /** - Tells the delegate that the download task has resumed downloading. - - - parameter session: The session containing the download task that finished. - - parameter downloadTask: The download task that resumed. See explanation in the discussion. - - parameter fileOffset: If the file's cache policy or last modified date prevents reuse of the - existing content, then this value is zero. Otherwise, this value is an - integer representing the number of bytes on disk that do not need to be - retrieved again. - - parameter expectedTotalBytes: The expected length of the file, as provided by the Content-Length header. - If this header was not provided, the value is NSURLSessionTransferSizeUnknown. - */ - public func URLSession( - session: NSURLSession, - downloadTask: NSURLSessionDownloadTask, - didResumeAtOffset fileOffset: Int64, - expectedTotalBytes: Int64) - { - if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset { - downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes) - } else if let delegate = self[downloadTask] as? Request.DownloadTaskDelegate { - delegate.URLSession( - session, - downloadTask: downloadTask, - didResumeAtOffset: fileOffset, - expectedTotalBytes: expectedTotalBytes - ) - } - } - - // MARK: - NSURLSessionStreamDelegate - - var _streamTaskReadClosed: Any? - var _streamTaskWriteClosed: Any? - var _streamTaskBetterRouteDiscovered: Any? - var _streamTaskDidBecomeInputStream: Any? - - // MARK: - NSObject - - public override func respondsToSelector(selector: Selector) -> Bool { - switch selector { - case "URLSession:didBecomeInvalidWithError:": - return sessionDidBecomeInvalidWithError != nil - case "URLSession:didReceiveChallenge:completionHandler:": - return sessionDidReceiveChallenge != nil - case "URLSessionDidFinishEventsForBackgroundURLSession:": - return sessionDidFinishEventsForBackgroundURLSession != nil - case "URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:": - return taskWillPerformHTTPRedirection != nil - case "URLSession:dataTask:didReceiveResponse:completionHandler:": - return dataTaskDidReceiveResponse != nil - default: - return self.dynamicType.instancesRespondToSelector(selector) - } - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift deleted file mode 100644 index 8c37f16..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/MultipartFormData.swift +++ /dev/null @@ -1,669 +0,0 @@ -// MultipartFormData.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -#if os(iOS) || os(watchOS) || os(tvOS) -import MobileCoreServices -#elseif os(OSX) -import CoreServices -#endif - -/** - Constructs `multipart/form-data` for uploads within an HTTP or HTTPS body. There are currently two ways to encode - multipart form data. The first way is to encode the data directly in memory. This is very efficient, but can lead - to memory issues if the dataset is too large. The second way is designed for larger datasets and will write all the - data to a single file on disk with all the proper boundary segmentation. The second approach MUST be used for - larger datasets such as video content, otherwise your app may run out of memory when trying to encode the dataset. - - For more information on `multipart/form-data` in general, please refer to the RFC-2388 and RFC-2045 specs as well - and the w3 form documentation. - - - https://www.ietf.org/rfc/rfc2388.txt - - https://www.ietf.org/rfc/rfc2045.txt - - https://www.w3.org/TR/html401/interact/forms.html#h-17.13 -*/ -public class MultipartFormData { - - // MARK: - Helper Types - - struct EncodingCharacters { - static let CRLF = "\r\n" - } - - struct BoundaryGenerator { - enum BoundaryType { - case Initial, Encapsulated, Final - } - - static func randomBoundary() -> String { - return String(format: "alamofire.boundary.%08x%08x", arc4random(), arc4random()) - } - - static func boundaryData(boundaryType boundaryType: BoundaryType, boundary: String) -> NSData { - let boundaryText: String - - switch boundaryType { - case .Initial: - boundaryText = "--\(boundary)\(EncodingCharacters.CRLF)" - case .Encapsulated: - boundaryText = "\(EncodingCharacters.CRLF)--\(boundary)\(EncodingCharacters.CRLF)" - case .Final: - boundaryText = "\(EncodingCharacters.CRLF)--\(boundary)--\(EncodingCharacters.CRLF)" - } - - return boundaryText.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - } - } - - class BodyPart { - let headers: [String: String] - let bodyStream: NSInputStream - let bodyContentLength: UInt64 - var hasInitialBoundary = false - var hasFinalBoundary = false - - init(headers: [String: String], bodyStream: NSInputStream, bodyContentLength: UInt64) { - self.headers = headers - self.bodyStream = bodyStream - self.bodyContentLength = bodyContentLength - } - } - - // MARK: - Properties - - /// The `Content-Type` header value containing the boundary used to generate the `multipart/form-data`. - public var contentType: String { return "multipart/form-data; boundary=\(boundary)" } - - /// The content length of all body parts used to generate the `multipart/form-data` not including the boundaries. - public var contentLength: UInt64 { return bodyParts.reduce(0) { $0 + $1.bodyContentLength } } - - /// The boundary used to separate the body parts in the encoded form data. - public let boundary: String - - private var bodyParts: [BodyPart] - private var bodyPartError: NSError? - private let streamBufferSize: Int - - // MARK: - Lifecycle - - /** - Creates a multipart form data object. - - - returns: The multipart form data object. - */ - public init() { - self.boundary = BoundaryGenerator.randomBoundary() - self.bodyParts = [] - - /** - * The optimal read/write buffer size in bytes for input and output streams is 1024 (1KB). For more - * information, please refer to the following article: - * - https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Streams/Articles/ReadingInputStreams.html - */ - - self.streamBufferSize = 1024 - } - - // MARK: - Body Parts - - /** - Creates a body part from the data and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}` (HTTP Header) - - Encoded data - - Multipart form boundary - - - parameter data: The data to encode into the multipart form data. - - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. - */ - public func appendBodyPart(data data: NSData, name: String) { - let headers = contentHeaders(name: name) - let stream = NSInputStream(data: data) - let length = UInt64(data.length) - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the data and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}` (HTTP Header) - - `Content-Type: #{generated mimeType}` (HTTP Header) - - Encoded data - - Multipart form boundary - - - parameter data: The data to encode into the multipart form data. - - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the data content type in the `Content-Type` HTTP header. - */ - public func appendBodyPart(data data: NSData, name: String, mimeType: String) { - let headers = contentHeaders(name: name, mimeType: mimeType) - let stream = NSInputStream(data: data) - let length = UInt64(data.length) - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the data and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header) - - `Content-Type: #{mimeType}` (HTTP Header) - - Encoded file data - - Multipart form boundary - - - parameter data: The data to encode into the multipart form data. - - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. - - parameter fileName: The filename to associate with the data in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the data in the `Content-Type` HTTP header. - */ - public func appendBodyPart(data data: NSData, name: String, fileName: String, mimeType: String) { - let headers = contentHeaders(name: name, fileName: fileName, mimeType: mimeType) - let stream = NSInputStream(data: data) - let length = UInt64(data.length) - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the file and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}; filename=#{generated filename}` (HTTP Header) - - `Content-Type: #{generated mimeType}` (HTTP Header) - - Encoded file data - - Multipart form boundary - - The filename in the `Content-Disposition` HTTP header is generated from the last path component of the - `fileURL`. The `Content-Type` HTTP header MIME type is generated by mapping the `fileURL` extension to the - system associated MIME type. - - - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data. - - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header. - */ - public func appendBodyPart(fileURL fileURL: NSURL, name: String) { - if let - fileName = fileURL.lastPathComponent, - pathExtension = fileURL.pathExtension - { - let mimeType = mimeTypeForPathExtension(pathExtension) - appendBodyPart(fileURL: fileURL, name: name, fileName: fileName, mimeType: mimeType) - } else { - let failureReason = "Failed to extract the fileName of the provided URL: \(fileURL)" - setBodyPartError(Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason)) - } - } - - /** - Creates a body part from the file and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - Content-Disposition: form-data; name=#{name}; filename=#{filename} (HTTP Header) - - Content-Type: #{mimeType} (HTTP Header) - - Encoded file data - - Multipart form boundary - - - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data. - - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header. - - parameter fileName: The filename to associate with the file content in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the file content in the `Content-Type` HTTP header. - */ - public func appendBodyPart(fileURL fileURL: NSURL, name: String, fileName: String, mimeType: String) { - let headers = contentHeaders(name: name, fileName: fileName, mimeType: mimeType) - - //============================================================ - // Check 1 - is file URL? - //============================================================ - - guard fileURL.fileURL else { - let failureReason = "The file URL does not point to a file URL: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - setBodyPartError(error) - return - } - - //============================================================ - // Check 2 - is file URL reachable? - //============================================================ - - var isReachable = true - - if #available(OSX 10.10, *) { - isReachable = fileURL.checkPromisedItemIsReachableAndReturnError(nil) - } - - guard isReachable else { - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: "The file URL is not reachable: \(fileURL)") - setBodyPartError(error) - return - } - - //============================================================ - // Check 3 - is file URL a directory? - //============================================================ - - var isDirectory: ObjCBool = false - - guard let - path = fileURL.path - where NSFileManager.defaultManager().fileExistsAtPath(path, isDirectory: &isDirectory) && !isDirectory else - { - let failureReason = "The file URL is a directory, not a file: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - setBodyPartError(error) - return - } - - //============================================================ - // Check 4 - can the file size be extracted? - //============================================================ - - var bodyContentLength: UInt64? - - do { - if let - path = fileURL.path, - fileSize = try NSFileManager.defaultManager().attributesOfItemAtPath(path)[NSFileSize] as? NSNumber - { - bodyContentLength = fileSize.unsignedLongLongValue - } - } catch { - // No-op - } - - guard let length = bodyContentLength else { - let failureReason = "Could not fetch attributes from the file URL: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - setBodyPartError(error) - return - } - - //============================================================ - // Check 5 - can a stream be created from file URL? - //============================================================ - - guard let stream = NSInputStream(URL: fileURL) else { - let failureReason = "Failed to create an input stream from the file URL: \(fileURL)" - let error = Error.errorWithCode(NSURLErrorCannotOpenFile, failureReason: failureReason) - setBodyPartError(error) - return - } - - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part from the stream and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header) - - `Content-Type: #{mimeType}` (HTTP Header) - - Encoded stream data - - Multipart form boundary - - - parameter stream: The input stream to encode in the multipart form data. - - parameter length: The content length of the stream. - - parameter name: The name to associate with the stream content in the `Content-Disposition` HTTP header. - - parameter fileName: The filename to associate with the stream content in the `Content-Disposition` HTTP header. - - parameter mimeType: The MIME type to associate with the stream content in the `Content-Type` HTTP header. - */ - public func appendBodyPart( - stream stream: NSInputStream, - length: UInt64, - name: String, - fileName: String, - mimeType: String) - { - let headers = contentHeaders(name: name, fileName: fileName, mimeType: mimeType) - appendBodyPart(stream: stream, length: length, headers: headers) - } - - /** - Creates a body part with the headers, stream and length and appends it to the multipart form data object. - - The body part data will be encoded using the following format: - - - HTTP headers - - Encoded stream data - - Multipart form boundary - - - parameter stream: The input stream to encode in the multipart form data. - - parameter length: The content length of the stream. - - parameter headers: The HTTP headers for the body part. - */ - public func appendBodyPart(stream stream: NSInputStream, length: UInt64, headers: [String: String]) { - let bodyPart = BodyPart(headers: headers, bodyStream: stream, bodyContentLength: length) - bodyParts.append(bodyPart) - } - - // MARK: - Data Encoding - - /** - Encodes all the appended body parts into a single `NSData` object. - - It is important to note that this method will load all the appended body parts into memory all at the same - time. This method should only be used when the encoded data will have a small memory footprint. For large data - cases, please use the `writeEncodedDataToDisk(fileURL:completionHandler:)` method. - - - throws: An `NSError` if encoding encounters an error. - - - returns: The encoded `NSData` if encoding is successful. - */ - public func encode() throws -> NSData { - if let bodyPartError = bodyPartError { - throw bodyPartError - } - - let encoded = NSMutableData() - - bodyParts.first?.hasInitialBoundary = true - bodyParts.last?.hasFinalBoundary = true - - for bodyPart in bodyParts { - let encodedData = try encodeBodyPart(bodyPart) - encoded.appendData(encodedData) - } - - return encoded - } - - /** - Writes the appended body parts into the given file URL. - - This process is facilitated by reading and writing with input and output streams, respectively. Thus, - this approach is very memory efficient and should be used for large body part data. - - - parameter fileURL: The file URL to write the multipart form data into. - - - throws: An `NSError` if encoding encounters an error. - */ - public func writeEncodedDataToDisk(fileURL: NSURL) throws { - if let bodyPartError = bodyPartError { - throw bodyPartError - } - - if let path = fileURL.path where NSFileManager.defaultManager().fileExistsAtPath(path) { - let failureReason = "A file already exists at the given file URL: \(fileURL)" - throw Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - } else if !fileURL.fileURL { - let failureReason = "The URL does not point to a valid file: \(fileURL)" - throw Error.errorWithCode(NSURLErrorBadURL, failureReason: failureReason) - } - - let outputStream: NSOutputStream - - if let possibleOutputStream = NSOutputStream(URL: fileURL, append: false) { - outputStream = possibleOutputStream - } else { - let failureReason = "Failed to create an output stream with the given URL: \(fileURL)" - throw Error.errorWithCode(NSURLErrorCannotOpenFile, failureReason: failureReason) - } - - outputStream.scheduleInRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - outputStream.open() - - self.bodyParts.first?.hasInitialBoundary = true - self.bodyParts.last?.hasFinalBoundary = true - - for bodyPart in self.bodyParts { - try writeBodyPart(bodyPart, toOutputStream: outputStream) - } - - outputStream.close() - outputStream.removeFromRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - } - - // MARK: - Private - Body Part Encoding - - private func encodeBodyPart(bodyPart: BodyPart) throws -> NSData { - let encoded = NSMutableData() - - let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData() - encoded.appendData(initialData) - - let headerData = encodeHeaderDataForBodyPart(bodyPart) - encoded.appendData(headerData) - - let bodyStreamData = try encodeBodyStreamDataForBodyPart(bodyPart) - encoded.appendData(bodyStreamData) - - if bodyPart.hasFinalBoundary { - encoded.appendData(finalBoundaryData()) - } - - return encoded - } - - private func encodeHeaderDataForBodyPart(bodyPart: BodyPart) -> NSData { - var headerText = "" - - for (key, value) in bodyPart.headers { - headerText += "\(key): \(value)\(EncodingCharacters.CRLF)" - } - headerText += EncodingCharacters.CRLF - - return headerText.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - } - - private func encodeBodyStreamDataForBodyPart(bodyPart: BodyPart) throws -> NSData { - let inputStream = bodyPart.bodyStream - inputStream.scheduleInRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - inputStream.open() - - var error: NSError? - let encoded = NSMutableData() - - while inputStream.hasBytesAvailable { - var buffer = [UInt8](count: streamBufferSize, repeatedValue: 0) - let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize) - - if inputStream.streamError != nil { - error = inputStream.streamError - break - } - - if bytesRead > 0 { - encoded.appendBytes(buffer, length: bytesRead) - } else if bytesRead < 0 { - let failureReason = "Failed to read from input stream: \(inputStream)" - error = Error.errorWithCode(.InputStreamReadFailed, failureReason: failureReason) - break - } else { - break - } - } - - inputStream.close() - inputStream.removeFromRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - - if let error = error { - throw error - } - - return encoded - } - - // MARK: - Private - Writing Body Part to Output Stream - - private func writeBodyPart(bodyPart: BodyPart, toOutputStream outputStream: NSOutputStream) throws { - try writeInitialBoundaryDataForBodyPart(bodyPart, toOutputStream: outputStream) - try writeHeaderDataForBodyPart(bodyPart, toOutputStream: outputStream) - try writeBodyStreamForBodyPart(bodyPart, toOutputStream: outputStream) - try writeFinalBoundaryDataForBodyPart(bodyPart, toOutputStream: outputStream) - } - - private func writeInitialBoundaryDataForBodyPart( - bodyPart: BodyPart, - toOutputStream outputStream: NSOutputStream) - throws - { - let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData() - return try writeData(initialData, toOutputStream: outputStream) - } - - private func writeHeaderDataForBodyPart(bodyPart: BodyPart, toOutputStream outputStream: NSOutputStream) throws { - let headerData = encodeHeaderDataForBodyPart(bodyPart) - return try writeData(headerData, toOutputStream: outputStream) - } - - private func writeBodyStreamForBodyPart(bodyPart: BodyPart, toOutputStream outputStream: NSOutputStream) throws { - let inputStream = bodyPart.bodyStream - inputStream.scheduleInRunLoop(NSRunLoop.currentRunLoop(), forMode: NSDefaultRunLoopMode) - inputStream.open() - - while inputStream.hasBytesAvailable { - var buffer = [UInt8](count: streamBufferSize, repeatedValue: 0) - let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize) - - if let streamError = inputStream.streamError { - throw streamError - } - - if bytesRead > 0 { - if buffer.count != bytesRead { - buffer = Array(buffer[0.. 0 { - if outputStream.hasSpaceAvailable { - let bytesWritten = outputStream.write(buffer, maxLength: bytesToWrite) - - if let streamError = outputStream.streamError { - throw streamError - } - - if bytesWritten < 0 { - let failureReason = "Failed to write to output stream: \(outputStream)" - throw Error.errorWithCode(.OutputStreamWriteFailed, failureReason: failureReason) - } - - bytesToWrite -= bytesWritten - - if bytesToWrite > 0 { - buffer = Array(buffer[bytesWritten.. String { - if let - id = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, pathExtension, nil)?.takeRetainedValue(), - contentType = UTTypeCopyPreferredTagWithClass(id, kUTTagClassMIMEType)?.takeRetainedValue() - { - return contentType as String - } - - return "application/octet-stream" - } - - // MARK: - Private - Content Headers - - private func contentHeaders(name name: String) -> [String: String] { - return ["Content-Disposition": "form-data; name=\"\(name)\""] - } - - private func contentHeaders(name name: String, mimeType: String) -> [String: String] { - return [ - "Content-Disposition": "form-data; name=\"\(name)\"", - "Content-Type": "\(mimeType)" - ] - } - - private func contentHeaders(name name: String, fileName: String, mimeType: String) -> [String: String] { - return [ - "Content-Disposition": "form-data; name=\"\(name)\"; filename=\"\(fileName)\"", - "Content-Type": "\(mimeType)" - ] - } - - // MARK: - Private - Boundary Encoding - - private func initialBoundaryData() -> NSData { - return BoundaryGenerator.boundaryData(boundaryType: .Initial, boundary: boundary) - } - - private func encapsulatedBoundaryData() -> NSData { - return BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundary: boundary) - } - - private func finalBoundaryData() -> NSData { - return BoundaryGenerator.boundaryData(boundaryType: .Final, boundary: boundary) - } - - // MARK: - Private - Errors - - private func setBodyPartError(error: NSError) { - if bodyPartError == nil { - bodyPartError = error - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift deleted file mode 100644 index 63f97b6..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/NetworkReachabilityManager.swift +++ /dev/null @@ -1,239 +0,0 @@ -// NetworkReachabilityManager.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -#if !os(watchOS) - -import Foundation -import SystemConfiguration - -/** - The `NetworkReachabilityManager` class listens for reachability changes of hosts and addresses for both WWAN and - WiFi network interfaces. - - Reachability can be used to determine background information about why a network operation failed, or to retry - network requests when a connection is established. It should not be used to prevent a user from initiating a network - request, as it's possible that an initial request may be required to establish reachability. -*/ -public class NetworkReachabilityManager { - /** - Defines the various states of network reachability. - - - Unknown: It is unknown whether the network is reachable. - - NotReachable: The network is not reachable. - - ReachableOnWWAN: The network is reachable over the WWAN connection. - - ReachableOnWiFi: The network is reachable over the WiFi connection. - */ - public enum NetworkReachabilityStatus { - case Unknown - case NotReachable - case Reachable(ConnectionType) - } - - /** - Defines the various connection types detected by reachability flags. - - - EthernetOrWiFi: The connection type is either over Ethernet or WiFi. - - WWAN: The connection type is a WWAN connection. - */ - public enum ConnectionType { - case EthernetOrWiFi - case WWAN - } - - /// A closure executed when the network reachability status changes. The closure takes a single argument: the - /// network reachability status. - public typealias Listener = NetworkReachabilityStatus -> Void - - // MARK: - Properties - - /// Whether the network is currently reachable. - public var isReachable: Bool { return isReachableOnWWAN || isReachableOnEthernetOrWiFi } - - /// Whether the network is currently reachable over the WWAN interface. - public var isReachableOnWWAN: Bool { return networkReachabilityStatus == .Reachable(.WWAN) } - - /// Whether the network is currently reachable over Ethernet or WiFi interface. - public var isReachableOnEthernetOrWiFi: Bool { return networkReachabilityStatus == .Reachable(.EthernetOrWiFi) } - - /// The current network reachability status. - public var networkReachabilityStatus: NetworkReachabilityStatus { - guard let flags = self.flags else { return .Unknown } - return networkReachabilityStatusForFlags(flags) - } - - /// The dispatch queue to execute the `listener` closure on. - public var listenerQueue: dispatch_queue_t = dispatch_get_main_queue() - - /// A closure executed when the network reachability status changes. - public var listener: Listener? - - private var flags: SCNetworkReachabilityFlags? { - var flags = SCNetworkReachabilityFlags() - - if SCNetworkReachabilityGetFlags(reachability, &flags) { - return flags - } - - return nil - } - - private let reachability: SCNetworkReachability - private var previousFlags: SCNetworkReachabilityFlags - - // MARK: - Initialization - - /** - Creates a `NetworkReachabilityManager` instance with the specified host. - - - parameter host: The host used to evaluate network reachability. - - - returns: The new `NetworkReachabilityManager` instance. - */ - public convenience init?(host: String) { - guard let reachability = SCNetworkReachabilityCreateWithName(nil, host) else { return nil } - self.init(reachability: reachability) - } - - /** - Creates a `NetworkReachabilityManager` instance with the default socket address (`sockaddr_in6`). - - - returns: The new `NetworkReachabilityManager` instance. - */ - public convenience init?() { - var address = sockaddr_in6() - address.sin6_len = UInt8(sizeofValue(address)) - address.sin6_family = sa_family_t(AF_INET6) - - guard let reachability = withUnsafePointer(&address, { - SCNetworkReachabilityCreateWithAddress(nil, UnsafePointer($0)) - }) else { return nil } - - self.init(reachability: reachability) - } - - private init(reachability: SCNetworkReachability) { - self.reachability = reachability - self.previousFlags = SCNetworkReachabilityFlags() - } - - deinit { - stopListening() - } - - // MARK: - Listening - - /** - Starts listening for changes in network reachability status. - - - returns: `true` if listening was started successfully, `false` otherwise. - */ - public func startListening() -> Bool { - var context = SCNetworkReachabilityContext(version: 0, info: nil, retain: nil, release: nil, copyDescription: nil) - context.info = UnsafeMutablePointer(Unmanaged.passUnretained(self).toOpaque()) - - let callbackEnabled = SCNetworkReachabilitySetCallback( - reachability, - { (_, flags, info) in - let reachability = Unmanaged.fromOpaque(COpaquePointer(info)).takeUnretainedValue() - reachability.notifyListener(flags) - }, - &context - ) - - let queueEnabled = SCNetworkReachabilitySetDispatchQueue(reachability, listenerQueue) - - dispatch_async(listenerQueue) { - self.previousFlags = SCNetworkReachabilityFlags() - self.notifyListener(self.flags ?? SCNetworkReachabilityFlags()) - } - - return callbackEnabled && queueEnabled - } - - /** - Stops listening for changes in network reachability status. - */ - public func stopListening() { - SCNetworkReachabilitySetCallback(reachability, nil, nil) - SCNetworkReachabilitySetDispatchQueue(reachability, nil) - } - - // MARK: - Internal - Listener Notification - - func notifyListener(flags: SCNetworkReachabilityFlags) { - guard previousFlags != flags else { return } - previousFlags = flags - - listener?(networkReachabilityStatusForFlags(flags)) - } - - // MARK: - Internal - Network Reachability Status - - func networkReachabilityStatusForFlags(flags: SCNetworkReachabilityFlags) -> NetworkReachabilityStatus { - guard flags.contains(.Reachable) else { return .NotReachable } - - var networkStatus: NetworkReachabilityStatus = .NotReachable - - if !flags.contains(.ConnectionRequired) { networkStatus = .Reachable(.EthernetOrWiFi) } - - if flags.contains(.ConnectionOnDemand) || flags.contains(.ConnectionOnTraffic) { - if !flags.contains(.InterventionRequired) { networkStatus = .Reachable(.EthernetOrWiFi) } - } - - #if os(iOS) - if flags.contains(.IsWWAN) { networkStatus = .Reachable(.WWAN) } - #endif - - return networkStatus - } -} - -// MARK: - - -extension NetworkReachabilityManager.NetworkReachabilityStatus: Equatable {} - -/** - Returns whether the two network reachability status values are equal. - - - parameter lhs: The left-hand side value to compare. - - parameter rhs: The right-hand side value to compare. - - - returns: `true` if the two values are equal, `false` otherwise. -*/ -public func ==( - lhs: NetworkReachabilityManager.NetworkReachabilityStatus, - rhs: NetworkReachabilityManager.NetworkReachabilityStatus) - -> Bool -{ - switch (lhs, rhs) { - case (.Unknown, .Unknown): - return true - case (.NotReachable, .NotReachable): - return true - case let (.Reachable(lhsConnectionType), .Reachable(rhsConnectionType)): - return lhsConnectionType == rhsConnectionType - default: - return false - } -} - -#endif diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Notifications.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Notifications.swift deleted file mode 100644 index 1c23540..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Notifications.swift +++ /dev/null @@ -1,45 +0,0 @@ -// Notifications.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Contains all the `NSNotification` names posted by Alamofire with descriptions of each notification's payload. -public struct Notifications { - /// Used as a namespace for all `NSURLSessionTask` related notifications. - public struct Task { - /// Notification posted when an `NSURLSessionTask` is resumed. The notification `object` contains the resumed - /// `NSURLSessionTask`. - public static let DidResume = "com.alamofire.notifications.task.didResume" - - /// Notification posted when an `NSURLSessionTask` is suspended. The notification `object` contains the - /// suspended `NSURLSessionTask`. - public static let DidSuspend = "com.alamofire.notifications.task.didSuspend" - - /// Notification posted when an `NSURLSessionTask` is cancelled. The notification `object` contains the - /// cancelled `NSURLSessionTask`. - public static let DidCancel = "com.alamofire.notifications.task.didCancel" - - /// Notification posted when an `NSURLSessionTask` is completed. The notification `object` contains the - /// completed `NSURLSessionTask`. - public static let DidComplete = "com.alamofire.notifications.task.didComplete" - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift deleted file mode 100644 index adf61c5..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ParameterEncoding.swift +++ /dev/null @@ -1,252 +0,0 @@ -// ParameterEncoding.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - HTTP method definitions. - - See https://tools.ietf.org/html/rfc7231#section-4.3 -*/ -public enum Method: String { - case OPTIONS, GET, HEAD, POST, PUT, PATCH, DELETE, TRACE, CONNECT -} - -// MARK: ParameterEncoding - -/** - Used to specify the way in which a set of parameters are applied to a URL request. - - - `URL`: Creates a query string to be set as or appended to any existing URL query for `GET`, `HEAD`, - and `DELETE` requests, or set as the body for requests with any other HTTP method. The - `Content-Type` HTTP header field of an encoded request with HTTP body is set to - `application/x-www-form-urlencoded; charset=utf-8`. Since there is no published specification - for how to encode collection types, the convention of appending `[]` to the key for array - values (`foo[]=1&foo[]=2`), and appending the key surrounded by square brackets for nested - dictionary values (`foo[bar]=baz`). - - - `URLEncodedInURL`: Creates query string to be set as or appended to any existing URL query. Uses the same - implementation as the `.URL` case, but always applies the encoded result to the URL. - - - `JSON`: Uses `NSJSONSerialization` to create a JSON representation of the parameters object, which is - set as the body of the request. The `Content-Type` HTTP header field of an encoded request is - set to `application/json`. - - - `PropertyList`: Uses `NSPropertyListSerialization` to create a plist representation of the parameters object, - according to the associated format and write options values, which is set as the body of the - request. The `Content-Type` HTTP header field of an encoded request is set to - `application/x-plist`. - - - `Custom`: Uses the associated closure value to construct a new request given an existing request and - parameters. -*/ -public enum ParameterEncoding { - case URL - case URLEncodedInURL - case JSON - case PropertyList(NSPropertyListFormat, NSPropertyListWriteOptions) - case Custom((URLRequestConvertible, [String: AnyObject]?) -> (NSMutableURLRequest, NSError?)) - - /** - Creates a URL request by encoding parameters and applying them onto an existing request. - - - parameter URLRequest: The request to have parameters applied - - parameter parameters: The parameters to apply - - - returns: A tuple containing the constructed request and the error that occurred during parameter encoding, - if any. - */ - public func encode( - URLRequest: URLRequestConvertible, - parameters: [String: AnyObject]?) - -> (NSMutableURLRequest, NSError?) - { - var mutableURLRequest = URLRequest.URLRequest - - guard let parameters = parameters else { return (mutableURLRequest, nil) } - - var encodingError: NSError? = nil - - switch self { - case .URL, .URLEncodedInURL: - func query(parameters: [String: AnyObject]) -> String { - var components: [(String, String)] = [] - - for key in parameters.keys.sort(<) { - let value = parameters[key]! - components += queryComponents(key, value) - } - - return (components.map { "\($0)=\($1)" } as [String]).joinWithSeparator("&") - } - - func encodesParametersInURL(method: Method) -> Bool { - switch self { - case .URLEncodedInURL: - return true - default: - break - } - - switch method { - case .GET, .HEAD, .DELETE: - return true - default: - return false - } - } - - if let method = Method(rawValue: mutableURLRequest.HTTPMethod) where encodesParametersInURL(method) { - if let - URLComponents = NSURLComponents(URL: mutableURLRequest.URL!, resolvingAgainstBaseURL: false) - where !parameters.isEmpty - { - let percentEncodedQuery = (URLComponents.percentEncodedQuery.map { $0 + "&" } ?? "") + query(parameters) - URLComponents.percentEncodedQuery = percentEncodedQuery - mutableURLRequest.URL = URLComponents.URL - } - } else { - if mutableURLRequest.valueForHTTPHeaderField("Content-Type") == nil { - mutableURLRequest.setValue( - "application/x-www-form-urlencoded; charset=utf-8", - forHTTPHeaderField: "Content-Type" - ) - } - - mutableURLRequest.HTTPBody = query(parameters).dataUsingEncoding( - NSUTF8StringEncoding, - allowLossyConversion: false - ) - } - case .JSON: - do { - let options = NSJSONWritingOptions() - let data = try NSJSONSerialization.dataWithJSONObject(parameters, options: options) - - mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") - mutableURLRequest.HTTPBody = data - } catch { - encodingError = error as NSError - } - case .PropertyList(let format, let options): - do { - let data = try NSPropertyListSerialization.dataWithPropertyList( - parameters, - format: format, - options: options - ) - mutableURLRequest.setValue("application/x-plist", forHTTPHeaderField: "Content-Type") - mutableURLRequest.HTTPBody = data - } catch { - encodingError = error as NSError - } - case .Custom(let closure): - (mutableURLRequest, encodingError) = closure(mutableURLRequest, parameters) - } - - return (mutableURLRequest, encodingError) - } - - /** - Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion. - - - parameter key: The key of the query component. - - parameter value: The value of the query component. - - - returns: The percent-escaped, URL encoded query string components. - */ - public func queryComponents(key: String, _ value: AnyObject) -> [(String, String)] { - var components: [(String, String)] = [] - - if let dictionary = value as? [String: AnyObject] { - for (nestedKey, value) in dictionary { - components += queryComponents("\(key)[\(nestedKey)]", value) - } - } else if let array = value as? [AnyObject] { - for value in array { - components += queryComponents("\(key)[]", value) - } - } else { - components.append((escape(key), escape("\(value)"))) - } - - return components - } - - /** - Returns a percent-escaped string following RFC 3986 for a query string key or value. - - RFC 3986 states that the following characters are "reserved" characters. - - - General Delimiters: ":", "#", "[", "]", "@", "?", "/" - - Sub-Delimiters: "!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=" - - In RFC 3986 - Section 3.4, it states that the "?" and "/" characters should not be escaped to allow - query strings to include a URL. Therefore, all "reserved" characters with the exception of "?" and "/" - should be percent-escaped in the query string. - - - parameter string: The string to be percent-escaped. - - - returns: The percent-escaped string. - */ - public func escape(string: String) -> String { - let generalDelimitersToEncode = ":#[]@" // does not include "?" or "/" due to RFC 3986 - Section 3.4 - let subDelimitersToEncode = "!$&'()*+,;=" - - let allowedCharacterSet = NSCharacterSet.URLQueryAllowedCharacterSet().mutableCopy() as! NSMutableCharacterSet - allowedCharacterSet.removeCharactersInString(generalDelimitersToEncode + subDelimitersToEncode) - - var escaped = "" - - //========================================================================================================== - // - // Batching is required for escaping due to an internal bug in iOS 8.1 and 8.2. Encoding more than a few - // hundred Chinense characters causes various malloc error crashes. To avoid this issue until iOS 8 is no - // longer supported, batching MUST be used for encoding. This introduces roughly a 20% overhead. For more - // info, please refer to: - // - // - https://github.com/Alamofire/Alamofire/issues/206 - // - //========================================================================================================== - - if #available(iOS 8.3, OSX 10.10, *) { - escaped = string.stringByAddingPercentEncodingWithAllowedCharacters(allowedCharacterSet) ?? string - } else { - let batchSize = 50 - var index = string.startIndex - - while index != string.endIndex { - let startIndex = index - let endIndex = index.advancedBy(batchSize, limit: string.endIndex) - let range = Range(start: startIndex, end: endIndex) - - let substring = string.substringWithRange(range) - - escaped += substring.stringByAddingPercentEncodingWithAllowedCharacters(allowedCharacterSet) ?? substring - - index = endIndex - } - } - - return escaped - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Request.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Request.swift deleted file mode 100644 index fa196a2..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Request.swift +++ /dev/null @@ -1,552 +0,0 @@ -// Request.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - Responsible for sending a request and receiving the response and associated data from the server, as well as - managing its underlying `NSURLSessionTask`. -*/ -public class Request { - - // MARK: - Properties - - /// The delegate for the underlying task. - public let delegate: TaskDelegate - - /// The underlying task. - public var task: NSURLSessionTask { return delegate.task } - - /// The session belonging to the underlying task. - public let session: NSURLSession - - /// The request sent or to be sent to the server. - public var request: NSURLRequest? { return task.originalRequest } - - /// The response received from the server, if any. - public var response: NSHTTPURLResponse? { return task.response as? NSHTTPURLResponse } - - /// The progress of the request lifecycle. - public var progress: NSProgress { return delegate.progress } - - var startTime: CFAbsoluteTime? - var endTime: CFAbsoluteTime? - - // MARK: - Lifecycle - - init(session: NSURLSession, task: NSURLSessionTask) { - self.session = session - - switch task { - case is NSURLSessionUploadTask: - delegate = UploadTaskDelegate(task: task) - case is NSURLSessionDataTask: - delegate = DataTaskDelegate(task: task) - case is NSURLSessionDownloadTask: - delegate = DownloadTaskDelegate(task: task) - default: - delegate = TaskDelegate(task: task) - } - - delegate.queue.addOperationWithBlock { self.endTime = CFAbsoluteTimeGetCurrent() } - } - - // MARK: - Authentication - - /** - Associates an HTTP Basic credential with the request. - - - parameter user: The user. - - parameter password: The password. - - parameter persistence: The URL credential persistence. `.ForSession` by default. - - - returns: The request. - */ - public func authenticate( - user user: String, - password: String, - persistence: NSURLCredentialPersistence = .ForSession) - -> Self - { - let credential = NSURLCredential(user: user, password: password, persistence: persistence) - - return authenticate(usingCredential: credential) - } - - /** - Associates a specified credential with the request. - - - parameter credential: The credential. - - - returns: The request. - */ - public func authenticate(usingCredential credential: NSURLCredential) -> Self { - delegate.credential = credential - - return self - } - - // MARK: - Progress - - /** - Sets a closure to be called periodically during the lifecycle of the request as data is written to or read - from the server. - - - For uploads, the progress closure returns the bytes written, total bytes written, and total bytes expected - to write. - - For downloads and data tasks, the progress closure returns the bytes read, total bytes read, and total bytes - expected to read. - - - parameter closure: The code to be executed periodically during the lifecycle of the request. - - - returns: The request. - */ - public func progress(closure: ((Int64, Int64, Int64) -> Void)? = nil) -> Self { - if let uploadDelegate = delegate as? UploadTaskDelegate { - uploadDelegate.uploadProgress = closure - } else if let dataDelegate = delegate as? DataTaskDelegate { - dataDelegate.dataProgress = closure - } else if let downloadDelegate = delegate as? DownloadTaskDelegate { - downloadDelegate.downloadProgress = closure - } - - return self - } - - /** - Sets a closure to be called periodically during the lifecycle of the request as data is read from the server. - - This closure returns the bytes most recently received from the server, not including data from previous calls. - If this closure is set, data will only be available within this closure, and will not be saved elsewhere. It is - also important to note that the `response` closure will be called with nil `responseData`. - - - parameter closure: The code to be executed periodically during the lifecycle of the request. - - - returns: The request. - */ - public func stream(closure: (NSData -> Void)? = nil) -> Self { - if let dataDelegate = delegate as? DataTaskDelegate { - dataDelegate.dataStream = closure - } - - return self - } - - // MARK: - State - - /** - Resumes the request. - */ - public func resume() { - if startTime == nil { startTime = CFAbsoluteTimeGetCurrent() } - - task.resume() - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidResume, object: task) - } - - /** - Suspends the request. - */ - public func suspend() { - task.suspend() - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidSuspend, object: task) - } - - /** - Cancels the request. - */ - public func cancel() { - if let - downloadDelegate = delegate as? DownloadTaskDelegate, - downloadTask = downloadDelegate.downloadTask - { - downloadTask.cancelByProducingResumeData { data in - downloadDelegate.resumeData = data - } - } else { - task.cancel() - } - - NSNotificationCenter.defaultCenter().postNotificationName(Notifications.Task.DidCancel, object: task) - } - - // MARK: - TaskDelegate - - /** - The task delegate is responsible for handling all delegate callbacks for the underlying task as well as - executing all operations attached to the serial operation queue upon task completion. - */ - public class TaskDelegate: NSObject { - - /// The serial operation queue used to execute all operations after the task completes. - public let queue: NSOperationQueue - - let task: NSURLSessionTask - let progress: NSProgress - - var data: NSData? { return nil } - var error: NSError? - - var initialResponseTime: CFAbsoluteTime? - var credential: NSURLCredential? - - init(task: NSURLSessionTask) { - self.task = task - self.progress = NSProgress(totalUnitCount: 0) - self.queue = { - let operationQueue = NSOperationQueue() - operationQueue.maxConcurrentOperationCount = 1 - operationQueue.suspended = true - - if #available(OSX 10.10, *) { - operationQueue.qualityOfService = NSQualityOfService.Utility - } - - return operationQueue - }() - } - - deinit { - queue.cancelAllOperations() - queue.suspended = false - } - - // MARK: - NSURLSessionTaskDelegate - - // MARK: Override Closures - - var taskWillPerformHTTPRedirection: ((NSURLSession, NSURLSessionTask, NSHTTPURLResponse, NSURLRequest) -> NSURLRequest?)? - var taskDidReceiveChallenge: ((NSURLSession, NSURLSessionTask, NSURLAuthenticationChallenge) -> (NSURLSessionAuthChallengeDisposition, NSURLCredential?))? - var taskNeedNewBodyStream: ((NSURLSession, NSURLSessionTask) -> NSInputStream?)? - var taskDidCompleteWithError: ((NSURLSession, NSURLSessionTask, NSError?) -> Void)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - willPerformHTTPRedirection response: NSHTTPURLResponse, - newRequest request: NSURLRequest, - completionHandler: ((NSURLRequest?) -> Void)) - { - var redirectRequest: NSURLRequest? = request - - if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection { - redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request) - } - - completionHandler(redirectRequest) - } - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didReceiveChallenge challenge: NSURLAuthenticationChallenge, - completionHandler: ((NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)) - { - var disposition: NSURLSessionAuthChallengeDisposition = .PerformDefaultHandling - var credential: NSURLCredential? - - if let taskDidReceiveChallenge = taskDidReceiveChallenge { - (disposition, credential) = taskDidReceiveChallenge(session, task, challenge) - } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { - let host = challenge.protectionSpace.host - - if let - serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicyForHost(host), - serverTrust = challenge.protectionSpace.serverTrust - { - if serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) { - disposition = .UseCredential - credential = NSURLCredential(forTrust: serverTrust) - } else { - disposition = .CancelAuthenticationChallenge - } - } - } else { - if challenge.previousFailureCount > 0 { - disposition = .CancelAuthenticationChallenge - } else { - credential = self.credential ?? session.configuration.URLCredentialStorage?.defaultCredentialForProtectionSpace(challenge.protectionSpace) - - if credential != nil { - disposition = .UseCredential - } - } - } - - completionHandler(disposition, credential) - } - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - needNewBodyStream completionHandler: ((NSInputStream?) -> Void)) - { - var bodyStream: NSInputStream? - - if let taskNeedNewBodyStream = taskNeedNewBodyStream { - bodyStream = taskNeedNewBodyStream(session, task) - } - - completionHandler(bodyStream) - } - - func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { - if let taskDidCompleteWithError = taskDidCompleteWithError { - taskDidCompleteWithError(session, task, error) - } else { - if let error = error { - self.error = error - - if let - downloadDelegate = self as? DownloadTaskDelegate, - userInfo = error.userInfo as? [String: AnyObject], - resumeData = userInfo[NSURLSessionDownloadTaskResumeData] as? NSData - { - downloadDelegate.resumeData = resumeData - } - } - - queue.suspended = false - } - } - } - - // MARK: - DataTaskDelegate - - class DataTaskDelegate: TaskDelegate, NSURLSessionDataDelegate { - var dataTask: NSURLSessionDataTask? { return task as? NSURLSessionDataTask } - - private var totalBytesReceived: Int64 = 0 - private var mutableData: NSMutableData - override var data: NSData? { - if dataStream != nil { - return nil - } else { - return mutableData - } - } - - private var expectedContentLength: Int64? - private var dataProgress: ((bytesReceived: Int64, totalBytesReceived: Int64, totalBytesExpectedToReceive: Int64) -> Void)? - private var dataStream: ((data: NSData) -> Void)? - - override init(task: NSURLSessionTask) { - mutableData = NSMutableData() - super.init(task: task) - } - - // MARK: - NSURLSessionDataDelegate - - // MARK: Override Closures - - var dataTaskDidReceiveResponse: ((NSURLSession, NSURLSessionDataTask, NSURLResponse) -> NSURLSessionResponseDisposition)? - var dataTaskDidBecomeDownloadTask: ((NSURLSession, NSURLSessionDataTask, NSURLSessionDownloadTask) -> Void)? - var dataTaskDidReceiveData: ((NSURLSession, NSURLSessionDataTask, NSData) -> Void)? - var dataTaskWillCacheResponse: ((NSURLSession, NSURLSessionDataTask, NSCachedURLResponse) -> NSCachedURLResponse?)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didReceiveResponse response: NSURLResponse, - completionHandler: (NSURLSessionResponseDisposition -> Void)) - { - var disposition: NSURLSessionResponseDisposition = .Allow - - expectedContentLength = response.expectedContentLength - - if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse { - disposition = dataTaskDidReceiveResponse(session, dataTask, response) - } - - completionHandler(disposition) - } - - func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - didBecomeDownloadTask downloadTask: NSURLSessionDownloadTask) - { - dataTaskDidBecomeDownloadTask?(session, dataTask, downloadTask) - } - - func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { - if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } - - if let dataTaskDidReceiveData = dataTaskDidReceiveData { - dataTaskDidReceiveData(session, dataTask, data) - } else { - if let dataStream = dataStream { - dataStream(data: data) - } else { - mutableData.appendData(data) - } - - totalBytesReceived += data.length - let totalBytesExpected = dataTask.response?.expectedContentLength ?? NSURLSessionTransferSizeUnknown - - progress.totalUnitCount = totalBytesExpected - progress.completedUnitCount = totalBytesReceived - - dataProgress?( - bytesReceived: Int64(data.length), - totalBytesReceived: totalBytesReceived, - totalBytesExpectedToReceive: totalBytesExpected - ) - } - } - - func URLSession( - session: NSURLSession, - dataTask: NSURLSessionDataTask, - willCacheResponse proposedResponse: NSCachedURLResponse, - completionHandler: ((NSCachedURLResponse?) -> Void)) - { - var cachedResponse: NSCachedURLResponse? = proposedResponse - - if let dataTaskWillCacheResponse = dataTaskWillCacheResponse { - cachedResponse = dataTaskWillCacheResponse(session, dataTask, proposedResponse) - } - - completionHandler(cachedResponse) - } - } -} - -// MARK: - CustomStringConvertible - -extension Request: CustomStringConvertible { - - /** - The textual representation used when written to an output stream, which includes the HTTP method and URL, as - well as the response status code if a response has been received. - */ - public var description: String { - var components: [String] = [] - - if let HTTPMethod = request?.HTTPMethod { - components.append(HTTPMethod) - } - - if let URLString = request?.URL?.absoluteString { - components.append(URLString) - } - - if let response = response { - components.append("(\(response.statusCode))") - } - - return components.joinWithSeparator(" ") - } -} - -// MARK: - CustomDebugStringConvertible - -extension Request: CustomDebugStringConvertible { - func cURLRepresentation() -> String { - var components = ["$ curl -i"] - - guard let - request = self.request, - URL = request.URL, - host = URL.host - else { - return "$ curl command could not be created" - } - - if let HTTPMethod = request.HTTPMethod where HTTPMethod != "GET" { - components.append("-X \(HTTPMethod)") - } - - if let credentialStorage = self.session.configuration.URLCredentialStorage { - let protectionSpace = NSURLProtectionSpace( - host: host, - port: URL.port?.integerValue ?? 0, - `protocol`: URL.scheme, - realm: host, - authenticationMethod: NSURLAuthenticationMethodHTTPBasic - ) - - if let credentials = credentialStorage.credentialsForProtectionSpace(protectionSpace)?.values { - for credential in credentials { - components.append("-u \(credential.user!):\(credential.password!)") - } - } else { - if let credential = delegate.credential { - components.append("-u \(credential.user!):\(credential.password!)") - } - } - } - - if session.configuration.HTTPShouldSetCookies { - if let - cookieStorage = session.configuration.HTTPCookieStorage, - cookies = cookieStorage.cookiesForURL(URL) where !cookies.isEmpty - { - let string = cookies.reduce("") { $0 + "\($1.name)=\($1.value ?? String());" } - components.append("-b \"\(string.substringToIndex(string.endIndex.predecessor()))\"") - } - } - - if let headerFields = request.allHTTPHeaderFields { - for (field, value) in headerFields { - switch field { - case "Cookie": - continue - default: - components.append("-H \"\(field): \(value)\"") - } - } - } - - if let additionalHeaders = session.configuration.HTTPAdditionalHeaders { - for (field, value) in additionalHeaders { - switch field { - case "Cookie": - continue - default: - components.append("-H \"\(field): \(value)\"") - } - } - } - - if let - HTTPBodyData = request.HTTPBody, - HTTPBody = String(data: HTTPBodyData, encoding: NSUTF8StringEncoding) - { - let escapedBody = HTTPBody.stringByReplacingOccurrencesOfString("\"", withString: "\\\"") - components.append("-d \"\(escapedBody)\"") - } - - components.append("\"\(URL.absoluteString)\"") - - return components.joinWithSeparator(" \\\n\t") - } - - /// The textual representation used when written to an output stream, in the form of a cURL command. - public var debugDescription: String { - return cURLRepresentation() - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Response.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Response.swift deleted file mode 100644 index 153eda5..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Response.swift +++ /dev/null @@ -1,95 +0,0 @@ -// Response.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Used to store all response data returned from a completed `Request`. -public struct Response { - /// The URL request sent to the server. - public let request: NSURLRequest? - - /// The server's response to the URL request. - public let response: NSHTTPURLResponse? - - /// The data returned by the server. - public let data: NSData? - - /// The result of response serialization. - public let result: Result - - /// The timeline of the complete lifecycle of the `Request`. - public let timeline: Timeline - - /** - Initializes the `Response` instance with the specified URL request, URL response, server data and response - serialization result. - - - parameter request: The URL request sent to the server. - - parameter response: The server's response to the URL request. - - parameter data: The data returned by the server. - - parameter result: The result of response serialization. - - parameter timeline: The timeline of the complete lifecycle of the `Request`. Defaults to `Timeline()`. - - - returns: the new `Response` instance. - */ - public init( - request: NSURLRequest?, - response: NSHTTPURLResponse?, - data: NSData?, - result: Result, - timeline: Timeline = Timeline()) - { - self.request = request - self.response = response - self.data = data - self.result = result - self.timeline = timeline - } -} - -// MARK: - CustomStringConvertible - -extension Response: CustomStringConvertible { - /// The textual representation used when written to an output stream, which includes whether the result was a - /// success or failure. - public var description: String { - return result.debugDescription - } -} - -// MARK: - CustomDebugStringConvertible - -extension Response: CustomDebugStringConvertible { - /// The debug textual representation used when written to an output stream, which includes the URL request, the URL - /// response, the server data and the response serialization result. - public var debugDescription: String { - var output: [String] = [] - - output.append(request != nil ? "[Request]: \(request!)" : "[Request]: nil") - output.append(response != nil ? "[Response]: \(response!)" : "[Response]: nil") - output.append("[Data]: \(data?.length ?? 0) bytes") - output.append("[Result]: \(result.debugDescription)") - output.append("[Timeline]: \(timeline.debugDescription)") - - return output.joinWithSeparator("\n") - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift deleted file mode 100644 index e636072..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift +++ /dev/null @@ -1,364 +0,0 @@ -// ResponseSerialization.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -// MARK: ResponseSerializer - -/** - The type in which all response serializers must conform to in order to serialize a response. -*/ -public protocol ResponseSerializerType { - /// The type of serialized object to be created by this `ResponseSerializerType`. - typealias SerializedObject - - /// The type of error to be created by this `ResponseSerializer` if serialization fails. - typealias ErrorObject: ErrorType - - /** - A closure used by response handlers that takes a request, response, data and error and returns a result. - */ - var serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result { get } -} - -// MARK: - - -/** - A generic `ResponseSerializerType` used to serialize a request, response, and data into a serialized object. -*/ -public struct ResponseSerializer: ResponseSerializerType { - /// The type of serialized object to be created by this `ResponseSerializer`. - public typealias SerializedObject = Value - - /// The type of error to be created by this `ResponseSerializer` if serialization fails. - public typealias ErrorObject = Error - - /** - A closure used by response handlers that takes a request, response, data and error and returns a result. - */ - public var serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result - - /** - Initializes the `ResponseSerializer` instance with the given serialize response closure. - - - parameter serializeResponse: The closure used to serialize the response. - - - returns: The new generic response serializer instance. - */ - public init(serializeResponse: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Result) { - self.serializeResponse = serializeResponse - } -} - -// MARK: - Default - -extension Request { - - /** - Adds a handler to be called once the request has finished. - - - parameter queue: The queue on which the completion handler is dispatched. - - parameter completionHandler: The code to be executed once the request has finished. - - - returns: The request. - */ - public func response( - queue queue: dispatch_queue_t? = nil, - completionHandler: (NSURLRequest?, NSHTTPURLResponse?, NSData?, NSError?) -> Void) - -> Self - { - delegate.queue.addOperationWithBlock { - dispatch_async(queue ?? dispatch_get_main_queue()) { - completionHandler(self.request, self.response, self.delegate.data, self.delegate.error) - } - } - - return self - } - - /** - Adds a handler to be called once the request has finished. - - - parameter queue: The queue on which the completion handler is dispatched. - - parameter responseSerializer: The response serializer responsible for serializing the request, response, - and data. - - parameter completionHandler: The code to be executed once the request has finished. - - - returns: The request. - */ - public func response( - queue queue: dispatch_queue_t? = nil, - responseSerializer: T, - completionHandler: Response -> Void) - -> Self - { - delegate.queue.addOperationWithBlock { - let result = responseSerializer.serializeResponse( - self.request, - self.response, - self.delegate.data, - self.delegate.error - ) - - let requestCompletedTime = self.endTime ?? CFAbsoluteTimeGetCurrent() - let initialResponseTime = self.delegate.initialResponseTime ?? requestCompletedTime - - let timeline = Timeline( - requestStartTime: self.startTime ?? CFAbsoluteTimeGetCurrent(), - initialResponseTime: initialResponseTime, - requestCompletedTime: requestCompletedTime, - serializationCompletedTime: CFAbsoluteTimeGetCurrent() - ) - - let response = Response( - request: self.request, - response: self.response, - data: self.delegate.data, - result: result, - timeline: timeline - ) - - dispatch_async(queue ?? dispatch_get_main_queue()) { completionHandler(response) } - } - - return self - } -} - -// MARK: - Data - -extension Request { - - /** - Creates a response serializer that returns the associated data as-is. - - - returns: A data response serializer. - */ - public static func dataResponseSerializer() -> ResponseSerializer { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success(NSData()) } - - guard let validData = data else { - let failureReason = "Data could not be serialized. Input data was nil." - let error = Error.errorWithCode(.DataSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - return .Success(validData) - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter completionHandler: The code to be executed once the request has finished. - - - returns: The request. - */ - public func responseData(completionHandler: Response -> Void) -> Self { - return response(responseSerializer: Request.dataResponseSerializer(), completionHandler: completionHandler) - } -} - -// MARK: - String - -extension Request { - - /** - Creates a response serializer that returns a string initialized from the response data with the specified - string encoding. - - - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the server - response, falling back to the default HTTP default character set, ISO-8859-1. - - - returns: A string response serializer. - */ - public static func stringResponseSerializer( - var encoding encoding: NSStringEncoding? = nil) - -> ResponseSerializer - { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success("") } - - guard let validData = data else { - let failureReason = "String could not be serialized. Input data was nil." - let error = Error.errorWithCode(.StringSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - if let encodingName = response?.textEncodingName where encoding == nil { - encoding = CFStringConvertEncodingToNSStringEncoding( - CFStringConvertIANACharSetNameToEncoding(encodingName) - ) - } - - let actualEncoding = encoding ?? NSISOLatin1StringEncoding - - if let string = String(data: validData, encoding: actualEncoding) { - return .Success(string) - } else { - let failureReason = "String could not be serialized with encoding: \(actualEncoding)" - let error = Error.errorWithCode(.StringSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the - server response, falling back to the default HTTP default character set, - ISO-8859-1. - - parameter completionHandler: A closure to be executed once the request has finished. - - - returns: The request. - */ - public func responseString( - encoding encoding: NSStringEncoding? = nil, - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.stringResponseSerializer(encoding: encoding), - completionHandler: completionHandler - ) - } -} - -// MARK: - JSON - -extension Request { - - /** - Creates a response serializer that returns a JSON object constructed from the response data using - `NSJSONSerialization` with the specified reading options. - - - parameter options: The JSON serialization reading options. `.AllowFragments` by default. - - - returns: A JSON object response serializer. - */ - public static func JSONResponseSerializer( - options options: NSJSONReadingOptions = .AllowFragments) - -> ResponseSerializer - { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success(NSNull()) } - - guard let validData = data where validData.length > 0 else { - let failureReason = "JSON could not be serialized. Input data was nil or zero length." - let error = Error.errorWithCode(.JSONSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - do { - let JSON = try NSJSONSerialization.JSONObjectWithData(validData, options: options) - return .Success(JSON) - } catch { - return .Failure(error as NSError) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter options: The JSON serialization reading options. `.AllowFragments` by default. - - parameter completionHandler: A closure to be executed once the request has finished. - - - returns: The request. - */ - public func responseJSON( - options options: NSJSONReadingOptions = .AllowFragments, - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.JSONResponseSerializer(options: options), - completionHandler: completionHandler - ) - } -} - -// MARK: - Property List - -extension Request { - - /** - Creates a response serializer that returns an object constructed from the response data using - `NSPropertyListSerialization` with the specified reading options. - - - parameter options: The property list reading options. `NSPropertyListReadOptions()` by default. - - - returns: A property list object response serializer. - */ - public static func propertyListResponseSerializer( - options options: NSPropertyListReadOptions = NSPropertyListReadOptions()) - -> ResponseSerializer - { - return ResponseSerializer { _, response, data, error in - guard error == nil else { return .Failure(error!) } - - if let response = response where response.statusCode == 204 { return .Success(NSNull()) } - - guard let validData = data where validData.length > 0 else { - let failureReason = "Property list could not be serialized. Input data was nil or zero length." - let error = Error.errorWithCode(.PropertyListSerializationFailed, failureReason: failureReason) - return .Failure(error) - } - - do { - let plist = try NSPropertyListSerialization.propertyListWithData(validData, options: options, format: nil) - return .Success(plist) - } catch { - return .Failure(error as NSError) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter options: The property list reading options. `0` by default. - - parameter completionHandler: A closure to be executed once the request has finished. The closure takes 3 - arguments: the URL request, the URL response, the server data and the result - produced while creating the property list. - - - returns: The request. - */ - public func responsePropertyList( - options options: NSPropertyListReadOptions = NSPropertyListReadOptions(), - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.propertyListResponseSerializer(options: options), - completionHandler: completionHandler - ) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Result.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Result.swift deleted file mode 100644 index a8557ca..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Result.swift +++ /dev/null @@ -1,101 +0,0 @@ -// Result.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/** - Used to represent whether a request was successful or encountered an error. - - - Success: The request and all post processing operations were successful resulting in the serialization of the - provided associated value. - - Failure: The request encountered an error resulting in a failure. The associated values are the original data - provided by the server as well as the error that caused the failure. -*/ -public enum Result { - case Success(Value) - case Failure(Error) - - /// Returns `true` if the result is a success, `false` otherwise. - public var isSuccess: Bool { - switch self { - case .Success: - return true - case .Failure: - return false - } - } - - /// Returns `true` if the result is a failure, `false` otherwise. - public var isFailure: Bool { - return !isSuccess - } - - /// Returns the associated value if the result is a success, `nil` otherwise. - public var value: Value? { - switch self { - case .Success(let value): - return value - case .Failure: - return nil - } - } - - /// Returns the associated error value if the result is a failure, `nil` otherwise. - public var error: Error? { - switch self { - case .Success: - return nil - case .Failure(let error): - return error - } - } -} - -// MARK: - CustomStringConvertible - -extension Result: CustomStringConvertible { - /// The textual representation used when written to an output stream, which includes whether the result was a - /// success or failure. - public var description: String { - switch self { - case .Success: - return "SUCCESS" - case .Failure: - return "FAILURE" - } - } -} - -// MARK: - CustomDebugStringConvertible - -extension Result: CustomDebugStringConvertible { - /// The debug textual representation used when written to an output stream, which includes whether the result was a - /// success or failure in addition to the value or error. - public var debugDescription: String { - switch self { - case .Success(let value): - return "SUCCESS: \(value)" - case .Failure(let error): - return "FAILURE: \(error)" - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift deleted file mode 100644 index 07cd848..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/ServerTrustPolicy.swift +++ /dev/null @@ -1,302 +0,0 @@ -// ServerTrustPolicy.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Responsible for managing the mapping of `ServerTrustPolicy` objects to a given host. -public class ServerTrustPolicyManager { - /// The dictionary of policies mapped to a particular host. - public let policies: [String: ServerTrustPolicy] - - /** - Initializes the `ServerTrustPolicyManager` instance with the given policies. - - Since different servers and web services can have different leaf certificates, intermediate and even root - certficates, it is important to have the flexibility to specify evaluation policies on a per host basis. This - allows for scenarios such as using default evaluation for host1, certificate pinning for host2, public key - pinning for host3 and disabling evaluation for host4. - - - parameter policies: A dictionary of all policies mapped to a particular host. - - - returns: The new `ServerTrustPolicyManager` instance. - */ - public init(policies: [String: ServerTrustPolicy]) { - self.policies = policies - } - - /** - Returns the `ServerTrustPolicy` for the given host if applicable. - - By default, this method will return the policy that perfectly matches the given host. Subclasses could override - this method and implement more complex mapping implementations such as wildcards. - - - parameter host: The host to use when searching for a matching policy. - - - returns: The server trust policy for the given host if found. - */ - public func serverTrustPolicyForHost(host: String) -> ServerTrustPolicy? { - return policies[host] - } -} - -// MARK: - - -extension NSURLSession { - private struct AssociatedKeys { - static var ManagerKey = "NSURLSession.ServerTrustPolicyManager" - } - - var serverTrustPolicyManager: ServerTrustPolicyManager? { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.ManagerKey) as? ServerTrustPolicyManager - } - set (manager) { - objc_setAssociatedObject(self, &AssociatedKeys.ManagerKey, manager, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } -} - -// MARK: - ServerTrustPolicy - -/** - The `ServerTrustPolicy` evaluates the server trust generally provided by an `NSURLAuthenticationChallenge` when - connecting to a server over a secure HTTPS connection. The policy configuration then evaluates the server trust - with a given set of criteria to determine whether the server trust is valid and the connection should be made. - - Using pinned certificates or public keys for evaluation helps prevent man-in-the-middle (MITM) attacks and other - vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged - to route all communication over an HTTPS connection with pinning enabled. - - - PerformDefaultEvaluation: Uses the default server trust evaluation while allowing you to control whether to - validate the host provided by the challenge. Applications are encouraged to always - validate the host in production environments to guarantee the validity of the server's - certificate chain. - - - PinCertificates: Uses the pinned certificates to validate the server trust. The server trust is - considered valid if one of the pinned certificates match one of the server certificates. - By validating both the certificate chain and host, certificate pinning provides a very - secure form of server trust validation mitigating most, if not all, MITM attacks. - Applications are encouraged to always validate the host and require a valid certificate - chain in production environments. - - - PinPublicKeys: Uses the pinned public keys to validate the server trust. The server trust is considered - valid if one of the pinned public keys match one of the server certificate public keys. - By validating both the certificate chain and host, public key pinning provides a very - secure form of server trust validation mitigating most, if not all, MITM attacks. - Applications are encouraged to always validate the host and require a valid certificate - chain in production environments. - - - DisableEvaluation: Disables all evaluation which in turn will always consider any server trust as valid. - - - CustomEvaluation: Uses the associated closure to evaluate the validity of the server trust. -*/ -public enum ServerTrustPolicy { - case PerformDefaultEvaluation(validateHost: Bool) - case PinCertificates(certificates: [SecCertificate], validateCertificateChain: Bool, validateHost: Bool) - case PinPublicKeys(publicKeys: [SecKey], validateCertificateChain: Bool, validateHost: Bool) - case DisableEvaluation - case CustomEvaluation((serverTrust: SecTrust, host: String) -> Bool) - - // MARK: - Bundle Location - - /** - Returns all certificates within the given bundle with a `.cer` file extension. - - - parameter bundle: The bundle to search for all `.cer` files. - - - returns: All certificates within the given bundle. - */ - public static func certificatesInBundle(bundle: NSBundle = NSBundle.mainBundle()) -> [SecCertificate] { - var certificates: [SecCertificate] = [] - - let paths = Set([".cer", ".CER", ".crt", ".CRT", ".der", ".DER"].map { fileExtension in - bundle.pathsForResourcesOfType(fileExtension, inDirectory: nil) - }.flatten()) - - for path in paths { - if let - certificateData = NSData(contentsOfFile: path), - certificate = SecCertificateCreateWithData(nil, certificateData) - { - certificates.append(certificate) - } - } - - return certificates - } - - /** - Returns all public keys within the given bundle with a `.cer` file extension. - - - parameter bundle: The bundle to search for all `*.cer` files. - - - returns: All public keys within the given bundle. - */ - public static func publicKeysInBundle(bundle: NSBundle = NSBundle.mainBundle()) -> [SecKey] { - var publicKeys: [SecKey] = [] - - for certificate in certificatesInBundle(bundle) { - if let publicKey = publicKeyForCertificate(certificate) { - publicKeys.append(publicKey) - } - } - - return publicKeys - } - - // MARK: - Evaluation - - /** - Evaluates whether the server trust is valid for the given host. - - - parameter serverTrust: The server trust to evaluate. - - parameter host: The host of the challenge protection space. - - - returns: Whether the server trust is valid. - */ - public func evaluateServerTrust(serverTrust: SecTrust, isValidForHost host: String) -> Bool { - var serverTrustIsValid = false - - switch self { - case let .PerformDefaultEvaluation(validateHost): - let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) - SecTrustSetPolicies(serverTrust, [policy]) - - serverTrustIsValid = trustIsValid(serverTrust) - case let .PinCertificates(pinnedCertificates, validateCertificateChain, validateHost): - if validateCertificateChain { - let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) - SecTrustSetPolicies(serverTrust, [policy]) - - SecTrustSetAnchorCertificates(serverTrust, pinnedCertificates) - SecTrustSetAnchorCertificatesOnly(serverTrust, true) - - serverTrustIsValid = trustIsValid(serverTrust) - } else { - let serverCertificatesDataArray = certificateDataForTrust(serverTrust) - let pinnedCertificatesDataArray = certificateDataForCertificates(pinnedCertificates) - - outerLoop: for serverCertificateData in serverCertificatesDataArray { - for pinnedCertificateData in pinnedCertificatesDataArray { - if serverCertificateData.isEqualToData(pinnedCertificateData) { - serverTrustIsValid = true - break outerLoop - } - } - } - } - case let .PinPublicKeys(pinnedPublicKeys, validateCertificateChain, validateHost): - var certificateChainEvaluationPassed = true - - if validateCertificateChain { - let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) - SecTrustSetPolicies(serverTrust, [policy]) - - certificateChainEvaluationPassed = trustIsValid(serverTrust) - } - - if certificateChainEvaluationPassed { - outerLoop: for serverPublicKey in ServerTrustPolicy.publicKeysForTrust(serverTrust) as [AnyObject] { - for pinnedPublicKey in pinnedPublicKeys as [AnyObject] { - if serverPublicKey.isEqual(pinnedPublicKey) { - serverTrustIsValid = true - break outerLoop - } - } - } - } - case .DisableEvaluation: - serverTrustIsValid = true - case let .CustomEvaluation(closure): - serverTrustIsValid = closure(serverTrust: serverTrust, host: host) - } - - return serverTrustIsValid - } - - // MARK: - Private - Trust Validation - - private func trustIsValid(trust: SecTrust) -> Bool { - var isValid = false - - var result = SecTrustResultType(kSecTrustResultInvalid) - let status = SecTrustEvaluate(trust, &result) - - if status == errSecSuccess { - let unspecified = SecTrustResultType(kSecTrustResultUnspecified) - let proceed = SecTrustResultType(kSecTrustResultProceed) - - isValid = result == unspecified || result == proceed - } - - return isValid - } - - // MARK: - Private - Certificate Data - - private func certificateDataForTrust(trust: SecTrust) -> [NSData] { - var certificates: [SecCertificate] = [] - - for index in 0.. [NSData] { - return certificates.map { SecCertificateCopyData($0) as NSData } - } - - // MARK: - Private - Public Key Extraction - - private static func publicKeysForTrust(trust: SecTrust) -> [SecKey] { - var publicKeys: [SecKey] = [] - - for index in 0.. SecKey? { - var publicKey: SecKey? - - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - let trustCreationStatus = SecTrustCreateWithCertificates(certificate, policy, &trust) - - if let trust = trust where trustCreationStatus == errSecSuccess { - publicKey = SecTrustCopyPublicKey(trust) - } - - return publicKey - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Stream.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Stream.swift deleted file mode 100644 index 905e522..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Stream.swift +++ /dev/null @@ -1,180 +0,0 @@ -// Stream.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -#if !os(watchOS) - -@available(iOS 9.0, OSX 10.11, tvOS 9.0, *) -extension Manager { - private enum Streamable { - case Stream(String, Int) - case NetService(NSNetService) - } - - private func stream(streamable: Streamable) -> Request { - var streamTask: NSURLSessionStreamTask! - - switch streamable { - case .Stream(let hostName, let port): - dispatch_sync(queue) { - streamTask = self.session.streamTaskWithHostName(hostName, port: port) - } - case .NetService(let netService): - dispatch_sync(queue) { - streamTask = self.session.streamTaskWithNetService(netService) - } - } - - let request = Request(session: session, task: streamTask) - - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - /** - Creates a request for bidirectional streaming with the given hostname and port. - - - parameter hostName: The hostname of the server to connect to. - - parameter port: The port of the server to connect to. - - :returns: The created stream request. - */ - public func stream(hostName hostName: String, port: Int) -> Request { - return stream(.Stream(hostName, port)) - } - - /** - Creates a request for bidirectional streaming with the given `NSNetService`. - - - parameter netService: The net service used to identify the endpoint. - - - returns: The created stream request. - */ - public func stream(netService netService: NSNetService) -> Request { - return stream(.NetService(netService)) - } -} - -// MARK: - - -@available(iOS 9.0, OSX 10.11, tvOS 9.0, *) -extension Manager.SessionDelegate: NSURLSessionStreamDelegate { - - // MARK: Override Closures - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:readClosedForStreamTask:`. - public var streamTaskReadClosed: ((NSURLSession, NSURLSessionStreamTask) -> Void)? { - get { - return _streamTaskReadClosed as? (NSURLSession, NSURLSessionStreamTask) -> Void - } - set { - _streamTaskReadClosed = newValue - } - } - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:writeClosedForStreamTask:`. - public var streamTaskWriteClosed: ((NSURLSession, NSURLSessionStreamTask) -> Void)? { - get { - return _streamTaskWriteClosed as? (NSURLSession, NSURLSessionStreamTask) -> Void - } - set { - _streamTaskWriteClosed = newValue - } - } - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:betterRouteDiscoveredForStreamTask:`. - public var streamTaskBetterRouteDiscovered: ((NSURLSession, NSURLSessionStreamTask) -> Void)? { - get { - return _streamTaskBetterRouteDiscovered as? (NSURLSession, NSURLSessionStreamTask) -> Void - } - set { - _streamTaskBetterRouteDiscovered = newValue - } - } - - /// Overrides default behavior for NSURLSessionStreamDelegate method `URLSession:streamTask:didBecomeInputStream:outputStream:`. - public var streamTaskDidBecomeInputStream: ((NSURLSession, NSURLSessionStreamTask, NSInputStream, NSOutputStream) -> Void)? { - get { - return _streamTaskDidBecomeInputStream as? (NSURLSession, NSURLSessionStreamTask, NSInputStream, NSOutputStream) -> Void - } - set { - _streamTaskDidBecomeInputStream = newValue - } - } - - // MARK: Delegate Methods - - /** - Tells the delegate that the read side of the connection has been closed. - - - parameter session: The session. - - parameter streamTask: The stream task. - */ - public func URLSession(session: NSURLSession, readClosedForStreamTask streamTask: NSURLSessionStreamTask) { - streamTaskReadClosed?(session, streamTask) - } - - /** - Tells the delegate that the write side of the connection has been closed. - - - parameter session: The session. - - parameter streamTask: The stream task. - */ - public func URLSession(session: NSURLSession, writeClosedForStreamTask streamTask: NSURLSessionStreamTask) { - streamTaskWriteClosed?(session, streamTask) - } - - /** - Tells the delegate that the system has determined that a better route to the host is available. - - - parameter session: The session. - - parameter streamTask: The stream task. - */ - public func URLSession(session: NSURLSession, betterRouteDiscoveredForStreamTask streamTask: NSURLSessionStreamTask) { - streamTaskBetterRouteDiscovered?(session, streamTask) - } - - /** - Tells the delegate that the stream task has been completed and provides the unopened stream objects. - - - parameter session: The session. - - parameter streamTask: The stream task. - - parameter inputStream: The new input stream. - - parameter outputStream: The new output stream. - */ - public func URLSession( - session: NSURLSession, - streamTask: NSURLSessionStreamTask, - didBecomeInputStream inputStream: NSInputStream, - outputStream: NSOutputStream) - { - streamTaskDidBecomeInputStream?(session, streamTask, inputStream, outputStream) - } -} - -#endif diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Timeline.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Timeline.swift deleted file mode 100644 index 0b7ab5d..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Timeline.swift +++ /dev/null @@ -1,123 +0,0 @@ -// Timeline.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -/// Responsible for computing the timing metrics for the complete lifecycle of a `Request`. -public struct Timeline { - /// The time the request was initialized. - public let requestStartTime: CFAbsoluteTime - - /// The time the first bytes were received from or sent to the server. - public let initialResponseTime: CFAbsoluteTime - - /// The time when the request was completed. - public let requestCompletedTime: CFAbsoluteTime - - /// The time when the response serialization was completed. - public let serializationCompletedTime: CFAbsoluteTime - - /// The time interval in seconds from the time the request started to the initial response from the server. - public let latency: NSTimeInterval - - /// The time interval in seconds from the time the request started to the time the request completed. - public let requestDuration: NSTimeInterval - - /// The time interval in seconds from the time the request completed to the time response serialization completed. - public let serializationDuration: NSTimeInterval - - /// The time interval in seconds from the time the request started to the time response serialization completed. - public let totalDuration: NSTimeInterval - - /** - Creates a new `Timeline` instance with the specified request times. - - - parameter requestStartTime: The time the request was initialized. Defaults to `0.0`. - - parameter initialResponseTime: The time the first bytes were received from or sent to the server. - Defaults to `0.0`. - - parameter requestCompletedTime: The time when the request was completed. Defaults to `0.0`. - - parameter serializationCompletedTime: The time when the response serialization was completed. Defaults - to `0.0`. - - - returns: The new `Timeline` instance. - */ - public init( - requestStartTime: CFAbsoluteTime = 0.0, - initialResponseTime: CFAbsoluteTime = 0.0, - requestCompletedTime: CFAbsoluteTime = 0.0, - serializationCompletedTime: CFAbsoluteTime = 0.0) - { - self.requestStartTime = requestStartTime - self.initialResponseTime = initialResponseTime - self.requestCompletedTime = requestCompletedTime - self.serializationCompletedTime = serializationCompletedTime - - self.latency = initialResponseTime - requestStartTime - self.requestDuration = requestCompletedTime - requestStartTime - self.serializationDuration = serializationCompletedTime - requestCompletedTime - self.totalDuration = serializationCompletedTime - requestStartTime - } -} - -// MARK: - CustomStringConvertible - -extension Timeline: CustomStringConvertible { - /// The textual representation used when written to an output stream, which includes the latency, the request - /// duration and the total duration. - public var description: String { - let latency = String(format: "%.3f", self.latency) - let requestDuration = String(format: "%.3f", self.requestDuration) - let serializationDuration = String(format: "%.3f", self.serializationDuration) - let totalDuration = String(format: "%.3f", self.totalDuration) - - let timings = [ - "\"Latency\": \(latency) secs", - "\"Request Duration\": \(requestDuration) secs", - "\"Serialization Duration\": \(serializationDuration) secs", - "\"Total Duration\": \(totalDuration) secs" - ] - - return "Timeline: { \(timings.joinWithSeparator(", ")) }" - } -} - -// MARK: - CustomDebugStringConvertible - -extension Timeline: CustomDebugStringConvertible { - /// The textual representation used when written to an output stream, which includes the request start time, the - /// initial response time, the request completed time, the serialization completed time, the latency, the request - /// duration and the total duration. - public var debugDescription: String { - let timings = [ - "\"Request Start Time\": \(requestStartTime)", - "\"Initial Response Time\": \(initialResponseTime)", - "\"Request Completed Time\": \(requestCompletedTime)", - "\"Serialization Completed Time\": \(serializationCompletedTime)", - "\"Latency\": \(latency) secs", - "\"Request Duration\": \(requestDuration) secs", - "\"Serialization Duration\": \(serializationDuration) secs", - "\"Total Duration\": \(totalDuration) secs" - ] - - return "Timeline: { \(timings.joinWithSeparator(", ")) }" - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Upload.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Upload.swift deleted file mode 100644 index 78b3072..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Upload.swift +++ /dev/null @@ -1,374 +0,0 @@ -// Upload.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension Manager { - private enum Uploadable { - case Data(NSURLRequest, NSData) - case File(NSURLRequest, NSURL) - case Stream(NSURLRequest, NSInputStream) - } - - private func upload(uploadable: Uploadable) -> Request { - var uploadTask: NSURLSessionUploadTask! - var HTTPBodyStream: NSInputStream? - - switch uploadable { - case .Data(let request, let data): - dispatch_sync(queue) { - uploadTask = self.session.uploadTaskWithRequest(request, fromData: data) - } - case .File(let request, let fileURL): - dispatch_sync(queue) { - uploadTask = self.session.uploadTaskWithRequest(request, fromFile: fileURL) - } - case .Stream(let request, let stream): - dispatch_sync(queue) { - uploadTask = self.session.uploadTaskWithStreamedRequest(request) - } - - HTTPBodyStream = stream - } - - let request = Request(session: session, task: uploadTask) - - if HTTPBodyStream != nil { - request.delegate.taskNeedNewBodyStream = { _, _ in - return HTTPBodyStream - } - } - - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - - // MARK: File - - /** - Creates a request for uploading a file to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request - - parameter file: The file to upload - - - returns: The created upload request. - */ - public func upload(URLRequest: URLRequestConvertible, file: NSURL) -> Request { - return upload(.File(URLRequest.URLRequest, file)) - } - - /** - Creates a request for uploading a file to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter file: The file to upload - - - returns: The created upload request. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - file: NSURL) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - return upload(mutableURLRequest, file: file) - } - - // MARK: Data - - /** - Creates a request for uploading data to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request. - - parameter data: The data to upload. - - - returns: The created upload request. - */ - public func upload(URLRequest: URLRequestConvertible, data: NSData) -> Request { - return upload(.Data(URLRequest.URLRequest, data)) - } - - /** - Creates a request for uploading data to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter data: The data to upload - - - returns: The created upload request. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - data: NSData) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - - return upload(mutableURLRequest, data: data) - } - - // MARK: Stream - - /** - Creates a request for uploading a stream to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request. - - parameter stream: The stream to upload. - - - returns: The created upload request. - */ - public func upload(URLRequest: URLRequestConvertible, stream: NSInputStream) -> Request { - return upload(.Stream(URLRequest.URLRequest, stream)) - } - - /** - Creates a request for uploading a stream to the specified URL request. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter stream: The stream to upload. - - - returns: The created upload request. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - stream: NSInputStream) - -> Request - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - - return upload(mutableURLRequest, stream: stream) - } - - // MARK: MultipartFormData - - /// Default memory threshold used when encoding `MultipartFormData`. - public static let MultipartFormDataEncodingMemoryThreshold: UInt64 = 10 * 1024 * 1024 - - /** - Defines whether the `MultipartFormData` encoding was successful and contains result of the encoding as - associated values. - - - Success: Represents a successful `MultipartFormData` encoding and contains the new `Request` along with - streaming information. - - Failure: Used to represent a failure in the `MultipartFormData` encoding and also contains the encoding - error. - */ - public enum MultipartFormDataEncodingResult { - case Success(request: Request, streamingFromDisk: Bool, streamFileURL: NSURL?) - case Failure(ErrorType) - } - - /** - Encodes the `MultipartFormData` and creates a request to upload the result to the specified URL request. - - It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative - payload is small, encoding the data in-memory and directly uploading to a server is the by far the most - efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to - be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory - footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be - used for larger payloads such as video content. - - The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory - or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, - encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk - during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding - technique was used. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter method: The HTTP method. - - parameter URLString: The URL string. - - parameter headers: The HTTP headers. `nil` by default. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. - */ - public func upload( - method: Method, - _ URLString: URLStringConvertible, - headers: [String: String]? = nil, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (MultipartFormDataEncodingResult -> Void)?) - { - let mutableURLRequest = URLRequest(method, URLString, headers: headers) - - return upload( - mutableURLRequest, - multipartFormData: multipartFormData, - encodingMemoryThreshold: encodingMemoryThreshold, - encodingCompletion: encodingCompletion - ) - } - - /** - Encodes the `MultipartFormData` and creates a request to upload the result to the specified URL request. - - It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative - payload is small, encoding the data in-memory and directly uploading to a server is the by far the most - efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to - be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory - footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be - used for larger payloads such as video content. - - The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory - or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, - encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk - during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding - technique was used. - - If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. - - - parameter URLRequest: The URL request. - - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. - - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. - `MultipartFormDataEncodingMemoryThreshold` by default. - - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. - */ - public func upload( - URLRequest: URLRequestConvertible, - multipartFormData: MultipartFormData -> Void, - encodingMemoryThreshold: UInt64 = Manager.MultipartFormDataEncodingMemoryThreshold, - encodingCompletion: (MultipartFormDataEncodingResult -> Void)?) - { - dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)) { - let formData = MultipartFormData() - multipartFormData(formData) - - let URLRequestWithContentType = URLRequest.URLRequest - URLRequestWithContentType.setValue(formData.contentType, forHTTPHeaderField: "Content-Type") - - let isBackgroundSession = self.session.configuration.identifier != nil - - if formData.contentLength < encodingMemoryThreshold && !isBackgroundSession { - do { - let data = try formData.encode() - let encodingResult = MultipartFormDataEncodingResult.Success( - request: self.upload(URLRequestWithContentType, data: data), - streamingFromDisk: false, - streamFileURL: nil - ) - - dispatch_async(dispatch_get_main_queue()) { - encodingCompletion?(encodingResult) - } - } catch { - dispatch_async(dispatch_get_main_queue()) { - encodingCompletion?(.Failure(error as NSError)) - } - } - } else { - let fileManager = NSFileManager.defaultManager() - let tempDirectoryURL = NSURL(fileURLWithPath: NSTemporaryDirectory()) - let directoryURL = tempDirectoryURL.URLByAppendingPathComponent("com.alamofire.manager/multipart.form.data") - let fileName = NSUUID().UUIDString - let fileURL = directoryURL.URLByAppendingPathComponent(fileName) - - do { - try fileManager.createDirectoryAtURL(directoryURL, withIntermediateDirectories: true, attributes: nil) - try formData.writeEncodedDataToDisk(fileURL) - - dispatch_async(dispatch_get_main_queue()) { - let encodingResult = MultipartFormDataEncodingResult.Success( - request: self.upload(URLRequestWithContentType, file: fileURL), - streamingFromDisk: true, - streamFileURL: fileURL - ) - encodingCompletion?(encodingResult) - } - } catch { - dispatch_async(dispatch_get_main_queue()) { - encodingCompletion?(.Failure(error as NSError)) - } - } - } - } - } -} - -// MARK: - - -extension Request { - - // MARK: - UploadTaskDelegate - - class UploadTaskDelegate: DataTaskDelegate { - var uploadTask: NSURLSessionUploadTask? { return task as? NSURLSessionUploadTask } - var uploadProgress: ((Int64, Int64, Int64) -> Void)! - - // MARK: - NSURLSessionTaskDelegate - - // MARK: Override Closures - - var taskDidSendBodyData: ((NSURLSession, NSURLSessionTask, Int64, Int64, Int64) -> Void)? - - // MARK: Delegate Methods - - func URLSession( - session: NSURLSession, - task: NSURLSessionTask, - didSendBodyData bytesSent: Int64, - totalBytesSent: Int64, - totalBytesExpectedToSend: Int64) - { - if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } - - if let taskDidSendBodyData = taskDidSendBodyData { - taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend) - } else { - progress.totalUnitCount = totalBytesExpectedToSend - progress.completedUnitCount = totalBytesSent - - uploadProgress?(bytesSent, totalBytesSent, totalBytesExpectedToSend) - } - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Validation.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Validation.swift deleted file mode 100644 index 71d21e1..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Source/Validation.swift +++ /dev/null @@ -1,189 +0,0 @@ -// Validation.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension Request { - - /** - Used to represent whether validation was successful or encountered an error resulting in a failure. - - - Success: The validation was successful. - - Failure: The validation failed encountering the provided error. - */ - public enum ValidationResult { - case Success - case Failure(NSError) - } - - /** - A closure used to validate a request that takes a URL request and URL response, and returns whether the - request was valid. - */ - public typealias Validation = (NSURLRequest?, NSHTTPURLResponse) -> ValidationResult - - /** - Validates the request, using the specified closure. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - parameter validation: A closure to validate the request. - - - returns: The request. - */ - public func validate(validation: Validation) -> Self { - delegate.queue.addOperationWithBlock { - if let - response = self.response where self.delegate.error == nil, - case let .Failure(error) = validation(self.request, response) - { - self.delegate.error = error - } - } - - return self - } - - // MARK: - Status Code - - /** - Validates that the response has a status code in the specified range. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - parameter range: The range of acceptable status codes. - - - returns: The request. - */ - public func validate(statusCode acceptableStatusCode: S) -> Self { - return validate { _, response in - if acceptableStatusCode.contains(response.statusCode) { - return .Success - } else { - let failureReason = "Response status code was unacceptable: \(response.statusCode)" - return .Failure(Error.errorWithCode(.StatusCodeValidationFailed, failureReason: failureReason)) - } - } - } - - // MARK: - Content-Type - - private struct MIMEType { - let type: String - let subtype: String - - init?(_ string: String) { - let components: [String] = { - let stripped = string.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceAndNewlineCharacterSet()) - let split = stripped.substringToIndex(stripped.rangeOfString(";")?.startIndex ?? stripped.endIndex) - return split.componentsSeparatedByString("/") - }() - - if let - type = components.first, - subtype = components.last - { - self.type = type - self.subtype = subtype - } else { - return nil - } - } - - func matches(MIME: MIMEType) -> Bool { - switch (type, subtype) { - case (MIME.type, MIME.subtype), (MIME.type, "*"), ("*", MIME.subtype), ("*", "*"): - return true - default: - return false - } - } - } - - /** - Validates that the response has a content type in the specified array. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - parameter contentType: The acceptable content types, which may specify wildcard types and/or subtypes. - - - returns: The request. - */ - public func validate(contentType acceptableContentTypes: S) -> Self { - return validate { _, response in - guard let validData = self.delegate.data where validData.length > 0 else { return .Success } - - if let - responseContentType = response.MIMEType, - responseMIMEType = MIMEType(responseContentType) - { - for contentType in acceptableContentTypes { - if let acceptableMIMEType = MIMEType(contentType) where acceptableMIMEType.matches(responseMIMEType) { - return .Success - } - } - } else { - for contentType in acceptableContentTypes { - if let MIMEType = MIMEType(contentType) where MIMEType.type == "*" && MIMEType.subtype == "*" { - return .Success - } - } - } - - let failureReason: String - - if let responseContentType = response.MIMEType { - failureReason = ( - "Response content type \"\(responseContentType)\" does not match any acceptable " + - "content types: \(acceptableContentTypes)" - ) - } else { - failureReason = "Response content type was missing and acceptable content type does not match \"*/*\"" - } - - return .Failure(Error.errorWithCode(.ContentTypeValidationFailed, failureReason: failureReason)) - } - } - - // MARK: - Automatic - - /** - Validates that the response has a status code in the default acceptable range of 200...299, and that the content - type matches any specified in the Accept HTTP header field. - - If validation fails, subsequent calls to response handlers will have an associated error. - - - returns: The request. - */ - public func validate() -> Self { - let acceptableStatusCodes: Range = 200..<300 - let acceptableContentTypes: [String] = { - if let accept = request?.valueForHTTPHeaderField("Accept") { - return accept.componentsSeparatedByString(",") - } - - return ["*/*"] - }() - - return validate(statusCode: acceptableStatusCodes).validate(contentType: acceptableContentTypes) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift deleted file mode 100644 index c616174..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/AuthenticationTests.swift +++ /dev/null @@ -1,193 +0,0 @@ -// AuthenticationTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class AuthenticationTestCase: BaseTestCase { - let user = "user" - let password = "password" - var URLString = "" - - override func setUp() { - super.setUp() - - let credentialStorage = NSURLCredentialStorage.sharedCredentialStorage() - - for (protectionSpace, credentials) in credentialStorage.allCredentials { - for (_, credential) in credentials { - credentialStorage.removeCredential(credential, forProtectionSpace: protectionSpace) - } - } - } -} - -// MARK: - - -class BasicAuthenticationTestCase: AuthenticationTestCase { - override func setUp() { - super.setUp() - URLString = "https://httpbin.org/basic-auth/\(user)/\(password)" - } - - func testHTTPBasicAuthenticationWithInvalidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 401") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: "invalid", password: "credentials") - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNil(response, "response should be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, -999, "error should be NSURLErrorDomain Code -999 'cancelled'") - } - } - - func testHTTPBasicAuthenticationWithValidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 200") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: user, password: password) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertEqual(response?.statusCode ?? 0, 200, "response status code should be 200") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - } -} - -// MARK: - - -class HTTPDigestAuthenticationTestCase: AuthenticationTestCase { - let qop = "auth" - - override func setUp() { - super.setUp() - URLString = "https://httpbin.org/digest-auth/\(qop)/\(user)/\(password)" - } - - func testHTTPDigestAuthenticationWithInvalidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 401") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: "invalid", password: "credentials") - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNil(response, "response should be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, -999, "error should be NSURLErrorDomain Code -999 'cancelled'") - } - } - - func testHTTPDigestAuthenticationWithValidCredentials() { - // Given - let expectation = expectationWithDescription("\(URLString) 200") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .authenticate(user: user, password: password) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertEqual(response?.statusCode ?? 0, 200, "response status code should be 200") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift deleted file mode 100644 index a9fe24c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/BaseTestCase.swift +++ /dev/null @@ -1,34 +0,0 @@ -// BaseTestCase.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class BaseTestCase: XCTestCase { - let timeout: NSTimeInterval = 30.0 - - func URLForResource(fileName: String, withExtension: String) -> NSURL { - let bundle = NSBundle(forClass: BaseTestCase.self) - return bundle.URLForResource(fileName, withExtension: withExtension)! - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift deleted file mode 100644 index 0d3fe3c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/CacheTests.swift +++ /dev/null @@ -1,351 +0,0 @@ -// CacheTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -/** - This test case tests all implemented cache policies against various `Cache-Control` header values. These tests - are meant to cover the main cases of `Cache-Control` header usage, but are no means exhaustive. - - These tests work as follows: - - - Set up an `NSURLCache` - - Set up an `Alamofire.Manager` - - Execute requests for all `Cache-Control` headers values to prime the `NSURLCache` with cached responses - - Start up a new test - - Execute another round of the same requests with a given `NSURLRequestCachePolicy` - - Verify whether the response came from the cache or from the network - - This is determined by whether the cached response timestamp matches the new response timestamp - - An important thing to note is the difference in behavior between iOS and OS X. On iOS, a response with - a `Cache-Control` header value of `no-store` is still written into the `NSURLCache` where on OS X, it is not. - The different tests below reflect and demonstrate this behavior. - - For information about `Cache-Control` HTTP headers, please refer to RFC 2616 - Section 14.9. -*/ -class CacheTestCase: BaseTestCase { - - // MARK: - - - struct CacheControl { - static let Public = "public" - static let Private = "private" - static let MaxAgeNonExpired = "max-age=3600" - static let MaxAgeExpired = "max-age=0" - static let NoCache = "no-cache" - static let NoStore = "no-store" - - static var allValues: [String] { - return [ - CacheControl.Public, - CacheControl.Private, - CacheControl.MaxAgeNonExpired, - CacheControl.MaxAgeExpired, - CacheControl.NoCache, - CacheControl.NoStore - ] - } - } - - // MARK: - Properties - - var URLCache: NSURLCache! - var manager: Manager! - - let URLString = "https://httpbin.org/response-headers" - let requestTimeout: NSTimeInterval = 30 - - var requests: [String: NSURLRequest] = [:] - var timestamps: [String: String] = [:] - - // MARK: - Setup and Teardown - - override func setUp() { - super.setUp() - - URLCache = { - let capacity = 50 * 1024 * 1024 // MBs - let URLCache = NSURLCache(memoryCapacity: capacity, diskCapacity: capacity, diskPath: nil) - - return URLCache - }() - - manager = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.HTTPAdditionalHeaders = Alamofire.Manager.defaultHTTPHeaders - configuration.requestCachePolicy = .UseProtocolCachePolicy - configuration.URLCache = self.URLCache - - return configuration - }() - - let manager = Manager(configuration: configuration) - - return manager - }() - - primeCachedResponses() - } - - override func tearDown() { - super.tearDown() - - URLCache.removeAllCachedResponses() - } - - // MARK: - Cache Priming Methods - - /** - Executes a request for all `Cache-Control` header values to load the response into the `URLCache`. - - This implementation leverages dispatch groups to execute all the requests as well as wait an additional - second before returning. This ensures the cache contains responses for all requests that are at least - one second old. This allows the tests to distinguish whether the subsequent responses come from the cache - or the network based on the timestamp of the response. - */ - func primeCachedResponses() { - let dispatchGroup = dispatch_group_create() - let highPriorityDispatchQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0) - - for cacheControl in CacheControl.allValues { - dispatch_group_enter(dispatchGroup) - - let request = startRequest( - cacheControl: cacheControl, - queue: highPriorityDispatchQueue, - completion: { _, response in - let timestamp = response!.allHeaderFields["Date"] as! String - self.timestamps[cacheControl] = timestamp - - dispatch_group_leave(dispatchGroup) - } - ) - - requests[cacheControl] = request - } - - // Wait for all requests to complete - dispatch_group_wait(dispatchGroup, dispatch_time(DISPATCH_TIME_NOW, Int64(10.0 * Float(NSEC_PER_SEC)))) - - // Pause for 1 additional second to ensure all timestamps will be different - dispatch_group_enter(dispatchGroup) - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, Int64(1.0 * Float(NSEC_PER_SEC))), highPriorityDispatchQueue) { - dispatch_group_leave(dispatchGroup) - } - - // Wait for our 1 second pause to complete - dispatch_group_wait(dispatchGroup, dispatch_time(DISPATCH_TIME_NOW, Int64(10.0 * Float(NSEC_PER_SEC)))) - } - - // MARK: - Request Helper Methods - - func URLRequest(cacheControl cacheControl: String, cachePolicy: NSURLRequestCachePolicy) -> NSURLRequest { - let parameters = ["Cache-Control": cacheControl] - let URL = NSURL(string: URLString)! - let URLRequest = NSMutableURLRequest(URL: URL, cachePolicy: cachePolicy, timeoutInterval: requestTimeout) - URLRequest.HTTPMethod = Method.GET.rawValue - - return ParameterEncoding.URL.encode(URLRequest, parameters: parameters).0 - } - - func startRequest( - cacheControl cacheControl: String, - cachePolicy: NSURLRequestCachePolicy = .UseProtocolCachePolicy, - queue: dispatch_queue_t = dispatch_get_main_queue(), - completion: (NSURLRequest?, NSHTTPURLResponse?) -> Void) - -> NSURLRequest - { - let urlRequest = URLRequest(cacheControl: cacheControl, cachePolicy: cachePolicy) - - let request = manager.request(urlRequest) - request.response( - queue: queue, - completionHandler: { _, response, data, _ in - completion(request.request, response) - } - ) - - return urlRequest - } - - // MARK: - Test Execution and Verification - - func executeTest( - cachePolicy cachePolicy: NSURLRequestCachePolicy, - cacheControl: String, - shouldReturnCachedResponse: Bool) - { - // Given - let expectation = expectationWithDescription("GET request to httpbin") - var response: NSHTTPURLResponse? - - // When - startRequest(cacheControl: cacheControl, cachePolicy: cachePolicy) { _, responseResponse in - response = responseResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - verifyResponse(response, forCacheControl: cacheControl, isCachedResponse: shouldReturnCachedResponse) - } - - func verifyResponse(response: NSHTTPURLResponse?, forCacheControl cacheControl: String, isCachedResponse: Bool) { - guard let cachedResponseTimestamp = timestamps[cacheControl] else { - XCTFail("cached response timestamp should not be nil") - return - } - - if let - response = response, - timestamp = response.allHeaderFields["Date"] as? String - { - if isCachedResponse { - XCTAssertEqual(timestamp, cachedResponseTimestamp, "timestamps should be equal") - } else { - XCTAssertNotEqual(timestamp, cachedResponseTimestamp, "timestamps should not be equal") - } - } else { - XCTFail("response should not be nil") - } - } - - // MARK: - Cache Helper Methods - - private func isCachedResponseForNoStoreHeaderExpected() -> Bool { - var storedInCache = false - - #if os(iOS) - let operatingSystemVersion = NSOperatingSystemVersion(majorVersion: 8, minorVersion: 3, patchVersion: 0) - - if !NSProcessInfo().isOperatingSystemAtLeastVersion(operatingSystemVersion) { - storedInCache = true - } - #endif - - return storedInCache - } - - // MARK: - Tests - - func testURLCacheContainsCachedResponsesForAllRequests() { - // Given - let publicRequest = requests[CacheControl.Public]! - let privateRequest = requests[CacheControl.Private]! - let maxAgeNonExpiredRequest = requests[CacheControl.MaxAgeNonExpired]! - let maxAgeExpiredRequest = requests[CacheControl.MaxAgeExpired]! - let noCacheRequest = requests[CacheControl.NoCache]! - let noStoreRequest = requests[CacheControl.NoStore]! - - // When - let publicResponse = URLCache.cachedResponseForRequest(publicRequest) - let privateResponse = URLCache.cachedResponseForRequest(privateRequest) - let maxAgeNonExpiredResponse = URLCache.cachedResponseForRequest(maxAgeNonExpiredRequest) - let maxAgeExpiredResponse = URLCache.cachedResponseForRequest(maxAgeExpiredRequest) - let noCacheResponse = URLCache.cachedResponseForRequest(noCacheRequest) - let noStoreResponse = URLCache.cachedResponseForRequest(noStoreRequest) - - // Then - XCTAssertNotNil(publicResponse, "\(CacheControl.Public) response should not be nil") - XCTAssertNotNil(privateResponse, "\(CacheControl.Private) response should not be nil") - XCTAssertNotNil(maxAgeNonExpiredResponse, "\(CacheControl.MaxAgeNonExpired) response should not be nil") - XCTAssertNotNil(maxAgeExpiredResponse, "\(CacheControl.MaxAgeExpired) response should not be nil") - XCTAssertNotNil(noCacheResponse, "\(CacheControl.NoCache) response should not be nil") - - if isCachedResponseForNoStoreHeaderExpected() { - XCTAssertNotNil(noStoreResponse, "\(CacheControl.NoStore) response should not be nil") - } else { - XCTAssertNil(noStoreResponse, "\(CacheControl.NoStore) response should be nil") - } - } - - func testDefaultCachePolicy() { - let cachePolicy: NSURLRequestCachePolicy = .UseProtocolCachePolicy - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: false) - } - - func testIgnoreLocalCacheDataPolicy() { - let cachePolicy: NSURLRequestCachePolicy = .ReloadIgnoringLocalCacheData - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: false) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: false) - } - - func testUseLocalCacheDataIfExistsOtherwiseLoadFromNetworkPolicy() { - let cachePolicy: NSURLRequestCachePolicy = .ReturnCacheDataElseLoad - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: true) - - if isCachedResponseForNoStoreHeaderExpected() { - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: true) - } else { - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: false) - } - } - - func testUseLocalCacheDataAndDontLoadFromNetworkPolicy() { - let cachePolicy: NSURLRequestCachePolicy = .ReturnCacheDataDontLoad - - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Public, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.Private, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeNonExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.MaxAgeExpired, shouldReturnCachedResponse: true) - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoCache, shouldReturnCachedResponse: true) - - if isCachedResponseForNoStoreHeaderExpected() { - executeTest(cachePolicy: cachePolicy, cacheControl: CacheControl.NoStore, shouldReturnCachedResponse: true) - } else { - // Given - let expectation = expectationWithDescription("GET request to httpbin") - var response: NSHTTPURLResponse? - - // When - startRequest(cacheControl: CacheControl.NoStore, cachePolicy: cachePolicy) { _, responseResponse in - response = responseResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(response, "response should be nil") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift deleted file mode 100644 index 2340c0e..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/DownloadTests.swift +++ /dev/null @@ -1,459 +0,0 @@ -// DownloadTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class DownloadInitializationTestCase: BaseTestCase { - let searchPathDirectory: NSSearchPathDirectory = .CachesDirectory - let searchPathDomain: NSSearchPathDomainMask = .UserDomainMask - - func testDownloadClassMethodWithMethodURLAndDestination() { - // Given - let URLString = "https://httpbin.org/" - let destination = Request.suggestedDownloadDestination(directory: searchPathDirectory, domain: searchPathDomain) - - // When - let request = Alamofire.download(.GET, URLString, destination: destination) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should be GET") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testDownloadClassMethodWithMethodURLHeadersAndDestination() { - // Given - let URLString = "https://httpbin.org/" - let destination = Request.suggestedDownloadDestination(directory: searchPathDirectory, domain: searchPathDomain) - - // When - let request = Alamofire.download(.GET, URLString, headers: ["Authorization": "123456"], destination: destination) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should be GET") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class DownloadResponseTestCase: BaseTestCase { - let searchPathDirectory: NSSearchPathDirectory = .CachesDirectory - let searchPathDomain: NSSearchPathDomainMask = .UserDomainMask - - let cachesURL: NSURL = { - let cachesDirectory = NSSearchPathForDirectoriesInDomains(.CachesDirectory, .UserDomainMask, true).first! - let cachesURL = NSURL(fileURLWithPath: cachesDirectory, isDirectory: true) - - return cachesURL - }() - - var randomCachesFileURL: NSURL { - return cachesURL.URLByAppendingPathComponent("\(NSUUID().UUIDString).json") - } - - func testDownloadRequest() { - // Given - let numberOfLines = 100 - let URLString = "https://httpbin.org/stream/\(numberOfLines)" - - let destination = Alamofire.Request.suggestedDownloadDestination( - directory: searchPathDirectory, - domain: searchPathDomain - ) - - let expectation = expectationWithDescription("Download request should download data to file: \(URLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var error: NSError? - - // When - Alamofire.download(.GET, URLString, destination: destination) - .response { responseRequest, responseResponse, _, responseError in - request = responseRequest - response = responseResponse - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNil(error, "error should be nil") - - let fileManager = NSFileManager.defaultManager() - let directory = fileManager.URLsForDirectory(searchPathDirectory, inDomains: self.searchPathDomain)[0] - - do { - let contents = try fileManager.contentsOfDirectoryAtURL( - directory, - includingPropertiesForKeys: nil, - options: .SkipsHiddenFiles - ) - - #if os(iOS) || os(tvOS) - let suggestedFilename = "\(numberOfLines)" - #elseif os(OSX) - let suggestedFilename = "\(numberOfLines).json" - #endif - - let predicate = NSPredicate(format: "lastPathComponent = '\(suggestedFilename)'") - let filteredContents = (contents as NSArray).filteredArrayUsingPredicate(predicate) - XCTAssertEqual(filteredContents.count, 1, "should have one file in Documents") - - if let file = filteredContents.first as? NSURL { - XCTAssertEqual( - file.lastPathComponent ?? "", - "\(suggestedFilename)", - "filename should be \(suggestedFilename)" - ) - - if let data = NSData(contentsOfURL: file) { - XCTAssertGreaterThan(data.length, 0, "data length should be non-zero") - } else { - XCTFail("data should exist for contents of URL") - } - - do { - try fileManager.removeItemAtURL(file) - } catch { - XCTFail("file manager should remove item at URL: \(file)") - } - } else { - XCTFail("file should not be nil") - } - } catch { - XCTFail("contents should not be nil") - } - } - - func testDownloadRequestWithProgress() { - // Given - let randomBytes = 4 * 1024 * 1024 - let URLString = "https://httpbin.org/bytes/\(randomBytes)" - - let fileManager = NSFileManager.defaultManager() - let directory = fileManager.URLsForDirectory(searchPathDirectory, inDomains: self.searchPathDomain)[0] - let filename = "test_download_data" - let fileURL = directory.URLByAppendingPathComponent(filename) - - let expectation = expectationWithDescription("Bytes download progress should be reported: \(URLString)") - - var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] - var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] - var responseRequest: NSURLRequest? - var responseResponse: NSHTTPURLResponse? - var responseData: NSData? - var responseError: ErrorType? - - // When - let download = Alamofire.download(.GET, URLString) { _, _ in - return fileURL - } - download.progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in - let bytes = (bytes: bytesRead, totalBytes: totalBytesRead, totalBytesExpected: totalBytesExpectedToRead) - byteValues.append(bytes) - - let progress = ( - completedUnitCount: download.progress.completedUnitCount, - totalUnitCount: download.progress.totalUnitCount - ) - progressValues.append(progress) - } - download.response { request, response, data, error in - responseRequest = request - responseResponse = response - responseData = data - responseError = error - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(responseRequest, "response request should not be nil") - XCTAssertNotNil(responseResponse, "response should not be nil") - XCTAssertNil(responseData, "response data should be nil") - XCTAssertNil(responseError, "response error should be nil") - - XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") - - if byteValues.count == progressValues.count { - for index in 0..? - - // When - let download = Alamofire.download(.GET, URLString, destination: destination) - download.progress { _, _, _ in - download.cancel() - } - download.responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - XCTAssertNotNil(response.result.error, "result error should not be nil") - } else { - XCTFail("response should not be nil") - } - - XCTAssertNotNil(download.resumeData, "resume data should not be nil") - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Info.plist b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Info.plist deleted file mode 100644 index ba72822..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift deleted file mode 100644 index dbd165b..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ManagerTests.swift +++ /dev/null @@ -1,280 +0,0 @@ -// ManagerTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -import Foundation -import XCTest - -class ManagerTestCase: BaseTestCase { - - // MARK: Initialization Tests - - func testInitializerWithDefaultArguments() { - // Given, When - let manager = Manager() - - // Then - XCTAssertNotNil(manager.session.delegate, "session delegate should not be nil") - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should be nil") - } - - func testInitializerWithSpecifiedArguments() { - // Given - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - let delegate = Manager.SessionDelegate() - let serverTrustPolicyManager = ServerTrustPolicyManager(policies: [:]) - - // When - let manager = Manager( - configuration: configuration, - delegate: delegate, - serverTrustPolicyManager: serverTrustPolicyManager - ) - - // Then - XCTAssertNotNil(manager.session.delegate, "session delegate should not be nil") - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNotNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should not be nil") - } - - func testThatFailableInitializerSucceedsWithDefaultArguments() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - }() - - // When - let manager = Manager(session: session, delegate: delegate) - - // Then - if let manager = manager { - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should be nil") - } else { - XCTFail("manager should not be nil") - } - } - - func testThatFailableInitializerSucceedsWithSpecifiedArguments() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) - }() - - let serverTrustPolicyManager = ServerTrustPolicyManager(policies: [:]) - - // When - let manager = Manager(session: session, delegate: delegate, serverTrustPolicyManager: serverTrustPolicyManager) - - // Then - if let manager = manager { - XCTAssertTrue(manager.delegate === manager.session.delegate, "manager delegate should equal session delegate") - XCTAssertNotNil(manager.session.serverTrustPolicyManager, "session server trust policy manager should not be nil") - } else { - XCTFail("manager should not be nil") - } - } - - func testThatFailableInitializerFailsWithWhenDelegateDoesNotEqualSessionDelegate() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: Manager.SessionDelegate(), delegateQueue: nil) - }() - - // When - let manager = Manager(session: session, delegate: delegate) - - // Then - XCTAssertNil(manager, "manager should be nil") - } - - func testThatFailableInitializerFailsWhenSessionDelegateIsNil() { - // Given - let delegate = Manager.SessionDelegate() - let session: NSURLSession = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - return NSURLSession(configuration: configuration, delegate: nil, delegateQueue: nil) - }() - - // When - let manager = Manager(session: session, delegate: delegate) - - // Then - XCTAssertNil(manager, "manager should be nil") - } - - // MARK: Start Requests Immediately Tests - - func testSetStartRequestsImmediatelyToFalseAndResumeRequest() { - // Given - let manager = Alamofire.Manager() - manager.startRequestsImmediately = false - - let URL = NSURL(string: "https://httpbin.org/get")! - let URLRequest = NSURLRequest(URL: URL) - - let expectation = expectationWithDescription("\(URL)") - - var response: NSHTTPURLResponse? - - // When - manager.request(URLRequest) - .response { _, responseResponse, _, _ in - response = responseResponse - expectation.fulfill() - } - .resume() - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response, "response should not be nil") - XCTAssertTrue(response?.statusCode == 200, "response status code should be 200") - } - - // MARK: Deinitialization Tests - - func testReleasingManagerWithPendingRequestDeinitializesSuccessfully() { - // Given - var manager: Manager? = Alamofire.Manager() - manager?.startRequestsImmediately = false - - let URL = NSURL(string: "https://httpbin.org/get")! - let URLRequest = NSURLRequest(URL: URL) - - // When - let request = manager?.request(URLRequest) - manager = nil - - // Then - XCTAssertTrue(request?.task.state == .Suspended, "request task state should be '.Suspended'") - XCTAssertNil(manager, "manager should be nil") - } - - func testReleasingManagerWithPendingCanceledRequestDeinitializesSuccessfully() { - // Given - var manager: Manager? = Alamofire.Manager() - manager!.startRequestsImmediately = false - - let URL = NSURL(string: "https://httpbin.org/get")! - let URLRequest = NSURLRequest(URL: URL) - - // When - let request = manager!.request(URLRequest) - request.cancel() - manager = nil - - // Then - let state = request.task.state - XCTAssertTrue(state == .Canceling || state == .Completed, "state should be .Canceling or .Completed") - XCTAssertNil(manager, "manager should be nil") - } -} - -// MARK: - - -class ManagerConfigurationHeadersTestCase: BaseTestCase { - enum ConfigurationType { - case Default, Ephemeral, Background - } - - func testThatDefaultConfigurationHeadersAreSentWithRequest() { - // Given, When, Then - executeAuthorizationHeaderTestForConfigurationType(.Default) - } - - func testThatEphemeralConfigurationHeadersAreSentWithRequest() { - // Given, When, Then - executeAuthorizationHeaderTestForConfigurationType(.Ephemeral) - } - - func testThatBackgroundConfigurationHeadersAreSentWithRequest() { - // Given, When, Then - executeAuthorizationHeaderTestForConfigurationType(.Background) - } - - private func executeAuthorizationHeaderTestForConfigurationType(type: ConfigurationType) { - // Given - let manager: Manager = { - let configuration: NSURLSessionConfiguration = { - let configuration: NSURLSessionConfiguration - - switch type { - case .Default: - configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - case .Ephemeral: - configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - case .Background: - let identifier = "com.alamofire.test.manager-configuration-tests" - configuration = NSURLSessionConfiguration.backgroundSessionConfigurationForAllPlatformsWithIdentifier(identifier) - } - - var headers = Alamofire.Manager.defaultHTTPHeaders - headers["Authorization"] = "Bearer 123456" - configuration.HTTPAdditionalHeaders = headers - - return configuration - }() - - return Manager(configuration: configuration) - }() - - let expectation = expectationWithDescription("request should complete successfully") - - var response: Response? - - // When - manager.request(.GET, "https://httpbin.org/headers") - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be a success") - - if let - headers = response.result.value?["headers" as NSString] as? [String: String], - authorization = headers["Authorization"] - { - XCTAssertEqual(authorization, "Bearer 123456", "authorization header value does not match") - } else { - XCTFail("failed to extract authorization header value") - } - } else { - XCTFail("response should not be nil") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift deleted file mode 100644 index 7418ece..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/MultipartFormDataTests.swift +++ /dev/null @@ -1,993 +0,0 @@ -// MultipartFormDataTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -struct EncodingCharacters { - static let CRLF = "\r\n" -} - -struct BoundaryGenerator { - enum BoundaryType { - case Initial, Encapsulated, Final - } - - static func boundary(boundaryType boundaryType: BoundaryType, boundaryKey: String) -> String { - let boundary: String - - switch boundaryType { - case .Initial: - boundary = "--\(boundaryKey)\(EncodingCharacters.CRLF)" - case .Encapsulated: - boundary = "\(EncodingCharacters.CRLF)--\(boundaryKey)\(EncodingCharacters.CRLF)" - case .Final: - boundary = "\(EncodingCharacters.CRLF)--\(boundaryKey)--\(EncodingCharacters.CRLF)" - } - - return boundary - } - - static func boundaryData(boundaryType boundaryType: BoundaryType, boundaryKey: String) -> NSData { - return BoundaryGenerator.boundary( - boundaryType: boundaryType, - boundaryKey: boundaryKey - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - } -} - -private func temporaryFileURL() -> NSURL { - let tempDirectoryURL = NSURL(fileURLWithPath: NSTemporaryDirectory()) - let directoryURL = tempDirectoryURL.URLByAppendingPathComponent("com.alamofire.test/multipart.form.data") - - let fileManager = NSFileManager.defaultManager() - do { - try fileManager.createDirectoryAtURL(directoryURL, withIntermediateDirectories: true, attributes: nil) - } catch { - // No-op - will cause tests to fail, not crash - } - - let fileName = NSUUID().UUIDString - let fileURL = directoryURL.URLByAppendingPathComponent(fileName) - - return fileURL -} - -// MARK: - - -class MultipartFormDataPropertiesTestCase: BaseTestCase { - func testThatContentTypeContainsBoundary() { - // Given - let multipartFormData = MultipartFormData() - - // When - let boundary = multipartFormData.boundary - - // Then - let expectedContentType = "multipart/form-data; boundary=\(boundary)" - XCTAssertEqual(multipartFormData.contentType, expectedContentType, "contentType should match expected value") - } - - func testThatContentLengthMatchesTotalBodyPartSize() { - // Given - let multipartFormData = MultipartFormData() - let data1 = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let data2 = "Vim at integre alterum.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - // When - multipartFormData.appendBodyPart(data: data1, name: "data1") - multipartFormData.appendBodyPart(data: data2, name: "data2") - - // Then - let expectedContentLength = UInt64(data1.length + data2.length) - XCTAssertEqual(multipartFormData.contentLength, expectedContentLength, "content length should match expected value") - } -} - -// MARK: - - -class MultipartFormDataEncodingTestCase: BaseTestCase { - let CRLF = EncodingCharacters.CRLF - - func testEncodingDataBodyPart() { - // Given - let multipartFormData = MultipartFormData() - - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"data\"\(CRLF)\(CRLF)" + - "Lorem ipsum dolor sit amet." + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(encodedData, expectedData, "encoded data should match expected data") - } - } - - func testEncodingMultipleDataBodyParts() { - // Given - let multipartFormData = MultipartFormData() - - let french = "français".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let japanese = "日本語".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let emoji = "😃👍🏻🍻🎉".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - multipartFormData.appendBodyPart(data: french, name: "french") - multipartFormData.appendBodyPart(data: japanese, name: "japanese", mimeType: "text/plain") - multipartFormData.appendBodyPart(data: emoji, name: "emoji", mimeType: "text/plain") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"french\"\(CRLF)\(CRLF)" + - "français" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"japanese\"\(CRLF)" + - "Content-Type: text/plain\(CRLF)\(CRLF)" + - "日本語" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"emoji\"\(CRLF)" + - "Content-Type: text/plain\(CRLF)\(CRLF)" + - "😃👍🏻🍻🎉" + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(encodedData, expectedData, "encoded data should match expected data") - } - } - - func testEncodingFileBodyPart() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingMultipleFileBodyParts() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart(fileURL: rainbowImageURL, name: "rainbow") - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingStreamBodyPart() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingMultipleStreamBodyParts() { - // Given - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } - - func testEncodingMultipleBodyPartsWithVaryingTypes() { - // Given - let multipartFormData = MultipartFormData() - - let loremData = "Lorem ipsum.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart(data: loremData, name: "lorem") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - var encodedData: NSData? - - // When - do { - encodedData = try multipartFormData.encode() - } catch { - // No-op - } - - // Then - XCTAssertNotNil(encodedData, "encoded data should not be nil") - - if let encodedData = encodedData { - let boundary = multipartFormData.boundary - - let expectedData = NSMutableData() - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"lorem\"\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(loremData) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(encodedData, expectedData, "data should match expected data") - } - } -} - -// MARK: - - -class MultipartFormDataWriteEncodedDataToDiskTestCase: BaseTestCase { - let CRLF = EncodingCharacters.CRLF - - func testWritingEncodedDataBodyPartToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"data\"\(CRLF)\(CRLF)" + - "Lorem ipsum dolor sit amet." + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedDataBodyPartsToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let french = "français".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let japanese = "日本語".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - let emoji = "😃👍🏻🍻🎉".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - multipartFormData.appendBodyPart(data: french, name: "french") - multipartFormData.appendBodyPart(data: japanese, name: "japanese") - multipartFormData.appendBodyPart(data: emoji, name: "emoji") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = ( - BoundaryGenerator.boundary(boundaryType: .Initial, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"french\"\(CRLF)\(CRLF)" + - "français" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"japanese\"\(CRLF)\(CRLF)" + - "日本語" + - BoundaryGenerator.boundary(boundaryType: .Encapsulated, boundaryKey: boundary) + - "Content-Disposition: form-data; name=\"emoji\"\(CRLF)\(CRLF)" + - "😃👍🏻🍻🎉" + - BoundaryGenerator.boundary(boundaryType: .Final, boundaryKey: boundary) - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingEncodedFileBodyPartToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedFileBodyPartsToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart(fileURL: rainbowImageURL, name: "rainbow") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingEncodedStreamBodyPartToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedStreamBodyPartsToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - let unicornDataLength = UInt64(NSData(contentsOfURL: unicornImageURL)!.length) - let unicornStream = NSInputStream(URL: unicornImageURL)! - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart( - stream: unicornStream, - length: unicornDataLength, - name: "unicorn", - fileName: "unicorn.png", - mimeType: "image/png" - ) - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } - - func testWritingMultipleEncodedBodyPartsWithVaryingTypesToDisk() { - // Given - let fileURL = temporaryFileURL() - let multipartFormData = MultipartFormData() - - let loremData = "Lorem ipsum.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - let unicornImageURL = URLForResource("unicorn", withExtension: "png") - - let rainbowImageURL = URLForResource("rainbow", withExtension: "jpg") - let rainbowDataLength = UInt64(NSData(contentsOfURL: rainbowImageURL)!.length) - let rainbowStream = NSInputStream(URL: rainbowImageURL)! - - multipartFormData.appendBodyPart(data: loremData, name: "lorem") - multipartFormData.appendBodyPart(fileURL: unicornImageURL, name: "unicorn") - multipartFormData.appendBodyPart( - stream: rainbowStream, - length: rainbowDataLength, - name: "rainbow", - fileName: "rainbow.jpg", - mimeType: "image/jpeg" - ) - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(encodingError, "encoding error should be nil") - - if let fileData = NSData(contentsOfURL: fileURL) { - let boundary = multipartFormData.boundary - - let expectedFileData = NSMutableData() - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Initial, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"lorem\"\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(loremData) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"unicorn\"; filename=\"unicorn.png\"\(CRLF)" + - "Content-Type: image/png\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: unicornImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Encapsulated, boundaryKey: boundary)) - expectedFileData.appendData(( - "Content-Disposition: form-data; name=\"rainbow\"; filename=\"rainbow.jpg\"\(CRLF)" + - "Content-Type: image/jpeg\(CRLF)\(CRLF)" - ).dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - ) - expectedFileData.appendData(NSData(contentsOfURL: rainbowImageURL)!) - expectedFileData.appendData(BoundaryGenerator.boundaryData(boundaryType: .Final, boundaryKey: boundary)) - - XCTAssertEqual(fileData, expectedFileData, "file data should match expected file data") - } else { - XCTFail("file data should not be nil") - } - } -} - -// MARK: - - -class MultipartFormDataFailureTestCase: BaseTestCase { - func testThatAppendingFileBodyPartWithInvalidLastPathComponentReturnsError() { - // Given - let fileURL = NSURL(string: "")! - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: fileURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "Failed to extract the fileName of the provided URL: \(fileURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatAppendingFileBodyPartThatIsNotFileURLReturnsError() { - // Given - let fileURL = NSURL(string: "https://example.com/image.jpg")! - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: fileURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "The file URL does not point to a file URL: \(fileURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "error failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatAppendingFileBodyPartThatIsNotReachableReturnsError() { - // Given - let filePath = (NSTemporaryDirectory() as NSString).stringByAppendingPathComponent("does_not_exist.jpg") - let fileURL = NSURL(fileURLWithPath: filePath) - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: fileURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "The file URL is not reachable: \(fileURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "error failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatAppendingFileBodyPartThatIsDirectoryReturnsError() { - // Given - let directoryURL = NSURL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true) - let multipartFormData = MultipartFormData() - multipartFormData.appendBodyPart(fileURL: directoryURL, name: "empty_data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.encode() - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let error = encodingError { - XCTAssertEqual(error.domain, "com.alamofire.error", "error domain does not match expected value") - XCTAssertEqual(error.code, NSURLErrorBadURL, "error code does not match expected value") - - if let failureReason = error.userInfo[NSLocalizedFailureReasonErrorKey] as? String { - let expectedFailureReason = "The file URL is a directory, not a file: \(directoryURL)" - XCTAssertEqual(failureReason, expectedFailureReason, "error failure reason does not match expected value") - } else { - XCTFail("failure reason should not be nil") - } - } - } - - func testThatWritingEncodedDataToExistingFileURLFails() { - // Given - let fileURL = temporaryFileURL() - - var writerError: NSError? - - do { - try "dummy data".writeToURL(fileURL, atomically: true, encoding: NSUTF8StringEncoding) - } catch { - writerError = error as NSError - } - - let multipartFormData = MultipartFormData() - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNil(writerError, "writer error should be nil") - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let encodingError = encodingError { - XCTAssertEqual(encodingError.domain, "com.alamofire.error", "encoding error domain does not match expected value") - XCTAssertEqual(encodingError.code, NSURLErrorBadURL, "encoding error code does not match expected value") - } - } - - func testThatWritingEncodedDataToBadURLFails() { - // Given - let fileURL = NSURL(string: "/this/is/not/a/valid/url")! - - let multipartFormData = MultipartFormData() - let data = "Lorem ipsum dolor sit amet.".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - multipartFormData.appendBodyPart(data: data, name: "data") - - var encodingError: NSError? - - // When - do { - try multipartFormData.writeEncodedDataToDisk(fileURL) - } catch { - encodingError = error as NSError - } - - // Then - XCTAssertNotNil(encodingError, "encoding error should not be nil") - - if let encodingError = encodingError { - XCTAssertEqual(encodingError.domain, "com.alamofire.error", "encoding error domain does not match expected value") - XCTAssertEqual(encodingError.code, NSURLErrorBadURL, "encoding error code does not match expected value") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift deleted file mode 100644 index c583e4b..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NSURLSessionConfiguration+AlamofireTests.swift +++ /dev/null @@ -1,37 +0,0 @@ -// NSURLSessionConfiguration+AlamofireTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension NSURLSessionConfiguration { - static func backgroundSessionConfigurationForAllPlatformsWithIdentifier(identifier: String) -> NSURLSessionConfiguration { - let configuration: NSURLSessionConfiguration - - if #available(OSX 10.10, *) { - configuration = NSURLSessionConfiguration.backgroundSessionConfigurationWithIdentifier(identifier) - } else { - configuration = NSURLSessionConfiguration.backgroundSessionConfiguration(identifier) - } - - return configuration - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift deleted file mode 100644 index 7595076..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/NetworkReachabilityManagerTests.swift +++ /dev/null @@ -1,220 +0,0 @@ -// NetworkReachabilityManagerTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -import Foundation -import SystemConfiguration -import XCTest - -class NetworkReachabilityManagerTestCase: BaseTestCase { - - // MARK: - Tests - Initialization - - func testThatManagerCanBeInitializedFromHost() { - // Given, When - let manager = NetworkReachabilityManager(host: "localhost") - - // Then - XCTAssertNotNil(manager) - } - - func testThatManagerCanBeInitializedFromAddress() { - // Given, When - let manager = NetworkReachabilityManager() - - // Then - XCTAssertNotNil(manager) - } - - func testThatHostManagerIsReachableOnWiFi() { - // Given, When - let manager = NetworkReachabilityManager(host: "localhost") - - // Then - XCTAssertEqual(manager?.networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - XCTAssertEqual(manager?.isReachable, true) - XCTAssertEqual(manager?.isReachableOnWWAN, false) - XCTAssertEqual(manager?.isReachableOnEthernetOrWiFi, true) - } - - func testThatHostManagerStartsWithReachableStatus() { - // Given, When - let manager = NetworkReachabilityManager(host: "localhost") - - // Then - XCTAssertEqual(manager?.networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - XCTAssertEqual(manager?.isReachable, true) - XCTAssertEqual(manager?.isReachableOnWWAN, false) - XCTAssertEqual(manager?.isReachableOnEthernetOrWiFi, true) - } - - func testThatAddressManagerStartsWithReachableStatus() { - // Given, When - let manager = NetworkReachabilityManager() - - // Then - XCTAssertEqual(manager?.networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - XCTAssertEqual(manager?.isReachable, true) - XCTAssertEqual(manager?.isReachableOnWWAN, false) - XCTAssertEqual(manager?.isReachableOnEthernetOrWiFi, true) - } - - func testThatHostManagerCanBeDeinitialized() { - // Given - var manager: NetworkReachabilityManager? = NetworkReachabilityManager(host: "localhost") - - // When - manager = nil - - // Then - XCTAssertNil(manager) - } - - func testThatAddressManagerCanBeDeinitialized() { - // Given - var manager: NetworkReachabilityManager? = NetworkReachabilityManager() - - // When - manager = nil - - // Then - XCTAssertNil(manager) - } - - // MARK: - Tests - Listener - - func testThatHostManagerIsNotifiedWhenStartListeningIsCalled() { - // Given - let manager = NetworkReachabilityManager(host: "localhost") - let expectation = expectationWithDescription("listener closure should be executed") - - var networkReachabilityStatus: NetworkReachabilityManager.NetworkReachabilityStatus? - - manager?.listener = { status in - networkReachabilityStatus = status - expectation.fulfill() - } - - // When - manager?.startListening() - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - func testThatAddressManagerIsNotifiedWhenStartListeningIsCalled() { - // Given - let manager = NetworkReachabilityManager() - let expectation = expectationWithDescription("listener closure should be executed") - - var networkReachabilityStatus: NetworkReachabilityManager.NetworkReachabilityStatus? - - manager?.listener = { status in - networkReachabilityStatus = status - expectation.fulfill() - } - - // When - manager?.startListening() - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - // MARK: - Tests - Network Reachability Status - - func testThatManagerReturnsNotReachableStatusWhenReachableFlagIsAbsent() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.ConnectionOnDemand] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .NotReachable) - } - - func testThatManagerReturnsNotReachableStatusWhenInterventionIsRequired() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .ConnectionRequired, .ConnectionOnDemand, .InterventionRequired] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .NotReachable) - } - - func testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsNotRequired() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - func testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnDemand() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .ConnectionRequired, .ConnectionOnDemand] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - - func testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnTraffic() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .ConnectionRequired, .ConnectionOnTraffic] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.EthernetOrWiFi)) - } - -#if os(iOS) - func testThatManagerReturnsReachableOnWWANStatusWhenIsWWAN() { - // Given - let manager = NetworkReachabilityManager() - let flags: SCNetworkReachabilityFlags = [.Reachable, .IsWWAN] - - // When - let networkReachabilityStatus = manager?.networkReachabilityStatusForFlags(flags) - - // Then - XCTAssertEqual(networkReachabilityStatus, .Reachable(.WWAN)) - } -#endif -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift deleted file mode 100644 index c96f997..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ParameterEncodingTests.swift +++ /dev/null @@ -1,645 +0,0 @@ -// ParameterEncodingTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class ParameterEncodingTestCase: BaseTestCase { - let URLRequest = NSURLRequest(URL: NSURL(string: "https://example.com/")!) -} - -// MARK: - - -class URLParameterEncodingTestCase: ParameterEncodingTestCase { - let encoding: ParameterEncoding = .URL - - // MARK: Tests - Parameter Types - - func testURLParameterEncodeNilParameters() { - // Given - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: nil) - - // Then - XCTAssertNil(URLRequest.URL?.query, "query should be nil") - } - - func testURLParameterEncodeEmptyDictionaryParameter() { - // Given - let parameters: [String: AnyObject] = [:] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertNil(URLRequest.URL?.query, "query should be nil") - } - - func testURLParameterEncodeOneStringKeyStringValueParameter() { - // Given - let parameters = ["foo": "bar"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=bar", "query is incorrect") - } - - func testURLParameterEncodeOneStringKeyStringValueParameterAppendedToQuery() { - // Given - let mutableURLRequest = self.URLRequest.URLRequest - let URLComponents = NSURLComponents(URL: mutableURLRequest.URL!, resolvingAgainstBaseURL: false)! - URLComponents.query = "baz=qux" - mutableURLRequest.URL = URLComponents.URL - - let parameters = ["foo": "bar"] - - // When - let (URLRequest, _) = encoding.encode(mutableURLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "baz=qux&foo=bar", "query is incorrect") - } - - func testURLParameterEncodeTwoStringKeyStringValueParameters() { - // Given - let parameters = ["foo": "bar", "baz": "qux"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "baz=qux&foo=bar", "query is incorrect") - } - - func testURLParameterEncodeStringKeyIntegerValueParameter() { - // Given - let parameters = ["foo": 1] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyDoubleValueParameter() { - // Given - let parameters = ["foo": 1.1] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=1.1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyBoolValueParameter() { - // Given - let parameters = ["foo": true] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyArrayValueParameter() { - // Given - let parameters = ["foo": ["a", 1, true]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%5B%5D=a&foo%5B%5D=1&foo%5B%5D=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyDictionaryValueParameter() { - // Given - let parameters = ["foo": ["bar": 1]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%5Bbar%5D=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyNestedDictionaryValueParameter() { - // Given - let parameters = ["foo": ["bar": ["baz": 1]]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%5Bbar%5D%5Bbaz%5D=1", "query is incorrect") - } - - func testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameter() { - // Given - let parameters = ["foo": ["bar": ["baz": ["a", 1, true]]]] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedQuery = "foo%5Bbar%5D%5Bbaz%5D%5B%5D=a&foo%5Bbar%5D%5Bbaz%5D%5B%5D=1&foo%5Bbar%5D%5Bbaz%5D%5B%5D=1" - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - // MARK: Tests - All Reserved / Unreserved / Illegal Characters According to RFC 3986 - - func testThatReservedCharactersArePercentEscapedMinusQuestionMarkAndForwardSlash() { - // Given - let generalDelimiters = ":#[]@" - let subDelimiters = "!$&'()*+,;=" - let parameters = ["reserved": "\(generalDelimiters)\(subDelimiters)"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedQuery = "reserved=%3A%23%5B%5D%40%21%24%26%27%28%29%2A%2B%2C%3B%3D" - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - func testThatReservedCharactersQuestionMarkAndForwardSlashAreNotPercentEscaped() { - // Given - let parameters = ["reserved": "?/"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "reserved=?/", "query is incorrect") - } - - func testThatUnreservedNumericCharactersAreNotPercentEscaped() { - // Given - let parameters = ["numbers": "0123456789"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "numbers=0123456789", "query is incorrect") - } - - func testThatUnreservedLowercaseCharactersAreNotPercentEscaped() { - // Given - let parameters = ["lowercase": "abcdefghijklmnopqrstuvwxyz"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "lowercase=abcdefghijklmnopqrstuvwxyz", "query is incorrect") - } - - func testThatUnreservedUppercaseCharactersAreNotPercentEscaped() { - // Given - let parameters = ["uppercase": "ABCDEFGHIJKLMNOPQRSTUVWXYZ"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "uppercase=ABCDEFGHIJKLMNOPQRSTUVWXYZ", "query is incorrect") - } - - func testThatIllegalASCIICharactersArePercentEscaped() { - // Given - let parameters = ["illegal": " \"#%<>[]\\^`{}|"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedQuery = "illegal=%20%22%23%25%3C%3E%5B%5D%5C%5E%60%7B%7D%7C" - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - // MARK: Tests - Special Character Queries - - func testURLParameterEncodeStringWithAmpersandKeyStringWithAmpersandValueParameter() { - // Given - let parameters = ["foo&bar": "baz&qux", "foobar": "bazqux"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo%26bar=baz%26qux&foobar=bazqux", "query is incorrect") - } - - func testURLParameterEncodeStringWithQuestionMarkKeyStringWithQuestionMarkValueParameter() { - // Given - let parameters = ["?foo?": "?bar?"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "?foo?=?bar?", "query is incorrect") - } - - func testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter() { - // Given - let parameters = ["foo": "/bar/baz/qux"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "foo=/bar/baz/qux", "query is incorrect") - } - - func testURLParameterEncodeStringWithSpaceKeyStringWithSpaceValueParameter() { - // Given - let parameters = [" foo ": " bar "] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "%20foo%20=%20bar%20", "query is incorrect") - } - - func testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameter() { - // Given - let parameters = ["+foo+": "+bar+"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "%2Bfoo%2B=%2Bbar%2B", "query is incorrect") - } - - func testURLParameterEncodeStringKeyPercentEncodedStringValueParameter() { - // Given - let parameters = ["percent": "%25"] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "percent=%2525", "query is incorrect") - } - - func testURLParameterEncodeStringKeyNonLatinStringValueParameter() { - // Given - let parameters = [ - "french": "français", - "japanese": "日本語", - "arabic": "العربية", - "emoji": "😃" - ] - - // When - let (URLRequest, _) = encoding.encode(self.URLRequest, parameters: parameters) - - // Then - let expectedParameterValues = [ - "arabic=%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A%D8%A9", - "emoji=%F0%9F%98%83", - "french=fran%C3%A7ais", - "japanese=%E6%97%A5%E6%9C%AC%E8%AA%9E" - ] - - let expectedQuery = expectedParameterValues.joinWithSeparator("&") - XCTAssertEqual(URLRequest.URL?.query ?? "", expectedQuery, "query is incorrect") - } - - func testURLParameterEncodeStringForRequestWithPrecomposedQuery() { - // Given - let URL = NSURL(string: "https://example.com/movies?hd=[1]")! - let parameters = ["page": "0"] - - // When - let (URLRequest, _) = encoding.encode(NSURLRequest(URL: URL), parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "hd=%5B1%5D&page=0", "query is incorrect") - } - - func testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameterForRequestWithPrecomposedQuery() { - // Given - let URL = NSURL(string: "https://example.com/movie?hd=[1]")! - let parameters = ["+foo+": "+bar+"] - - // When - let (URLRequest, _) = encoding.encode(NSURLRequest(URL: URL), parameters: parameters) - - // Then - XCTAssertEqual(URLRequest.URL?.query ?? "", "hd=%5B1%5D&%2Bfoo%2B=%2Bbar%2B", "query is incorrect") - } - - func testURLParameterEncodeStringWithThousandsOfChineseCharacters() { - // Given - let repeatedCount = 2_000 - let URL = NSURL(string: "https://example.com/movies")! - let parameters = ["chinese": String(count: repeatedCount, repeatedString: "一二三四五六七八九十")] - - // When - let (URLRequest, _) = encoding.encode(NSURLRequest(URL: URL), parameters: parameters) - - // Then - var expected = "chinese=" - for _ in 0.. (NSMutableURLRequest, NSError?) = { URLRequest, parameters in - guard let parameters = parameters else { return (URLRequest.URLRequest, nil) } - - var URLString = URLRequest.URLRequest.URLString + "?" - - parameters.forEach { URLString += "\($0)=\($1)" } - - let mutableURLRequest = URLRequest.URLRequest - mutableURLRequest.URL = NSURL(string: URLString)! - - return (mutableURLRequest, nil) - } - - // When - let encoding: ParameterEncoding = .Custom(encodingClosure) - - // Then - let URL = NSURL(string: "https://example.com")! - let URLRequest = NSURLRequest(URL: URL) - let parameters: [String: AnyObject] = ["foo": "bar"] - - XCTAssertEqual( - encoding.encode(URLRequest, parameters: parameters).0.URLString, - "https://example.com?foo=bar", - "the encoded URL should match the expected value" - ) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift deleted file mode 100644 index 1cbaa8c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/RequestTests.swift +++ /dev/null @@ -1,617 +0,0 @@ -// RequestTests.swift -// -// Copyright (c) 2014-2015 Alamofire Software Foundation (http://alamofire.org) -// -// 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 Alamofire -import Foundation -import XCTest - -class RequestInitializationTestCase: BaseTestCase { - func testRequestClassMethodWithMethodAndURL() { - // Given - let URLString = "https://httpbin.org/" - - // When - let request = Alamofire.request(.GET, URLString) - - // Then - XCTAssertNotNil(request.request, "request URL request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "request response should be nil") - } - - func testRequestClassMethodWithMethodAndURLAndParameters() { - // Given - let URLString = "https://httpbin.org/get" - - // When - let request = Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - - // Then - XCTAssertNotNil(request.request, "request URL request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") - XCTAssertNotEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertEqual(request.request?.URL?.query ?? "", "foo=bar", "query is incorrect") - XCTAssertNil(request.response, "request response should be nil") - } - - func testRequestClassMethodWithMethodURLParametersAndHeaders() { - // Given - let URLString = "https://httpbin.org/get" - let headers = ["Authorization": "123456"] - - // When - let request = Alamofire.request(.GET, URLString, parameters: ["foo": "bar"], headers: headers) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "GET", "request HTTP method should match expected value") - XCTAssertNotEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertEqual(request.request?.URL?.query ?? "", "foo=bar", "query is incorrect") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class RequestResponseTestCase: BaseTestCase { - func testRequestResponse() { - // Given - let URLString = "https://httpbin.org/get" - - let expectation = expectationWithDescription("GET request should succeed: \(URLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - } - - func testRequestResponseWithProgress() { - // Given - let randomBytes = 4 * 1024 * 1024 - let URLString = "https://httpbin.org/bytes/\(randomBytes)" - - let expectation = expectationWithDescription("Bytes download progress should be reported: \(URLString)") - - var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] - var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] - var responseRequest: NSURLRequest? - var responseResponse: NSHTTPURLResponse? - var responseData: NSData? - var responseError: ErrorType? - - // When - let request = Alamofire.request(.GET, URLString) - request.progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in - let bytes = (bytes: bytesRead, totalBytes: totalBytesRead, totalBytesExpected: totalBytesExpectedToRead) - byteValues.append(bytes) - - let progress = ( - completedUnitCount: request.progress.completedUnitCount, - totalUnitCount: request.progress.totalUnitCount - ) - progressValues.append(progress) - } - request.response { request, response, data, error in - responseRequest = request - responseResponse = response - responseData = data - responseError = error - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(responseRequest, "response request should not be nil") - XCTAssertNotNil(responseResponse, "response response should not be nil") - XCTAssertNotNil(responseData, "response data should not be nil") - XCTAssertNil(responseError, "response error should be nil") - - XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") - - if byteValues.count == progressValues.count { - for index in 0..? - - // When - Alamofire.request(.POST, URLString, parameters: parameters) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - - if let - JSON = response.result.value as? [String: AnyObject], - form = JSON["form"] as? [String: String] - { - XCTAssertEqual(form["french"], parameters["french"], "french parameter value should match form value") - XCTAssertEqual(form["japanese"], parameters["japanese"], "japanese parameter value should match form value") - XCTAssertEqual(form["arabic"], parameters["arabic"], "arabic parameter value should match form value") - XCTAssertEqual(form["emoji"], parameters["emoji"], "emoji parameter value should match form value") - } else { - XCTFail("form parameter in JSON should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } - - func testPOSTRequestWithBase64EncodedImages() { - // Given - let URLString = "https://httpbin.org/post" - - let pngBase64EncodedString: String = { - let URL = URLForResource("unicorn", withExtension: "png") - let data = NSData(contentsOfURL: URL)! - - return data.base64EncodedStringWithOptions(.Encoding64CharacterLineLength) - }() - - let jpegBase64EncodedString: String = { - let URL = URLForResource("rainbow", withExtension: "jpg") - let data = NSData(contentsOfURL: URL)! - - return data.base64EncodedStringWithOptions(.Encoding64CharacterLineLength) - }() - - let parameters = [ - "email": "user@alamofire.org", - "png_image": pngBase64EncodedString, - "jpeg_image": jpegBase64EncodedString - ] - - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.POST, URLString, parameters: parameters) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - - if let - JSON = response.result.value as? [String: AnyObject], - form = JSON["form"] as? [String: String] - { - XCTAssertEqual(form["email"], parameters["email"], "email parameter value should match form value") - XCTAssertEqual(form["png_image"], parameters["png_image"], "png_image parameter value should match form value") - XCTAssertEqual(form["jpeg_image"], parameters["jpeg_image"], "jpeg_image parameter value should match form value") - } else { - XCTFail("form parameter in JSON should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -extension Request { - private func preValidate(operation: Void -> Void) -> Self { - delegate.queue.addOperationWithBlock { - operation() - } - - return self - } - - private func postValidate(operation: Void -> Void) -> Self { - delegate.queue.addOperationWithBlock { - operation() - } - - return self - } -} - -// MARK: - - -class RequestExtensionTestCase: BaseTestCase { - func testThatRequestExtensionHasAccessToTaskDelegateQueue() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("GET request should succeed: \(URLString)") - - var responses: [String] = [] - - // When - Alamofire.request(.GET, URLString) - .preValidate { - responses.append("preValidate") - } - .validate() - .postValidate { - responses.append("postValidate") - } - .response { _, _, _, _ in - responses.append("response") - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if responses.count == 3 { - XCTAssertEqual(responses[0], "preValidate", "response at index 0 should be preValidate") - XCTAssertEqual(responses[1], "postValidate", "response at index 1 should be postValidate") - XCTAssertEqual(responses[2], "response", "response at index 2 should be response") - } else { - XCTFail("responses count should be equal to 3") - } - } -} - -// MARK: - - -class RequestDescriptionTestCase: BaseTestCase { - func testRequestDescription() { - // Given - let URLString = "https://httpbin.org/get" - let request = Alamofire.request(.GET, URLString) - let initialRequestDescription = request.description - - let expectation = expectationWithDescription("Request description should update: \(URLString)") - - var finalRequestDescription: String? - var response: NSHTTPURLResponse? - - // When - request.response { _, responseResponse, _, _ in - finalRequestDescription = request.description - response = responseResponse - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(initialRequestDescription, "GET https://httpbin.org/get", "incorrect request description") - XCTAssertEqual( - finalRequestDescription ?? "", - "GET https://httpbin.org/get (\(response?.statusCode ?? -1))", - "incorrect request description" - ) - } -} - -// MARK: - - -class RequestDebugDescriptionTestCase: BaseTestCase { - // MARK: Properties - - let manager: Manager = { - let manager = Manager(configuration: NSURLSessionConfiguration.defaultSessionConfiguration()) - manager.startRequestsImmediately = false - return manager - }() - - let managerDisallowingCookies: Manager = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.HTTPShouldSetCookies = false - - let manager = Manager(configuration: configuration) - manager.startRequestsImmediately = false - - return manager - }() - - // MARK: Tests - - func testGETRequestDebugDescription() { - // Given - let URLString = "https://httpbin.org/get" - - // When - let request = manager.request(.GET, URLString) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertFalse(components.contains("-X"), "command should not contain explicit -X flag") - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - } - - func testPOSTRequestDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - // When - let request = manager.request(.POST, URLString) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - } - - func testPOSTRequestWithJSONParametersDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - // When - let request = manager.request(.POST, URLString, parameters: ["foo": "bar"], encoding: .JSON) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") - XCTAssertTrue( - request.debugDescription.rangeOfString("-H \"Content-Type: application/json\"") != nil, - "command should contain 'application/json' Content-Type" - ) - XCTAssertTrue( - request.debugDescription.rangeOfString("-d \"{\\\"foo\\\":\\\"bar\\\"}\"") != nil, - "command data should contain JSON encoded parameters" - ) - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - } - - func testPOSTRequestWithCookieDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - let properties = [ - NSHTTPCookieDomain: "httpbin.org", - NSHTTPCookiePath: "/post", - NSHTTPCookieName: "foo", - NSHTTPCookieValue: "bar", - ] - - let cookie = NSHTTPCookie(properties: properties)! - manager.session.configuration.HTTPCookieStorage?.setCookie(cookie) - - // When - let request = manager.request(.POST, URLString) - let components = cURLCommandComponents(request) - - // Then - XCTAssertEqual(components[0..<3], ["$", "curl", "-i"], "components should be equal") - XCTAssertEqual(components[3..<5], ["-X", "POST"], "command should contain explicit -X flag") - XCTAssertEqual(components.last ?? "", "\"\(URLString)\"", "URL component should be equal") - XCTAssertEqual(components[5..<6], ["-b"], "command should contain -b flag") - } - - func testPOSTRequestWithCookiesDisabledDebugDescription() { - // Given - let URLString = "https://httpbin.org/post" - - let properties = [ - NSHTTPCookieDomain: "httpbin.org", - NSHTTPCookiePath: "/post", - NSHTTPCookieName: "foo", - NSHTTPCookieValue: "bar", - ] - - let cookie = NSHTTPCookie(properties: properties)! - managerDisallowingCookies.session.configuration.HTTPCookieStorage?.setCookie(cookie) - - // When - let request = managerDisallowingCookies.request(.POST, URLString) - let components = cURLCommandComponents(request) - - // Then - let cookieComponents = components.filter { $0 == "-b" } - XCTAssertTrue(cookieComponents.isEmpty, "command should not contain -b flag") - } - - func testThatRequestWithInvalidURLDebugDescription() { - // Given - let URLString = "invalid_url" - - // When - let request = manager.request(.GET, URLString) - let debugDescription = request.debugDescription - - // Then - XCTAssertNotNil(debugDescription, "debugDescription should not crash") - } - - // MARK: Test Helper Methods - - private func cURLCommandComponents(request: Request) -> [String] { - let whitespaceCharacterSet = NSCharacterSet.whitespaceAndNewlineCharacterSet() - return request.debugDescription.componentsSeparatedByCharactersInSet(whitespaceCharacterSet) - .filter { $0 != "" && $0 != "\\" } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-root-ca.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-root-ca.cer deleted file mode 100644 index b5ae743956bc597fc29a8662f5ec08503ed5c5f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 988 zcmXqLV!mO}#B^W*GZP~d6CrG zy*T|~-Q)wykIUuQsn7d3T_Yf`;PA|c@3|EIrb}htXz6jwnDMMHMzwE2@03*naV}L7 zO#xT48a6M@t_;k(BCmG5ri}fo4!eBt#)u1+heH{E&y{=luswY;!&~(=O0$y`=lUfq z&@nHPGYR{18`a?o;vgO-t@D`@^Ip67-Vh9dha^&geLj%R6|vuKsb-4AOl=UrZ#o7K#4k*nem z|NHg{TF$#7{VpC3K5N7-u;}i&YNeh{hqiyc8ndX{Wy+tF7bo`H`bGUx{mC>p=y;Cf z*PrY$SAT~-w#Zn<)%!i{Xvwz=zn5I8yOy~$wCCi~g=~8-dUn>ozxVE7)SM8zUmI6O zhomD!BhUX5K3Qsw>tClTTdvXxYE= z=0vV@8IuDaZNHw~x5n-Ww@aFM{*p9ZgsjCV&@uU&KV(Sm1Rk3YBiDG&kxu0m-9 diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca1.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca1.cer deleted file mode 100644 index 38596c5924ab478f3de0a4779a86685fe8ee5c60..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1025 zcmXqLV*YE;#PoClGZP~d5E*c@acZ@Bw0-AgWaKtzoNOp%Ai>5Q%EHVe=$Mn3o1d0h zl&TPvpI@Tj>}V)tAOMo%;^BnL8S(;60E%(*u!N)*ml*OJ@PfD;JZ%0&spnC%u5G3e4t$3#Ha)e z4|o7GvNA9?G4eAQG%<29H8Cap!Wxs`dl93XNN~FXem` zx@-UU?9V<)tJYsDaJI-#$ebsqvniqEU)Q;foo_BIagO3TcViL1gM6Z6qW@WqFPC4$ zu^c_&H0kB_1ux27`gZd@Tdx8qr z`WG<|uYKmlPo)6W8PBdbzq(`<_3t`>l6$>x}%AWFI|CjYFldAI~jB+E*J0&AeCeN%& zn;_D^XV#xi35g|oD_`o&6K*=VS#;La6Sg-T@BLf*SL8roZON%kPhW{uT~64#d)>sn zI|KMKGQ8DZwJmx-vsd=z39%C%?aEJa?DyPH>2O+vf1T}9jl`L-HLThTg5o#_JhAY QXD*#^SykQA?i*wc06eg6RR910 diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca2.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/alamofire-signing-ca2.cer deleted file mode 100644 index edd135c7a9e6a1e1248fdbe53912c86937eca237..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1025 zcmXqLV*YE;#PoClGZP~d6C<+$Hyfu`n@8JsUPeZ4gT~2*QU(%i%%LpIJc5oniMjb{ znMJ7zLHYS53eJv(LIwgLIW8VfxSSy`&;+0uHxEllYH^7nzX30Z%fZ9uUzD1jpJ&Kz zzzGsy6J`nxHWW1A2XWYWI0EvEN^%nOQVbOh#@%H>Ur zO2F`d2QVWm19KB2KZ8LNBNtN>BO}9^6${rcs{6ffee7?GDI0#c|7Ps@an#_|Qw5>5 zpQPEd)0|!&{@phD^86r?IairH&bD9v^2RxNTVKcgANEtW@HCqq_~F57;oJL_Q6?vB zKf7e=BPsEZ`q^`sTjy)l^?!`qT`);XzF~@h!@G+Xi)W-SUnsKfpzno>h_w4*NndV6 z+>+=Gwc5JymgBFm!0x!eo)Y!##nlPig|8iyCZ%fbpLum-C;wEtnHzRknhJOR{d_w$ zY)V4H)GyA03A0E}7*($Su)~CNs*0hA#Z7b7j$6#x#}mApO=}Nlw%K;noO}?r zG~24;YEHnZnLXm}&CT=FqC5) zW*`L-;0FsZGqeA1Ffal}u&gRbK*Kh3we z)?GKL?r}Mk`hEKW$$66U1>9auW%F-JUEw~n?b;Ss$==?hTsmUhm#1B^a#Y@2Qle*Rlr>s^a2{=CkeE@t3ZAd3lw8`ZSqb?_vhqo70u51m3A; zwzDqVnHj(Gp6n6^or~APuWRmD9+}U1*FN`6^TJ1}_iF#OwFYcmwy8ug!0PbliTNyB RFDICuk`!U#t9f!@KLAIsYnuQ7 diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/expired.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/expired.cer deleted file mode 100644 index af5e484327ddac5c36004f3c945bf668814c8645..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1052 zcmXqLVv#UtVrE#t%*4pV#K>*H&Bm$K=F#?@ml4QmoNg#*Aj8HS%EHVe>X?(5o1d0h zl&TP%nVy%Km#*OKXk;j4AOMo*;^BnL8}b580g7?+u!N)*ml*OJ@PfD;JZ%0&sp-F-B(hcOq zc@0es%ngkUj7$s-jH94jV<^|4vC~k%fDdFaGY`9KMFG&+DFfx!CPpP-2*87tk(GhD ziIJbdpox)-sfm%1Vdu9SGv)MbGVW~+cejb3?)cxMrltFQ|8)J{XX3B(+clP?WhW?4 zKkQ?*xP9loiumhx*NlCHo-X)wa_wjJ56-s#>T`GUN4@N=*GyY?Pr0fuS>%l6r{*vJ z|FMScV+_75tC>FK*QeLD&-C^;mYrkR#2LBsz=6|Q3+)eoKRqpLYx=CD0-@RkWy_EI z#%IrFT8+>W-ITk_KbD7r;;WoQ1q8^?ToMkF$;KAU6!2F&%7cU?b*V! z*MFhfj?J=1>rV1NHW1*vIOEWYmkN#HpR;e?t-AB_*KNBW<*&|tej%h*V$|SP_G{X@ z1W|i=w^w_8KBhXnEEdz}J1 z8yrE54E{IDMgK}>P1(26Mun=*)S0{w zzovZ>ZvWQ#o2z@98NX#C$EpSWX?{~o{EyFm{QZ=$tP{^lHP44TgU`>OckhLokwl*T&nu@tS-8z~8&s|1Ye5 zv+6hdkq`yJKzn=Z0FGNi7d(ynVi4 zkA-xPQGZx0j12~S?+9?9-b0j_9Xwg8Gi?xlg*+vf6uPDseE-UAJ=xhpv*0n Tf48xj{1J&y>gX_zk=X_SmUegD diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/missing-dns-name-and-uri.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/missing-dns-name-and-uri.cer deleted file mode 100644 index 9e4ef3cde3cd05fb909ce62827200b32a5c1f554..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1015 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 Zz_9Dp|69*IZBHC#jlZ9<{JL}B4FD>YcA@|P diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca2.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/signed-by-ca2.cer deleted file mode 100644 index 709889db19b2b174e41d56d6e56ed9b79e14bf19..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1058 zcmXqLVv#dwVrE;w%*4pV#K>X5&Bm$K=F#?@mywa%pmDmPoPi7*b0`ZlkEml#Vs3s~ zW>Km_aAta5W?s62v!jurkbwY5o{NVQE^o*SGzBQe&BGFsT3lktZ@>%Ua`3SE7p11> z=NWPvaDoKbgqcEv4FwJOK^%4-j)454lAOf66hlP=dAKV$8O4N3fTlPk!mQWJFG@F% z6X!KFH83|cGB7eUH?@co=QRRy4J@HtgT{VCF#{2h!OT3oAor%GC?r)5q>Gyvm4M*@ z4_ro82IeM4eg=akMlPl%Mn;BxD;3Y(X4IQmXQdXJ)6QmJWRNqTEmpMIO8w@n*(MGN ziXmGc_X^9u4RQE%WYzAOE9Qn|eb~95Gt}d{K+)}WMX#<_*o6hASC*+V?lZf8p)`-F z_0V7K?BjuXO+mMIrylQMDOjH~U!}5Ddq>_|N&l#4_a{9`pIdyA@sW{su-w%!%g0Bz z&OI1#$_Y@AzZ8~Z%(&jOK2iB%7}nJ)LOSyHEP z+qFJoZZGpJL8d+bbpxmMzBWj{bf##B$p1oCCT2zk#>KS;)!_6X%g@O8pM{l~nf-Tz zfe|nsWmQ1}8U|`?9NKJ*tgP(JOmG$>8#_phiJ1k)U^OrS=@A6!(K66z11BLplqA%I zMGQHDxWN&`$lxgJQoiKt1*-AMzT`mUA`%xyZbc3bk)OL}s%a`W;nt%FjhBw#h81H#mafbG9 z*Nccc?K)_KJJmT4OE6wS8Y%$BScK4ToPx>##M`t(2BvX-aZxBHdFe!ug}FTuCv zHivgie|LTQswp!od{Q244hvkmP$z-uKEuPvCdP*L*{c^XI~;g&(;nFybLA#0$NtQ0 ZV_i4>{92YXIf)5E8;;F8&;7)w0svYfaTEXm diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/test.alamofire.org.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/test.alamofire.org.cer deleted file mode 100644 index 01c404b34506facde5b7e4bc537e650549a3f36a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1063 zcmXqLVo^3|V&-1J%*4pV#K>vD&Bm$K=F#?@mywa%pmDmPoPi7*b0`ZlkEml#Vs3s~ zW>Km_aAta5W?s62v!kJ*kbwY5o{NVQE^o*SGzBQe&BGFsT3lktZ@>%Ua`3SE7p11> z=NWPvaDoKbgqcEv4FwJOK^%4-j)454lAOf66hlP=dAKV$8O4N3fTlPk!mQWJFG@F% z6X!KFH83|cGB7fOYq^G{m(9!8vcE6Goh&< zzV)SX)ZO`Bac^$rDLb^+wD!3ji$8dZ@1=su{TXwtxElX6WquAheSFQzj8jjvdh!hu zBULV>&(jI}W1GE=b(J{B|NpNzqE8r^&R%5u{NKvTuSX=*+LpXha4S9V_tvs+&bq3} z+>c*Znp*7WYkFy(AtNNAzqF5I-5aCQJMSkczCV`pn>Ev=IBa740w$g5xgJNIrkwhj zH+%Vl2O69a)zKZ*>A6QfoiV#u)5l@+)gUkL?i{Y-f5mzGRxuxR=nyC`Sz|#>mRb&dda7F|x6P#F&^_U<_6R6ObN3kRB}qjW#Ulpb3i@as+XM zBZ!e<`#OFHnQr6Mz_Yo#J(Xiidkc4;+PqL^S=avLE)#{#J!;(&lYVHV?z`+RXZ=ic=an-owfVJZj~nw}@71>P zhQC^`M?4mr9i0@VmExSnvQ&f1wqaw|`V9gV&lU$9n7aD#y=i5t|C{dSZ5KcL(Q~J5 zLT6K#0?$$FRkxqrxS`B8mn*Gr_fpPdj4ORMUp<|mbmZVyj!l2>D;+-99#O}f#N7O} z%%W6<;LP;A%)E33XGbGLAp-%BJQoiqT;7luXbMn_n};PNwYbEP-+&jy<=|oSFG@|% z&oksU-~Ug(c=>rYN}h1uOU^=B5sm zlbaZofB^vyT}D<0<|amd27@L>E~X|%Muu~B7e2(DFP2UJcj>iZ-{i_0zt=X}O}}uL zi_I= z4G@^LV%e(6iz5m`&g_(km|Hv1b-~1y%^bOFS6S<%t2JHutZ$<8N3~GQWRL37f|QV5 zf7e}D>Ti^`?Z>kN)t>7MPjiT#J{fIz*JbBQ=kRlBUpx+fw^U)h&0OWJefjjJ&E`dG zHnN|s4;D!0Hg2_iGvVo;J~gISYt^MEyRAG{D*B<~sHIar6EhKK*%`rv-0j#1ubNzPw@S*@oZeS1xgV#&5ht+tXqu`;KHEYxP$SC`rU-oTy8~$p`S_io#YgUhl=c4XLc#p%{**7&-}NDJ(EkM f@b9xZr!4nfd%ZjPY1|&O@cWB>M6#Dy-B<_!xbJV+ diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-uri.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/valid-uri.cer deleted file mode 100644 index 80838d4d7c0caa339d31118862c0c87e0f1cc6d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1034 zcmXqLVqr6AVtTiLnTe5!iILTSn~hVe&7-99#O}f#N7O} z%%W6<;LP;A%)E33XGbGLAp-%BJQoiqT;7luXbMn_n};PNwYbEP-+&jy<=|oSFG@|% z&oksU-~W-*SW(%JPs~=3)`|)J{ zZ@a*MUw#)nFPmymIy-v7rIHrAGkdf86(7e%FG~HVEa})aCDV1a|6|2{2?;ZU*D%p6|-%b2B8C$zVEEPhy0=$HBG zZp5Nh6PV1NiYGO&geko|wr`DB!Wy9|aw#5B`@}UlpF|7Vr2G6*In{1Zc~|j{PGgL~ z3G2YiNsFf6d-F~rdA-rXeV#jumh5|!KD*k=pNW}~fpKxBK{_}s$nrBX{%2ujW@i80 zU|C75W3U=1fb6N_2YUx&2=zFS)W^ z;_Qn!``$-ePR=g3We=>F)l?ytyX-)~;iv~p&E0PDf|;is&|t#Mxw(noN~;Qm zoGckGu!{<|O1TP4c>P_yQF}Xk#P+hX6Qz0mIxcE&8Rq9?*lFI{9T*(+$NTW|2aV6z zvNla|JE`=kPq6OMl-=>g>cz%wb=n{HH}C$>5LUzVEUW+b(P=90TUNeYbVGcX(y{9) ViJ}EcpL>p^?$Mta5~Lz?4ggBDYXblP diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/wildcard.alamofire.org.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/alamofire.org/wildcard.alamofire.org.cer deleted file mode 100644 index 959a5d82d677e0a185d805604dc3fb5465f14e05..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1054 zcmXqLVv#avVrE*v%*4pV#K>j9&Bm$K=F#?@mywa%pmDmPoPi7*b0`ZlkEml#Vs3s~ zW>Km_aAta5W?s62v!kJ*kbwY5o{NVQE^o*SGzBQe&BGFsT3lktZ@>%Ua`3SE7p11> z=NWPvaDoKbgqcEv4FwJOK^%4-j)454lAOf66hlP=dAKV$8O4N3fTlPk!mQWJFG@F% z6X!KFH83|cGB7eSFtLmh=QRRy4J@HtgT{%55(Z)*gPD2wwe(Ol50smm7?pq_0S{hA zRtDxKMt%l^CPpr%CPqevOl@{=DX#^g`;Wd2DS_>G_HY2csE!8`Vp;?5aL1Ul$_(DKY%b ztNkBNzL@>M_>%0J7iO`~j&3=i5%ya0W$0_i*9<>eJB~KXz6dM2A@l9mo=EQ^ft^bq z&Dpm$$$IMNqW+f4g~yd6PxO3cynm_gOEWVQGb01z;&OvhaEg%SXJq`(!ph9d{=31z z2pE&HsvrRk12r}dZ8k<$R(574IE#^u9VEuY%mQPu8t8%a2!iye7$~)&CxRw)0pzIR z21gAegVDxw58qxtX?$1a#Ga0}C&$|oAJp7l8agGz$2!9`=X}CL^{=0IsOuhbk+EBP z(0TsTV}Z68?3Wv??{j-M`{#qdw|_s?vEJ1rboLM{hyLo)>4y@OXP3Gv?QRyFXD@Z} zs@5|VPOX^3aTg1HeCs+`pJ|#u_RRY3Ykl%W8B7Ou{7SkW_Gvf-d~XO`8P zjC~XPy5CsNU%w+m<@4TJ`Od8(kEi7x_nI;5`9uaZ-7H diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/intermediate-ca-disig.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/intermediate-ca-disig.cer deleted file mode 100644 index 14866eecc6afb3c1d2d0d6fc6318866853b3de3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1542 zcmXqLVq-FBVt%!NnTe5!NsvQ)Qjl53*AoE@5WsA}%f_kI=F#?@mywa1mBAp$klTQh zjX9KsO_(Xz+fdj*5X4~@=5i`ZEXgd+Ni0i*333T@xnve+rYj`s73&#F8i<2bG7Aeh zJ1RiLgYxrB6oQNl~`{Cvy%teP8|a+ zu$?^02s@2DjTD?yi%K%nGLwNW&d*Z_PAw|SOinduVpKx*Eh8%fa}y&!15licsfm%1 zVN=jaQ37(u96fz6WAC*4?=I$gKHb}@WF4ka)yy?hez;xTYDP5LT$4K$zVWT%m#-X$4&fhsHRb9*Q&5vypt=7J0 zQ8F$`xFFT!z~Pvq_ArwtMSN|*+vygGZjn6~cN?h+6)a!TeLuKqPD1g&6F>j$UNAS& z@oRBGpkhqspUe8386O_mH*_S%vdo=)bn%+#3njV1T`M^jS?)Eqi+VNZzWL?!!fD6C zTW?)GTEF1nj@k)YyZ29jcQe%H!_oWyu4tP~lvdC75}ott@;OW4dwY-k`dgyDY~gD5 z^EtRfeI|Fm>9(* zu!U7}L9xDp3`naWi>QHcqhN7C5in0CCpy4FA32Q!b2M`k(9d41j@?{&SCR#hpoKD(k5>9dGuR*^RbMnfoslqbab@c6AbyICgv2Ha_7dQpx)qn zxn_QxVzo!#oNy~M41KATvh?W>9o|p&&p+{UWR!pHL;X=i1dUEU&w~&Q1I;-*<5*8hE?vcL|O&V9Fd zxwh;x_xM=Xduz3xseJYRXVGdNdz@BH^PB!cRoPuWKJ={Vj&}*cO2-Yg#F#D_Nl2&h zx;njmllN#nqpZUj$6Gf~3HhmCxow{M=(jy%+pHBElJC8BdFvwkKPXuz$3wcNN%~o` z!F;*N+X^e!KlJW=W5fDHhJXL=_v^I}`*&wvFX&jACLwWS&z*hM;X+epmZpflmA6cO KzR8dO_7(t(kV-B9 diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/root-ca-disig.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/disig.sk/root-ca-disig.cer deleted file mode 100644 index e5e2343aa815011b5044128b849639f2971c30be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1389 zcmXqLV$C#YVh&uu%*4pV#K|yeN5}0AT?dm5c-c6$+C196^D;7WvoaV28FCwNvN4CU zun98-dm9QH2!c55!dy;8i6xoEIf-S7FhMS1E|<*W%yflBy<$B>Nds|^N@igJXGaBy zcu;4*IHwBb49)#I$S)@^iW}FUE}Z7ZUGMt)_7JtTU{ApbL)SN%={bEnJVnE z9a&yF?%l_%V#qPE#vtMS+I(A0de%HQD-6l+WGeRZ*^yIIKzvXkzmsxS~ zjY}qz!=|0~;b9Q7iI+Ni;&{%owU-T-?|Jd`VcNAzznQl|7Q1+! z&Yt(WH|_4s^Vd2Zzp+f}($vh&wvu^XTFX?(_xZr{y{9Gb&P~{KC@o>zMwWLcpSA6r zmFBSGx!~JISLW_->5(rEvI*|Jd%l6mKh>ck#y#M~>}T?g)lXbjM7Pd*bT8`a@t;;M zY2HtaLTaAm%-PImE52xxiO{vWO)ETiU#!w_*tbYb{{9nldBNh}6Sz{H7xC8oU}Fq5 zuHC@9}Ql}`Gee`Y>kcbvbt*>jThWlg@B($l^t?yx?hy{#f=i*o*lzn3?~mCDbY zx?;_@TMv&KR{y@}w)xVY^esstyEwlmZ^tN(mW2zxIO(|ttB=}vQW z3g79id#?E(tg*@K70&%#{o3Hd9pCjwuWnoF6J2=nh2g#z7Hl31r5?SybWg}KLh645 zUsLI`?I+oD_}>4w_&B5R$o6_Z(F>}XdzI#Dzh(XA=Dz0bfe%-#AH8`uEqa2mpIn&L z>kaRx?VhGAxa*U1TS>~)6B?!WWleWoGH3iU;$`|=v?t{-?UJ%hg>#$;31nFFm7uk)%le~((ozJI0Dq|XUT z)1QbeWS{L72>kJhGC5SVmOHzwVii>k}%Mx=kQ*?`rGL7_7K+e@G&NgUbR6_PRBP#=Q6C*zZ zP@IdYiII`v;L$}o;m>N%`hGf{*2widxjn-2iSTBHjMBa-xeX30F8oe)JSV9-!~0a( zx47&(qx@pbg&yD*&%IF)YFz{{?=yS>}be~Zxiws?jmN5jwCeO1{SmvG4M7&FJC z@0z@`CdlhCB%05P>16%5;uiO_XQ$5So;rJ|usVAw$AQe7o{{S`S*kVbj;F>hSgdtn zqSK_R?uVfpjdq)q0TZ0tUom1AGxH|Lwf;A0lTG^#H5_wlV6DsP& zI^rQ;1+$TiK}N#i1C6^sGchwVFfMLlJOd1o69%%t5S8U)5n~bQUh>UVuJ&C4@9jTJ zPcZGDt;ySW#6TV-t;`}}Al4wFvUHD?Mv|zL(NBY@lOOG#EaY6V(SRGIfS-khnTchC zK_!SI&r)PiU|_buWPwqeK}JbQft9{~a!P?AJcjg(OOuilL6N4PT$F?0=>d6|`VcXT zP>DsKFvx0E79ImGHV$nzMpjmKW<~>Lke~vKjDeH^9~+N$quj*F&$xh@gOSmIgN-e{ zkq4M<3>rINIv5#QY7D9jEMa^D#x`B32jEWD%}*{aKzIejL%7Sp7Os`4&5)4aftd%P zRWBvA2xv3Vy@D)81_q6S#RWyc{Ft2R087|ScvC%URtKhdMurHb`zFkX%!MC%ef3=# zb>+|e+aK1)w3jyb9)CD@+N@orpFM1CZ{K^p-}~OnF_&c$8WWdGu7Z{OjV z-t&DM!fkf#2)?<=cD4A~Gp}cAU(mc>rtG>s|H)zVZ*D>Be=hkZ>8a+Ntnzqn@82Wt zo9-9hTjpT4dhVMGQlY1AbhKVfkYHkz*zb(TvG9Q#ICx{Cl!=*};TW=jY~imwd@vCN1rF-Dlr~b8{|i0|17G B%wPZj diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.cer deleted file mode 100644 index a9a2bdb609daa7e839322e15a54b17a9b1fd2fe8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1016 zcmXqLV*X;##B^r?GZP~d6DLDgW5|QR=&l|EUN%mxHjlRNyo`+8tPBQ`hTI06Y|No7 zY{E>T!7vVoFq5;Rp`ZajNQPaQ!zr~WJ2fY@(ooAl10=*HtQeA7T#}iWuHc+nRFavN znVeXXTC9+nr{I{An49mGS(IuZC(dhVYG`C=XkcVuX6C)$ToV}tZ70wnBr+U}l*8bzo>F8YBBg8;!~smUdzShal3{mKiw zW$rKDX!iR~*MVgBSeBpF5kHs}KB``FXH#BSZK`X>v05R%w@i5cWJynb=A#}z-`5q@ zABho9nHnM>sl0AYRm_4HTfg@tZ{SE?hF}&z|Qx(p7TKreV6-h6@E{wyyk}m%XF&(C&tHVOMloFUMGT$*cQ* zDBEH*cY&gNpH)h^k&wDZ%aRW?UenW4f{@X{^sd2 z;Jdax-rZ%j^#p%Z4Ue6+t^;7P8ORpo4nB9n_N4y~0qnk-XZlNEX=WRA?vOvS*SqE9CAmmHJ- V-|XpppX}Djx#&}O&ZT(4O#m_vZx#Rm diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.crt b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.crt deleted file mode 100644 index a9a2bdb609daa7e839322e15a54b17a9b1fd2fe8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1016 zcmXqLV*X;##B^r?GZP~d6DLDgW5|QR=&l|EUN%mxHjlRNyo`+8tPBQ`hTI06Y|No7 zY{E>T!7vVoFq5;Rp`ZajNQPaQ!zr~WJ2fY@(ooAl10=*HtQeA7T#}iWuHc+nRFavN znVeXXTC9+nr{I{An49mGS(IuZC(dhVYG`C=XkcVuX6C)$ToV}tZ70wnBr+U}l*8bzo>F8YBBg8;!~smUdzShal3{mKiw zW$rKDX!iR~*MVgBSeBpF5kHs}KB``FXH#BSZK`X>v05R%w@i5cWJynb=A#}z-`5q@ zABho9nHnM>sl0AYRm_4HTfg@tZ{SE?hF}&z|Qx(p7TKreV6-h6@E{wyyk}m%XF&(C&tHVOMloFUMGT$*cQ* zDBEH*cY&gNpH)h^k&wDZ%aRW?UenW4f{@X{^sd2 z;Jdax-rZ%j^#p%Z4Ue6+t^;7P8ORpo4nB9n_N4y~0qnk-XZlNEX=WRA?vOvS*SqE9CAmmHJ- V-|XpppX}Djx#&}O&ZT(4O#m_vZx#Rm diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.der b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certDER.der deleted file mode 100644 index a9a2bdb609daa7e839322e15a54b17a9b1fd2fe8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1016 zcmXqLV*X;##B^r?GZP~d6DLDgW5|QR=&l|EUN%mxHjlRNyo`+8tPBQ`hTI06Y|No7 zY{E>T!7vVoFq5;Rp`ZajNQPaQ!zr~WJ2fY@(ooAl10=*HtQeA7T#}iWuHc+nRFavN znVeXXTC9+nr{I{An49mGS(IuZC(dhVYG`C=XkcVuX6C)$ToV}tZ70wnBr+U}l*8bzo>F8YBBg8;!~smUdzShal3{mKiw zW$rKDX!iR~*MVgBSeBpF5kHs}KB``FXH#BSZK`X>v05R%w@i5cWJynb=A#}z-`5q@ zABho9nHnM>sl0AYRm_4HTfg@tZ{SE?hF}&z|Qx(p7TKreV6-h6@E{wyyk}m%XF&(C&tHVOMloFUMGT$*cQ* zDBEH*cY&gNpH)h^k&wDZ%aRW?UenW4f{@X{^sd2 z;Jdax-rZ%j^#p%Z4Ue6+t^;7P8ORpo4nB9n_N4y~0qnk-XZlNEX=WRA?vOvS*SqE9CAmmHJ- V-|XpppX}Djx#&}O&ZT(4O#m_vZx#Rm diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer deleted file mode 100644 index d22b9ab..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.cer +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID9DCCAtygAwIBAgIJAIqBVOBRW4qMMA0GCSqGSIb3DQEBCwUAMFkxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoT -IVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZTAeFw0xNTEyMTEwMjA5 -MDlaFw0xNjEyMTAwMjA5MDlaMFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTER -MA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVz -IGluIEFsYW1vRmlyZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJy9 -FTR4QzhYyo2v2yv8SwlBQ32MHQF8Ez1J+YBsyZjcTVOGJtyPxrbJxGuRhyDzKUqz -X/zTsT+JPvZQXXBmyq0l0DhCcK84cHyVLcdEAzukam85EpJRWzSg8kDKzuTx2oLk -X8Zdcj7EEtYWV/5+/YahM4tXYhg+Lqm6koJEVHMld6zfedC7HN+jsTb73IrAY0dd -BPl7WPgDIPEl0kcGI6F7NS0+CKsgX412E5+TGUkvA8VI+e9+cn/EXBdklVQQGSOu -rHpcoOi1VqnQI0hGXlFi4MpamwMG2yArIUU0TXZ7G+/AbUYiGdB6ogvg5UTCfyZy -UXVljSJyzYmLs7hXQK8CAwEAAaOBvjCBuzAdBgNVHQ4EFgQU9EaWHrJGYvpCEW5f -CUEMRk9DlN8wgYsGA1UdIwSBgzCBgIAU9EaWHrJGYvpCEW5fCUEMRk9DlN+hXaRb -MFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkx -KjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZYIJAIqB -VOBRW4qMMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAEeHeXNZGHJW -VImbOHrYmSsZ5jFnzjGw8ynkOrcoJzaxg3OHoo/pNCQ7KcrIa5YPNFiNoaSa/Lzn -LBt6HkM1Vi1rMaERHLWp/W5ruInCu4CuVtQshdNcOEofJ03wdrQylOBZq8MZkTVn -NcqUFg/sBANM/9WhafVi7XaUjWl+V7ZnzdbKP/ywvsiJ+wyKMA7Wt19HMrV2dTBz -CD4vxpwOBev0oTp2NvAHdgNkeK52skHoz+MY8uivVJQr4hqLYJPXUyAcVZCaqeK/ -hxDkbRo6eZsYcjTRqMKtGMVjHHd8alXcVJwcuWkhUYxy8jRf0kFj/9mMie9jRokJ -ovKLbNJfEbI= ------END CERTIFICATE----- diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt deleted file mode 100644 index d22b9ab..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/certPEM.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID9DCCAtygAwIBAgIJAIqBVOBRW4qMMA0GCSqGSIb3DQEBCwUAMFkxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoT -IVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZTAeFw0xNTEyMTEwMjA5 -MDlaFw0xNjEyMTAwMjA5MDlaMFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTER -MA8GA1UEBxMIQmVya2VsZXkxKjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVz -IGluIEFsYW1vRmlyZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJy9 -FTR4QzhYyo2v2yv8SwlBQ32MHQF8Ez1J+YBsyZjcTVOGJtyPxrbJxGuRhyDzKUqz -X/zTsT+JPvZQXXBmyq0l0DhCcK84cHyVLcdEAzukam85EpJRWzSg8kDKzuTx2oLk -X8Zdcj7EEtYWV/5+/YahM4tXYhg+Lqm6koJEVHMld6zfedC7HN+jsTb73IrAY0dd -BPl7WPgDIPEl0kcGI6F7NS0+CKsgX412E5+TGUkvA8VI+e9+cn/EXBdklVQQGSOu -rHpcoOi1VqnQI0hGXlFi4MpamwMG2yArIUU0TXZ7G+/AbUYiGdB6ogvg5UTCfyZy -UXVljSJyzYmLs7hXQK8CAwEAAaOBvjCBuzAdBgNVHQ4EFgQU9EaWHrJGYvpCEW5f -CUEMRk9DlN8wgYsGA1UdIwSBgzCBgIAU9EaWHrJGYvpCEW5fCUEMRk9DlN+hXaRb -MFkxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTERMA8GA1UEBxMIQmVya2VsZXkx -KjAoBgNVBAoTIVRlc3RpbmcgQ2VydGlmaWNhdGVzIGluIEFsYW1vRmlyZYIJAIqB -VOBRW4qMMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAEeHeXNZGHJW -VImbOHrYmSsZ5jFnzjGw8ynkOrcoJzaxg3OHoo/pNCQ7KcrIa5YPNFiNoaSa/Lzn -LBt6HkM1Vi1rMaERHLWp/W5ruInCu4CuVtQshdNcOEofJ03wdrQylOBZq8MZkTVn -NcqUFg/sBANM/9WhafVi7XaUjWl+V7ZnzdbKP/ywvsiJ+wyKMA7Wt19HMrV2dTBz -CD4vxpwOBev0oTp2NvAHdgNkeK52skHoz+MY8uivVJQr4hqLYJPXUyAcVZCaqeK/ -hxDkbRo6eZsYcjTRqMKtGMVjHHd8alXcVJwcuWkhUYxy8jRf0kFj/9mMie9jRokJ -ovKLbNJfEbI= ------END CERTIFICATE----- diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/keyDER.der b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/keyDER.der deleted file mode 100644 index 969657d561fdd4901b57f95c9d509335fef9149f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1192 zcmV;Z1Xueof&`=j0RRGm0RaGi@<7VYT?F}iSoi}V@g>qn1|y++H7z~}s~}&Eb`zhI8A&e##Yp+@esX`rTo+`O zR1g^>uB>`opy;($sn8=xMqW{3;L2K?0|wh5DrZI@!}QWtvT>*jO;WNqeIi7x>S4OT$bZ`x zvNczIX|&u-A<40-pbpjC{m9oGOf23mX+4o5fYExP{d; zGJ(G9d|848aah}t%27%APx8K1)U2oYrX_Z>jjTukso5s26+Pby^s0LzpBxGU^t1@V@@MK+P>Zx0#`hoHhJJ9Pv+ zu2}wruS#Cc4A4*WjNN9!C*8+io z0L2+&mvfMI=onw{L{9C4>sJWrVJIh3v+rvNSVFze6wZtVqjAB!!H;OYyO0?AV)SRK zQ`Yw4rZ$F~6ai2LhmMk837ev$1(@3@Y-H8Ur;F{0o?T4SVd;0ZxhJadm+bz=WTga} zBrBY>`{2w-j_>e#yyTr>(@Vc7RO5kQ=>ma)0GktpG{fp*3ld zf-zEO^BdvLEP}yz$&6L$MtK5b(KCLR>oB$Fw<_MSU8Tg@Vh^R4AvT9nsl~r$=Ydv>0~^pc?XR>{*L-SKCzAt>#v%t8!Bw2Rj zq|5ViZV=0+HLCdJIFbQsL75)%ea}Lj?lat$27Apl#QwyL!zk%aK>|SwuSC;2T-`Q(3 ziwjdtF8ze4+OU|dXCGxL#O4jp-)^E{lI!uJEGkvIp%UqYtgdW zGSO57>g8>oa2-!Yb!JB>P8gb6L+e(-#>>2PJqfIZUrNROa^4UT9MjdPbtD`>)P+#H Gr7sXSPD%s- diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/randomGibberish.crt b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Certificates/selfSignedAndMalformedCerts/randomGibberish.crt deleted file mode 100644 index 23d1360db50cee1c187393d79d496a0e65c00b5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 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 diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Images/rainbow.jpg b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Images/rainbow.jpg deleted file mode 100644 index 91224688e903ce6a71dde6055be8c85c40e55c01..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16104 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

>!eq|SSG5b%m{<7>p*+qr53kMe$j7xB3 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 diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Images/unicorn.png b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/Resources/Images/unicorn.png deleted file mode 100644 index bc504e55c52c14246f7f86adc729316535b24cef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 41646 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 - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseData { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseDataReturnsFailureResultWithOptionalDataAndError() { - // Given - let URLString = "https://invalid-url-here.org/this/does/not/exist" - let expectation = expectationWithDescription("request should fail with 404") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseData { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNil(response.response, "response should be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -class ResponseStringTestCase: BaseTestCase { - func testThatResponseStringReturnsSuccessResultWithValidString() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseString { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseStringReturnsFailureResultWithOptionalDataAndError() { - // Given - let URLString = "https://invalid-url-here.org/this/does/not/exist" - let expectation = expectationWithDescription("request should fail with 404") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseString { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNil(response.response, "response should be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -class ResponseJSONTestCase: BaseTestCase { - func testThatResponseJSONReturnsSuccessResultWithValidJSON() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseStringReturnsFailureResultWithOptionalDataAndError() { - // Given - let URLString = "https://invalid-url-here.org/this/does/not/exist" - let expectation = expectationWithDescription("request should fail with 404") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNil(response.response, "response should be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isFailure, "result should be failure") - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseJSONReturnsSuccessResultForGETRequest() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.GET, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - - // The `as NSString` cast is necessary due to a compiler bug. See the following rdar for more info. - // - https://openradar.appspot.com/radar?id=5517037090635776 - if let args = response.result.value?["args" as NSString] as? [String: String] { - XCTAssertEqual(args, ["foo": "bar"], "args should match parameters") - } else { - XCTFail("args should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } - - func testThatResponseJSONReturnsSuccessResultForPOSTRequest() { - // Given - let URLString = "https://httpbin.org/post" - let expectation = expectationWithDescription("request should succeed") - - var response: Response? - - // When - Alamofire.request(.POST, URLString, parameters: ["foo": "bar"]) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - if let response = response { - XCTAssertNotNil(response.request, "request should not be nil") - XCTAssertNotNil(response.response, "response should not be nil") - XCTAssertNotNil(response.data, "data should not be nil") - XCTAssertTrue(response.result.isSuccess, "result should be success") - - // The `as NSString` cast is necessary due to a compiler bug. See the following rdar for more info. - // - https://openradar.appspot.com/radar?id=5517037090635776 - if let form = response.result.value?["form" as NSString] as? [String: String] { - XCTAssertEqual(form, ["foo": "bar"], "form should match parameters") - } else { - XCTFail("form should not be nil") - } - } else { - XCTFail("response should not be nil") - } - } -} - -// MARK: - - -class RedirectResponseTestCase: BaseTestCase { - - // MARK: Setup and Teardown - - override func tearDown() { - super.tearDown() - Alamofire.Manager.sharedInstance.delegate.taskWillPerformHTTPRedirection = nil - } - - // MARK: Tests - - func testThatRequestWillPerformHTTPRedirectionByDefault() { - // Given - let redirectURLString = "https://www.apple.com" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - } - - func testThatRequestWillPerformRedirectionMultipleTimesByDefault() { - // Given - let redirectURLString = "https://httpbin.org/get" - let URLString = "https://httpbin.org/redirect/5" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - } - - func testThatTaskOverrideClosureCanPerformHTTPRedirection() { - // Given - let redirectURLString = "https://www.apple.com" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - let delegate: Alamofire.Manager.SessionDelegate = Alamofire.Manager.sharedInstance.delegate - - delegate.taskWillPerformHTTPRedirection = { _, _, _, request in - return request - } - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - } - - func testThatTaskOverrideClosureCanCancelHTTPRedirection() { - // Given - let redirectURLString = "https://www.apple.com" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - - let expectation = expectationWithDescription("Request should not redirect to \(redirectURLString)") - let delegate: Alamofire.Manager.SessionDelegate = Alamofire.Manager.sharedInstance.delegate - - delegate.taskWillPerformHTTPRedirection = { _, _, _, _ in - return nil - } - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", URLString, "response URL should match the origin URL") - XCTAssertEqual(response?.statusCode ?? -1, 302, "response should have a 302 status code") - } - - func testThatTaskOverrideClosureIsCalledMultipleTimesForMultipleHTTPRedirects() { - // Given - let redirectURLString = "https://httpbin.org/get" - let URLString = "https://httpbin.org/redirect/5" - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - let delegate: Alamofire.Manager.SessionDelegate = Alamofire.Manager.sharedInstance.delegate - var totalRedirectCount = 0 - - delegate.taskWillPerformHTTPRedirection = { _, _, _, request in - ++totalRedirectCount - return request - } - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - XCTAssertEqual(response?.URL?.URLString ?? "", redirectURLString, "response URL should match the redirect URL") - XCTAssertEqual(response?.statusCode ?? -1, 200, "response should have a 200 status code") - XCTAssertEqual(totalRedirectCount, 5, "total redirect count should be 5") - } - - func testThatRedirectedRequestContainsAllHeadersFromOriginalRequest() { - // Given - let redirectURLString = "https://httpbin.org/get" - let URLString = "https://httpbin.org/redirect-to?url=\(redirectURLString)" - let headers = [ - "Authorization": "1234", - "Custom-Header": "foobar", - ] - - // NOTE: It appears that most headers are maintained during a redirect with the exception of the `Authorization` - // header. It appears that Apple's strips the `Authorization` header from the redirected URL request. If you - // need to maintain the `Authorization` header, you need to manually append it to the redirected request. - - let manager = Manager(configuration: NSURLSessionConfiguration.ephemeralSessionConfiguration()) - - manager.delegate.taskWillPerformHTTPRedirection = { session, task, response, request in - var redirectedRequest = request - - if let - originalRequest = task.originalRequest, - headers = originalRequest.allHTTPHeaderFields, - authorizationHeaderValue = headers["Authorization"] - { - let mutableRequest = request.mutableCopy() as! NSMutableURLRequest - mutableRequest.setValue(authorizationHeaderValue, forHTTPHeaderField: "Authorization") - redirectedRequest = mutableRequest - } - - return redirectedRequest - } - - let expectation = expectationWithDescription("Request should redirect to \(redirectURLString)") - - var response: Response? - - // When - manager.request(.GET, URLString, headers: headers) - .responseJSON { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertNotNil(response?.data, "data should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "response result should be a success") - - if let - JSON = response?.result.value as? [String: AnyObject], - headers = JSON["headers"] as? [String: String] - { - XCTAssertEqual(headers["Custom-Header"], "foobar", "Custom-Header should be equal to foobar") - XCTAssertEqual(headers["Authorization"], "1234", "Authorization header should be equal to 1234") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift deleted file mode 100644 index 4b1f002..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ResultTests.swift +++ /dev/null @@ -1,145 +0,0 @@ -// ResultTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -import Foundation -import XCTest - -class ResultTestCase: BaseTestCase { - let error = Error.errorWithCode(.StatusCodeValidationFailed, failureReason: "Status code validation failed") - - // MARK: - Is Success Tests - - func testThatIsSuccessPropertyReturnsTrueForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertTrue(result.isSuccess, "result is success should be true for success case") - } - - func testThatIsSuccessPropertyReturnsFalseForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertFalse(result.isSuccess, "result is success should be true for failure case") - } - - // MARK: - Is Failure Tests - - func testThatIsFailurePropertyReturnsFalseForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertFalse(result.isFailure, "result is failure should be false for success case") - } - - func testThatIsFailurePropertyReturnsTrueForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertTrue(result.isFailure, "result is failure should be true for failure case") - } - - // MARK: - Value Tests - - func testThatValuePropertyReturnsValueForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertEqual(result.value ?? "", "success", "result value should match expected value") - } - - func testThatValuePropertyReturnsNilForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertNil(result.value, "result value should be nil for failure case") - } - - // MARK: - Error Tests - - func testThatErrorPropertyReturnsNilForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertTrue(result.error == nil, "result error should be nil for success case") - } - - func testThatErrorPropertyReturnsErrorForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertTrue(result.error != nil, "result error should not be nil for failure case") - } - - // MARK: - Description Tests - - func testThatDescriptionStringMatchesExpectedValueForSuccessCase() { - // Given, When - let result = Result.Success("success") - - // Then - XCTAssertEqual(result.description, "SUCCESS", "result description should match expected value for success case") - } - - func testThatDescriptionStringMatchesExpectedValueForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertEqual(result.description, "FAILURE", "result description should match expected value for failure case") - } - - // MARK: - Debug Description Tests - - func testThatDebugDescriptionStringMatchesExpectedValueForSuccessCase() { - // Given, When - let result = Result.Success("success value") - - // Then - XCTAssertEqual( - result.debugDescription, - "SUCCESS: success value", - "result debug description should match expected value for success case" - ) - } - - func testThatDebugDescriptionStringMatchesExpectedValueForFailureCase() { - // Given, When - let result = Result.Failure(error) - - // Then - XCTAssertEqual( - result.debugDescription, - "FAILURE: \(error)", - "result debug description should match expected value for failure case" - ) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift deleted file mode 100644 index 2c24188..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/ServerTrustPolicyTests.swift +++ /dev/null @@ -1,1418 +0,0 @@ -// MultipartFormDataTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -private struct TestCertificates { - // Root Certificates - static let RootCA = TestCertificates.certificateWithFileName("alamofire-root-ca") - - // Intermediate Certificates - static let IntermediateCA1 = TestCertificates.certificateWithFileName("alamofire-signing-ca1") - static let IntermediateCA2 = TestCertificates.certificateWithFileName("alamofire-signing-ca2") - - // Leaf Certificates - Signed by CA1 - static let LeafWildcard = TestCertificates.certificateWithFileName("wildcard.alamofire.org") - static let LeafMultipleDNSNames = TestCertificates.certificateWithFileName("multiple-dns-names") - static let LeafSignedByCA1 = TestCertificates.certificateWithFileName("signed-by-ca1") - static let LeafDNSNameAndURI = TestCertificates.certificateWithFileName("test.alamofire.org") - - // Leaf Certificates - Signed by CA2 - static let LeafExpired = TestCertificates.certificateWithFileName("expired") - static let LeafMissingDNSNameAndURI = TestCertificates.certificateWithFileName("missing-dns-name-and-uri") - static let LeafSignedByCA2 = TestCertificates.certificateWithFileName("signed-by-ca2") - static let LeafValidDNSName = TestCertificates.certificateWithFileName("valid-dns-name") - static let LeafValidURI = TestCertificates.certificateWithFileName("valid-uri") - - static func certificateWithFileName(fileName: String) -> SecCertificate { - class Bundle {} - let filePath = NSBundle(forClass: Bundle.self).pathForResource(fileName, ofType: "cer")! - let data = NSData(contentsOfFile: filePath)! - let certificate = SecCertificateCreateWithData(nil, data)! - - return certificate - } -} - -// MARK: - - -private struct TestPublicKeys { - // Root Public Keys - static let RootCA = TestPublicKeys.publicKeyForCertificate(TestCertificates.RootCA) - - // Intermediate Public Keys - static let IntermediateCA1 = TestPublicKeys.publicKeyForCertificate(TestCertificates.IntermediateCA1) - static let IntermediateCA2 = TestPublicKeys.publicKeyForCertificate(TestCertificates.IntermediateCA2) - - // Leaf Public Keys - Signed by CA1 - static let LeafWildcard = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafWildcard) - static let LeafMultipleDNSNames = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafMultipleDNSNames) - static let LeafSignedByCA1 = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafSignedByCA1) - static let LeafDNSNameAndURI = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafDNSNameAndURI) - - // Leaf Public Keys - Signed by CA2 - static let LeafExpired = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafExpired) - static let LeafMissingDNSNameAndURI = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafMissingDNSNameAndURI) - static let LeafSignedByCA2 = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafSignedByCA2) - static let LeafValidDNSName = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafValidDNSName) - static let LeafValidURI = TestPublicKeys.publicKeyForCertificate(TestCertificates.LeafValidURI) - - static func publicKeyForCertificate(certificate: SecCertificate) -> SecKey { - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - SecTrustCreateWithCertificates(certificate, policy, &trust) - - let publicKey = SecTrustCopyPublicKey(trust!)! - - return publicKey - } -} - -// MARK: - - -private enum TestTrusts { - // Leaf Trusts - Signed by CA1 - case LeafWildcard - case LeafMultipleDNSNames - case LeafSignedByCA1 - case LeafDNSNameAndURI - - // Leaf Trusts - Signed by CA2 - case LeafExpired - case LeafMissingDNSNameAndURI - case LeafSignedByCA2 - case LeafValidDNSName - case LeafValidURI - - // Invalid Trusts - case LeafValidDNSNameMissingIntermediate - case LeafValidDNSNameWithIncorrectIntermediate - - var trust: SecTrust { - let trust: SecTrust - - switch self { - case .LeafWildcard: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafWildcard, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafMultipleDNSNames: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafMultipleDNSNames, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafSignedByCA1: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafSignedByCA1, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafDNSNameAndURI: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafDNSNameAndURI, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - case .LeafExpired: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafExpired, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafMissingDNSNameAndURI: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafMissingDNSNameAndURI, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafSignedByCA2: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafSignedByCA2, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafValidDNSName: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case .LeafValidURI: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidURI, - TestCertificates.IntermediateCA2, - TestCertificates.RootCA - ]) - case LeafValidDNSNameMissingIntermediate: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.RootCA - ]) - case LeafValidDNSNameWithIncorrectIntermediate: - trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - } - - return trust - } - - static func trustWithCertificates(certificates: [SecCertificate]) -> SecTrust { - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - SecTrustCreateWithCertificates(certificates, policy, &trust) - - return trust! - } -} - -// MARK: - Basic X509 and SSL Exploration Tests - - -class ServerTrustPolicyTestCase: BaseTestCase { - func setRootCertificateAsLoneAnchorCertificateForTrust(trust: SecTrust) { - SecTrustSetAnchorCertificates(trust, [TestCertificates.RootCA]) - SecTrustSetAnchorCertificatesOnly(trust, true) - } - - func trustIsValid(trust: SecTrust) -> Bool { - var isValid = false - - var result = SecTrustResultType(kSecTrustResultInvalid) - let status = SecTrustEvaluate(trust, &result) - - if status == errSecSuccess { - let unspecified = SecTrustResultType(kSecTrustResultUnspecified) - let proceed = SecTrustResultType(kSecTrustResultProceed) - - isValid = result == unspecified || result == proceed - } - - return isValid - } -} - -// MARK: - - -class ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase: ServerTrustPolicyTestCase { - func testThatAnchoredRootCertificatePassesBasicX509ValidationWithRootInTrust() { - // Given - let trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafDNSNameAndURI, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatAnchoredRootCertificatePassesBasicX509ValidationWithoutRootInTrust() { - // Given - let trust = TestTrusts.LeafDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatCertificateMissingDNSNamePassesBasicX509Validation() { - // Given - let trust = TestTrusts.LeafMissingDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatExpiredCertificateFailsBasicX509Validation() { - // Given - let trust = TestTrusts.LeafExpired.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateBasicX509()] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } -} - -// MARK: - - -class ServerTrustPolicyExplorationSSLPolicyValidationTestCase: ServerTrustPolicyTestCase { - func testThatAnchoredRootCertificatePassesSSLValidationWithRootInTrust() { - // Given - let trust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafDNSNameAndURI, - TestCertificates.IntermediateCA1, - TestCertificates.RootCA - ]) - - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatAnchoredRootCertificatePassesSSLValidationWithoutRootInTrust() { - // Given - let trust = TestTrusts.LeafDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatCertificateMissingDNSNameFailsSSLValidation() { - // Given - let trust = TestTrusts.LeafMissingDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } - - func testThatWildcardCertificatePassesSSLValidation() { - // Given - let trust = TestTrusts.LeafWildcard.trust // *.alamofire.org - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatDNSNameCertificatePassesSSLValidation() { - // Given - let trust = TestTrusts.LeafValidDNSName.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should be valid") - } - - func testThatURICertificateFailsSSLValidation() { - // Given - let trust = TestTrusts.LeafValidURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } - - func testThatMultipleDNSNamesCertificatePassesSSLValidationForAllEntries() { - // Given - let trust = TestTrusts.LeafMultipleDNSNames.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [ - SecPolicyCreateSSL(true, "test.alamofire.org"), - SecPolicyCreateSSL(true, "blog.alamofire.org"), - SecPolicyCreateSSL(true, "www.alamofire.org") - ] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should not be valid") - } - - func testThatPassingNilForHostParameterAllowsCertificateMissingDNSNameToPassSSLValidation() { - // Given - let trust = TestTrusts.LeafMissingDNSNameAndURI.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, nil)] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertTrue(trustIsValid(trust), "trust should not be valid") - } - - func testThatExpiredCertificateFailsSSLValidation() { - // Given - let trust = TestTrusts.LeafExpired.trust - setRootCertificateAsLoneAnchorCertificateForTrust(trust) - - // When - let policies = [SecPolicyCreateSSL(true, "test.alamofire.org")] - SecTrustSetPolicies(trust, policies) - - // Then - XCTAssertFalse(trustIsValid(trust), "trust should not be valid") - } -} - -// MARK: - Server Trust Policy Tests - - -class ServerTrustPolicyPerformDefaultEvaluationTestCase: ServerTrustPolicyTestCase { - - // MARK: Do NOT Validate Host - - func testThatValidCertificateChainPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA2 - ]) - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafMissingDNSNameAndURI.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: false) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - // MARK: Validate Host - - func testThatValidCertificateChainPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.trustWithCertificates([ - TestCertificates.LeafValidDNSName, - TestCertificates.IntermediateCA2 - ]) - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafMissingDNSNameAndURI.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafWildcard.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatExpiredCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let serverTrustPolicy = ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyPinCertificatesTestCase: ServerTrustPolicyTestCase { - - // MARK: Validate Certificate Chain Without Validating Host - - func testThatPinnedLeafCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedIntermediateCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedRootCertificatePassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA1] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningExpiredLeafCertificateFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - // MARK: Validate Certificate Chain and Host - - func testThatPinnedLeafCertificatePassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedIntermediateCertificatePassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedRootCertificatePassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA1] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningExpiredLeafCertificateFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: true, - validateHost: true - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - // MARK: Do NOT Validate Certificate Chain or Host - - func testThatPinnedLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedIntermediateCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinnedRootCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningIntermediateCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let certificates = [TestCertificates.IntermediateCA1] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let certificates = [TestCertificates.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningMultipleCertificatesWithoutCertificateChainValidationPassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - - let certificates = [ - TestCertificates.LeafMultipleDNSNames, // not in certificate chain - TestCertificates.LeafSignedByCA1, // not in certificate chain - TestCertificates.LeafExpired, // in certificate chain 👍🏼👍🏼 - TestCertificates.LeafWildcard, // not in certificate chain - TestCertificates.LeafDNSNameAndURI, // not in certificate chain - ] - - let serverTrustPolicy = ServerTrustPolicy.PinCertificates( - certificates: certificates, - validateCertificateChain: false, - validateHost: false - ) - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyPinPublicKeysTestCase: ServerTrustPolicyTestCase { - - // MARK: Validate Certificate Chain Without Validating Host - - func testThatPinningLeafKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningKeyNotInCertificateChainFailsEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningBackupKeyPassesEvaluationWithoutHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA1, TestPublicKeys.IntermediateCA1, TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - // MARK: Validate Certificate Chain and Host - - func testThatPinningLeafKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningKeyNotInCertificateChainFailsEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningBackupKeyPassesEvaluationWithHostValidation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let publicKeys = [TestPublicKeys.LeafSignedByCA1, TestPublicKeys.IntermediateCA1, TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: true, - validateHost: true - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - // MARK: Do NOT Validate Certificate Chain or Host - - func testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithMissingIntermediateCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyWithoutCertificateChainValidationFailsEvaluationWithMissingIntermediateCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } - - func testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithIncorrectIntermediateCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameWithIncorrectIntermediate.trust - let publicKeys = [TestPublicKeys.LeafValidDNSName] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let publicKeys = [TestPublicKeys.LeafExpired] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningIntermediateKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let publicKeys = [TestPublicKeys.IntermediateCA2] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatPinningRootKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let publicKeys = [TestPublicKeys.RootCA] - let serverTrustPolicy = ServerTrustPolicy.PinPublicKeys( - publicKeys: publicKeys, - validateCertificateChain: false, - validateHost: false - ) - - // When - setRootCertificateAsLoneAnchorCertificateForTrust(serverTrust) - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyDisableEvaluationTestCase: ServerTrustPolicyTestCase { - func testThatCertificateChainMissingIntermediateCertificatePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSNameMissingIntermediate.trust - let serverTrustPolicy = ServerTrustPolicy.DisableEvaluation - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatExpiredLeafCertificatePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafExpired.trust - let serverTrustPolicy = ServerTrustPolicy.DisableEvaluation - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyCustomEvaluationTestCase: ServerTrustPolicyTestCase { - func testThatReturningTrueFromClosurePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.CustomEvaluation { _, _ in - return true - } - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertTrue(serverTrustIsValid, "server trust should pass evaluation") - } - - func testThatReturningFalseFromClosurePassesEvaluation() { - // Given - let host = "test.alamofire.org" - let serverTrust = TestTrusts.LeafValidDNSName.trust - let serverTrustPolicy = ServerTrustPolicy.CustomEvaluation { _, _ in - return false - } - - // When - let serverTrustIsValid = serverTrustPolicy.evaluateServerTrust(serverTrust, isValidForHost: host) - - // Then - XCTAssertFalse(serverTrustIsValid, "server trust should not pass evaluation") - } -} - -// MARK: - - -class ServerTrustPolicyCertificatesInBundleTestCase: ServerTrustPolicyTestCase { - func testOnlyValidCertificatesAreDetected() { - // Given - // Files present in bundle in the form of type+encoding+extension [key|cert][DER|PEM].[cer|crt|der|key|pem] - // certDER.cer: DER-encoded well-formed certificate - // certDER.crt: DER-encoded well-formed certificate - // certDER.der: DER-encoded well-formed certificate - // certPEM.*: PEM-encoded well-formed certificates, expected to fail: Apple API only handles DER encoding - // devURandomGibberish.crt: Random data, should fail - // keyDER.der: DER-encoded key, not a certificate, should fail - - // When - let certificates = ServerTrustPolicy.certificatesInBundle( - NSBundle(forClass: ServerTrustPolicyCertificatesInBundleTestCase.self) - ) - - // Then - // Expectation: 18 well-formed certificates in the test bundle plus 4 invalid certificates. - #if os(OSX) - // For some reason, OSX is allowing all certificates to be considered valid. Need to file a - // rdar demonstrating this behavior. - XCTAssertEqual(certificates.count, 22, "Expected 22 well-formed certificates") - #else - XCTAssertEqual(certificates.count, 18, "Expected 18 well-formed certificates") - #endif - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift deleted file mode 100644 index 6a1a3ab..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/String+AlamofireTests.swift +++ /dev/null @@ -1,31 +0,0 @@ -// NSURLSessionConfiguration+AlamofireTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -extension String { - init(count: Int, repeatedString: String) { - var value = "" - for _ in 0.. SecCertificate { - class Bundle {} - let filePath = NSBundle(forClass: Bundle.self).pathForResource(fileName, ofType: "cer")! - let data = NSData(contentsOfFile: filePath)! - let certificate = SecCertificateCreateWithData(nil, data)! - - return certificate - } -} - -// MARK: - - -private struct TestPublicKeys { - static let RootCA = TestPublicKeys.publicKeyForCertificate(TestCertificates.RootCA) - static let IntermediateCA = TestPublicKeys.publicKeyForCertificate(TestCertificates.IntermediateCA) - static let Leaf = TestPublicKeys.publicKeyForCertificate(TestCertificates.Leaf) - - static func publicKeyForCertificate(certificate: SecCertificate) -> SecKey { - let policy = SecPolicyCreateBasicX509() - var trust: SecTrust? - SecTrustCreateWithCertificates(certificate, policy, &trust) - - let publicKey = SecTrustCopyPublicKey(trust!)! - - return publicKey - } -} - -// MARK: - - -class TLSEvaluationExpiredLeafCertificateTestCase: BaseTestCase { - let URL = "https://testssl-expire.disig.sk/" - let host = "testssl-expire.disig.sk" - var configuration: NSURLSessionConfiguration! - - // MARK: Setup and Teardown - - override func setUp() { - super.setUp() - configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - } - - // MARK: Default Behavior Tests - - func testThatExpiredCertificateRequestFailsWithNoServerTrustPolicy() { - // Given - weak var expectation = expectationWithDescription("\(URL)") - let manager = Manager(configuration: configuration) - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorServerCertificateUntrusted, "code should be untrusted server certficate") - } else { - XCTFail("error should be an NSError") - } - } - - // MARK: Server Trust Policy - Perform Default Tests - - func testThatExpiredCertificateRequestFailsWithDefaultServerTrustPolicy() { - // Given - let policies = [host: ServerTrustPolicy.PerformDefaultEvaluation(validateHost: true)] - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - // MARK: Server Trust Policy - Certificate Pinning Tests - - func testThatExpiredCertificateRequestFailsWhenPinningLeafCertificateWithCertificateChainValidation() { - // Given - let certificates = [TestCertificates.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: true, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatExpiredCertificateRequestFailsWhenPinningAllCertificatesWithCertificateChainValidation() { - // Given - let certificates = [TestCertificates.Leaf, TestCertificates.IntermediateCA, TestCertificates.RootCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: true, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningLeafCertificateWithoutCertificateChainValidation() { - // Given - let certificates = [TestCertificates.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCACertificateWithoutCertificateChainValidation() { - // Given - let certificates = [TestCertificates.IntermediateCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningRootCACertificateWithoutCertificateChainValidation() { - // Given - let certificates = [TestCertificates.RootCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinCertificates(certificates: certificates, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - // MARK: Server Trust Policy - Public Key Pinning Tests - - func testThatExpiredCertificateRequestFailsWhenPinningLeafPublicKeyWithCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: true, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningLeafPublicKeyWithoutCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.Leaf] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCAPublicKeyWithoutCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.IntermediateCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestSucceedsWhenPinningRootCAPublicKeyWithoutCertificateChainValidation() { - // Given - let publicKeys = [TestPublicKeys.RootCA] - let policies: [String: ServerTrustPolicy] = [ - host: .PinPublicKeys(publicKeys: publicKeys, validateCertificateChain: false, validateHost: true) - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - // MARK: Server Trust Policy - Disabling Evaluation Tests - - func testThatExpiredCertificateRequestSucceedsWhenDisablingEvaluation() { - // Given - let policies = [host: ServerTrustPolicy.DisableEvaluation] - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - // MARK: Server Trust Policy - Custom Evaluation Tests - - func testThatExpiredCertificateRequestSucceedsWhenCustomEvaluationReturnsTrue() { - // Given - let policies = [ - host: ServerTrustPolicy.CustomEvaluation { _, _ in - // Implement a custom evaluation routine here... - return true - } - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatExpiredCertificateRequestFailsWhenCustomEvaluationReturnsFalse() { - // Given - let policies = [ - host: ServerTrustPolicy.CustomEvaluation { _, _ in - // Implement a custom evaluation routine here... - return false - } - ] - - let manager = Manager( - configuration: configuration, - serverTrustPolicyManager: ServerTrustPolicyManager(policies: policies) - ) - - weak var expectation = expectationWithDescription("\(URL)") - var error: NSError? - - // When - manager.request(.GET, URL) - .response { _, _, _, responseError in - error = responseError - expectation?.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let code = error?.code { - XCTAssertEqual(code, NSURLErrorCancelled, "code should be cancelled") - } else { - XCTFail("error should be an NSError") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift deleted file mode 100644 index 11a2d32..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/URLProtocolTests.swift +++ /dev/null @@ -1,169 +0,0 @@ -// URLProtocolTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class ProxyURLProtocol: NSURLProtocol { - - // MARK: Properties - - struct PropertyKeys { - static let HandledByForwarderURLProtocol = "HandledByProxyURLProtocol" - } - - lazy var session: NSURLSession = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - configuration.HTTPAdditionalHeaders = Alamofire.Manager.defaultHTTPHeaders - - return configuration - }() - - let session = NSURLSession(configuration: configuration, delegate: self, delegateQueue: nil) - - return session - }() - - var activeTask: NSURLSessionTask? - - // MARK: Class Request Methods - - override class func canInitWithRequest(request: NSURLRequest) -> Bool { - if NSURLProtocol.propertyForKey(PropertyKeys.HandledByForwarderURLProtocol, inRequest: request) != nil { - return false - } - - return true - } - - override class func canonicalRequestForRequest(request: NSURLRequest) -> NSURLRequest { - return request - } - - override class func requestIsCacheEquivalent(a: NSURLRequest, toRequest b: NSURLRequest) -> Bool { - return false - } - - // MARK: Loading Methods - - override func startLoading() { - let mutableRequest = request.URLRequest - NSURLProtocol.setProperty(true, forKey: PropertyKeys.HandledByForwarderURLProtocol, inRequest: mutableRequest) - - activeTask = session.dataTaskWithRequest(mutableRequest) - activeTask?.resume() - } - - override func stopLoading() { - activeTask?.cancel() - } -} - -// MARK: - - -extension ProxyURLProtocol: NSURLSessionDelegate { - - // MARK: NSURLSessionDelegate - - func URLSession(session: NSURLSession, dataTask: NSURLSessionDataTask, didReceiveData data: NSData) { - client?.URLProtocol(self, didLoadData: data) - } - - func URLSession(session: NSURLSession, task: NSURLSessionTask, didCompleteWithError error: NSError?) { - if let response = task.response { - client?.URLProtocol(self, didReceiveResponse: response, cacheStoragePolicy: .NotAllowed) - } - - client?.URLProtocolDidFinishLoading(self) - } -} - -// MARK: - - -class URLProtocolTestCase: BaseTestCase { - - // MARK: Setup and Teardown Methods - - override func setUp() { - super.setUp() - - let configuration = Alamofire.Manager.sharedInstance.session.configuration - - configuration.protocolClasses = [ProxyURLProtocol.self] - configuration.HTTPAdditionalHeaders = ["Session-Configuration-Header": "foo"] - } - - override func tearDown() { - super.tearDown() - - Alamofire.Manager.sharedInstance.session.configuration.protocolClasses = [] - } - - // MARK: Tests - - func testThatURLProtocolReceivesRequestHeadersAndNotSessionConfigurationHeaders() { - // Given - let URLString = "https://httpbin.org/response-headers" - let URL = NSURL(string: URLString)! - let parameters = ["request-header": "foobar"] - - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.HTTPMethod = Method.GET.rawValue - - let URLRequest = ParameterEncoding.URL.encode(mutableURLRequest, parameters: parameters).0 - - let expectation = expectationWithDescription("GET request should succeed") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - Alamofire.request(URLRequest) - .response { responseRequest, responseResponse, responseData, responseError in - request = responseRequest - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - if let headers = response?.allHeaderFields as? [String: String] { - XCTAssertEqual(headers["request-header"] ?? "", "foobar", "urlrequest-header should be foobar") - XCTAssertNil(headers["Session-Configuration-Header"], "Session-Configuration-Header should be nil") - } else { - XCTFail("headers should not be nil") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift b/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift deleted file mode 100644 index 7e2b901..0000000 --- a/Carthage/Checkouts/AlamofireImage/Carthage/Checkouts/Alamofire/Tests/UploadTests.swift +++ /dev/null @@ -1,766 +0,0 @@ -// UploadTests.swift -// -// Copyright (c) 2014–2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import XCTest - -class UploadFileInitializationTestCase: BaseTestCase { - func testUploadClassMethodWithMethodURLAndFile() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - - // When - let request = Alamofire.upload(.POST, URLString, file: imageURL) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testUploadClassMethodWithMethodURLHeadersAndFile() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - - // When - let request = Alamofire.upload(.POST, URLString, headers: ["Authorization": "123456"], file: imageURL) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class UploadDataInitializationTestCase: BaseTestCase { - func testUploadClassMethodWithMethodURLAndData() { - // Given - let URLString = "https://httpbin.org/" - - // When - let request = Alamofire.upload(.POST, URLString, data: NSData()) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testUploadClassMethodWithMethodURLHeadersAndData() { - // Given - let URLString = "https://httpbin.org/" - - // When - let request = Alamofire.upload(.POST, URLString, headers: ["Authorization": "123456"], data: NSData()) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class UploadStreamInitializationTestCase: BaseTestCase { - func testUploadClassMethodWithMethodURLAndStream() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - let imageStream = NSInputStream(URL: imageURL)! - - // When - let request = Alamofire.upload(.POST, URLString, stream: imageStream) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - XCTAssertNil(request.response, "response should be nil") - } - - func testUploadClassMethodWithMethodURLHeadersAndStream() { - // Given - let URLString = "https://httpbin.org/" - let imageURL = URLForResource("rainbow", withExtension: "jpg") - let imageStream = NSInputStream(URL: imageURL)! - - // When - let request = Alamofire.upload(.POST, URLString, headers: ["Authorization": "123456"], stream: imageStream) - - // Then - XCTAssertNotNil(request.request, "request should not be nil") - XCTAssertEqual(request.request?.HTTPMethod ?? "", "POST", "request HTTP method should be POST") - XCTAssertEqual(request.request?.URLString ?? "", URLString, "request URL string should be equal") - - let authorizationHeader = request.request?.valueForHTTPHeaderField("Authorization") ?? "" - XCTAssertEqual(authorizationHeader, "123456", "Authorization header is incorrect") - - XCTAssertNil(request.response, "response should be nil") - } -} - -// MARK: - - -class UploadDataTestCase: BaseTestCase { - func testUploadDataRequest() { - // Given - let URLString = "https://httpbin.org/post" - let data = "Lorem ipsum dolor sit amet".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - - let expectation = expectationWithDescription("Upload request should succeed: \(URLString)") - - var request: NSURLRequest? - var response: NSHTTPURLResponse? - var error: NSError? - - // When - Alamofire.upload(.POST, URLString, data: data) - .response { responseRequest, responseResponse, _, responseError in - request = responseRequest - response = responseResponse - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(request, "request should not be nil") - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNil(error, "error should be nil") - } - - func testUploadDataRequestWithProgress() { - // Given - let URLString = "https://httpbin.org/post" - let data: NSData = { - var text = "" - for _ in 1...3_000 { - text += "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " - } - - return text.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! - }() - - let expectation = expectationWithDescription("Bytes upload progress should be reported: \(URLString)") - - var byteValues: [(bytes: Int64, totalBytes: Int64, totalBytesExpected: Int64)] = [] - var progressValues: [(completedUnitCount: Int64, totalUnitCount: Int64)] = [] - var responseRequest: NSURLRequest? - var responseResponse: NSHTTPURLResponse? - var responseData: NSData? - var responseError: ErrorType? - - // When - let upload = Alamofire.upload(.POST, URLString, data: data) - upload.progress { bytesWritten, totalBytesWritten, totalBytesExpectedToWrite in - let bytes = (bytes: bytesWritten, totalBytes: totalBytesWritten, totalBytesExpected: totalBytesExpectedToWrite) - byteValues.append(bytes) - - let progress = ( - completedUnitCount: upload.progress.completedUnitCount, - totalUnitCount: upload.progress.totalUnitCount - ) - progressValues.append(progress) - } - upload.response { request, response, data, error in - responseRequest = request - responseResponse = response - responseData = data - responseError = error - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(responseRequest, "response request should not be nil") - XCTAssertNotNil(responseResponse, "response response should not be nil") - XCTAssertNotNil(responseData, "response data should not be nil") - XCTAssertNil(responseError, "response error should be nil") - - XCTAssertEqual(byteValues.count, progressValues.count, "byteValues count should equal progressValues count") - - if byteValues.count == progressValues.count { - for index in 0.. Request { - var dataTask: NSURLSessionDataTask! - - dispatch_sync(queue) { - dataTask = self.session.dataTaskWithRequest(URLRequest.URLRequest) - } - - let request = MockRequest(session: session, task: dataTask) - delegate[request.delegate.task] = request.delegate - - if startRequestsImmediately { - request.resume() - } - - return request - } - } - - class MockRequest: Request { - override var response: NSHTTPURLResponse? { - return MockHTTPURLResponse( - URL: NSURL(string: request!.URLString)!, - statusCode: 204, - HTTPVersion: "HTTP/1.1", - headerFields: nil - ) - } - } - - class MockHTTPURLResponse: NSHTTPURLResponse { - override var MIMEType: String? { return nil } - } - - let manager: Manager = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - configuration.HTTPAdditionalHeaders = Alamofire.Manager.defaultHTTPHeaders - - return configuration - }() - - return MockManager(configuration: configuration) - }() - - let URLString = "https://httpbin.org/delete" - let expectation = expectationWithDescription("request should be stubbed and return 204 status code") - - var response: NSHTTPURLResponse? - var data: NSData? - var error: NSError? - - // When - manager.request(.DELETE, URLString) - .validate(contentType: ["*/*"]) - .response { _, responseResponse, responseData, responseError in - response = responseResponse - data = responseData - error = responseError - - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(data, "data should not be nil") - XCTAssertNil(error, "error should be nil") - - if let response = response { - XCTAssertEqual(response.statusCode, 204, "response status code should be 204") - XCTAssertNil(response.MIMEType, "response mime type should be nil") - } - } -} - -// MARK: - - -class MultipleValidationTestCase: BaseTestCase { - func testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds() { - // Given - let URLString = "https://httpbin.org/ip" - let expectation = expectationWithDescription("request should succeed and return ip") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate(statusCode: 200..<300) - .validate(contentType: ["application/json"]) - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithStatusCodeError() { - // Given - let URLString = "https://httpbin.org/xml" - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate(statusCode: 400..<600) - .validate(contentType: ["application/octet-stream"]) - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.StatusCodeValidationFailed.rawValue, "code should be status code validation failure") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithContentTypeError() { - // Given - let URLString = "https://httpbin.org/xml" - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate(contentType: ["application/octet-stream"]) - .validate(statusCode: 400..<600) - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.ContentTypeValidationFailed.rawValue, "code should be content type validation failure") - } else { - XCTFail("error should be an NSError") - } - } -} - -// MARK: - - -class AutomaticValidationTestCase: BaseTestCase { - func testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds() { - // Given - let URL = NSURL(string: "https://httpbin.org/ip")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return ip") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithUnacceptableStatusCodeResponseFails() { - // Given - let URLString = "https://httpbin.org/status/404" - let expectation = expectationWithDescription("request should return 404 status code") - - var error: NSError? - - // When - Alamofire.request(.GET, URLString) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.StatusCodeValidationFailed.rawValue, "code should be status code validation failure") - } else { - XCTFail("error should be an NSError") - } - } - - func testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds() { - // Given - let URL = NSURL(string: "https://httpbin.org/ip")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.setValue("application/*", forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return ip") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithAcceptableComplexContentTypeResponseSucceeds() { - // Given - let URL = NSURL(string: "https://httpbin.org/xml")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - - let headerValue = "text/xml, application/xml, application/xhtml+xml, text/html;q=0.9, text/plain;q=0.8,*/*;q=0.5" - mutableURLRequest.setValue(headerValue, forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNil(error, "error should be nil") - } - - func testThatValidationForRequestWithUnacceptableContentTypeResponseFails() { - // Given - let URL = NSURL(string: "https://httpbin.org/xml")! - let mutableURLRequest = NSMutableURLRequest(URL: URL) - mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Accept") - - let expectation = expectationWithDescription("request should succeed and return xml") - - var error: NSError? - - // When - Alamofire.request(mutableURLRequest) - .validate() - .response { _, _, _, responseError in - error = responseError - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(error, "error should not be nil") - - if let error = error { - XCTAssertEqual(error.domain, Error.Domain, "domain should be Alamofire error domain") - XCTAssertEqual(error.code, Error.Code.ContentTypeValidationFailed.rawValue, "code should be content type validation failure") - } else { - XCTFail("error should be an NSError") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Documentation/AlamofireImage 2.0 Migration Guide.md b/Carthage/Checkouts/AlamofireImage/Documentation/AlamofireImage 2.0 Migration Guide.md deleted file mode 100644 index e7992e5..0000000 --- a/Carthage/Checkouts/AlamofireImage/Documentation/AlamofireImage 2.0 Migration Guide.md +++ /dev/null @@ -1,105 +0,0 @@ -# AlamofireImage 2.0 Migration Guide - -AlamofireImage 2.0 is the latest major release of AlamofireImage, an image component library for Alamofire supporting iOS, Mac OS X and watchOS written in Swift. As a major release, following Semantic Versioning conventions, 2.0 introduces several API-breaking changes that one should be aware of. - -This guide is provided in order to ease the transition of existing applications using Alamofire 2.x to the latest APIs, as well as explain the design and structure of new and changed functionality. - -## Requirements - -AlamofireImage 2.0 officially supports iOS 8+, Mac OS X 10.9+, watchOS 2.0, Xcode 7 and Swift 2.0. - -## Reasons for Bumping to 2.0 - -The [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) (ASF) tries to do everything possible to avoid MAJOR version bumps. We realize the challenges involved with migrating large projects from one MAJOR version to another. The reason for bumping to 2.0 is due to the Alamofire 3.0 changes. We want to keep both libraries in sync, which requires changes to the foundational classes of AlamofireImage. The changes made to Alamofire give us more flexibility moving forward to help avoid the need for MAJOR version bumps to maintain backwards compatibility. - -## Benefits of Upgrading - -The benefits of upgrading can be summarized as follows: - -* Can be used in conjunction with Alamofire 3.0 -* Leverages generic `Response` types for all `Request` completion closures. -* Image download request cancellation logic is now much more intelligent thanks to the new `RequestReceipt` struct allowing MUCH better optimization for table and collection view use cases. - ---- - -## Breaking API Changes - -AlamofireImage 2.0 contains some breaking API changes to the foundational classes supporting the response serialization system. It is important to understand how these changes affect the common usage patterns. - -### Request Extension - -The `Request` extension has been modified to support the Alamofire 3.0 `ResponseSerializer` changes. All `responseImage` methods now use a `completionHandler` of type `Response -> Void` matching all response serializers located in the Alamofire core library. - -```swift -public func responseImage( - imageScale: CGFloat = Request.imageScale, - inflateResponseImage: Bool = true, - completionHandler: Response -> Void) - -> Self -{ - return response( - responseSerializer: Request.imageResponseSerializer( - imageScale: imageScale, - inflateResponseImage: inflateResponseImage - ), - completionHandler: completionHandler - ) -} -``` - -> There are no actual changes in functionality in terms of the `responseImage` serializers. - -### Image Downloader - -#### Completion Handler - -The `CompletionHandler` typealias in the `ImageDownloader` has been modified to a `Response` type to match the Alamofire 3.0 APIs. - -```swift -public class ImageDownloader { - public typealias CompletionHandler = Response -> Void -} -``` - -#### Request Receipts - -The `downloadImage` APIs now return a `RequestReceipt?` instead of a `Request?`. The main reason for this change was to allow the `ImageDownloader` to be more intelligent about cancelling active requests. Here are some of the questions we asked ourselves when designing this new system: - -Should a download request be cancelled... - -* If it is pending in the queue? - * `YES` -* If it is actively being downloaded? - * `NO` - The completion handler should be called with a cancellation error while the request is allowed to complete. -* If there are multiple response handlers attached to the same request? - * `NO` - The completion handler should be called with a cancellation error while the request is allowed to complete since the other callers also depend on the same request. - -In order to be able to support the third case, the `ImageDownloader` needed a way to identify multiple response handlers attached to a single `Request`. The `RequestReceipt` solves this problem by associating a `receiptID` with each download request. Each call to `downloadImage` generates a new, unique `receiptID` which can in turn be used to cancel a request. - -```swift -public class RequestReceipt { - public let request: Request - public let receiptID: String -} -``` - -The `cancelRequestForRequestReceipt` method on the `ImageDownloader` handles all three cancellation cases internally. By always cancelling requests using the `RequestReceipt` APIs, your download requests will much better optimized for table and collection view use cases. - - -### UIImageView Extension - -The only changes to the `UIImageView` extension in terms of backwards compatibility is the `completion` closure signature that now leverages the new Alamofire 3.0 `Response` type. - -```swift -public func af_setImageWithURLRequest( - URLRequest: URLRequestConvertible, - placeholderImage: UIImage?, - filter: ImageFilter?, - imageTransition: ImageTransition, - completion: (Response -> Void)?) -{ - ... -} -``` - -Another change worth noting is the `UIImageView` extension now leverages `RequestReceipt` objects for cancelling the active request. This greatly improves overall performance and behavior for image views used in table and collection views. diff --git a/Carthage/Checkouts/AlamofireImage/Example/AppDelegate.swift b/Carthage/Checkouts/AlamofireImage/Example/AppDelegate.swift deleted file mode 100644 index 11a9ef4..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/AppDelegate.swift +++ /dev/null @@ -1,45 +0,0 @@ -// AppDelegate.swift -// -// Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation -import UIKit - -@UIApplicationMain -class AppDelegate: UIResponder, UIApplicationDelegate { - var window: UIWindow? - - // MARK: - Application State Methods - - func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { - window = { - let window = UIWindow(frame: UIScreen.mainScreen().bounds) - - window.rootViewController = UINavigationController(rootViewController: ImagesViewController()) - window.backgroundColor = UIColor.whiteColor() - window.makeKeyAndVisible() - - return window - }() - - return true - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Example/Base.lproj/LaunchScreen.xib b/Carthage/Checkouts/AlamofireImage/Example/Base.lproj/LaunchScreen.xib deleted file mode 100644 index 85bb703..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/Base.lproj/LaunchScreen.xib +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Carthage/Checkouts/AlamofireImage/Example/Gravatar.swift b/Carthage/Checkouts/AlamofireImage/Example/Gravatar.swift deleted file mode 100644 index 42cb6aa..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/Gravatar.swift +++ /dev/null @@ -1,113 +0,0 @@ -// Gravatar.swift -// -// Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation -import UIKit - -private extension String { - var md5_hash: String { - let trimmedString = lowercaseString.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet()) - let utf8String = trimmedString.cStringUsingEncoding(NSUTF8StringEncoding)! - let stringLength = CC_LONG(trimmedString.lengthOfBytesUsingEncoding(NSUTF8StringEncoding)) - let digestLength = Int(CC_MD5_DIGEST_LENGTH) - let result = UnsafeMutablePointer.alloc(digestLength) - - CC_MD5(utf8String, stringLength, result) - - var hash = "" - - for i in 0.. NSURL { - let URL = Gravatar.baseURL.URLByAppendingPathComponent(email.md5_hash) - let components = NSURLComponents(URL: URL, resolvingAgainstBaseURL: false)! - - var queryItems = [defaultImage.queryItem, rating.queryItem] - queryItems.append(NSURLQueryItem(name: "f", value: forceDefault ? "y" : "n")) - queryItems.append(NSURLQueryItem(name: "s", value: String(format: "%.0f",size * scale))) - - components.queryItems = queryItems - - return components.URL! - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Example/ImageCell.swift b/Carthage/Checkouts/AlamofireImage/Example/ImageCell.swift deleted file mode 100644 index e5eddcb..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/ImageCell.swift +++ /dev/null @@ -1,76 +0,0 @@ -// ImageCell.swift -// -// Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import AlamofireImage -import Foundation -import UIKit - -class ImageCell : UICollectionViewCell { - class var ReuseIdentifier: String { return "com.alamofire.identifier.\(self.dynamicType)" } - let imageView: UIImageView - - // MARK: - Initialization - - override init(frame: CGRect) { - imageView = { - let imageView = UIImageView(frame: frame) - - imageView.autoresizingMask = [.FlexibleWidth, .FlexibleHeight] - imageView.contentMode = .Center - imageView.clipsToBounds = true - - return imageView - }() - - super.init(frame: frame) - - contentView.addSubview(imageView) - - imageView.frame = contentView.bounds - } - - required init(coder aDecoder: NSCoder) { - fatalError("init(coder:) has not been implemented") - } - - // MARK: - Lifecycle Methods - - func configureCellWithURLString(URLString: String, placeholderImage: UIImage) { - let size = imageView.frame.size - - imageView.af_setImageWithURL( - NSURL(string: URLString)!, - placeholderImage: placeholderImage, - filter: AspectScaledToFillSizeWithRoundedCornersFilter(size: size, radius: 20.0), - imageTransition: .CrossDissolve(0.2) - ) - } - - override func prepareForReuse() { - super.prepareForReuse() - - imageView.af_cancelImageRequest() - imageView.layer.removeAllAnimations() - imageView.image = nil - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Example/ImageViewController.swift b/Carthage/Checkouts/AlamofireImage/Example/ImageViewController.swift deleted file mode 100644 index bad69fd..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/ImageViewController.swift +++ /dev/null @@ -1,66 +0,0 @@ -// ImageViewController.swift -// -// Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 AlamofireImage -import Foundation -import UIKit - -class ImageViewController : UIViewController { - var gravatar: Gravatar! - var imageView: UIImageView! - - // MARK: - View Lifecycle - - override func viewDidLoad() { - super.viewDidLoad() - - setUpInstanceProperties() - setUpImageView() - } - - // MARK: - Private - Setup Methods - - private func setUpInstanceProperties() { - title = gravatar.email - edgesForExtendedLayout = UIRectEdge.None - view.backgroundColor = UIColor(white: 0.9, alpha: 1.0) - } - - private func setUpImageView() { - imageView = UIImageView() - imageView.contentMode = .ScaleAspectFit - - let URL = gravatar.URL(size: view.bounds.size.width) - - imageView.af_setImageWithURL( - URL, - placeholderImage: nil, - filter: CircleFilter(), - imageTransition: .FlipFromBottom(0.5) - ) - - view.addSubview(imageView) - - imageView.frame = view.bounds - imageView.autoresizingMask = [.FlexibleWidth, .FlexibleHeight] - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/AppIcon.appiconset/Contents.json b/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 118c98f..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "images" : [ - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "29x29", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "40x40", - "scale" : "3x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" - }, - { - "idiom" : "iphone", - "size" : "60x60", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Contents.json b/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Contents.json deleted file mode 100644 index 77f26aa..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "Placeholder Image.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "Placeholder Image@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "Placeholder Image@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image.png b/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image.png deleted file mode 100644 index 422d091f0cda35e8ab877e9fad3afa9f3358d061..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1341 zcmV-D1;YA?P)f_7@|-Ug^B`&iVAAaGF7t_ zzxSv6a_7!DVr$tghRHWQ-KYEB48I10!2_kQ8W9jQK~n@Bt$rW9W^I(xa5!W{Gj$L& zMbHFI5i~(p#z%WFn`K$n>-CUQSPYF4@n|%%qAc>> zYDF|iy}!R7Ry+qGwDD)9(nu{l<$`sk;@Sc<_=1iI<$^WJDM23#2IH)O^JFb}v(gy=bQOZy2sA+G6)qh7>+6f4|4ADJK@)UX(Bfv}RLT21Bhc^$ z+UN1}^Fz=f6yT;IXm*BFdZ3e^P#b}6Hk;b#(P%UXIz+g&S}lTp&|X)q!n!R%#{{}w zuj?&4;ot=QU)^q3=?tEqpR2IR#uPM+2Z)G&ywYK>D9f?{69q3Hji45{AH7~LWH_VI z|M>Wr&*xEt1`$~=naPMhG9S#(}urDyZ131FYZP-rPv}yw@jb2MxsCNA4 ze(rjO#7$NX&_^jas($P=HJ@GygnWReDdiOw#Ing!BrK z-DEPcDwx{K@M(f}*bS`RD<%jUrp;lLp*;Xe4Kz$W9Gi3T)T@fAfj-*=nqMTnUGYhQ z_W$J%96@OSk`8Df7IA4xRWT9J#Zcd0D2W<-h!X*QIMff&xK|YP(NJH+x`o4P+%8gOwydBHhx#JM zQKSZx614eHU!*FEd{+5D+Ya?bGPQpM{NKk~{y%_%j3=0A~-tyTe@4=oR&1G;Z)yDBzB`c77~j;9a(t0?7F^FzU@z|uYi4XNfg2|y*lmu<%3gAp{S`nq8zDR#y>wm;RBO%z1 zhHqMt`}#TAswe{*H@Ms6CC@fzn=aL%zKGScvYP^+O$y*mQ*o4t0}S;8_lh6hTMpaFYTpSO5w7nm4H6x2S{$?b(|Uv_%U?Wa^+nxpdyEe4uZB z%Nr#C8Vy?vOLpmlW&sQYn!U;0Izx(}37ViOf+lE+pb46wDS{?w%1%blCLIh0B*lm( zXo{c-nxH9yE~UL24u^!oh$d)?pb5HK`YXTyrrdZO=rj>g00000NkvXXu0mjf4JU6& diff --git a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image@2x.png b/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image@2x.png deleted file mode 100644 index ce88e0334d5d6eefdef87a30a4694ea73997cbcc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2755 zcmZ`*c{r478y|8QWM2x$k}VpX79$O!8QU<3WSb88D{P{P@G;ZB5~$Hn+#13<^lh5s3# zfxO@!7~mG*e=aVfEx;TE5<8BxKIR@fG?QnDRzXW&j$fQRe!~4gqp?_@o;!td+`VsE zWUlbLfT{ewg1@D&HQBf#+~p6H(s~S}vc>(Y+xQReC-}9zx`0?=4-X!R)ScXj#N#&v z{uWnF0ZA)^$O1p%7fCA@D4~~=-oZ36<7_qoEb;hv5Ln_e>nHr8|FOri44L7x^YalV zIn2q$DcstIWnEoeOiavIVpqOpM;D$@;K{K}`eANvj?$Go;FajbUxm~+42L}%kfZZW zkKJUA&wo#B6h3_UVthOVd$WHtQN3D*cFz7aTEmh+?~T0zHuT}~c#Bh-ROB7MJyY#{ zeRtl>Bq#5n+Hz2$txTp9?v9_6o=phfCb{vl_G1gS(Z|#`yLRn*A zP5I=Awfk%gCu;5+9UcyP;gf620rShWRW2FrE|!7mg?o7Um*ghm@$7Ls4zxtk6nDDT zG$Ag|J2*vbg;0^!jsJ?JyXM<+pl*SiUAX%cXI(jMD~`f-9fx*hNL%fB(Ufbi>+37A zn+v-uvAknSWX5=9`6I6z8J2Te)cX4#eQ$4wfnS-Mqo49*AIq%yk_|Jiet0=sNB^77 zlFiA%SD(C))hbN*p567?IM5UcD z>Z+|vNUbHgqcpsrt$Id{fwqY9V=rpZ~@ARb$|H1 z))0bk5tk7H@vqe28dSMG?0I4qejRpC>@-62MH(RJJAvUb<$U!7wHoC#Xfd6B&fj4KK z=S*xSFJBN57xxW#zZOWu4)8gp6f#U(eyy`7?O}l5IWuX(P(lw$Qc4 z&mq3kc3K;1tHy!-(Lfu;?^SswIdCWf`#6|vX|PXCtgs+38T1Mn zwr;9_6O>d)J-IUA=_7vfi9VatF^%5)2rItYpB3@(OaS^SHSJz?Y0F*GY9-z33-07b z_V;dfuN8lPbWBV@g}yo}Wc9i?P4B~;y2B~;ox@uCD4O&pif*bx3Ey_@Q$V*tdyYB#bw84 ziCLxMaD*{sVsmalDcv@#Us7ghUl()zb8PUI9p=`{;E_zy&2(`G4Efh2Sj6F z^HvxYYj63`heZs^MJ;24%m*P*9`S4)fygo;rN1jvBYoUGJSs!3srFt>3<)HH%Pj`= zYM^P|!cqheC;P?ME$$*@3%QY(>KXN$sxm(MN4U7^uC~=m**Q}dq;@ZwN&(>E2f83Ix?GDIUebp%`L%S!TJB?d**?rAV(vBne zfzs30B|wG7YTyKxjCsVu3-xMb@m`UcSx4$pP+@TNb(Xj52cT4ns<||bYtSB+SMh_k zq^$4IG*^3dl)7XJ8__4^|W2Ny@+&jL-zv=ltZ7 zSP4cgYa#8#>E9x&^*(IO8k)^R4X7_PQ%m33^!7Iym;lv0lfH!Tq@+20S!!vy)}-C{ z=VIdRLH|Z!sWLd7GS#l}Fh9SniV+5QT|~$OH}T;iG}4vaygYqbH@jCxA$qJISL8xM6EJDF|5_IsNr%oMrpszR0zK%7aEZ zPox*5TwGih?I)_@EFH2sl}_vg`}P?LZpBT%x9b2dht{n~H-9V6oVzJvsyPBU--WUE zyQx9De5&4i>Fkd%a+Ra4Pi*StYrz@eMYlX}p1y`b0II>2m|h6350(8zHx<2xK>~Sb zjgh$Mbn;s;?$U4Cj8}N-^zFU`)?0n(RLW>-ith{2J9y5WyT(w6NjQVU1 zQi&)zl^?;1zd^es%_w1?uI5=Rl<7PPTM)*KNbMb#RP!N>6x^@4-eb&TJW$p3Nq5_` z)XK!^3;SR*SHldaaS;fw8zNY{WW><4A2!BNA$wx;#bdp|JG*>BJ-oJL$$l2bn2}89 z8=I)ccnc092wPzQ_(lKUw!-}P z)9lo91@5(s%uFRGjbF3*pAikr>Hn~kT|96f^Kx_d+gkk-Oy T-0&Ch00kj!oUJS1XRiJWa!EBY diff --git a/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image@3x.png b/Carthage/Checkouts/AlamofireImage/Example/Images.xcassets/Placeholder Image.imageset/Placeholder Image@3x.png deleted file mode 100644 index e10a6ffe130b5d65fdd5546bd8505d1a7a39ac27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4103 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 q0xzn80{ CGSize { - let viewWidth = view.bounds.size.width - - var cellWidth = (viewWidth - 4 * 8) / 3.0 - - if UIDevice.currentDevice().userInterfaceIdiom == .Pad { - cellWidth = (viewWidth - 7 * 8) / 6.0 - } - - return CGSize(width: cellWidth, height: cellWidth) - } -} - -// MARK: - UICollectionViewDataSource - -extension ImagesViewController : UICollectionViewDataSource { - func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { - return gravatars.count - } - - func collectionView( - collectionView: UICollectionView, - cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell - { - let cell = collectionView.dequeueReusableCellWithReuseIdentifier(ImageCell.ReuseIdentifier, forIndexPath: indexPath) as! ImageCell - let gravatar = gravatars[indexPath.row] - cell.configureCellWithURLString(gravatar.URL(size: sizeForCollectionViewItem().width).URLString, placeholderImage: placeholderImage) - - return cell - } -} - -// MARK: - UICollectionViewDelegateFlowLayout - -extension ImagesViewController : UICollectionViewDelegateFlowLayout { - func collectionView( - collectionView: UICollectionView, - layout collectionViewLayout: UICollectionViewLayout, - sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize - { - return sizeForCollectionViewItem() - } - - func collectionView( - collectionView: UICollectionView, - layout collectionViewLayout: UICollectionViewLayout, - insetForSectionAtIndex section: Int) -> UIEdgeInsets - { - return UIEdgeInsets(top: 8, left: 8, bottom: 8, right: 8) - } - - func collectionView( - collectionView: UICollectionView, - layout collectionViewLayout: UICollectionViewLayout, - minimumLineSpacingForSectionAtIndex section: Int) -> CGFloat - { - return 8.0 - } - - func collectionView( - collectionView: UICollectionView, - layout collectionViewLayout: UICollectionViewLayout, - minimumInteritemSpacingForSectionAtIndex section: Int) -> CGFloat - { - return 8.0 - } -} - -// MARK: - UICollectionViewDelegate - -extension ImagesViewController : UICollectionViewDelegate { - func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) { - let gravatar = self.gravatars[indexPath.row] - - let imageViewController = ImageViewController() - imageViewController.gravatar = gravatar - - self.navigationController?.pushViewController(imageViewController, animated: true) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Example/Info.plist b/Carthage/Checkouts/AlamofireImage/Example/Info.plist deleted file mode 100644 index 2d4f401..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/Info.plist +++ /dev/null @@ -1,39 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - AFImage - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - UIInterfaceOrientationPortraitUpsideDown - - - diff --git a/Carthage/Checkouts/AlamofireImage/Example/iOS-Example-Bridging-Header.h b/Carthage/Checkouts/AlamofireImage/Example/iOS-Example-Bridging-Header.h deleted file mode 100644 index f7872be..0000000 --- a/Carthage/Checkouts/AlamofireImage/Example/iOS-Example-Bridging-Header.h +++ /dev/null @@ -1,23 +0,0 @@ -// iOS-Example-Bridging-Header.h -// -// Copyright (c) 2015 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 diff --git a/Carthage/Checkouts/AlamofireImage/LICENSE b/Carthage/Checkouts/AlamofireImage/LICENSE deleted file mode 100644 index 4fe9ec9..0000000 --- a/Carthage/Checkouts/AlamofireImage/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) - -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. diff --git a/Carthage/Checkouts/AlamofireImage/Package.swift b/Carthage/Checkouts/AlamofireImage/Package.swift deleted file mode 100644 index d89597c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Package.swift +++ /dev/null @@ -1,30 +0,0 @@ -// Package.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 PackageDescription - -let package = Package( - name: "AlamofireImage", - dependencies: [ - .Package(url: "https://github.com/Alamofire/Alamofire.git", versions: Version(3, 1, 5).. CocoaPods 0.39.0+ is required to build Alamofire 3.0.0+. - -To integrate AlamofireImage into your Xcode project using CocoaPods, specify it in your `Podfile`: - -```ruby -source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '8.0' -use_frameworks! - -pod 'AlamofireImage', '~> 2.0' -``` - -Then, run the following command: - -```bash -$ pod install -``` - -### Carthage - -[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. - -You can install Carthage with [Homebrew](http://brew.sh/) using the following command: - -```bash -$ brew update -$ brew install carthage -``` - -To integrate AlamofireImage into your Xcode project using Carthage, specify it in your `Cartfile`: - -```ogdl -github "Alamofire/AlamofireImage" ~> 2.0 -``` - ---- - -## Usage - -### Image Response Serializers - -```swift -import AlamofireImage - -Alamofire.request(.GET, "https://httpbin.org/image/png") - .responseImage { response in - debugPrint(response) - - print(response.request) - print(response.response) - debugPrint(response.result) - - if let image = response.result.value { - print("image downloaded: \(image)") - } - } -``` - -The AlamofireImage response image serializers support a wide range of image types including: - -- `image/png` -- `image/jpeg` -- `image/tiff` -- `image/gif` -- `image/ico` -- `image/x-icon` -- `image/bmp` -- `image/x-bmp` -- `image/x-xbitmap` -- `image/x-win-bitmap` - -> If the image you are attempting to download is an invalid MIME type not in the list, you can add custom acceptable content types using the `addAcceptableImageContentTypes` extension on the `Request` type. - -### UIImage Extensions - -There are several `UIImage` extensions designed to make the common image manipulation operations as simple as possible. - -#### Inflation - -```swift -let URL = NSBundle.mainBundle().URLForResource("unicorn", withExtension: "png")! -let data = NSData(contentsOfURL: URL)! -let image = UIImage(data: data, scale: UIScreen.mainScreen().scale)! - -image.af_inflate() -``` - -> Inflating compressed image formats (such as PNG or JPEG) in a background queue can significantly improve drawing performance on the main thread. - -#### Scaling - -```swift -let image = UIImage(named: "unicorn")! -let size = CGSize(width: 100.0, height: 100.0) - -// Scale image to size disregarding aspect ratio -let scaledImage = image.af_imageScaledToSize(size) - -// Scale image to fit within specified size while maintaining aspect ratio -let aspectScaledToFitImage = image.af_imageAspectScaledToFitSize(size) - -// Scale image to fill specified size while maintaining aspect ratio -let aspectScaledToFillImage = image.af_imageAspectScaledToFillSize(size) -``` - -#### Rounded Corners - -```swift -let image = UIImage(named: "unicorn")! -let radius: CGFloat = 20.0 - -let roundedImage = image.af_imageWithRoundedCornerRadius(radius) -let circularImage = image.af_imageRoundedIntoCircle() -``` - -#### Core Image Filters - -```swift -let image = UIImage(named: "unicorn")! - -let sepiaImage = image.af_imageWithAppliedCoreImageFilter("CISepiaTone") -let blurredImage = image.af_imageWithAppliedCoreImageFilter( - "CIGaussianBlur", - filterParameters: ["inputRadius": 25] -) -``` - -### Image Filters - -The `ImageFilter` protocol was designed to make it easy to apply a filter operation and cache the result after an image finished downloading. It defines two properties to facilitate this functionality. - -```swift -public protocol ImageFilter { - var filter: Image -> Image { get } - var identifier: String { get } -} -``` - -The `filter` closure contains the operation used to create a modified version of the specified image. The `identifier` property is a string used to uniquely identify the filter operation. This is useful when adding filtered versions of an image to a cache. All identifier properties inside AlamofireImage are implemented using protocol extensions. - -#### Single Pass - -The single pass image filters only perform a single operation on the specified image. - -```swift -let image = UIImage(named: "unicorn")! -let imageFilter = RoundedCornersFilter(radius: 10.0) - -let roundedImage = imageFilter.filter(image) -``` - -The current list of single pass image filters includes: - -- `ScaledToSizeFilter` - Scales an image to a specified size. -- `AspectScaledToFitSizeFilter` - Scales an image from the center while maintaining the aspect ratio to fit within a specified size. -- `AspectScaledToFillSizeFilter` - Scales an image from the center while maintaining the aspect ratio to fill a specified size. Any pixels that fall outside the specified size are clipped. -- `RoundedCornersFilter` - Rounds the corners of an image to the specified radius. -- `CircleFilter` - Rounds the corners of an image into a circle. -- `BlurFilter` - Blurs an image using a `CIGaussianBlur` filter with the specified blur radius. - -> Each image filter is built ontop of the `UIImage` extensions. - -#### Multi-Pass - -The multi-pass image filters perform multiple operations on the specified image. - -```swift -let image = UIImage(named: "avatar")! -let size = CGSize(width: 100.0, height: 100.0) -let imageFilter = AspectScaledToFillSizeCircleFilter(size: size) - -let avatarImage = imageFilter.filter(image) -``` - -The current list of multi-pass image filters includes: - -- `ScaledToSizeWithRoundedCornersFilter` - Scales an image to a specified size, then rounds the corners to the specified radius. -- `AspectScaledToFillSizeWithRoundedCornersFilter` - Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the corners to the specified radius. -- `ScaledToSizeCircleFilter` - Scales an image to a specified size, then rounds the corners into a circle. -- `AspectScaledToFillSizeCircleFilter` - Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the corners into a circle. - -### Image Cache - -Image caching can become complicated when it comes to network images. `NSURLCache` is quite powerful and does a great job reasoning through the various cache policies and `Cache-Control` headers. However, it is not equiped to handle caching multiple modified versions of those images. - -For example, let's say you need to download an album of images. Your app needs to display both the thumbnail version as well as the full size version at various times. Due to performance issues, you want to scale down the thumbnails to a reasonable size before rendering them on-screen. You also need to apply a global CoreImage filter to the full size images when displayed. While `NSURLCache` can easily handle storing the original downloaded image, it cannot store these different variants. What you really need is another caching layer designed to handle these different variants. - -```swift -let imageCache = AutoPurgingImageCache( - memoryCapacity: 100 * 1024 * 1024, - preferredMemoryUsageAfterPurge: 60 * 1024 * 1024 -) -``` - -The `AutoPurgingImageCache` in AlamofireImage fills the role of that additional caching layer. It is an in-memory image cache used to store images up to a given memory capacity. When the memory capacity is reached, the image cache is sorted by last access date, then the oldest image is continuously purged until the preferred memory usage after purge is met. Each time an image is accessed through the cache, the internal access date of the image is updated. - -#### Add / Remove / Fetch Images - -Interacting with the `ImageCache` protocol APIs is very straightforward. - -```swift -let imageCache = AutoPurgingImageCache() -let avatarImage = UIImage(data: data)! - -// Add -imageCache.addImage(avatarImage, withIdentifier: "avatar") - -// Fetch -let cachedAvatar = imageCache.imageWithIdentifier("avatar") - -// Remove -imageCache.removeImageWithIdentifier("avatar") -``` - -#### URL Requests - -The `ImageRequestCache` protocol extends the `ImageCache` protocol by adding support for `NSURLRequest` caching. This allows an `NSURLRequest` and additional identifier to generate the unique identifier for the image in the cache. - -```swift -let imageCache = AutoPurgingImageCache() - -let URLRequest = NSURLRequest(URL: NSURL(string: "https://httpbin.org/image/png")!) -let avatarImage = UIImage(named: "avatar")!.af_imageRoundedIntoCircle() - -// Add -imageCache.addImage( - avatarImage, - forRequest: URLRequest, - withAdditionalIdentifier: "circle" -) - -// Fetch -let cachedAvatarImage = imageCache.imageForRequest( - URLRequest, - withAdditionalIdentifier: "circle" -) - -// Remove -imageCache.removeImageForRequest( - URLRequest, - withAdditionalIdentifier: "circle" -) -``` - -#### Auto-Purging - -Each time an image is fetched from the cache, the cache internally updates the last access date for that image. - -```swift -let avatar = imageCache.imageWithIdentifier("avatar") -let circularAvatar = imageCache.imageForRequest( - URLRequest, - withIdentifier: "circle" -) -``` - -By updating the last access date for each image, the image cache can make more informed decisions about which images to purge when the memory capacity is reached. The `AutoPurgingImageCache` automatically evicts images from the cache in order from oldest last access date to newest until the memory capacity drops below the `preferredMemoryCapacityAfterPurge`. - -> It is important to set reasonable default values for the `memoryCapacity` and `preferredMemoryCapacityAfterPurge` when you are initializing your image cache. By default, the `memoryCapacity` equals 100 MB and the `preferredMemoryCapacityAfterPurge` equals 60 MB. - -#### Memory Warnings - -The `AutoPurgingImageCache` also listens for memory warnings from your application and will purge all images from the cache if a memory warning is observed. - -### Image Downloader - -The `ImageDownloader` class is responsible for downloading images in parallel on a prioritized queue. It uses an internal Alamofire `Manager` instance to handle all the downloading and response image serialization. By default, the initialization of an `ImageDownloader` uses a default `NSURLSessionConfiguration` with the most common parameter values. - -```swift -let imageDownloader = ImageDownloader( - configuration: ImageDownloader.defaultURLSessionConfiguration(), - downloadPrioritization: .FIFO, - maximumActiveDownloads: 4, - imageCache: AutoPurgingImageCache() -) -``` - -> If you need to customize the `NSURLSessionConfiguration` type or parameters, then simply provide your own rather than using the default. - -#### Downloading an Image - -```swift -let downloader = ImageDownloader() -let URLRequest = NSURLRequest(URL: NSURL(string: "https://httpbin.org/image/jpeg")!) - -downloader.downloadImage(URLRequest: URLRequest) { response in - print(response.request) - print(response.response) - debugPrint(response.result) - - if let image = response.result.value { - print(image) - } -} -``` - -> Make sure to keep a strong reference to the `ImageDownloader` instance, otherwise the `completion` closure will not be called because the `downloader` reference will go out of scope before the `completion` closure can be called. - -#### Applying an ImageFilter - -```swift -let downloader = ImageDownloader() -let URLRequest = NSURLRequest(URL: NSURL(string: "https://httpbin.org/image/jpeg")!) -let filter = AspectScaledToFillSizeCircleFilter(size: CGSize(width: 100.0, height: 100.0)) - -downloader.downloadImage(URLRequest: URLRequest, filter: filter) { response in - print(response.request) - print(response.response) - debugPrint(response.result) - - if let image = response.result.value { - print(image) - } -} -``` - -#### Authentication - -If your images are behind HTTP Basic Auth, you can append the `user:password:` or the `credential` to the `ImageDownloader` instance. The credentials will be applied to all future download requests. - -```swift -let downloader = ImageDownloader() -downloader.addAuthentication(user: "username", password: "password") -``` - -#### Download Prioritization - -The `ImageDownloader` maintains an internal queue of pending download requests. Depending on your situation, you may want incoming downloads to be inserted at the front or the back of the queue. The `DownloadPrioritization` enumeration allows you to specify which behavior you would prefer. - -```swift -public enum DownloadPrioritization { - case FIFO, LIFO -} -``` - -> The `ImageDownloader` is initialized with a `.FIFO` queue by default. - -#### Image Caching - -The `ImageDownloader` uses a combination of an `NSURLCache` and `AutoPurgingImageCache` to create a very robust, high performance image caching system. - -##### NSURLCache - -The `NSURLCache` is used to cache all the original image content downloaded from the server. By default, it is initialized with a memory capacity of 20 MB and a disk capacity of 150 MB. This allows up to 150 MB of original image data to be stored on disk at any given time. While these defaults have been carefully set, it is very important to consider your application's needs and performance requirements and whether these values are right for you. - -> If you wish to disable this caching layer, create a custom `NSURLSessionConfiguration` with the `URLCache` property set to `nil` and use that configuration when initializing the `ImageDownloader`. - -##### Image Cache - -The `ImageCache` is used to cache all the potentially filtered image content after it has been downloaded from the server. This allows multiple variants of the same image to also be cached, rather than having to re-apply the image filters to the original image each time it is required. By default, an `AutoPurgingImageCache` is initialized with a memory capacity of 100 MB and a preferred memory usage after purge limit of 60 MB. This allows up to 100 MB of most recently accessed filtered image content to be stored in-memory at a given time. - -##### Setting Ideal Capacity Limits - -Determining the ideal the in-memory and on-disk capacity limits of the `NSURLCache` and `AutoPurgingImageCache` requires a bit of forethought. You must carefully consider your application's needs, and tailor the limits accordingly. By default, the combination of caches offers the following storage capacities: - -- 150 MB of on-disk storage -- 20 MB of in-memory original image data storage -- 100 MB of in-memory storage of filtered image content -- 60 MB preferred memory capacity after purge of filtered image content - -> If you do not use image filters, it is advised to set the memory capacity of the `NSURLCache` to zero to avoid storing the same content in-memory twice. - -#### Duplicate Downloads - -Sometimes application logic can end up attempting to download an image more than once before the initial download request is complete. Most often, this results in the image being downloaded more than once. AlamofireImage handles this case elegantly by merging the duplicate downloads. The image will only be downloaded once, yet both completion handlers will be called. - -##### Image Filter Reuse - -In addition to merging duplicate downloads, AlamofireImage can also merge duplicate image filters. If two image filters with the same identifier are attached to the same download, the image filter is only executed once and both completion handlers are called with the same resulting image. This can save large amounts of time and resources for computationally expensive filters such as ones leveraging CoreImage. - -##### Request Receipts - -Sometimes it is necessary to cancel an image download for various reasons. AlamofireImage can intelligently handle cancellation logic in the `ImageDownloader` by leveraging the `RequestReceipt` type along with the `cancelRequestForRequestReceipt` method. Each download request vends a `RequestReceipt` which can be later used to cancel the request. - -By cancelling the request through the `ImageDownloader` using the `RequestReceipt`, AlamofireImage is able to determine how to best handle the cancellation. The cancelled download will always receive a cancellation error, while duplicate downloads are allowed to complete. If the download is already active, it is allowed to complete even though the completion handler will be called with a cancellation error. This greatly improves performance of table and collection views displaying large amounts of images. - -> It is NOT recommended to directly call `cancel` on the `request` in the `RequestReceipt`. Doing so can lead to issues such as duplicate downloads never being allowed to complete. - -### UIImageView Extension - -The [UIImage Extensions](#uiimage-extensions), [Image Filters](#image-filters), [Image Cache](#image-cache) and [Image Downloader](#image-downloader) were all designed to be flexible and standalone, yet also to provide the foundation of the `UIImageView` extension. Due to the powerful support of these classes, protocols and extensions, the `UIImageView` APIs are concise, easy to use and contain a large amount of functionality. - -#### Setting Image with URL - -Setting the image with a URL will asynchronously download the image and set it once the request is finished. - -```swift -let imageView = UIImageView(frame: frame) -let URL = NSURL(string: "https://httpbin.org/image/png")! - -imageView.af_setImageWithURL(URL) -``` - -> If the image is cached locally, the image is set immediately. - -#### Placeholder Images - -By specifying a placeholder image, the image view uses the placeholder image until the remote image is downloaded. - -```swift -let imageView = UIImageView(frame: frame) -let URL = NSURL(string: "https://httpbin.org/image/png")! -let placeholderImage = UIImage(named: "placeholder")! - -imageView.af_setImageWithURL(URL, placeholderImage: placeholderImage) -``` - -> If the remote image is cached locally, the placeholder image is never set. - -#### Image Filters - -If an image filter is specified, it is applied asynchronously after the remote image is downloaded. Once the filter execution is complete, the resulting image is set on the image view. - -```swift -let imageView = UIImageView(frame: frame) - -let URL = NSURL(string: "https://httpbin.org/image/png")! -let placeholderImage = UIImage(named: "placeholder")! - -let filter = AspectScaledToFillSizeWithRoundedCornersFilter( - size: imageView.frame.size, - radius: 20.0 -) - -imageView.af_setImageWithURL( - URL, - placeholderImage: placeholderImage, - filter: filter -) -``` - -> If the remote image with the applied filter is cached locally, the image is set immediately. - -#### Image Transitions - -By default, there is no image transition animation when setting the image on the image view. If you wish to add a cross dissolve or flip-from-bottom animation, then specify an `ImageTransition` with the preferred duration. - -```swift -let imageView = UIImageView(frame: frame) - -let URL = NSURL(string: "https://httpbin.org/image/png")! -let placeholderImage = UIImage(named: "placeholder")! - -let filter = AspectScaledToFillSizeWithRoundedCornersFilter( - size: imageView.frame.size, - radius: 20.0 -) - -imageView.af_setImageWithURL( - URL, - placeholderImage: placeholderImage, - filter: filter, - imageTransition: .CrossDissolve(0.2) -) -``` - -> If the remote image is cached locally, the image transition is ignored. - -#### Image Downloader - -The `UIImageView` extension is powered by the default `ImageDownloader` instance. To customize cache capacities, download priorities, request cache policies, timeout durations, etc., please refer to the [Image Downloader](#image-downloader) documentation. - -##### Authentication - -If an image requires and authentication credential from the `UIImageView` extension, it can be provided as follows: - -```swift -ImageDownloader.defaultInstance.addAuthentication( - user: "user", - password: "password" -) -``` - ---- - -## Credits - -Alamofire is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). You can follow them on Twitter at [@AlamofireSF](https://twitter.com/AlamofireSF) for project updates and releases. - -### Security Disclosure - -If you believe you have identified a security vulnerability with AlamofireImage, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker. - -## License - -AlamofireImage is released under the MIT license. See LICENSE for details. diff --git a/Carthage/Checkouts/AlamofireImage/Source/AlamofireImage.h b/Carthage/Checkouts/AlamofireImage/Source/AlamofireImage.h deleted file mode 100644 index 58220a9..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/AlamofireImage.h +++ /dev/null @@ -1,26 +0,0 @@ -// AlamofireImage.h -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 - -FOUNDATION_EXPORT double AlamofireImageVersionNumber; -FOUNDATION_EXPORT const unsigned char AlamofireImageVersionString[]; diff --git a/Carthage/Checkouts/AlamofireImage/Source/Image.swift b/Carthage/Checkouts/AlamofireImage/Source/Image.swift deleted file mode 100644 index 6c349bf..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/Image.swift +++ /dev/null @@ -1,31 +0,0 @@ -// Image.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -#if os(iOS) || os(tvOS) || os(watchOS) -import UIKit -public typealias Image = UIImage -#elseif os(OSX) -import Cocoa -public typealias Image = NSImage -#endif diff --git a/Carthage/Checkouts/AlamofireImage/Source/ImageCache.swift b/Carthage/Checkouts/AlamofireImage/Source/ImageCache.swift deleted file mode 100644 index 0340a9c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/ImageCache.swift +++ /dev/null @@ -1,330 +0,0 @@ -// ImageCache.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation - -#if os(iOS) || os(tvOS) || os(watchOS) -import UIKit -#elseif os(OSX) -import Cocoa -#endif - -// MARK: ImageCache - -/// The `ImageCache` protocol defines a set of APIs for adding, removing and fetching images from a cache. -public protocol ImageCache { - /// Adds the image to the cache with the given identifier. - func addImage(image: Image, withIdentifier identifier: String) - - /// Removes the image from the cache matching the given identifier. - func removeImageWithIdentifier(identifier: String) -> Bool - - /// Removes all images stored in the cache. - func removeAllImages() -> Bool - - /// Returns the image in the cache associated with the given identifier. - func imageWithIdentifier(identifier: String) -> Image? -} - -/// The `ImageRequestCache` protocol extends the `ImageCache` protocol by adding methods for adding, removing and -/// fetching images from a cache given an `NSURLRequest` and additional identifier. -public protocol ImageRequestCache: ImageCache { - /// Adds the image to the cache using an identifier created from the request and additional identifier. - func addImage(image: Image, forRequest request: NSURLRequest, withAdditionalIdentifier identifier: String?) - - /// Removes the image from the cache using an identifier created from the request and additional identifier. - func removeImageForRequest(request: NSURLRequest, withAdditionalIdentifier identifier: String?) -> Bool - - /// Returns the image from the cache associated with an identifier created from the request and additional identifier. - func imageForRequest(request: NSURLRequest, withAdditionalIdentifier identifier: String?) -> Image? -} - -// MARK: - - -/// The `AutoPurgingImageCache` in an in-memory image cache used to store images up to a given memory capacity. When -/// the memory capacity is reached, the image cache is sorted by last access date, then the oldest image is continuously -/// purged until the preferred memory usage after purge is met. Each time an image is accessed through the cache, the -/// internal access date of the image is updated. -public class AutoPurgingImageCache: ImageRequestCache { - private class CachedImage { - let image: Image - let identifier: String - let totalBytes: UInt64 - var lastAccessDate: NSDate - - init(_ image: Image, identifier: String) { - self.image = image - self.identifier = identifier - self.lastAccessDate = NSDate() - - self.totalBytes = { - #if os(iOS) || os(tvOS) || os(watchOS) - let size = CGSize(width: image.size.width * image.scale, height: image.size.height * image.scale) - #elseif os(OSX) - let size = CGSize(width: image.size.width, height: image.size.height) - #endif - - let bytesPerPixel: CGFloat = 4.0 - let bytesPerRow = size.width * bytesPerPixel - let totalBytes = UInt64(bytesPerRow) * UInt64(size.height) - - return totalBytes - }() - } - - func accessImage() -> Image { - lastAccessDate = NSDate() - return image - } - } - - // MARK: Properties - - /// The current total memory usage in bytes of all images stored within the cache. - public var memoryUsage: UInt64 { - var memoryUsage: UInt64 = 0 - dispatch_sync(synchronizationQueue) { memoryUsage = self.currentMemoryUsage } - - return memoryUsage - } - - /// The total memory capacity of the cache in bytes. - public let memoryCapacity: UInt64 - - /// The preferred memory usage after purge in bytes. During a purge, images will be purged until the memory - /// capacity drops below this limit. - public let preferredMemoryUsageAfterPurge: UInt64 - - private let synchronizationQueue: dispatch_queue_t - private var cachedImages: [String: CachedImage] - private var currentMemoryUsage: UInt64 - - // MARK: Initialization - - /** - Initialies the `AutoPurgingImageCache` instance with the given memory capacity and preferred memory usage - after purge limit. - - Please note, the memory capacity must always be greater than or equal to the preferred memory usage after purge. - - - parameter memoryCapacity: The total memory capacity of the cache in bytes. `100 MB` by default. - - parameter preferredMemoryUsageAfterPurge: The preferred memory usage after purge in bytes. `60 MB` by default. - - - returns: The new `AutoPurgingImageCache` instance. - */ - public init(memoryCapacity: UInt64 = 100_000_000, preferredMemoryUsageAfterPurge: UInt64 = 60_000_000) { - self.memoryCapacity = memoryCapacity - self.preferredMemoryUsageAfterPurge = preferredMemoryUsageAfterPurge - - precondition( - memoryCapacity >= preferredMemoryUsageAfterPurge, - "The `memoryCapacity` must be greater than or equal to `preferredMemoryUsageAfterPurge`" - ) - - self.cachedImages = [:] - self.currentMemoryUsage = 0 - - self.synchronizationQueue = { - let name = String(format: "com.alamofire.autopurgingimagecache-%08%08", arc4random(), arc4random()) - return dispatch_queue_create(name, DISPATCH_QUEUE_CONCURRENT) - }() - - #if os(iOS) - NSNotificationCenter.defaultCenter().addObserver( - self, - selector: "removeAllImages", - name: UIApplicationDidReceiveMemoryWarningNotification, - object: nil - ) - #endif - } - - deinit { - NSNotificationCenter.defaultCenter().removeObserver(self) - } - - // MARK: Add Image to Cache - - /** - Adds the image to the cache using an identifier created from the request and optional identifier. - - - parameter image: The image to add to the cache. - - parameter request: The request used to generate the image's unique identifier. - - parameter identifier: The additional identifier to append to the image's unique identifier. - */ - public func addImage(image: Image, forRequest request: NSURLRequest, withAdditionalIdentifier identifier: String? = nil) { - let requestIdentifier = imageCacheKeyFromURLRequest(request, withAdditionalIdentifier: identifier) - addImage(image, withIdentifier: requestIdentifier) - } - - /** - Adds the image to the cache with the given identifier. - - - parameter image: The image to add to the cache. - - parameter identifier: The identifier to use to uniquely identify the image. - */ - public func addImage(image: Image, withIdentifier identifier: String) { - dispatch_barrier_async(synchronizationQueue) { - let cachedImage = CachedImage(image, identifier: identifier) - - if let previousCachedImage = self.cachedImages[identifier] { - self.currentMemoryUsage -= previousCachedImage.totalBytes - } - - self.cachedImages[identifier] = cachedImage - self.currentMemoryUsage += cachedImage.totalBytes - } - - dispatch_barrier_async(synchronizationQueue) { - if self.currentMemoryUsage > self.memoryCapacity { - let bytesToPurge = self.currentMemoryUsage - self.preferredMemoryUsageAfterPurge - - var sortedImages = [CachedImage](self.cachedImages.values) - sortedImages.sortInPlace { - let date1 = $0.lastAccessDate - let date2 = $1.lastAccessDate - - return date1.timeIntervalSinceDate(date2) < 0.0 - } - - var bytesPurged = UInt64(0) - - for cachedImage in sortedImages { - self.cachedImages.removeValueForKey(cachedImage.identifier) - bytesPurged += cachedImage.totalBytes - - if bytesPurged >= bytesToPurge { - break - } - } - - self.currentMemoryUsage -= bytesPurged - } - } - } - - // MARK: Remove Image from Cache - - /** - Removes the image from the cache using an identifier created from the request and optional identifier. - - - parameter request: The request used to generate the image's unique identifier. - - parameter identifier: The additional identifier to append to the image's unique identifier. - - - returns: `true` if the image was removed, `false` otherwise. - */ - public func removeImageForRequest(request: NSURLRequest, withAdditionalIdentifier identifier: String?) -> Bool { - let requestIdentifier = imageCacheKeyFromURLRequest(request, withAdditionalIdentifier: identifier) - return removeImageWithIdentifier(requestIdentifier) - } - - /** - Removes the image from the cache matching the given identifier. - - - parameter identifier: The unique identifier for the image. - - - returns: `true` if the image was removed, `false` otherwise. - */ - public func removeImageWithIdentifier(identifier: String) -> Bool { - var removed = false - - dispatch_barrier_async(synchronizationQueue) { - if let cachedImage = self.cachedImages.removeValueForKey(identifier) { - self.currentMemoryUsage -= cachedImage.totalBytes - removed = true - } - } - - return removed - } - - /** - Removes all images stored in the cache. - - - returns: `true` if images were removed from the cache, `false` otherwise. - */ - @objc public func removeAllImages() -> Bool { - var removed = false - - dispatch_sync(synchronizationQueue) { - if !self.cachedImages.isEmpty { - self.cachedImages.removeAll() - self.currentMemoryUsage = 0 - - removed = true - } - } - - return removed - } - - // MARK: Fetch Image from Cache - - /** - Returns the image from the cache associated with an identifier created from the request and optional identifier. - - - parameter request: The request used to generate the image's unique identifier. - - parameter identifier: The additional identifier to append to the image's unique identifier. - - - returns: The image if it is stored in the cache, `nil` otherwise. - */ - public func imageForRequest(request: NSURLRequest, withAdditionalIdentifier identifier: String? = nil) -> Image? { - let requestIdentifier = imageCacheKeyFromURLRequest(request, withAdditionalIdentifier: identifier) - return imageWithIdentifier(requestIdentifier) - } - - /** - Returns the image in the cache associated with the given identifier. - - - parameter identifier: The unique identifier for the image. - - - returns: The image if it is stored in the cache, `nil` otherwise. - */ - public func imageWithIdentifier(identifier: String) -> Image? { - var image: Image? - - dispatch_sync(synchronizationQueue) { - if let cachedImage = self.cachedImages[identifier] { - image = cachedImage.accessImage() - } - } - - return image - } - - // MARK: Private - Helper Methods - - private func imageCacheKeyFromURLRequest( - request: NSURLRequest, - withAdditionalIdentifier identifier: String?) - -> String - { - var key = request.URLString - - if let identifier = identifier { - key += "-\(identifier)" - } - - return key - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Source/ImageDownloader.swift b/Carthage/Checkouts/AlamofireImage/Source/ImageDownloader.swift deleted file mode 100644 index 2283189..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/ImageDownloader.swift +++ /dev/null @@ -1,530 +0,0 @@ -// ImageDownloader.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation - -#if os(iOS) || os(tvOS) || os(watchOS) -import UIKit -#elseif os(OSX) -import Cocoa -#endif - -/// The `RequestReceipt` is an object vended by the `ImageDownloader` when starting a download request. It can be used -/// to cancel active requests running on the `ImageDownloader` session. As a general rule, image download requests -/// should be cancelled using the `RequestReceipt` instead of calling `cancel` directly on the `request` itself. The -/// `ImageDownloader` is optimized to handle duplicate request scenarios as well as pending versus active downloads. -public class RequestReceipt { - /// The download request created by the `ImageDownloader`. - public let request: Request - - /// The unique identifier for the image filters and completion handlers when duplicate requests are made. - public let receiptID: String - - init(request: Request, receiptID: String) { - self.request = request - self.receiptID = receiptID - } -} - -/// The `ImageDownloader` class is responsible for downloading images in parallel on a prioritized queue. Incoming -/// downloads are added to the front or back of the queue depending on the download prioritization. Each downloaded -/// image is cached in the underlying `NSURLCache` as well as the in-memory image cache that supports image filters. -/// By default, any download request with a cached image equivalent in the image cache will automatically be served the -/// cached image representation. Additional advanced features include supporting multiple image filters and completion -/// handlers for a single request. -public class ImageDownloader { - /// The completion handler closure used when an image download completes. - public typealias CompletionHandler = Response -> Void - - /** - Defines the order prioritization of incoming download requests being inserted into the queue. - - - FIFO: All incoming downloads are added to the back of the queue. - - LIFO: All incoming downloads are added to the front of the queue. - */ - public enum DownloadPrioritization { - case FIFO, LIFO - } - - class ResponseHandler { - let identifier: String - let request: Request - var operations: [(id: String, filter: ImageFilter?, completion: CompletionHandler?)] - - init(request: Request, id: String, filter: ImageFilter?, completion: CompletionHandler?) { - self.request = request - self.identifier = ImageDownloader.identifierForURLRequest(request.request!) - self.operations = [(id: id, filter: filter, completion: completion)] - } - } - - // MARK: - Properties - - /// The image cache used to store all downloaded images in. - public let imageCache: ImageRequestCache? - - /// The credential used for authenticating each download request. - public private(set) var credential: NSURLCredential? - - /// The underlying Alamofire `Manager` instance used to handle all download requests. - public let sessionManager: Alamofire.Manager - - let downloadPrioritization: DownloadPrioritization - let maximumActiveDownloads: Int - - var activeRequestCount = 0 - var queuedRequests: [Request] = [] - var responseHandlers: [String: ResponseHandler] = [:] - - private let synchronizationQueue: dispatch_queue_t = { - let name = String(format: "com.alamofire.imagedownloader.synchronizationqueue-%08%08", arc4random(), arc4random()) - return dispatch_queue_create(name, DISPATCH_QUEUE_SERIAL) - }() - - private let responseQueue: dispatch_queue_t = { - let name = String(format: "com.alamofire.imagedownloader.responsequeue-%08%08", arc4random(), arc4random()) - return dispatch_queue_create(name, DISPATCH_QUEUE_CONCURRENT) - }() - - // MARK: - Initialization - - /// The default instance of `ImageDownloader` initialized with default values. - public static let defaultInstance = ImageDownloader() - - /** - Creates a default `NSURLSessionConfiguration` with common usage parameter values. - - - returns: The default `NSURLSessionConfiguration` instance. - */ - public class func defaultURLSessionConfiguration() -> NSURLSessionConfiguration { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - - configuration.HTTPAdditionalHeaders = Manager.defaultHTTPHeaders - configuration.HTTPShouldSetCookies = true - configuration.HTTPShouldUsePipelining = false - - configuration.requestCachePolicy = .UseProtocolCachePolicy - configuration.allowsCellularAccess = true - configuration.timeoutIntervalForRequest = 60 - - configuration.URLCache = ImageDownloader.defaultURLCache() - - return configuration - } - - /** - Creates a default `NSURLCache` with common usage parameter values. - - - returns: The default `NSURLCache` instance. - */ - public class func defaultURLCache() -> NSURLCache { - return NSURLCache( - memoryCapacity: 20 * 1024 * 1024, // 20 MB - diskCapacity: 150 * 1024 * 1024, // 150 MB - diskPath: "com.alamofire.imagedownloader" - ) - } - - /** - Initializes the `ImageDownloader` instance with the given configuration, download prioritization, maximum active - download count and image cache. - - - parameter configuration: The `NSURLSessionConfiguration` to use to create the underlying Alamofire - `Manager` instance. - - parameter downloadPrioritization: The download prioritization of the download queue. `.FIFO` by default. - - parameter maximumActiveDownloads: The maximum number of active downloads allowed at any given time. - - parameter imageCache: The image cache used to store all downloaded images in. - - - returns: The new `ImageDownloader` instance. - */ - public init( - configuration: NSURLSessionConfiguration = ImageDownloader.defaultURLSessionConfiguration(), - downloadPrioritization: DownloadPrioritization = .FIFO, - maximumActiveDownloads: Int = 4, - imageCache: ImageRequestCache? = AutoPurgingImageCache()) - { - self.sessionManager = Alamofire.Manager(configuration: configuration) - self.sessionManager.startRequestsImmediately = false - - self.downloadPrioritization = downloadPrioritization - self.maximumActiveDownloads = maximumActiveDownloads - self.imageCache = imageCache - } - - /** - Initializes the `ImageDownloader` instance with the given sesion manager, download prioritization, maximum - active download count and image cache. - - - parameter sessionManager: The Alamofire `Manager` instance to handle all download requests. - - parameter downloadPrioritization: The download prioritization of the download queue. `.FIFO` by default. - - parameter maximumActiveDownloads: The maximum number of active downloads allowed at any given time. - - parameter imageCache: The image cache used to store all downloaded images in. - - - returns: The new `ImageDownloader` instance. - */ - public init( - sessionManager: Manager, - downloadPrioritization: DownloadPrioritization = .FIFO, - maximumActiveDownloads: Int = 4, - imageCache: ImageRequestCache? = AutoPurgingImageCache()) - { - self.sessionManager = sessionManager - self.sessionManager.startRequestsImmediately = false - - self.downloadPrioritization = downloadPrioritization - self.maximumActiveDownloads = maximumActiveDownloads - self.imageCache = imageCache - } - - // MARK: - Authentication - - /** - Associates an HTTP Basic Auth credential with all future download requests. - - - parameter user: The user. - - parameter password: The password. - - parameter persistence: The URL credential persistence. `.ForSession` by default. - */ - public func addAuthentication( - user user: String, - password: String, - persistence: NSURLCredentialPersistence = .ForSession) - { - let credential = NSURLCredential(user: user, password: password, persistence: persistence) - addAuthentication(usingCredential: credential) - } - - /** - Associates the specified credential with all future download requests. - - - parameter credential: The credential. - */ - public func addAuthentication(usingCredential credential: NSURLCredential) { - dispatch_sync(synchronizationQueue) { - self.credential = credential - } - } - - // MARK: - Download - - /** - Creates a download request using the internal Alamofire `Manager` instance for the specified URL request. - - If the same download request is already in the queue or currently being downloaded, the filter and completion - handler are appended to the already existing request. Once the request completes, all filters and completion - handlers attached to the request are executed in the order they were added. Additionally, any filters attached - to the request with the same identifiers are only executed once. The resulting image is then passed into each - completion handler paired with the filter. - - You should not attempt to directly cancel the `request` inside the request receipt since other callers may be - relying on the completion of that request. Instead, you should call `cancelRequestForRequestReceipt` with the - returned request receipt to allow the `ImageDownloader` to optimize the cancellation on behalf of all active - callers. - - - parameter URLRequest: The URL request. - - parameter filter The image filter to apply to the image after the download is complete. Defaults to `nil`. - - parameter completion: The closure called when the download request is complete. - - - returns: The request receipt for the download request if available. `nil` if the image is stored in the image - cache and the URL request cache policy allows the cache to be used. - */ - public func downloadImage( - URLRequest URLRequest: URLRequestConvertible, - filter: ImageFilter? = nil, - completion: CompletionHandler? = nil) - -> RequestReceipt? - { - return downloadImage( - URLRequest: URLRequest, - receiptID: NSUUID().UUIDString, - filter: filter, - completion: completion - ) - } - - func downloadImage( - URLRequest URLRequest: URLRequestConvertible, - receiptID: String, - filter: ImageFilter?, - completion: CompletionHandler?) - -> RequestReceipt? - { - var request: Request! - - dispatch_sync(synchronizationQueue) { - // 1) Append the filter and completion handler to a pre-existing request if it already exists - let identifier = ImageDownloader.identifierForURLRequest(URLRequest) - - if let responseHandler = self.responseHandlers[identifier] { - responseHandler.operations.append(id: receiptID, filter: filter, completion: completion) - request = responseHandler.request - return - } - - // 2) Attempt to load the image from the image cache if the cache policy allows it - switch URLRequest.URLRequest.cachePolicy { - case .UseProtocolCachePolicy, .ReturnCacheDataElseLoad, .ReturnCacheDataDontLoad: - if let image = self.imageCache?.imageForRequest( - URLRequest.URLRequest, - withAdditionalIdentifier: filter?.identifier) - { - dispatch_async(dispatch_get_main_queue()) { - let response = Response( - request: URLRequest.URLRequest, - response: nil, - data: nil, - result: .Success(image) - ) - - completion?(response) - } - - return - } - default: - break - } - - // 3) Create the request and set up authentication, validation and response serialization - request = self.sessionManager.request(URLRequest) - - if let credential = self.credential { - request.authenticate(usingCredential: credential) - } - - request.validate() - request.response( - queue: self.responseQueue, - responseSerializer: Request.imageResponseSerializer(), - completionHandler: { [weak self] response in - guard let strongSelf = self, let request = response.request else { return } - - let responseHandler = strongSelf.safelyRemoveResponseHandlerWithIdentifier(identifier) - - switch response.result { - case .Success(let image): - var filteredImages: [String: Image] = [:] - - for (_, filter, completion) in responseHandler.operations { - var filteredImage: Image - - if let filter = filter { - if let alreadyFilteredImage = filteredImages[filter.identifier] { - filteredImage = alreadyFilteredImage - } else { - filteredImage = filter.filter(image) - filteredImages[filter.identifier] = filteredImage - } - } else { - filteredImage = image - } - - strongSelf.imageCache?.addImage( - filteredImage, - forRequest: request, - withAdditionalIdentifier: filter?.identifier - ) - - dispatch_async(dispatch_get_main_queue()) { - let response = Response( - request: response.request, - response: response.response, - data: response.data, - result: .Success(filteredImage), - timeline: response.timeline - ) - - completion?(response) - } - } - case .Failure: - for (_, _, completion) in responseHandler.operations { - dispatch_async(dispatch_get_main_queue()) { completion?(response) } - } - } - - strongSelf.safelyDecrementActiveRequestCount() - strongSelf.safelyStartNextRequestIfNecessary() - } - ) - - // 4) Store the response handler for use when the request completes - let responseHandler = ResponseHandler( - request: request, - id: receiptID, - filter: filter, - completion: completion - ) - - self.responseHandlers[identifier] = responseHandler - - // 5) Either start the request or enqueue it depending on the current active request count - if self.isActiveRequestCountBelowMaximumLimit() { - self.startRequest(request) - } else { - self.enqueueRequest(request) - } - } - - if let request = request { - return RequestReceipt(request: request, receiptID: receiptID) - } - - return nil - } - - /** - Creates a download request using the internal Alamofire `Manager` instance for each specified URL request. - - For each request, if the same download request is already in the queue or currently being downloaded, the - filter and completion handler are appended to the already existing request. Once the request completes, all - filters and completion handlers attached to the request are executed in the order they were added. - Additionally, any filters attached to the request with the same identifiers are only executed once. The - resulting image is then passed into each completion handler paired with the filter. - - You should not attempt to directly cancel any of the `request`s inside the request receipts array since other - callers may be relying on the completion of that request. Instead, you should call - `cancelRequestForRequestReceipt` with the returned request receipt to allow the `ImageDownloader` to optimize - the cancellation on behalf of all active callers. - - - parameter URLRequests: The URL requests. - - parameter filter The image filter to apply to the image after each download is complete. - - parameter completion: The closure called when each download request is complete. - - - returns: The request receipts for the download requests if available. If an image is stored in the image - cache and the URL request cache policy allows the cache to be used, a receipt will not be returned - for that request. - */ - public func downloadImages( - URLRequests URLRequests: [URLRequestConvertible], - filter: ImageFilter? = nil, - completion: CompletionHandler? = nil) - -> [RequestReceipt] - { - return URLRequests.flatMap { downloadImage(URLRequest: $0, filter: filter, completion: completion) } - } - - /** - Cancels the request in the receipt by removing the response handler and cancelling the request if necessary. - - If the request is pending in the queue, it will be cancelled if no other response handlers are registered with - the request. If the request is currently executing or is already completed, the response handler is removed and - will not be called. - - - parameter requestReceipt: The request receipt to cancel. - */ - public func cancelRequestForRequestReceipt(requestReceipt: RequestReceipt) { - dispatch_sync(synchronizationQueue) { - let identifier = ImageDownloader.identifierForURLRequest(requestReceipt.request.request!) - guard let responseHandler = self.responseHandlers[identifier] else { return } - - if let index = responseHandler.operations.indexOf({ $0.id == requestReceipt.receiptID }) { - let operation = responseHandler.operations.removeAtIndex(index) - - let response: Response = { - let URLRequest = requestReceipt.request.request! - let error: NSError = { - let failureReason = "ImageDownloader cancelled URL request: \(URLRequest.URLString)" - let userInfo = [NSLocalizedFailureReasonErrorKey: failureReason] - return NSError(domain: Error.Domain, code: NSURLErrorCancelled, userInfo: userInfo) - }() - - return Response(request: URLRequest, response: nil, data: nil, result: .Failure(error)) - }() - - dispatch_async(dispatch_get_main_queue()) { operation.completion?(response) } - } - - if responseHandler.operations.isEmpty && requestReceipt.request.task.state == .Suspended { - requestReceipt.request.cancel() - } - } - } - - // MARK: - Internal - Thread-Safe Request Methods - - func safelyRemoveResponseHandlerWithIdentifier(identifier: String) -> ResponseHandler { - var responseHandler: ResponseHandler! - - dispatch_sync(synchronizationQueue) { - responseHandler = self.responseHandlers.removeValueForKey(identifier) - } - - return responseHandler - } - - func safelyStartNextRequestIfNecessary() { - dispatch_sync(synchronizationQueue) { - guard self.isActiveRequestCountBelowMaximumLimit() else { return } - - while (!self.queuedRequests.isEmpty) { - if let request = self.dequeueRequest() where request.task.state == .Suspended { - self.startRequest(request) - break - } - } - } - } - - func safelyDecrementActiveRequestCount() { - dispatch_sync(self.synchronizationQueue) { - if self.activeRequestCount > 0 { - self.activeRequestCount -= 1 - } - } - } - - // MARK: - Internal - Non Thread-Safe Request Methods - - func startRequest(request: Request) { - request.resume() - activeRequestCount += 1 - } - - func enqueueRequest(request: Request) { - switch downloadPrioritization { - case .FIFO: - queuedRequests.append(request) - case .LIFO: - queuedRequests.insert(request, atIndex: 0) - } - } - - func dequeueRequest() -> Request? { - var request: Request? - - if !queuedRequests.isEmpty { - request = queuedRequests.removeFirst() - } - - return request - } - - func isActiveRequestCountBelowMaximumLimit() -> Bool { - return activeRequestCount < maximumActiveDownloads - } - - static func identifierForURLRequest(URLRequest: URLRequestConvertible) -> String { - return URLRequest.URLRequest.URLString - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Source/ImageFilter.swift b/Carthage/Checkouts/AlamofireImage/Source/ImageFilter.swift deleted file mode 100644 index 0549ed4..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/ImageFilter.swift +++ /dev/null @@ -1,428 +0,0 @@ -// ImageFilter.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Foundation - -#if os(iOS) || os(tvOS) || os(watchOS) -import UIKit -#elseif os(OSX) -import Cocoa -#endif - -// MARK: ImageFilter - -/// The `ImageFilter` protocol defines properties for filtering an image as well as identification of the filter. -public protocol ImageFilter { - /// A closure used to create an alternative representation of the given image. - var filter: Image -> Image { get } - - /// The string used to uniquely identify the filter operation. - var identifier: String { get } -} - -extension ImageFilter { - /// The unique identifier for any `ImageFilter` type. - public var identifier: String { return "\(self.dynamicType)" } -} - -// MARK: - Sizable - -/// The `Sizable` protocol defines a size property intended for use with `ImageFilter` types. -public protocol Sizable { - /// The size of the type. - var size: CGSize { get } -} - -extension ImageFilter where Self: Sizable { - /// The unique idenitifier for an `ImageFilter` conforming to the `Sizable` protocol. - public var identifier: String { - let width = Int64(round(size.width)) - let height = Int64(round(size.height)) - - return "\(self.dynamicType)-size:(\(width)x\(height))" - } -} - -// MARK: - Roundable - -/// The `Roundable` protocol defines a radius property intended for use with `ImageFilter` types. -public protocol Roundable { - /// The radius of the type. - var radius: CGFloat { get } -} - -extension ImageFilter where Self: Roundable { - /// The unique idenitifier for an `ImageFilter` conforming to the `Roundable` protocol. - public var identifier: String { - let radius = Int64(round(self.radius)) - return "\(self.dynamicType)-radius:(\(radius))" - } -} - -// MARK: - DynamicImageFilter - -/// The `DynamicImageFilter` class simplifies custom image filter creation by using a trailing closure initializer. -public struct DynamicImageFilter: ImageFilter { - /// The string used to uniquely identify the image filter operation. - public let identifier: String - - /// A closure used to create an alternative representation of the given image. - public let filter: Image -> Image - - /** - Initializes the `DynamicImageFilter` instance with the specified identifier and filter closure. - - - parameter identifier: The unique identifier of the filter. - - parameter filter: A closure used to create an alternative representation of the given image. - - - returns: The new `DynamicImageFilter` instance. - */ - public init(_ identifier: String, filter: Image -> Image) { - self.identifier = identifier - self.filter = filter - } -} - -// MARK: - CompositeImageFilter - -/// The `CompositeImageFilter` protocol defines an additional `filters` property to support multiple composite filters. -public protocol CompositeImageFilter: ImageFilter { - /// The image filters to apply to the image in sequential order. - var filters: [ImageFilter] { get } -} - -public extension CompositeImageFilter { - /// The unique idenitifier for any `CompositeImageFilter` type. - var identifier: String { - return filters.map { $0.identifier }.joinWithSeparator("_") - } - - /// The filter closure for any `CompositeImageFilter` type. - var filter: Image -> Image { - return { image in - return self.filters.reduce(image) { $1.filter($0) } - } - } -} - -// MARK: - DynamicCompositeImageFilter - -/// The `DynamicCompositeImageFilter` class is a composite image filter based on a specified array of filters. -public struct DynamicCompositeImageFilter: CompositeImageFilter { - /// The image filters to apply to the image in sequential order. - public let filters: [ImageFilter] - - /** - Initializes the `DynamicCompositeImageFilter` instance with the given filters. - - - parameter filters: The filters taking part in the composite image filter. - - - returns: The new `DynamicCompositeImageFilter` instance. - */ - public init(_ filters: [ImageFilter]) { - self.filters = filters - } - - /** - Initializes the `DynamicCompositeImageFilter` instance with the given filters. - - - parameter filters: The filters taking part in the composite image filter. - - - returns: The new `DynamicCompositeImageFilter` instance. - */ - public init(_ filters: ImageFilter...) { - self.init(filters) - } -} - -#if os(iOS) || os(tvOS) || os(watchOS) - -// MARK: - Single Pass Image Filters (iOS, tvOS and watchOS only) - - -/// Scales an image to a specified size. -public struct ScaledToSizeFilter: ImageFilter, Sizable { - /// The size of the filter. - public let size: CGSize - - /** - Initializes the `ScaledToSizeFilter` instance with the given size. - - - parameter size: The size. - - - returns: The new `ScaledToSizeFilter` instance. - */ - public init(size: CGSize) { - self.size = size - } - - /// The filter closure used to create the modified representation of the given image. - public var filter: Image -> Image { - return { image in - return image.af_imageScaledToSize(self.size) - } - } -} - -// MARK: - - -/// Scales an image from the center while maintaining the aspect ratio to fit within a specified size. -public struct AspectScaledToFitSizeFilter: ImageFilter, Sizable { - /// The size of the filter. - public let size: CGSize - - /** - Initializes the `AspectScaledToFitSizeFilter` instance with the given size. - - - parameter size: The size. - - - returns: The new `AspectScaledToFitSizeFilter` instance. - */ - public init(size: CGSize) { - self.size = size - } - - /// The filter closure used to create the modified representation of the given image. - public var filter: Image -> Image { - return { image in - return image.af_imageAspectScaledToFitSize(self.size) - } - } -} - -// MARK: - - -/// Scales an image from the center while maintaining the aspect ratio to fill a specified size. Any pixels that fall -/// outside the specified size are clipped. -public struct AspectScaledToFillSizeFilter: ImageFilter, Sizable { - /// The size of the filter. - public let size: CGSize - - /** - Initializes the `AspectScaledToFillSizeFilter` instance with the given size. - - - parameter size: The size. - - - returns: The new `AspectScaledToFillSizeFilter` instance. - */ - public init(size: CGSize) { - self.size = size - } - - /// The filter closure used to create the modified representation of the given image. - public var filter: Image -> Image { - return { image in - return image.af_imageAspectScaledToFillSize(self.size) - } - } -} - -// MARK: - - -/// Rounds the corners of an image to the specified radius. -public struct RoundedCornersFilter: ImageFilter, Roundable { - /// The radius of the filter. - public let radius: CGFloat - - /// Whether to divide the radius by the image scale. - public let divideRadiusByImageScale: Bool - - /** - Initializes the `RoundedCornersFilter` instance with the given radius. - - - parameter radius: The radius. - - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the - image has the same resolution for all screen scales such as @1x, @2x and - @3x (i.e. single image from web server). Set to `false` for images loaded - from an asset catalog with varying resolutions for each screen scale. - `false` by default. - - - returns: The new `RoundedCornersFilter` instance. - */ - public init(radius: CGFloat, divideRadiusByImageScale: Bool = false) { - self.radius = radius - self.divideRadiusByImageScale = divideRadiusByImageScale - } - - /// The filter closure used to create the modified representation of the given image. - public var filter: Image -> Image { - return { image in - return image.af_imageWithRoundedCornerRadius( - self.radius, - divideRadiusByImageScale: self.divideRadiusByImageScale - ) - } - } - - /// The unique idenitifier for an `ImageFilter` conforming to the `Roundable` protocol. - public var identifier: String { - let radius = Int64(round(self.radius)) - return "\(self.dynamicType)-radius:(\(radius))-divided:(\(divideRadiusByImageScale))" - } -} - -// MARK: - - -/// Rounds the corners of an image into a circle. -public struct CircleFilter: ImageFilter { - /** - Initializes the `CircleFilter` instance. - - - returns: The new `CircleFilter` instance. - */ - public init() {} - - /// The filter closure used to create the modified representation of the given image. - public var filter: Image -> Image { - return { image in - return image.af_imageRoundedIntoCircle() - } - } -} - -// MARK: - - -#if os(iOS) || os(tvOS) - -/// Blurs an image using a `CIGaussianBlur` filter with the specified blur radius. -public struct BlurFilter: ImageFilter { - /// The blur radius of the filter. - let blurRadius: UInt - - /** - Initializes the `BlurFilter` instance with the given blur radius. - - - parameter blurRadius: The blur radius. - - - returns: The new `BlurFilter` instance. - */ - public init(blurRadius: UInt = 10) { - self.blurRadius = blurRadius - } - - /// The filter closure used to create the modified representation of the given image. - public var filter: Image -> Image { - return { image in - let parameters = ["inputRadius": self.blurRadius] - return image.af_imageWithAppliedCoreImageFilter("CIGaussianBlur", filterParameters: parameters) ?? image - } - } -} - -#endif - -// MARK: - Composite Image Filters (iOS, tvOS and watchOS only) - - -/// Scales an image to a specified size, then rounds the corners to the specified radius. -public struct ScaledToSizeWithRoundedCornersFilter: CompositeImageFilter { - /** - Initializes the `ScaledToSizeWithRoundedCornersFilter` instance with the given size and radius. - - - parameter size: The size. - - parameter radius: The radius. - - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the - image has the same resolution for all screen scales such as @1x, @2x and - @3x (i.e. single image from web server). Set to `false` for images loaded - from an asset catalog with varying resolutions for each screen scale. - `false` by default. - - - returns: The new `ScaledToSizeWithRoundedCornersFilter` instance. - */ - public init(size: CGSize, radius: CGFloat, divideRadiusByImageScale: Bool = false) { - self.filters = [ - ScaledToSizeFilter(size: size), - RoundedCornersFilter(radius: radius, divideRadiusByImageScale: divideRadiusByImageScale) - ] - } - - /// The image filters to apply to the image in sequential order. - public let filters: [ImageFilter] -} - -// MARK: - - -/// Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the -/// corners to the specified radius. -public struct AspectScaledToFillSizeWithRoundedCornersFilter: CompositeImageFilter { - /** - Initializes the `AspectScaledToFillSizeWithRoundedCornersFilter` instance with the given size and radius. - - - parameter size: The size. - - parameter radius: The radius. - - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the - image has the same resolution for all screen scales such as @1x, @2x and - @3x (i.e. single image from web server). Set to `false` for images loaded - from an asset catalog with varying resolutions for each screen scale. - `false` by default. - - - returns: The new `AspectScaledToFillSizeWithRoundedCornersFilter` instance. - */ - public init(size: CGSize, radius: CGFloat, divideRadiusByImageScale: Bool = false) { - self.filters = [ - AspectScaledToFillSizeFilter(size: size), - RoundedCornersFilter(radius: radius, divideRadiusByImageScale: divideRadiusByImageScale) - ] - } - - /// The image filters to apply to the image in sequential order. - public let filters: [ImageFilter] -} - -// MARK: - - -/// Scales an image to a specified size, then rounds the corners into a circle. -public struct ScaledToSizeCircleFilter: CompositeImageFilter { - /** - Initializes the `ScaledToSizeCircleFilter` instance with the given size. - - - parameter size: The size. - - - returns: The new `ScaledToSizeCircleFilter` instance. - */ - public init(size: CGSize) { - self.filters = [ScaledToSizeFilter(size: size), CircleFilter()] - } - - /// The image filters to apply to the image in sequential order. - public let filters: [ImageFilter] -} - -// MARK: - - -/// Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the -/// corners into a circle. -public struct AspectScaledToFillSizeCircleFilter: CompositeImageFilter { - /** - Initializes the `AspectScaledToFillSizeCircleFilter` instance with the given size. - - - parameter size: The size. - - - returns: The new `AspectScaledToFillSizeCircleFilter` instance. - */ - public init(size: CGSize) { - self.filters = [AspectScaledToFillSizeFilter(size: size), CircleFilter()] - } - - /// The image filters to apply to the image in sequential order. - public let filters: [ImageFilter] -} - -#endif diff --git a/Carthage/Checkouts/AlamofireImage/Source/Info-tvOS.plist b/Carthage/Checkouts/AlamofireImage/Source/Info-tvOS.plist deleted file mode 100644 index f72edb4..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/Info-tvOS.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 2.3.1 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - UIRequiredDeviceCapabilities - - arm64 - - - diff --git a/Carthage/Checkouts/AlamofireImage/Source/Info.plist b/Carthage/Checkouts/AlamofireImage/Source/Info.plist deleted file mode 100644 index a5d169c..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 2.3.1 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - - diff --git a/Carthage/Checkouts/AlamofireImage/Source/Request+AlamofireImage.swift b/Carthage/Checkouts/AlamofireImage/Source/Request+AlamofireImage.swift deleted file mode 100644 index da5aa97..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/Request+AlamofireImage.swift +++ /dev/null @@ -1,235 +0,0 @@ -// Request+AlamofireImage.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation - -#if os(iOS) || os(tvOS) -import UIKit -#elseif os(watchOS) -import UIKit -import WatchKit -#elseif os(OSX) -import Cocoa -#endif - -extension Request { - static var acceptableImageContentTypes: Set = [ - "image/tiff", - "image/jpeg", - "image/gif", - "image/png", - "image/ico", - "image/x-icon", - "image/bmp", - "image/x-bmp", - "image/x-xbitmap", - "image/x-win-bitmap" - ] - - /** - Adds the content types specified to the list of acceptable images content types for validation. - - - parameter contentTypes: The additional content types. - */ - public class func addAcceptableImageContentTypes(contentTypes: Set) { - Request.acceptableImageContentTypes.unionInPlace(contentTypes) - } - - // MARK: - iOS, tvOS and watchOS - -#if os(iOS) || os(tvOS) || os(watchOS) - - /** - Creates a response serializer that returns an image initialized from the response data using the specified - image options. - - - parameter imageScale: The scale factor used when interpreting the image data to construct - `responseImage`. Specifying a scale factor of 1.0 results in an image whose - size matches the pixel-based dimensions of the image. Applying a different - scale factor changes the size of the image as reported by the size property. - `Screen.scale` by default. - - parameter inflateResponseImage: Whether to automatically inflate response image data for compressed formats - (such as PNG or JPEG). Enabling this can significantly improve drawing - performance as it allows a bitmap representation to be constructed in the - background rather than on the main thread. `true` by default. - - - returns: An image response serializer. - */ - public class func imageResponseSerializer( - imageScale imageScale: CGFloat = Request.imageScale, - inflateResponseImage: Bool = true) - -> ResponseSerializer - { - return ResponseSerializer { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - guard let validData = data where validData.length > 0 else { - return .Failure(Request.imageDataError()) - } - - guard Request.validateContentTypeForRequest(request, response: response) else { - return .Failure(Request.contentTypeValidationError()) - } - - do { - let image = try Request.imageFromResponseData(validData, imageScale: imageScale) - if inflateResponseImage { image.af_inflate() } - - return .Success(image) - } catch { - return .Failure(error as NSError) - } - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter imageScale: The scale factor used when interpreting the image data to construct - `responseImage`. Specifying a scale factor of 1.0 results in an image whose - size matches the pixel-based dimensions of the image. Applying a different - scale factor changes the size of the image as reported by the size property. - This is set to the value of scale of the main screen by default, which - automatically scales images for retina displays, for instance. - `Screen.scale` by default. - - parameter inflateResponseImage: Whether to automatically inflate response image data for compressed formats - (such as PNG or JPEG). Enabling this can significantly improve drawing - performance as it allows a bitmap representation to be constructed in the - background rather than on the main thread. `true` by default. - - parameter completionHandler: A closure to be executed once the request has finished. The closure takes 4 - arguments: the URL request, the URL response, if one was received, the image, - if one could be created from the URL response and data, and any error produced - while creating the image. - - - returns: The request. - */ - public func responseImage( - imageScale: CGFloat = Request.imageScale, - inflateResponseImage: Bool = true, - completionHandler: Response -> Void) - -> Self - { - return response( - responseSerializer: Request.imageResponseSerializer( - imageScale: imageScale, - inflateResponseImage: inflateResponseImage - ), - completionHandler: completionHandler - ) - } - - private class func imageFromResponseData(data: NSData, imageScale: CGFloat) throws -> UIImage { - if let image = UIImage.af_threadSafeImageWithData(data, scale: imageScale) { - return image - } - - throw imageDataError() - } - - private class var imageScale: CGFloat { - #if os(iOS) || os(tvOS) - return UIScreen.mainScreen().scale - #elseif os(watchOS) - return WKInterfaceDevice.currentDevice().screenScale - #endif - } - -#elseif os(OSX) - - // MARK: - OSX - - /** - Creates a response serializer that returns an image initialized from the response data. - - - returns: An image response serializer. - */ - public class func imageResponseSerializer() -> ResponseSerializer { - return ResponseSerializer { request, response, data, error in - guard error == nil else { return .Failure(error!) } - - guard let validData = data where validData.length > 0 else { - return .Failure(Request.imageDataError()) - } - - guard Request.validateContentTypeForRequest(request, response: response) else { - return .Failure(Request.contentTypeValidationError()) - } - - guard let bitmapImage = NSBitmapImageRep(data: validData) else { - return .Failure(Request.imageDataError()) - } - - let image = NSImage(size: NSSize(width: bitmapImage.pixelsWide, height: bitmapImage.pixelsHigh)) - image.addRepresentation(bitmapImage) - - return .Success(image) - } - } - - /** - Adds a handler to be called once the request has finished. - - - parameter completionHandler: A closure to be executed once the request has finished. The closure takes 4 - arguments: the URL request, the URL response, if one was received, the image, if - one could be created from the URL response and data, and any error produced while - creating the image. - - - returns: The request. - */ - public func responseImage(completionHandler: Response -> Void) -> Self { - return response( - responseSerializer: Request.imageResponseSerializer(), - completionHandler: completionHandler - ) - } - -#endif - - // MARK: - Private - Shared Helper Methods - - private class func validateContentTypeForRequest( - request: NSURLRequest?, - response: NSHTTPURLResponse?) - -> Bool - { - if let URL = request?.URL where URL.fileURL { - return true - } - - if let mimeType = response?.MIMEType where Request.acceptableImageContentTypes.contains(mimeType) { - return true - } - - return false - } - - private class func contentTypeValidationError() -> NSError { - let failureReason = "Failed to validate response due to unacceptable content type" - return Error.errorWithCode(NSURLErrorCannotDecodeContentData, failureReason: failureReason) - } - - private class func imageDataError() -> NSError { - let failureReason = "Failed to create a valid Image from the response data" - return Error.errorWithCode(NSURLErrorCannotDecodeContentData, failureReason: failureReason) - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Source/UIButton+AlamofireImage.swift b/Carthage/Checkouts/AlamofireImage/Source/UIButton+AlamofireImage.swift deleted file mode 100644 index 0f9c848..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/UIButton+AlamofireImage.swift +++ /dev/null @@ -1,405 +0,0 @@ -// UIButton+AlamofireImage.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import UIKit - -extension UIButton { - - // MARK: - Private - AssociatedKeys - - private struct AssociatedKeys { - static var ImageDownloaderKey = "af_UIButton.ImageDownloader" - static var SharedImageDownloaderKey = "af_UIButton.SharedImageDownloader" - static var ImageReceiptsKey = "af_UIButton.ImageReceipts" - static var BackgroundImageReceiptsKey = "af_UIButton.BackgroundImageReceipts" - } - - // MARK: - Properties - - /// The instance image downloader used to download all images. If this property is `nil`, the `UIButton` will - /// fallback on the `af_sharedImageDownloader` for all downloads. The most common use case for needing to use a - /// custom instance image downloader is when images are behind different basic auth credentials. - public var af_imageDownloader: ImageDownloader? { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.ImageDownloaderKey) as? ImageDownloader - } - set { - objc_setAssociatedObject(self, &AssociatedKeys.ImageDownloaderKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - /// The shared image downloader used to download all images. By default, this is the default `ImageDownloader` - /// instance backed with an `AutoPurgingImageCache` which automatically evicts images from the cache when the memory - /// capacity is reached or memory warning notifications occur. The shared image downloader is only used if the - /// `af_imageDownloader` is `nil`. - public class var af_sharedImageDownloader: ImageDownloader { - get { - guard let - downloader = objc_getAssociatedObject(self, &AssociatedKeys.SharedImageDownloaderKey) as? ImageDownloader - else { - return ImageDownloader.defaultInstance - } - - return downloader - } - set { - objc_setAssociatedObject(self, &AssociatedKeys.SharedImageDownloaderKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - private var imageRequestReceipts: [UInt: RequestReceipt] { - get { - guard let - receipts = objc_getAssociatedObject(self, &AssociatedKeys.ImageReceiptsKey) as? [UInt: RequestReceipt] - else { - return [:] - } - - return receipts - } - set { - objc_setAssociatedObject(self, &AssociatedKeys.ImageReceiptsKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - private var backgroundImageRequestReceipts: [UInt: RequestReceipt] { - get { - guard let - receipts = objc_getAssociatedObject(self, &AssociatedKeys.BackgroundImageReceiptsKey) as? [UInt: RequestReceipt] - else { - return [:] - } - - return receipts - } - set { - objc_setAssociatedObject(self, &AssociatedKeys.BackgroundImageReceiptsKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - // MARK: - Image Downloads - - /** - Asynchronously downloads an image from the specified URL and sets it once the request is finished. - - If the image is cached locally, the image is set immediately. Otherwise the specified placehoder image will be - set immediately, and then the remote image will be set once the image request is finished. - - - parameter URL: The URL used for your image request. - - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the - image will not change its image until the image request finishes. - Defaults to `nil`. - - parameter completion: A closure to be executed when the image request finishes. The closure - has no return value and takes three arguments: the original request, - the response from the server and the result containing either the - image or the error that occurred. If the image was returned from the - image cache, the response will be `nil`. Defaults to `nil`. - */ - public func af_setImageForState( - state: UIControlState, - URL: NSURL, - placeHolderImage: UIImage? = nil, - completion: (Response -> Void)? = nil) - { - af_setImageForState(state, - URLRequest: URLRequestWithURL(URL), - placeholderImage: placeHolderImage, - completion: completion) - } - - /** - Asynchronously downloads an image from the specified URL request and sets it once the request is finished. - - If the image is cached locally, the image is set immediately. Otherwise the specified placehoder image will be - set immediately, and then the remote image will be set once the image request is finished. - - - parameter URLRequest: The URL request. - - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the - image will not change its image until the image request finishes. - Defaults to `nil`. - - parameter completion: A closure to be executed when the image request finishes. The closure - has no return value and takes three arguments: the original request, - the response from the server and the result containing either the - image or the error that occurred. If the image was returned from the - image cache, the response will be `nil`. Defaults to `nil`. - */ - public func af_setImageForState( - state: UIControlState, - URLRequest: URLRequestConvertible, - placeholderImage: UIImage? = nil, - completion: (Response -> Void)? = nil) - { - guard !isImageURLRequest(URLRequest, equalToActiveRequestURLForState: state) else { return } - - af_cancelImageRequestForState(state) - - let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader - let imageCache = imageDownloader.imageCache - - // Use the image from the image cache if it exists - if let image = imageCache?.imageForRequest(URLRequest.URLRequest, withAdditionalIdentifier: nil) { - let response = Response( - request: URLRequest.URLRequest, - response: nil, - data: nil, - result: .Success(image) - ) - - completion?(response) - setImage(image, forState: state) - - return - } - - // Set the placeholder since we're going to have to download - if let placeholderImage = placeholderImage { self.setImage(placeholderImage, forState: state) } - - // Generate a unique download id to check whether the active request has changed while downloading - let downloadID = NSUUID().UUIDString - - // Download the image, then set the image for the control state - let requestReceipt = imageDownloader.downloadImage( - URLRequest: URLRequest, - receiptID: downloadID, - filter: nil, - completion: { [weak self] response in - guard let strongSelf = self else { return } - - completion?(response) - - guard - strongSelf.isImageURLRequest(response.request, equalToActiveRequestURLForState: state) && - strongSelf.imageRequestReceiptForState(state)?.receiptID == downloadID - else { - return - } - - if let image = response.result.value { - strongSelf.setImage(image, forState: state) - } - - strongSelf.setImageRequestReceipt(nil, forState: state) - } - ) - - setImageRequestReceipt(requestReceipt, forState: state) - } - - /** - Cancels the active download request for the image, if one exists. - */ - public func af_cancelImageRequestForState(state: UIControlState) { - guard let receipt = imageRequestReceiptForState(state) else { return } - - let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader - imageDownloader.cancelRequestForRequestReceipt(receipt) - - setImageRequestReceipt(nil, forState: state) - } - - // MARK: - Background Image Downloads - - /** - Asynchronously downloads an image from the specified URL and sets it once the request is finished. - - If the image is cached locally, the image is set immediately. Otherwise the specified placehoder image will be - set immediately, and then the remote image will be set once the image request is finished. - - - parameter URL: The URL used for the image request. - - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the - background image will not change its image until the image request finishes. - Defaults to `nil`. - */ - public func af_setBackgroundImageForState( - state: UIControlState, - URL: NSURL, - placeHolderImage: UIImage? = nil, - completion: (Response -> Void)? = nil) - { - af_setBackgroundImageForState(state, - URLRequest: URLRequestWithURL(URL), - placeholderImage: placeHolderImage, - completion: completion) - } - - /** - Asynchronously downloads an image from the specified URL request and sets it once the request is finished. - - If the image is cached locally, the image is set immediately. Otherwise the specified placehoder image will be - set immediately, and then the remote image will be set once the image request is finished. - - - parameter URLRequest: The URL request. - - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the - background image will not change its image until the image request finishes. - Defaults to `nil`. - - parameter completion: A closure to be executed when the image request finishes. The closure - has no return value and takes three arguments: the original request, - the response from the server and the result containing either the - image or the error that occurred. If the image was returned from the - image cache, the response will be `nil`. Defaults to `nil`. - */ - public func af_setBackgroundImageForState( - state: UIControlState, - URLRequest: URLRequestConvertible, - placeholderImage: UIImage? = nil, - completion: (Response -> Void)? = nil) - { - guard !isImageURLRequest(URLRequest, equalToActiveRequestURLForState: state) else { return } - - af_cancelBackgroundImageRequestForState(state) - - let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader - let imageCache = imageDownloader.imageCache - - // Use the image from the image cache if it exists - if let image = imageCache?.imageForRequest(URLRequest.URLRequest, withAdditionalIdentifier: nil) { - let response = Response( - request: URLRequest.URLRequest, - response: nil, - data: nil, - result: .Success(image) - ) - - completion?(response) - setBackgroundImage(image, forState: state) - - return - } - - // Set the placeholder since we're going to have to download - if let placeholderImage = placeholderImage { self.setBackgroundImage(placeholderImage, forState: state) } - - // Generate a unique download id to check whether the active request has changed while downloading - let downloadID = NSUUID().UUIDString - - // Download the image, then set the image for the control state - let requestReceipt = imageDownloader.downloadImage( - URLRequest: URLRequest, - receiptID: downloadID, - filter: nil, - completion: { [weak self] response in - guard let strongSelf = self else { return } - - completion?(response) - - guard - strongSelf.isBackgroundImageURLRequest(response.request, equalToActiveRequestURLForState: state) && - strongSelf.backgroundImageRequestReceiptForState(state)?.receiptID == downloadID - else { - return - } - - if let image = response.result.value { - strongSelf.setBackgroundImage(image, forState: state) - } - - strongSelf.setBackgroundImageRequestReceipt(nil, forState: state) - } - ) - - setBackgroundImageRequestReceipt(requestReceipt, forState: state) - } - - /** - Cancels the active download request for the background image, if one exists. - */ - public func af_cancelBackgroundImageRequestForState(state: UIControlState) { - guard let receipt = backgroundImageRequestReceiptForState(state) else { return } - - let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader - imageDownloader.cancelRequestForRequestReceipt(receipt) - - setBackgroundImageRequestReceipt(nil, forState: state) - } - - // MARK: - Internal - Image Request Receipts - - func imageRequestReceiptForState(state: UIControlState) -> RequestReceipt? { - guard let receipt = imageRequestReceipts[state.rawValue] else { return nil } - return receipt - } - - func setImageRequestReceipt(receipt: RequestReceipt?, forState state: UIControlState) { - var receipts = imageRequestReceipts - receipts[state.rawValue] = receipt - - imageRequestReceipts = receipts - } - - // MARK: - Internal - Background Image Request Receipts - - func backgroundImageRequestReceiptForState(state: UIControlState) -> RequestReceipt? { - guard let receipt = backgroundImageRequestReceipts[state.rawValue] else { return nil } - return receipt - } - - func setBackgroundImageRequestReceipt(receipt: RequestReceipt?, forState state: UIControlState) { - var receipts = backgroundImageRequestReceipts - receipts[state.rawValue] = receipt - - backgroundImageRequestReceipts = receipts - } - - // MARK: - Private - URL Request Helpers - - private func isImageURLRequest( - URLRequest: URLRequestConvertible?, - equalToActiveRequestURLForState state: UIControlState) - -> Bool - { - if let - currentRequest = imageRequestReceiptForState(state)?.request.task.originalRequest - where currentRequest.URLString == URLRequest?.URLRequest.URLString - { - return true - } - - return false - } - - private func isBackgroundImageURLRequest( - URLRequest: URLRequestConvertible?, - equalToActiveRequestURLForState state: UIControlState) - -> Bool - { - if let - currentRequest = backgroundImageRequestReceiptForState(state)?.request.task.originalRequest - where currentRequest.URLString == URLRequest?.URLRequest.URLString - { - return true - } - - return false - } - - private func URLRequestWithURL(URL: NSURL) -> NSURLRequest { - let mutableURLRequest = NSMutableURLRequest(URL: URL) - - for mimeType in Request.acceptableImageContentTypes { - mutableURLRequest.addValue(mimeType, forHTTPHeaderField: "Accept") - } - - return mutableURLRequest - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Source/UIImage+AlamofireImage.swift b/Carthage/Checkouts/AlamofireImage/Source/UIImage+AlamofireImage.swift deleted file mode 100644 index ddd460d..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/UIImage+AlamofireImage.swift +++ /dev/null @@ -1,325 +0,0 @@ -// UIImage+AlamofireImage.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 CoreGraphics -import Foundation -import UIKit - -#if os(iOS) || os(tvOS) -import CoreImage -#endif - -// MARK: Initialization - -private let lock = NSLock() - -extension UIImage { - /** - Initializes and returns the image object with the specified data in a thread-safe manner. - - It has been reported that there are thread-safety issues when initializing large amounts of images - simultaneously. In the event of these issues occurring, this method can be used in place of - the `init?(data:)` method. - - - parameter data: The data object containing the image data. - - - returns: An initialized `UIImage` object, or `nil` if the method failed. - */ - public static func af_threadSafeImageWithData(data: NSData) -> UIImage? { - lock.lock() - let image = UIImage(data: data) - lock.unlock() - - return image - } - - /** - Initializes and returns the image object with the specified data and scale in a thread-safe manner. - - It has been reported that there are thread-safety issues when initializing large amounts of images - simultaneously. In the event of these issues occurring, this method can be used in place of - the `init?(data:scale:)` method. - - - parameter data: The data object containing the image data. - - parameter scale: The scale factor to assume when interpreting the image data. Applying a scale factor of 1.0 - results in an image whose size matches the pixel-based dimensions of the image. Applying a - different scale factor changes the size of the image as reported by the size property. - - - returns: An initialized `UIImage` object, or `nil` if the method failed. - */ - public static func af_threadSafeImageWithData(data: NSData, scale: CGFloat) -> UIImage? { - lock.lock() - let image = UIImage(data: data, scale: scale) - lock.unlock() - - return image - } -} - -// MARK: - Inflation - -extension UIImage { - private struct AssociatedKeys { - static var InflatedKey = "af_UIImage.Inflated" - } - - /// Returns whether the image is inflated. - public var af_inflated: Bool { - get { - if let inflated = objc_getAssociatedObject(self, &AssociatedKeys.InflatedKey) as? Bool { - return inflated - } else { - return false - } - } - set(inflated) { - objc_setAssociatedObject(self, &AssociatedKeys.InflatedKey, inflated, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - /** - Inflates the underlying compressed image data to be backed by an uncompressed bitmap representation. - - Inflating compressed image formats (such as PNG or JPEG) can significantly improve drawing performance as it - allows a bitmap representation to be constructed in the background rather than on the main thread. - */ - public func af_inflate() { - guard !af_inflated else { return } - - af_inflated = true - CGDataProviderCopyData(CGImageGetDataProvider(CGImage)) - } -} - -// MARK: - Alpha - -extension UIImage { - /// Returns whether the image contains an alpha component. - public var af_containsAlphaComponent: Bool { - let alphaInfo = CGImageGetAlphaInfo(CGImage) - - return ( - alphaInfo == .First || - alphaInfo == .Last || - alphaInfo == .PremultipliedFirst || - alphaInfo == .PremultipliedLast - ) - } - - /// Returns whether the image is opaque. - public var af_isOpaque: Bool { return !af_containsAlphaComponent } -} - -// MARK: - Scaling - -extension UIImage { - /** - Returns a new version of the image scaled to the specified size. - - - parameter size: The size to use when scaling the new image. - - - returns: A new image object. - */ - public func af_imageScaledToSize(size: CGSize) -> UIImage { - UIGraphicsBeginImageContextWithOptions(size, af_isOpaque, 0.0) - drawInRect(CGRect(origin: CGPointZero, size: size)) - - let scaledImage = UIGraphicsGetImageFromCurrentImageContext() - UIGraphicsEndImageContext() - - return scaledImage - } - - /** - Returns a new version of the image scaled from the center while maintaining the aspect ratio to fit within - a specified size. - - The resulting image contains an alpha component used to pad the width or height with the necessary transparent - pixels to fit the specified size. In high performance critical situations, this may not be the optimal approach. - To maintain an opaque image, you could compute the `scaledSize` manually, then use the `af_imageScaledToSize` - method in conjunction with a `.Center` content mode to achieve the same visual result. - - - parameter size: The size to use when scaling the new image. - - - returns: A new image object. - */ - public func af_imageAspectScaledToFitSize(size: CGSize) -> UIImage { - let imageAspectRatio = self.size.width / self.size.height - let canvasAspectRatio = size.width / size.height - - var resizeFactor: CGFloat - - if imageAspectRatio > canvasAspectRatio { - resizeFactor = size.width / self.size.width - } else { - resizeFactor = size.height / self.size.height - } - - let scaledSize = CGSize(width: self.size.width * resizeFactor, height: self.size.height * resizeFactor) - let origin = CGPoint(x: (size.width - scaledSize.width) / 2.0, y: (size.height - scaledSize.height) / 2.0) - - UIGraphicsBeginImageContextWithOptions(size, false, 0.0) - drawInRect(CGRect(origin: origin, size: scaledSize)) - - let scaledImage = UIGraphicsGetImageFromCurrentImageContext() - UIGraphicsEndImageContext() - - return scaledImage - } - - /** - Returns a new version of the image scaled from the center while maintaining the aspect ratio to fill a - specified size. Any pixels that fall outside the specified size are clipped. - - - parameter size: The size to use when scaling the new image. - - - returns: A new image object. - */ - public func af_imageAspectScaledToFillSize(size: CGSize) -> UIImage { - let imageAspectRatio = self.size.width / self.size.height - let canvasAspectRatio = size.width / size.height - - var resizeFactor: CGFloat - - if imageAspectRatio > canvasAspectRatio { - resizeFactor = size.height / self.size.height - } else { - resizeFactor = size.width / self.size.width - } - - let scaledSize = CGSize(width: self.size.width * resizeFactor, height: self.size.height * resizeFactor) - let origin = CGPoint(x: (size.width - scaledSize.width) / 2.0, y: (size.height - scaledSize.height) / 2.0) - - UIGraphicsBeginImageContextWithOptions(size, af_isOpaque, 0.0) - drawInRect(CGRect(origin: origin, size: scaledSize)) - - let scaledImage = UIGraphicsGetImageFromCurrentImageContext() - UIGraphicsEndImageContext() - - return scaledImage - } -} - -// MARK: - Rounded Corners - -extension UIImage { - /** - Returns a new version of the image with the corners rounded to the specified radius. - - - parameter radius: The radius to use when rounding the new image. - - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the - image has the same resolution for all screen scales such as @1x, @2x and - @3x (i.e. single image from web server). Set to `false` for images loaded - from an asset catalog with varying resolutions for each screen scale. - `false` by default. - - - returns: A new image object. - */ - public func af_imageWithRoundedCornerRadius(radius: CGFloat, divideRadiusByImageScale: Bool = false) -> UIImage { - UIGraphicsBeginImageContextWithOptions(size, false, 0.0) - - let scaledRadius = divideRadiusByImageScale ? radius / scale : radius - - let clippingPath = UIBezierPath(roundedRect: CGRect(origin: CGPointZero, size: size), cornerRadius: scaledRadius) - clippingPath.addClip() - - drawInRect(CGRect(origin: CGPointZero, size: size)) - - let roundedImage = UIGraphicsGetImageFromCurrentImageContext() - UIGraphicsEndImageContext() - - return roundedImage - } - - /** - Returns a new version of the image rounded into a circle. - - - returns: A new image object. - */ - public func af_imageRoundedIntoCircle() -> UIImage { - let radius = min(size.width, size.height) / 2.0 - var squareImage = self - - if size.width != size.height { - let squareDimension = min(size.width, size.height) - let squareSize = CGSize(width: squareDimension, height: squareDimension) - squareImage = af_imageAspectScaledToFillSize(squareSize) - } - - UIGraphicsBeginImageContextWithOptions(squareImage.size, false, 0.0) - - let clippingPath = UIBezierPath( - roundedRect: CGRect(origin: CGPointZero, size: squareImage.size), - cornerRadius: radius - ) - - clippingPath.addClip() - - squareImage.drawInRect(CGRect(origin: CGPointZero, size: squareImage.size)) - - let roundedImage = UIGraphicsGetImageFromCurrentImageContext() - UIGraphicsEndImageContext() - - return roundedImage - } -} - -#if os(iOS) || os(tvOS) - -// MARK: - Core Image Filters - -extension UIImage { - /** - Returns a new version of the image using a CoreImage filter with the specified name and parameters. - - - parameter filterName: The name of the CoreImage filter to use on the new image. - - parameter filterParameters: The parameters to apply to the CoreImage filter. - - - returns: A new image object, or `nil` if the filter failed for any reason. - */ - public func af_imageWithAppliedCoreImageFilter( - filterName: String, - filterParameters: [String: AnyObject]? = nil) -> UIImage? - { - var image: CoreImage.CIImage? = CIImage - - if image == nil, let CGImage = self.CGImage { - image = CoreImage.CIImage(CGImage: CGImage) - } - - guard let coreImage = image else { return nil } - - let context = CIContext(options: [kCIContextPriorityRequestLow: true]) - - var parameters: [String: AnyObject] = filterParameters ?? [:] - parameters[kCIInputImageKey] = coreImage - - guard let filter = CIFilter(name: filterName, withInputParameters: parameters) else { return nil } - guard let outputImage = filter.outputImage else { return nil } - - let cgImageRef = context.createCGImage(outputImage, fromRect: outputImage.extent) - - return UIImage(CGImage: cgImageRef, scale: scale, orientation: imageOrientation) - } -} - -#endif diff --git a/Carthage/Checkouts/AlamofireImage/Source/UIImageView+AlamofireImage.swift b/Carthage/Checkouts/AlamofireImage/Source/UIImageView+AlamofireImage.swift deleted file mode 100644 index 17f28e6..0000000 --- a/Carthage/Checkouts/AlamofireImage/Source/UIImageView+AlamofireImage.swift +++ /dev/null @@ -1,373 +0,0 @@ -// UIImageView+AlamofireImage.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import Foundation -import UIKit - -extension UIImageView { - - // MARK: - ImageTransition - - /// Used to wrap all `UIView` animation transition options alongside a duration. - public enum ImageTransition { - case None - case CrossDissolve(NSTimeInterval) - case CurlDown(NSTimeInterval) - case CurlUp(NSTimeInterval) - case FlipFromBottom(NSTimeInterval) - case FlipFromLeft(NSTimeInterval) - case FlipFromRight(NSTimeInterval) - case FlipFromTop(NSTimeInterval) - case Custom( - duration: NSTimeInterval, - animationOptions: UIViewAnimationOptions, - animations: (UIImageView, Image) -> Void, - completion: (Bool -> Void)? - ) - - /// The duration of the image transition in seconds. - public var duration: NSTimeInterval { - switch self { - case None: - return 0.0 - case CrossDissolve(let duration): - return duration - case CurlDown(let duration): - return duration - case CurlUp(let duration): - return duration - case FlipFromBottom(let duration): - return duration - case FlipFromLeft(let duration): - return duration - case FlipFromRight(let duration): - return duration - case FlipFromTop(let duration): - return duration - case Custom(let duration, _, _, _): - return duration - } - } - - /// The animation options of the image transition. - public var animationOptions: UIViewAnimationOptions { - switch self { - case None: - return .TransitionNone - case CrossDissolve: - return .TransitionCrossDissolve - case CurlDown: - return .TransitionCurlDown - case CurlUp: - return .TransitionCurlUp - case FlipFromBottom: - return .TransitionFlipFromBottom - case FlipFromLeft: - return .TransitionFlipFromLeft - case FlipFromRight: - return .TransitionFlipFromRight - case FlipFromTop: - return .TransitionFlipFromTop - case Custom(_, let animationOptions, _, _): - return animationOptions - } - } - - /// The animation options of the image transition. - public var animations: ((UIImageView, Image) -> Void) { - switch self { - case Custom(_, _, let animations, _): - return animations - default: - return { $0.image = $1 } - } - } - - /// The completion closure associated with the image transition. - public var completion: (Bool -> Void)? { - switch self { - case Custom(_, _, _, let completion): - return completion - default: - return nil - } - } - } - - // MARK: - Private - AssociatedKeys - - private struct AssociatedKeys { - static var ImageDownloaderKey = "af_UIImageView.ImageDownloader" - static var SharedImageDownloaderKey = "af_UIImageView.SharedImageDownloader" - static var ActiveRequestReceiptKey = "af_UIImageView.ActiveRequestReceipt" - } - - // MARK: - Associated Properties - - /// The instance image downloader used to download all images. If this property is `nil`, the `UIImageView` will - /// fallback on the `af_sharedImageDownloader` for all downloads. The most common use case for needing to use a - /// custom instance image downloader is when images are behind different basic auth credentials. - public var af_imageDownloader: ImageDownloader? { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.ImageDownloaderKey) as? ImageDownloader - } - set(downloader) { - objc_setAssociatedObject(self, &AssociatedKeys.ImageDownloaderKey, downloader, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - /// The shared image downloader used to download all images. By default, this is the default `ImageDownloader` - /// instance backed with an `AutoPurgingImageCache` which automatically evicts images from the cache when the memory - /// capacity is reached or memory warning notifications occur. The shared image downloader is only used if the - /// `af_imageDownloader` is `nil`. - public class var af_sharedImageDownloader: ImageDownloader { - get { - if let downloader = objc_getAssociatedObject(self, &AssociatedKeys.SharedImageDownloaderKey) as? ImageDownloader { - return downloader - } else { - return ImageDownloader.defaultInstance - } - } - set { - objc_setAssociatedObject(self, &AssociatedKeys.SharedImageDownloaderKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - var af_activeRequestReceipt: RequestReceipt? { - get { - return objc_getAssociatedObject(self, &AssociatedKeys.ActiveRequestReceiptKey) as? RequestReceipt - } - set { - objc_setAssociatedObject(self, &AssociatedKeys.ActiveRequestReceiptKey, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) - } - } - - // MARK: - Image Download - - /** - Asynchronously downloads an image from the specified URL, applies the specified image filter to the downloaded - image and sets it once finished while executing the image transition. - - If the image is cached locally, the image is set immediately. Otherwise the specified placehoder image will be - set immediately, and then the remote image will be set once the image request is finished. - - The `completion` closure is called after the image download and filtering are complete, but before the start of - the image transition. Please note it is no longer the responsibility of the `completion` closure to set the - image. It will be set automatically. If you require a second notification after the image transition completes, - use a `.Custom` image transition with a `completion` closure. The `.Custom` `completion` closure is called when - the image transition is finished. - - - parameter URL: The URL used for the image request. - - parameter placeholderImage: The image to be set initially until the image request finished. If - `nil`, the image view will not change its image until the image - request finishes. Defaults to `nil`. - - parameter filter: The image filter applied to the image after the image request is - finished. Defaults to `nil`. - - parameter imageTransition: The image transition animation applied to the image when set. - Defaults to `.None`. - - parameter runImageTransitionIfCached: Whether to run the image transition if the image is cached. Defaults - to `false`. - - parameter completion: A closure to be executed when the image request finishes. The closure - has no return value and takes three arguments: the original request, - the response from the server and the result containing either the - image or the error that occurred. If the image was returned from the - image cache, the response will be `nil`. Defaults to `nil`. - */ - public func af_setImageWithURL( - URL: NSURL, - placeholderImage: UIImage? = nil, - filter: ImageFilter? = nil, - imageTransition: ImageTransition = .None, - runImageTransitionIfCached: Bool = false, - completion: (Response -> Void)? = nil) - { - af_setImageWithURLRequest( - URLRequestWithURL(URL), - placeholderImage: placeholderImage, - filter: filter, - imageTransition: imageTransition, - runImageTransitionIfCached: runImageTransitionIfCached, - completion: completion - ) - } - - /** - Asynchronously downloads an image from the specified URL Request, applies the specified image filter to the downloaded - image and sets it once finished while executing the image transition. - - If the image is cached locally, the image is set immediately. Otherwise the specified placehoder image will be - set immediately, and then the remote image will be set once the image request is finished. - - The `completion` closure is called after the image download and filtering are complete, but before the start of - the image transition. Please note it is no longer the responsibility of the `completion` closure to set the - image. It will be set automatically. If you require a second notification after the image transition completes, - use a `.Custom` image transition with a `completion` closure. The `.Custom` `completion` closure is called when - the image transition is finished. - - - parameter URLRequest: The URL request. - - parameter placeholderImage: The image to be set initially until the image request finished. If - `nil`, the image view will not change its image until the image - request finishes. Defaults to `nil`. - - parameter filter: The image filter applied to the image after the image request is - finished. Defaults to `nil`. - - parameter imageTransition: The image transition animation applied to the image when set. - Defaults to `.None`. - - parameter runImageTransitionIfCached: Whether to run the image transition if the image is cached. Defaults - to `false`. - - parameter completion: A closure to be executed when the image request finishes. The closure - has no return value and takes three arguments: the original request, - the response from the server and the result containing either the - image or the error that occurred. If the image was returned from the - image cache, the response will be `nil`. Defaults to `nil`. - */ - public func af_setImageWithURLRequest( - URLRequest: URLRequestConvertible, - placeholderImage: UIImage? = nil, - filter: ImageFilter? = nil, - imageTransition: ImageTransition = .None, - runImageTransitionIfCached: Bool = false, - completion: (Response -> Void)? = nil) - { - guard !isURLRequestURLEqualToActiveRequestURL(URLRequest) else { return } - - af_cancelImageRequest() - - let imageDownloader = af_imageDownloader ?? UIImageView.af_sharedImageDownloader - let imageCache = imageDownloader.imageCache - - // Use the image from the image cache if it exists - if let image = imageCache?.imageForRequest(URLRequest.URLRequest, withAdditionalIdentifier: filter?.identifier) { - let response = Response( - request: URLRequest.URLRequest, - response: nil, - data: nil, - result: .Success(image) - ) - - completion?(response) - - if runImageTransitionIfCached { - let tinyDelay = dispatch_time(DISPATCH_TIME_NOW, Int64(0.001 * Float(NSEC_PER_SEC))) - - // Need to let the runloop cycle for the placeholder image to take affect - dispatch_after(tinyDelay, dispatch_get_main_queue()) { - self.runImageTransition(imageTransition, withImage: image) - } - } else { - self.image = image - } - - return - } - - // Set the placeholder since we're going to have to download - if let placeholderImage = placeholderImage { self.image = placeholderImage } - - // Generate a unique download id to check whether the active request has changed while downloading - let downloadID = NSUUID().UUIDString - - // Download the image, then run the image transition or completion handler - let requestReceipt = imageDownloader.downloadImage( - URLRequest: URLRequest, - receiptID: downloadID, - filter: filter, - completion: { [weak self] response in - guard let strongSelf = self else { return } - - completion?(response) - - guard - strongSelf.isURLRequestURLEqualToActiveRequestURL(response.request) && - strongSelf.af_activeRequestReceipt?.receiptID == downloadID - else { - return - } - - if let image = response.result.value { - strongSelf.runImageTransition(imageTransition, withImage: image) - } - - strongSelf.af_activeRequestReceipt = nil - } - ) - - af_activeRequestReceipt = requestReceipt - } - - // MARK: - Image Download Cancellation - - /** - Cancels the active download request, if one exists. - */ - public func af_cancelImageRequest() { - guard let activeRequestReceipt = af_activeRequestReceipt else { return } - - let imageDownloader = af_imageDownloader ?? UIImageView.af_sharedImageDownloader - imageDownloader.cancelRequestForRequestReceipt(activeRequestReceipt) - - af_activeRequestReceipt = nil - } - - // MARK: - Image Transition - - /** - Runs the image transition on the image view with the specified image. - - - parameter imageTransition: The image transition to ran on the image view. - - parameter image: The image to use for the image transition. - */ - public func runImageTransition(imageTransition: ImageTransition, withImage image: Image) { - UIView.transitionWithView( - self, - duration: imageTransition.duration, - options: imageTransition.animationOptions, - animations: { - imageTransition.animations(self, image) - }, - completion: imageTransition.completion - ) - } - - // MARK: - Private - URL Request Helper Methods - - private func URLRequestWithURL(URL: NSURL) -> NSURLRequest { - let mutableURLRequest = NSMutableURLRequest(URL: URL) - - for mimeType in Request.acceptableImageContentTypes { - mutableURLRequest.addValue(mimeType, forHTTPHeaderField: "Accept") - } - - return mutableURLRequest - } - - private func isURLRequestURLEqualToActiveRequestURL(URLRequest: URLRequestConvertible?) -> Bool { - if let - currentRequest = af_activeRequestReceipt?.request.task.originalRequest - where currentRequest.URLString == URLRequest?.URLRequest.URLString - { - return true - } - - return false - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Tests/BaseTestCase.swift b/Carthage/Checkouts/AlamofireImage/Tests/BaseTestCase.swift deleted file mode 100644 index 6acfcf3..0000000 --- a/Carthage/Checkouts/AlamofireImage/Tests/BaseTestCase.swift +++ /dev/null @@ -1,76 +0,0 @@ -// BaseTestCase.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -import AlamofireImage -import Foundation -import XCTest - -class BaseTestCase : XCTestCase { - let timeout = 5.0 - var manager: Manager! - - // MARK: - Setup and Teardown - - override func setUp() { - super.setUp() - - manager = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.ephemeralSessionConfiguration() - - let defaultHeaders = Manager.sharedInstance.session.configuration.HTTPAdditionalHeaders - configuration.HTTPAdditionalHeaders = defaultHeaders - - return configuration - }() - - return Manager(configuration: configuration) - }() - } - - override func tearDown() { - super.tearDown() - - manager.session.finishTasksAndInvalidate() - manager = nil - } - - // MARK: - Resources - - func URLForResource(fileName: String, withExtension: String) -> NSURL { - let bundle = NSBundle(forClass: BaseTestCase.self) - return bundle.URLForResource(fileName, withExtension: withExtension)! - } - - func imageForResource(fileName: String, withExtension ext: String) -> Image { - let URL = URLForResource(fileName, withExtension: ext) - let data = NSData(contentsOfURL: URL)! - #if os(iOS) || os(tvOS) - let image = Image.af_threadSafeImageWithData(data, scale: UIScreen.mainScreen().scale)! - #elseif os(OSX) - let image = Image(data: data)! - #endif - - return image - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Tests/ImageCacheTests.swift b/Carthage/Checkouts/AlamofireImage/Tests/ImageCacheTests.swift deleted file mode 100644 index 94fd046..0000000 --- a/Carthage/Checkouts/AlamofireImage/Tests/ImageCacheTests.swift +++ /dev/null @@ -1,368 +0,0 @@ -// ImageCacheTests.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -@testable import AlamofireImage -import Foundation -import XCTest - -class ImageCacheTestCase: BaseTestCase { - var cache: AutoPurgingImageCache! - - // MARK: - Setup and Teardown - - override func setUp() { - super.setUp() - - cache = { - let memoryCapacity: UInt64 = 100 * 1024 * 1024 // 10 MB - let preferredSizeAfterPurge: UInt64 = 60 * 1024 * 1024 // 4 MB - - return AutoPurgingImageCache( - memoryCapacity: memoryCapacity, - preferredMemoryUsageAfterPurge: preferredSizeAfterPurge - ) - }() - } - - // MARK: - Initialization Tests - - func testThatCacheCanBeInitializedAndDeinitialized() { - // Given - var cache: AutoPurgingImageCache? = AutoPurgingImageCache() - - // When - cache = nil - - // Then - XCTAssertNil(cache, "cache should be nil after deinit") - } - - // MARK: - Add Image Tests - - func testThatItCanAddImageToCacheWithIdentifier() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - cache.addImage(image, withIdentifier: identifier) - let cachedImage = cache.imageWithIdentifier(identifier) - - // Then - XCTAssertNotNil(cachedImage, "cached image should not be nil") - XCTAssertEqual(cachedImage, image, "cached image should be equal to image") - } - - func testThatItCanAddImageToCacheWithRequestIdentifier() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let request = URLRequest(.GET, "https://images.example.com/animals") - let identifier = "-unicorn" - - // When - cache.addImage(image, forRequest: request, withAdditionalIdentifier: identifier) - let cachedImage = cache.imageForRequest(request, withAdditionalIdentifier: identifier) - - // Then - XCTAssertNotNil(cachedImage, "cached image should not be nil") - XCTAssertEqual(cachedImage, image, "cached image should be equal to image") - } - - func testThatAddingImageToCacheWithDuplicateIdentifierReplacesCachedImage() { - // Given - let unicornImage = imageForResource("unicorn", withExtension: "png") - let pirateImage = imageForResource("pirate", withExtension: "jpg") - let identifier = "animal" - - // When - cache.addImage(unicornImage, withIdentifier: identifier) - let cachedImage1 = cache.imageWithIdentifier(identifier) - - cache.addImage(pirateImage, withIdentifier: identifier) - let cachedImage2 = cache.imageWithIdentifier(identifier) - - // Then - XCTAssertNotNil(cachedImage1, "cached image 1 should not be nil") - XCTAssertNotNil(cachedImage2, "cached image 2 should not be nil") - - XCTAssertEqual(cachedImage1, unicornImage, "cached image 1 should be equal to unicorn image") - XCTAssertEqual(cachedImage2, pirateImage, "cached image 2 should be equal to pirate image") - XCTAssertNotEqual(cachedImage1, cachedImage2, "cached image 1 should not be equal to cached image 2") - } - - func testThatAddingImageToCacheWithDuplicateRequestIdentifierReplacesCachedImage() { - // Given - let unicornImage = imageForResource("unicorn", withExtension: "png") - let pirateImage = imageForResource("pirate", withExtension: "jpg") - let request = URLRequest(.GET, "https://images.example.com/animals") - let identifier = "animal" - - // When - cache.addImage(unicornImage, forRequest: request, withAdditionalIdentifier: identifier) - let cachedImage1 = cache.imageForRequest(request, withAdditionalIdentifier: identifier) - - cache.addImage(pirateImage, forRequest: request, withAdditionalIdentifier: identifier) - let cachedImage2 = cache.imageForRequest(request, withAdditionalIdentifier: identifier) - - // Then - XCTAssertNotNil(cachedImage1, "cached image 1 should not be nil") - XCTAssertNotNil(cachedImage2, "cached image 2 should not be nil") - - XCTAssertEqual(cachedImage1, unicornImage, "cached image 1 should be equal to unicorn image") - XCTAssertEqual(cachedImage2, pirateImage, "cached image 2 should be equal to pirate image") - XCTAssertNotEqual(cachedImage1, cachedImage2, "cached image 1 should not be equal to cached image 2") - } - - // MARK: - Remove Image Tests - - func testThatItCanRemoveImageFromCacheWithIdentifier() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - cache.addImage(image, withIdentifier: identifier) - let cachedImageExists = cache.imageWithIdentifier(identifier) != nil - - cache.removeImageWithIdentifier(identifier) - let cachedImageExistsAfterRemoval = cache.imageWithIdentifier(identifier) != nil - - // Then - XCTAssertTrue(cachedImageExists, "cached image exists should be true") - XCTAssertFalse(cachedImageExistsAfterRemoval, "cached image exists after removal should be false") - } - - func testThatItCanRemoveImageFromCacheWithRequestIdentifier() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let request = URLRequest(.GET, "https://images.example.com/animals") - let identifier = "unicorn" - - // When - cache.addImage(image, forRequest: request, withAdditionalIdentifier: identifier) - let cachedImageExists = cache.imageForRequest(request, withAdditionalIdentifier: identifier) != nil - - cache.removeImageForRequest(request, withAdditionalIdentifier: identifier) - let cachedImageExistsAfterRemoval = cache.imageForRequest(request, withAdditionalIdentifier: identifier) != nil - - // Then - XCTAssertTrue(cachedImageExists, "cached image exists should be true") - XCTAssertFalse(cachedImageExistsAfterRemoval, "cached image exists after removal should be false") - } - - func testThatItCanRemoveAllImagesFromCache() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - cache.addImage(image, withIdentifier: identifier) - let cachedImageExists = cache.imageWithIdentifier(identifier) != nil - - cache.removeAllImages() - let cachedImageExistsAfterRemoval = cache.imageWithIdentifier(identifier) != nil - - // Then - XCTAssertTrue(cachedImageExists, "cached image exists should be true") - XCTAssertFalse(cachedImageExistsAfterRemoval, "cached image exists after removal should be false") - } - -#if os(iOS) - - func testThatItRemovesAllImagesFromCacheWhenReceivingMemoryWarningNotification() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - cache.addImage(image, withIdentifier: identifier) - let cachedImageExists = cache.imageWithIdentifier(identifier) != nil - - NSNotificationCenter.defaultCenter().postNotificationName( - UIApplicationDidReceiveMemoryWarningNotification, - object: nil - ) - - let cachedImageExistsAfterNotification = cache.imageWithIdentifier(identifier) != nil - - // Then - XCTAssertTrue(cachedImageExists, "cached image exists should be true") - XCTAssertFalse(cachedImageExistsAfterNotification, "cached image exists after notification should be false") - } - -#endif - - // MARK: - Fetch Image Tests - - func testThatItCanFetchImageFromCacheWithIdentifier() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - let cachedImageBeforeAdd = cache.imageWithIdentifier(identifier) - cache.addImage(image, withIdentifier: identifier) - let cachedImageAfterAdd = cache.imageWithIdentifier(identifier) - - // Then - XCTAssertNil(cachedImageBeforeAdd, "cached image before add should be nil") - XCTAssertNotNil(cachedImageAfterAdd, "cached image after add should not be nil") - } - - func testThatItCanFetchImageFromCacheWithRequestIdentifier() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let request = URLRequest(.GET, "https://images.example.com/animals") - let identifier = "unicorn" - - // When - let cachedImageBeforeAdd = cache.imageForRequest(request, withAdditionalIdentifier: identifier) - cache.addImage(image, forRequest: request, withAdditionalIdentifier: identifier) - let cachedImageAfterAdd = cache.imageForRequest(request, withAdditionalIdentifier: identifier) - - // Then - XCTAssertNil(cachedImageBeforeAdd, "cached image before add should be nil") - XCTAssertNotNil(cachedImageAfterAdd, "cached image after add should not be nil") - } - - // MARK: - Memory Usage Tests - - func testThatItIncrementsMemoryUsageWhenAddingImageToCache() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - let initialMemoryUsage = cache.memoryUsage - cache.addImage(image, withIdentifier: identifier) - let currentMemoryUsage = cache.memoryUsage - - // Then - XCTAssertEqual(initialMemoryUsage, 0, "initial memory usage should be 0") - XCTAssertEqual(currentMemoryUsage, 164000, "current memory usage should be 164000") - } - - func testThatItDecrementsMemoryUsageWhenRemovingImageFromCache() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - cache.addImage(image, withIdentifier: identifier) - let initialMemoryUsage = cache.memoryUsage - cache.removeImageWithIdentifier(identifier) - let currentMemoryUsage = cache.memoryUsage - - // Then - XCTAssertEqual(initialMemoryUsage, 164000, "initial memory usage should be 164000") - XCTAssertEqual(currentMemoryUsage, 0, "current memory usage should be 0") - } - - func testThatItDecrementsMemoryUsageWhenRemovingAllImagesFromCache() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - cache.addImage(image, withIdentifier: identifier) - let initialMemoryUsage = cache.memoryUsage - cache.removeAllImages() - let currentMemoryUsage = cache.memoryUsage - - // Then - XCTAssertEqual(initialMemoryUsage, 164000, "initial memory usage should be 164000") - XCTAssertEqual(currentMemoryUsage, 0, "current memory usage should be 0") - } - - // MARK: - Purging Tests - - func testThatItPurgesImagesWhenMemoryCapacityIsReached() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - var memoryUsage: [UInt64] = [] - - // When - for index in 1...640 { - cache.addImage(image, withIdentifier: "\(identifier)-\(index)") - memoryUsage.append(cache.memoryUsage) - } - - memoryUsage = Array(memoryUsage.dropFirst(638)) - - // Then - XCTAssertEqual(memoryUsage[0], 104796000, "memory usage prior to purge does not match expected value") - XCTAssertEqual(memoryUsage[1], 62812000, "memory usage after purge does not match expected value") - } - - func testThatItPrioritizesImagesWithOldestLastAccessDatesDuringPurge() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - for index in 1...640 { - cache.addImage(image, withIdentifier: "\(identifier)-\(index)") - } - - // Then - for index in 1...257 { - let cachedImage = cache.imageWithIdentifier("\(identifier)-\(index)") - XCTAssertNil(cachedImage, "cached image with identifier: \"\(identifier)-\(index)\" should be nil") - } - - for index in 258...640 { - let cachedImage = cache.imageWithIdentifier("\(identifier)-\(index)") - XCTAssertNotNil(cachedImage, "cached image with identifier: \"\(identifier)-\(index)\" should not be nil") - } - } - - func testThatAccessingCachedImageUpdatesLastAccessDate() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let identifier = "unicorn" - - // When - for index in 1...639 { - cache.addImage(image, withIdentifier: "\(identifier)-\(index)") - } - - cache.imageWithIdentifier("\(identifier)-1") - cache.addImage(image, withIdentifier: "\(identifier)-640") - - // Then - let firstCachedImage = cache.imageWithIdentifier("\(identifier)-1") - XCTAssertNotNil(firstCachedImage, "first cached image should not be nil") - - for index in 2...258 { - let cachedImage = cache.imageWithIdentifier("\(identifier)-\(index)") - XCTAssertNil(cachedImage, "cached image with identifier: \"\(identifier)-\(index)\" should be nil") - } - - for index in 259...640 { - let cachedImage = cache.imageWithIdentifier("\(identifier)-\(index)") - XCTAssertNotNil(cachedImage, "cached image with identifier: \"\(identifier)-\(index)\" should not be nil") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Tests/ImageDownloaderTests.swift b/Carthage/Checkouts/AlamofireImage/Tests/ImageDownloaderTests.swift deleted file mode 100644 index cb94c57..0000000 --- a/Carthage/Checkouts/AlamofireImage/Tests/ImageDownloaderTests.swift +++ /dev/null @@ -1,859 +0,0 @@ -// ImageDownloaderTests.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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. - -@testable import Alamofire -@testable import AlamofireImage -import Foundation -import XCTest - -private class ThreadCheckFilter: ImageFilter { - var calledOnMainQueue = false - - init() {} - - var filter: Image -> Image { - return { image in - self.calledOnMainQueue = NSThread.isMainThread() - return image - } - } -} - -// MARK: - - -#if os(iOS) - -private class TestCircleFilter: ImageFilter { - var filterOperationCompleted = false - - var filter: Image -> Image { - return { image in - self.filterOperationCompleted = true - return image.af_imageRoundedIntoCircle() - } - } -} - -#endif - -// MARK: - - -class ImageDownloaderTestCase: BaseTestCase { - - // MARK: - Setup and Teardown - - override func setUp() { - super.setUp() - ImageDownloader.defaultURLCache().removeAllCachedResponses() - } - - // MARK: - Initialization Tests - - func testThatImageDownloaderSingletonCanBeInitialized() { - // Given, When - let downloader = ImageDownloader.defaultInstance - - // Then - XCTAssertNotNil(downloader, "downloader should not be nil") - } - - func testThatImageDownloaderCanBeInitializedAndDeinitialized() { - // Given - var downloader: ImageDownloader? = ImageDownloader() - - // When - downloader = nil - - // Then - XCTAssertNil(downloader, "downloader should be nil") - } - - func testThatImageDownloaderCanBeInitializedWithManagerInstanceAndDeinitialized() { - // Given - var downloader: ImageDownloader? = ImageDownloader(sessionManager: Manager()) - - // When - downloader = nil - - // Then - XCTAssertNil(downloader, "downloader should be nil") - } - - func testThatImageDownloaderCanBeInitializedAndDeinitializedWithActiveDownloads() { - // Given - var downloader: ImageDownloader? = ImageDownloader() - - // When - downloader?.downloadImage(URLRequest: URLRequest(.GET, "https://httpbin.org/image/png")) { _ in - // No-op - } - - downloader = nil - - // Then - XCTAssertNil(downloader, "downloader should be nil") - } - - // MARK: - Image Download Tests - - func testThatItCanDownloadAnImage() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let expectation = expectationWithDescription("image download should succeed") - - var response: Response? - - // When - downloader.downloadImage(URLRequest: download) { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertNotNil(response?.result, "result should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be a success case") - } - - func testThatItCanDownloadMultipleImagesSimultaneously() { - // Given - let downloader = ImageDownloader() - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/png") - - let expectation1 = expectationWithDescription("download 1 should succeed") - let expectation2 = expectationWithDescription("download 2 should succeed") - - var result1: Result? - var result2: Result? - - // When - downloader.downloadImage(URLRequest: download1) { closureResponse in - result1 = closureResponse.result - expectation1.fulfill() - } - - downloader.downloadImage(URLRequest: download2) { closureResponse in - result2 = closureResponse.result - expectation2.fulfill() - } - - let activeRequestCount = downloader.activeRequestCount - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(activeRequestCount, 2, "active request count should be 2") - - XCTAssertNotNil(result1, "result 1 should not be nil") - XCTAssertNotNil(result2, "result 2 should not be nil") - - XCTAssertTrue(result1?.isSuccess ?? false, "result 1 should be a success case") - XCTAssertTrue(result2?.isSuccess ?? false, "result 2 should be a success case") - } - - func testThatItCanEnqueueMultipleImages() { - // Given - let downloader = ImageDownloader() - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/png") - - let expectation = expectationWithDescription("both downloads should succeed") - var completedDownloads = 0 - - var results: [Result] = [] - - // When - downloader.downloadImages(URLRequests: [download1, download2], filter: nil) { closureResponse in - results.append(closureResponse.result) - - completedDownloads += 1 - if completedDownloads == 2 { expectation.fulfill() } - } - - let activeRequestCount = downloader.activeRequestCount - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(activeRequestCount, 2, "active request count should be 2") - - XCTAssertTrue(results[0].isSuccess, "the first result should be a success case") - XCTAssertTrue(results[1].isSuccess, "the second result should be a success case") - } - - func testThatItDoesNotExceedTheMaximumActiveDownloadsLimit() { - // Given - let downloader = ImageDownloader(maximumActiveDownloads: 1) - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/png") - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download1) { _ in - // No-op - } - - let requestReceipt2 = downloader.downloadImage(URLRequest: download2) { _ in - // No-op - } - - let activeRequestCount = downloader.activeRequestCount - requestReceipt1?.request.cancel() - requestReceipt2?.request.cancel() - - // Then - XCTAssertEqual(activeRequestCount, 1, "active request count should be 1") - } - - func testThatItCallsTheCompletionHandlerEvenWhenDownloadFails() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/get") - let expectation = expectationWithDescription("download request should fail") - - var response: Response? - - // When - downloader.downloadImage(URLRequest: download) { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be a failure case") - } - - func testThatItCanDownloadImagesWithDisabledURLCacheInSessionConfiguration() { - // Given - let downloader: ImageDownloader = { - let configuration: NSURLSessionConfiguration = { - let configuration = NSURLSessionConfiguration.defaultSessionConfiguration() - configuration.URLCache = nil - - return configuration - }() - - let downloader = ImageDownloader(configuration: configuration) - return downloader - }() - - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let expectation = expectationWithDescription("image download should succeed") - - var response: Response? - - // When - downloader.downloadImage(URLRequest: download) { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be a success case") - } - -#if os(iOS) - - // MARK: - Image Download Tests (iOS Only) - - func testThatItCanDownloadImageAndApplyImageFilter() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let scaledSize = CGSize(width: 100, height: 60) - let filter = ScaledToSizeFilter(size: scaledSize) - - let expectation = expectationWithDescription("image download should succeed") - - var response: Response? - - // When - downloader.downloadImage(URLRequest: download, filter: filter) { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be a success case") - - if let image = response?.result.value { - XCTAssertEqual(image.size, scaledSize, "image size does not match expected value") - } - } - - func testThatItCanAppendFilterAndCompletionHandlerToExistingDownload() { - // Given - let downloader = ImageDownloader() - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let filter1 = ScaledToSizeFilter(size: CGSize(width: 50, height: 50)) - let filter2 = ScaledToSizeFilter(size: CGSize(width: 75, height: 75)) - - let expectation1 = expectationWithDescription("download request 1 should succeed") - let expectation2 = expectationWithDescription("download request 2 should succeed") - - var result1: Result? - var result2: Result? - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download1, filter: filter1) { closureResponse in - result1 = closureResponse.result - expectation1.fulfill() - } - - let requestReceipt2 = downloader.downloadImage(URLRequest: download2, filter: filter2) { closureResponse in - result2 = closureResponse.result - expectation2.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(requestReceipt1?.request.task, requestReceipt2?.request.task, "request 1 and 2 should be equal") - - XCTAssertNotNil(result1, "result 1 should not be nil") - XCTAssertNotNil(result2, "result 2 should not be nil") - - XCTAssertTrue(result1?.isSuccess ?? false, "result 1 should be a success case") - XCTAssertTrue(result2?.isSuccess ?? false, "result 2 should be a success case") - - if let image = result1?.value { - XCTAssertEqual(image.size, CGSize(width: 50, height: 50), "image size does not match expected value") - } - - if let image = result2?.value { - XCTAssertEqual(image.size, CGSize(width: 75, height: 75), "image size does not match expected value") - } - } - - func testThatDownloadsWithMultipleResponseHandlersOnlyRunDuplicateImageFiltersOnce() { - // Given - let downloader = ImageDownloader() - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let filter1 = TestCircleFilter() - let filter2 = TestCircleFilter() - - let expectation1 = expectationWithDescription("download request 1 should succeed") - let expectation2 = expectationWithDescription("download request 2 should succeed") - - var result1: Result? - var result2: Result? - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download1, filter: filter1) { closureResponse in - result1 = closureResponse.result - expectation1.fulfill() - } - - let requestReceipt2 = downloader.downloadImage(URLRequest: download2, filter: filter2) { closureResponse in - result2 = closureResponse.result - expectation2.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(requestReceipt1?.request.task, requestReceipt2?.request.task, "tasks 1 and 2 should be equal") - - XCTAssertNotNil(result1, "result 1 should not be nil") - XCTAssertNotNil(result2, "result 2 should not be nil") - - XCTAssertTrue(result1?.isSuccess ?? false, "result 1 should be a success case") - XCTAssertTrue(result2?.isSuccess ?? false, "result 2 should be a success case") - - XCTAssertTrue(filter1.filterOperationCompleted, "the filter 1 filter operation completed flag should be true") - XCTAssertFalse(filter2.filterOperationCompleted, "the filter 2 filter operation completed flag should be false") - } - -#endif - - // MARK: - Cancellation Tests - - func testThatCancellingDownloadCallsCompletionWithCancellationError() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let expectation = expectationWithDescription("download request should succeed") - - var response: Response? - - // When - let requestReceipt = downloader.downloadImage(URLRequest: download) { closureResponse in - response = closureResponse - expectation.fulfill() - } - - downloader.cancelRequestForRequestReceipt(requestReceipt!) - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response, "response should not be nil") - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNil(response?.response, "response should be nil") - XCTAssertNil(response?.data, "data should be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be a failure case") - - if let error = response?.result.error { - XCTAssertEqual(error.domain, Error.Domain, "error domain should be com.alamofire.error") - XCTAssertEqual(error.code, NSURLErrorCancelled, "error code should be cancelled") - } - } - - func testThatCancellingDownloadWithMultipleResponseHandlersCancelsFirstYetAllowsSecondToComplete() { - // Given - let downloader = ImageDownloader() - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let expectation1 = expectationWithDescription("download request 1 should succeed") - let expectation2 = expectationWithDescription("download request 2 should succeed") - - var response1: Response? - var response2: Response? - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download1) { closureResponse in - response1 = closureResponse - expectation1.fulfill() - } - - let requestReceipt2 = downloader.downloadImage(URLRequest: download2) { closureResponse in - response2 = closureResponse - expectation2.fulfill() - } - - downloader.cancelRequestForRequestReceipt(requestReceipt1!) - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertEqual(requestReceipt1?.request.task, requestReceipt2?.request.task, "tasks 1 and 2 should be equal") - - XCTAssertNotNil(response1, "response 1 should not be nil") - XCTAssertNotNil(response1?.request, "response 1 request should not be nil") - XCTAssertNil(response1?.response, "response 1 response should be nil") - XCTAssertNil(response1?.data, "response 1 data should be nil") - XCTAssertTrue(response1?.result.isFailure ?? false, "response 1 result should be a failure case") - - if let error = response1?.result.error { - XCTAssertEqual(error.domain, Error.Domain, "error domain should be com.alamofire.error") - XCTAssertEqual(error.code, NSURLErrorCancelled, "error code should be cancelled") - } - - XCTAssertNotNil(response2, "response 2 should not be nil") - XCTAssertNotNil(response2?.request, "response 2 request should not be nil") - XCTAssertNotNil(response2?.response, "response 2 response should not be nil") - XCTAssertNotNil(response2?.data, "response 2 data should not be nil") - XCTAssertTrue(response2?.result.isSuccess ?? false, "response 2 result should be a success case") - } - - // MARK: - Authentication Tests - - func testThatItDoesNotAttachAuthenticationCredentialToRequestIfItDoesNotExist() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - // When - let requestReceipt = downloader.downloadImage(URLRequest: download) { _ in - // No-op - } - - let credential = requestReceipt?.request.delegate.credential - requestReceipt?.request.cancel() - - // Then - XCTAssertNil(credential, "credential should be nil") - } - - func testThatItAttachsUsernamePasswordCredentialToRequestIfItExists() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - // When - downloader.addAuthentication(user: "foo", password: "bar") - - let requestReceipt = downloader.downloadImage(URLRequest: download) { _ in - // No-op - } - - let credential = requestReceipt?.request.delegate.credential - requestReceipt?.request.cancel() - - // Then - XCTAssertNotNil(credential, "credential should not be nil") - } - - func testThatItAttachsAuthenticationCredentialToRequestIfItExists() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - // When - let credential = NSURLCredential(user: "foo", password: "bar", persistence: .ForSession) - downloader.addAuthentication(usingCredential: credential) - - let requestReceipt = downloader.downloadImage(URLRequest: download) { _ in - // No-op - } - - let requestCredential = requestReceipt?.request.delegate.credential - requestReceipt?.request.cancel() - - // Then - XCTAssertNotNil(requestCredential, "request credential should not be nil") - } - - // MARK: - Threading Tests - - func testThatItAlwaysCallsTheCompletionHandlerOnTheMainQueue() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let expectation = expectationWithDescription("download request should succeed") - - var calledOnMainQueue = false - - // When - downloader.downloadImage(URLRequest: download) { _ in - calledOnMainQueue = NSThread.isMainThread() - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertTrue(calledOnMainQueue, "completion handler should be called on main queue") - } - - func testThatItNeverCallsTheImageFilterOnTheMainQueue() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let filter = ThreadCheckFilter() - - let expectation = expectationWithDescription("download request should succeed") - - // When - downloader.downloadImage(URLRequest: download, filter: filter) { _ in - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertFalse(filter.calledOnMainQueue, "filter should not be called on main queue") - } - - // MARK: - Image Caching Tests - - func testThatCachedImageIsReturnedIfAllowedByCachePolicy() { - // Given - let downloader = ImageDownloader() - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let expectation1 = expectationWithDescription("image download should succeed") - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download1) { _ in - expectation1.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - let download2 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - download2.cachePolicy = .ReturnCacheDataElseLoad - - let expectation2 = expectationWithDescription("image download should succeed") - - let requestReceipt2 = downloader.downloadImage(URLRequest: download2) { _ in - expectation2.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(requestReceipt1, "request receipt 1 should not be nil") - XCTAssertNil(requestReceipt2, "request receipt 2 should be nil") - } - - func testThatCachedImageIsNotReturnedIfNotAllowedByCachePolicy() { - // Given - let downloader = ImageDownloader() - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let expectation1 = expectationWithDescription("image download should succeed") - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download1) { _ in - expectation1.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - let download2 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - download2.cachePolicy = .ReloadIgnoringLocalCacheData - - let expectation2 = expectationWithDescription("image download should succeed") - - let requestReceipt2 = downloader.downloadImage(URLRequest: download2) { _ in - expectation2.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(requestReceipt1, "request receipt 1 should not be nil") - XCTAssertNotNil(requestReceipt2, "request receipt 2 should not be nil") - } - - func testThatItCanDownloadImagesWhenNoImageCacheIsAvailable() { - // Given - let downloader = ImageDownloader(imageCache: nil) - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let expectation = expectationWithDescription("image download should succeed") - - var response: Response? - - // When - downloader.downloadImage(URLRequest: download) { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be a success case") - } - - func testThatItAutomaticallyCachesDownloadedImageIfCacheIsAvailable() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - - let expectation1 = expectationWithDescription("image download should succeed") - - var result1: Result? - var result2: Result? - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download) { closureResponse in - result1 = closureResponse.result - expectation1.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - let expectation2 = expectationWithDescription("image download should succeed") - - let requestReceipt2 = downloader.downloadImage(URLRequest: download) { closureResponse in - result2 = closureResponse.result - expectation2.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(requestReceipt1, "request receipt 1 should not be nil") - XCTAssertNil(requestReceipt2, "request receipt 2 should be nil") - - XCTAssertNotNil(result1, "result 1 should not be nil") - XCTAssertNotNil(result2, "result 2 should not be nil") - - XCTAssertTrue(result1?.isSuccess ?? false, "result 1 should be a success case") - XCTAssertTrue(result2?.isSuccess ?? false, "result 2 should be a success case") - - if let image1 = result1?.value, let image2 = result2?.value { - XCTAssertEqual(image1, image2, "images 1 and 2 should be equal") - } - } - -#if os(iOS) - - func testThatFilteredImageIsStoredInCacheIfCacheIsAvailable() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let size = CGSize(width: 20, height: 20) - let filter = ScaledToSizeFilter(size: size) - - let expectation1 = expectationWithDescription("image download should succeed") - - var result1: Result? - var result2: Result? - - // When - let requestReceipt1 = downloader.downloadImage(URLRequest: download, filter: filter) { closureResponse in - result1 = closureResponse.result - expectation1.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - let expectation2 = expectationWithDescription("image download should succeed") - - let requestReceipt2 = downloader.downloadImage(URLRequest: download, filter: filter) { closureResponse in - result2 = closureResponse.result - expectation2.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(requestReceipt1, "request receipt 1 should not be nil") - XCTAssertNil(requestReceipt2, "request receipt 2 should be nil") - - XCTAssertNotNil(result1, "result 1 should not be nil") - XCTAssertNotNil(result2, "result 2 should not be nil") - - XCTAssertTrue(result1?.isSuccess ?? false, "result 1 should be a success case") - XCTAssertTrue(result2?.isSuccess ?? false, "result 2 should be a success case") - - if let image1 = result1?.value, let image2 = result2?.value { - XCTAssertEqual(image1, image2, "images 1 and 2 should be equal") - XCTAssertEqual(image1.size, size, "image size should match expected size") - XCTAssertEqual(image2.size, size, "image size should match expected size") - } else { - XCTFail("images should not be nil") - } - } - -#endif - - // MARK: - Internal Logic Tests - - func testThatStartingRequestIncrementsActiveRequestCount() { - // Given - let downloader = ImageDownloader() - let download = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let request = downloader.sessionManager.request(download) - - // When - let activeRequestCountBefore = downloader.activeRequestCount - downloader.startRequest(request) - let activeRequestCountAfter = downloader.activeRequestCount - - request.cancel() - - // Then - XCTAssertEqual(activeRequestCountBefore, 0, "active request count before should be 0") - XCTAssertEqual(activeRequestCountAfter, 1, "active request count after should be 1") - } - - func testThatEnqueueRequestInsertsRequestAtTheBackOfTheQueueWithFIFODownloadPrioritization() { - // Given - let downloader = ImageDownloader() - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/png") - - let request1 = downloader.sessionManager.request(download1) - let request2 = downloader.sessionManager.request(download2) - - // When - downloader.enqueueRequest(request1) - downloader.enqueueRequest(request2) - - let queuedRequests = downloader.queuedRequests - - // Then - XCTAssertEqual(queuedRequests.count, 2, "queued requests count should be 1") - XCTAssertEqual(queuedRequests[0].task, request1.task, "first queued request should be request 1") - XCTAssertEqual(queuedRequests[1].task, request2.task, "second queued request should be request 2") - } - - func testThatEnqueueRequestInsertsRequestAtTheFrontOfTheQueueWithLIFODownloadPrioritization() { - // Given - let downloader = ImageDownloader(downloadPrioritization: .LIFO) - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/png") - - let request1 = downloader.sessionManager.request(download1) - let request2 = downloader.sessionManager.request(download2) - - // When - downloader.enqueueRequest(request1) - downloader.enqueueRequest(request2) - - let queuedRequests = downloader.queuedRequests - - // Then - XCTAssertEqual(queuedRequests.count, 2, "queued requests count should be 1") - XCTAssertEqual(queuedRequests[0].task, request2.task, "first queued request should be request 2") - XCTAssertEqual(queuedRequests[1].task, request1.task, "second queued request should be request 1") - } - - func testThatDequeueRequestAlwaysRemovesRequestFromTheFrontOfTheQueue() { - // Given - let downloader = ImageDownloader(downloadPrioritization: .FIFO) - - let download1 = URLRequest(.GET, "https://httpbin.org/image/jpeg") - let download2 = URLRequest(.GET, "https://httpbin.org/image/png") - - let request1 = downloader.sessionManager.request(download1) - let request2 = downloader.sessionManager.request(download2) - - // When - downloader.enqueueRequest(request1) - downloader.enqueueRequest(request2) - downloader.dequeueRequest() - - let queuedRequests = downloader.queuedRequests - - // Then - XCTAssertEqual(queuedRequests.count, 1, "queued requests count should be 1") - XCTAssertEqual(queuedRequests[0].task, request2.task, "queued request should be request 2") - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Tests/ImageFilterTests.swift b/Carthage/Checkouts/AlamofireImage/Tests/ImageFilterTests.swift deleted file mode 100644 index bc52984..0000000 --- a/Carthage/Checkouts/AlamofireImage/Tests/ImageFilterTests.swift +++ /dev/null @@ -1,296 +0,0 @@ -// ImageFilterTests.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 AlamofireImage -import Foundation -import UIKit -import XCTest - -class ImageFilterTestCase: BaseTestCase { - let squareSize = CGSize(width: 50, height: 50) - let largeSquareSize = CGSize(width: 100, height: 100) - let scale = Int(round(UIScreen.mainScreen().scale)) - - // MARK: - ImageFilter Protocol Extension Identifiers - - func testThatImageFilterIdentifierIsImplemented() { - // Given - let filter = CircleFilter() - - // When - let identifier = filter.identifier - - // Then - XCTAssertEqual(identifier, "CircleFilter", "identifier does not match expected value") - } - - func testThatImageFilterWhereSelfIsSizableIdentifierIsImplemented() { - // Given - let filter = ScaledToSizeFilter(size: CGSize(width: 50.3333334, height: 60.879)) - - // When - let identifier = filter.identifier - - // Then - XCTAssertEqual(identifier, "ScaledToSizeFilter-size:(50x61)", "identifier does not match expected value") - } - - func testThatImageFilterWhereSelfIsRoundableIdentifierIsImplemented() { - // Given - let filter = RoundedCornersFilter(radius: 12) - - // When - let identifier = filter.identifier - - // Then - let expectedIdentifier = "RoundedCornersFilter-radius:(12)-divided:(false)" - XCTAssertEqual(identifier, expectedIdentifier, "identifier does not match expected value") - } - - // MARK: - CompositeImageFilter Protocol Extension Identifiers - - func testThatCompositeImageFilterIdentifierIsImplemented() { - // Given - let filter = ScaledToSizeWithRoundedCornersFilter(size: CGSize(width: 200, height: 100), radius: 20.0123) - - // When - let identifier = filter.identifier - - // Then - let expectedIdentifier = "ScaledToSizeFilter-size:(200x100)_RoundedCornersFilter-radius:(20)-divided:(false)" - XCTAssertEqual(identifier, expectedIdentifier, "identifier does not match expected value") - } - - // MARK: - DynamicImageFilter Tests - - func testThatDynamicImageFilterIdentifierIsImplemented() { - // Given - let identifier = "DynamicFilter" - - // When - let filter = DynamicImageFilter(identifier) { $0 } - - // Then - XCTAssertEqual(filter.identifier, identifier, "identifier does not match expected value") - } - - func testThatDynamicImageFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = DynamicImageFilter("DynamicScaleToSizeFilter") { image in - return image.af_imageScaledToSize(CGSize(width: 50.0, height: 50.0)) - } - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource("pirate-scaled-50x50-@\(scale)x", withExtension: "png") - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - // MARK: - DynamicCompositeImageFilter Tests - - func testThatDynamicCompositeImageFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = DynamicCompositeImageFilter( - ScaledToSizeFilter(size: largeSquareSize), - RoundedCornersFilter(radius: 20) - ) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource( - "pirate-scaled.to.size.with.rounded.corners-100x100x20-@\(scale)x", - withExtension: "png" - ) - - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - // MARK: - Single Pass Image Filter Tests - - func testThatScaledToSizeFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = ScaledToSizeFilter(size: squareSize) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource("pirate-scaled-50x50-@\(scale)x", withExtension: "png") - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatAspectScaledToFitSizeFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = AspectScaledToFitSizeFilter(size: squareSize) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource("pirate-aspect.scaled.to.fit-50x50-@\(scale)x", withExtension: "png") - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatAspectScaledToFillSizeFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = AspectScaledToFillSizeFilter(size: squareSize) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource("pirate-aspect.scaled.to.fill-50x50-@\(scale)x", withExtension: "png") - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatRoundedCornersFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = RoundedCornersFilter(radius: 20, divideRadiusByImageScale: true) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource("pirate-radius-20", withExtension: "png") - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - - let expectedIdentifier = "RoundedCornersFilter-radius:(20)-divided:(true)" - XCTAssertEqual(filter.identifier, expectedIdentifier, "filter identifier does not match") - } - - func testThatCircleFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = CircleFilter() - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource("pirate-circle", withExtension: "png") - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatBlurFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("unicorn", withExtension: "png") - let filter = BlurFilter(blurRadius: 8) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage: UIImage - - if #available(iOS 9.0, *) { - expectedFilteredImage = imageForResource("unicorn-blurred-8-ios-9", withExtension: "png") - } else if #available(iOS 8.3, *) { - expectedFilteredImage = imageForResource("unicorn-blurred-8-ios-8.3", withExtension: "png") - } else { - expectedFilteredImage = imageForResource("unicorn-blurred-8-ios-8.1", withExtension: "png") - } - - let pixelsMatch = filteredImage.af_isEqualToImage(expectedFilteredImage) - - XCTAssertTrue(pixelsMatch, "pixels match should be true") - } - - // MARK: - Composite Image Filter Tests - - func testThatScaledToSizeWithRoundedCornersFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = ScaledToSizeWithRoundedCornersFilter(size: largeSquareSize, radius: 20) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource( - "pirate-scaled.to.size.with.rounded.corners-100x100x20-@\(scale)x", - withExtension: "png" - ) - - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatAspectScaledToFillSizeWithRoundedCornersFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = AspectScaledToFillSizeWithRoundedCornersFilter(size: largeSquareSize, radius: 20) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource( - "pirate-aspect.scaled.to.fill.size.with.rounded.corners-100x100x20-@\(scale)x", - withExtension: "png" - ) - - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatScaledToSizeCircleFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = ScaledToSizeCircleFilter(size: largeSquareSize) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource( - "pirate-scaled.to.size.circle-100x100-@\(scale)x", - withExtension: "png" - ) - - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } - - func testThatAspectScaledToFillSizeCircleFilterReturnsCorrectFilteredImage() { - // Given - let image = imageForResource("pirate", withExtension: "jpg") - let filter = AspectScaledToFillSizeCircleFilter(size: largeSquareSize) - - // When - let filteredImage = filter.filter(image) - - // Then - let expectedFilteredImage = imageForResource( - "pirate-aspect.scaled.to.fill.size.circle-100x100-@\(scale)x", - withExtension: "png" - ) - - XCTAssertTrue(filteredImage.af_isEqualToImage(expectedFilteredImage), "filtered image pixels do not match") - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Info.plist b/Carthage/Checkouts/AlamofireImage/Tests/Info.plist deleted file mode 100644 index ba72822..0000000 --- a/Carthage/Checkouts/AlamofireImage/Tests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/Carthage/Checkouts/AlamofireImage/Tests/RequestTests.swift b/Carthage/Checkouts/AlamofireImage/Tests/RequestTests.swift deleted file mode 100644 index 5261b2a..0000000 --- a/Carthage/Checkouts/AlamofireImage/Tests/RequestTests.swift +++ /dev/null @@ -1,376 +0,0 @@ -// RequestTests.swift -// -// Copyright (c) 2015-2016 Alamofire Software Foundation (http://alamofire.org/) -// -// 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 Alamofire -@testable import AlamofireImage -import Foundation -import XCTest - -class RequestTestCase: BaseTestCase { - var acceptableImageContentTypes: Set! - - // MARK: - Setup and Teardown - - override func setUp() { - super.setUp() - acceptableImageContentTypes = Request.acceptableImageContentTypes - } - - override func tearDown() { - super.tearDown() - Request.acceptableImageContentTypes = acceptableImageContentTypes - } - - // MARK: - Image Content Type Tests - - func testThatAddingAcceptableImageContentTypesInsertsThemIntoTheGlobalList() { - // Given - let contentTypes: Set = ["image/jpg", "binary/octet-stream"] - - // When - let beforeCount = Request.acceptableImageContentTypes.count - Request.addAcceptableImageContentTypes(contentTypes) - let afterCount = Request.acceptableImageContentTypes.count - - // Then - XCTAssertEqual(beforeCount, 10, "before count should be 10") - XCTAssertEqual(afterCount, 12, "after count should be 12") - } - - // MARK: - Image Serialization Tests - - func testThatImageResponseSerializerCanDownloadPNGImage() { - // Given - let URLString = "https://httpbin.org/image/png" - let expectation = expectationWithDescription("Request should return PNG response image") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be success") - - if let image = response?.result.value { - #if os(iOS) - let screenScale = UIScreen.mainScreen().scale - let expectedSize = CGSize(width: CGFloat(100) / screenScale, height: CGFloat(100) / screenScale) - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - XCTAssertEqual(image.scale, screenScale, "image scale does not match expected value") - #elseif os(OSX) - let expectedSize = CGSize(width: 100.0, height: 100.0) - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - #endif - } else { - XCTFail("result image should not be nil") - } - } - - func testThatImageResponseSerializerCanDownloadJPGImage() { - // Given - let URLString = "https://httpbin.org/image/jpeg" - let expectation = expectationWithDescription("Request should return JPG response image") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be success") - - if let image = response?.result.value { - #if os(iOS) - let screenScale = UIScreen.mainScreen().scale - let expectedSize = CGSize(width: CGFloat(239) / screenScale, height: CGFloat(178) / screenScale) - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - XCTAssertEqual(image.scale, screenScale, "image scale does not match expected value") - #elseif os(OSX) - let expectedSize = CGSize(width: 239.0, height: 178.0) - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - #endif - } else { - XCTFail("result image should not be nil") - } - } - - func testThatImageResponseSerializerCanDownloadImageFromFileURL() { - // Given - let URL = URLForResource("apple", withExtension: "jpg") - let expectation = expectationWithDescription("Request should return JPG response image") - - var response: Response? - - // When - manager.request(.GET, URL) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNil(response?.response, "response should be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be success") - - if let image = response?.result.value { - #if os(iOS) - let screenScale = UIScreen.mainScreen().scale - let expectedSize = CGSize(width: CGFloat(180) / screenScale, height: CGFloat(260) / screenScale) - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - XCTAssertEqual(image.scale, screenScale, "image scale does not match expected value") - #elseif os(OSX) - let expectedSize = CGSize(width: 180.0, height: 260.0) - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - #endif - } else { - XCTFail("result image should not be nil") - } - } - -#if os(iOS) - - // MARK: - Image Inflation Tests - - func testThatImageResponseSerializerCanDownloadAndInflatePNGImage() { - // Given - let URLString = "https://httpbin.org/image/png" - let expectation = expectationWithDescription("Request should return PNG response image") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be success") - - if let image = response?.result.value { - let screenScale = UIScreen.mainScreen().scale - let expectedSize = CGSize(width: CGFloat(100) / screenScale, height: CGFloat(100) / screenScale) - - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - XCTAssertEqual(image.scale, screenScale, "image scale does not match expected value") - } else { - XCTFail("result image should not be nil") - } - } - - func testThatImageResponseSerializerCanDownloadAndInflateJPGImage() { - // Given - let URLString = "https://httpbin.org/image/jpeg" - let expectation = expectationWithDescription("Request should return JPG response image") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isSuccess ?? false, "result should be success") - - if let image = response?.result.value { - let screenScale = UIScreen.mainScreen().scale - let expectedSize = CGSize(width: CGFloat(239) / screenScale, height: CGFloat(178) / screenScale) - - XCTAssertEqual(image.size, expectedSize, "image size does not match expected value") - XCTAssertEqual(image.scale, screenScale, "image scale does not match expected value") - } else { - XCTFail("result image should not be nil") - } - } - -#endif - - // MARK: - Image Serialization Error Tests - - func testThatAttemptingToDownloadImageFromBadURLReturnsFailureResult() { - // Given - let URLString = "https://invalid.for.sure" - let expectation = expectationWithDescription("Request should fail with bad URL") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNil(response?.response, "response should be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be failure") - XCTAssertNotNil(response?.result.error, "result error should not be nil") - } - - func testThatAttemptingToDownloadUnsupportedImageTypeReturnsFailureResult() { - // Given - let URLString = "https://httpbin.org/image/webp" - let expectation = expectationWithDescription("Request should return webp response image") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be failure") - XCTAssertNotNil(response?.result.error, "result error should not be nil") - - if let error = response?.result.error { - XCTAssertEqual(error.domain, Error.Domain, "error domain should be com.alamofire.error") - XCTAssertEqual(error.code, NSURLErrorCannotDecodeContentData, "error code should be -1016") - } - } - - func testThatAttemptingToSerializeEmptyDataReturnsFailureResult() { - // Given - let URLString = "https://httpbin.org/bytes/0" - let expectation = expectationWithDescription("Request should download no bytes") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be failure") - XCTAssertNotNil(response?.result.error, "result error should not be nil") - - if let error = response?.result.error { - XCTAssertEqual(error.domain, Error.Domain, "error domain should be com.alamofire.error") - XCTAssertEqual(error.code, NSURLErrorCannotDecodeContentData, "error code should be -1016") - } - } - - func testThatAttemptingToSerializeRandomStreamDataReturnsFailureResult() { - // Given - let randomBytes = 4 * 1024 * 1024 - let URLString = "https://httpbin.org/bytes/\(randomBytes)" - let expectation = expectationWithDescription("Request should download random bytes") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be failure") - XCTAssertNotNil(response?.result.error, "result error should not be nil") - - if let error = response?.result.error { - XCTAssertEqual(error.domain, Error.Domain, "error domain should be com.alamofire.error") - XCTAssertEqual(error.code, NSURLErrorCannotDecodeContentData, "error code should be -1016") - } - } - - func testThatAttemptingToSerializeJSONResponseIntoImageReturnsFailureResult() { - // Given - let URLString = "https://httpbin.org/get" - let expectation = expectationWithDescription("Request should return JSON") - - var response: Response? - - // When - manager.request(.GET, URLString) - .responseImage { closureResponse in - response = closureResponse - expectation.fulfill() - } - - waitForExpectationsWithTimeout(timeout, handler: nil) - - // Then - XCTAssertNotNil(response?.request, "request should not be nil") - XCTAssertNotNil(response?.response, "response should not be nil") - XCTAssertTrue(response?.result.isFailure ?? false, "result should be failure") - XCTAssertNotNil(response?.result.error, "result error should not be nil") - - if let error = response?.result.error { - XCTAssertEqual(error.domain, Error.Domain, "error domain should be com.alamofire.error") - XCTAssertEqual(error.code, NSURLErrorCannotDecodeContentData, "error code should be -1016") - } - } -} diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@1x.png deleted file mode 100644 index eb18310d3571f4914ea1bb108a049540ab2cb587..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9950 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 QaR2}S07*qoM6N<$f~k$ylK=n! diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill Circle/pirate-aspect.scaled.to.fill.size.circle-100x100-@3x.png deleted file mode 100644 index 188e631d480ad4c28d073a23eb130dd10a0e2971..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 52783 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

u<+ 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%0A00>G=v^Jvk6q5#AK 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 VeE4z_r6T|U002ovPDHLkV1iQ{$d>>B diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-30x60-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-30x60-@2x.png deleted file mode 100644 index 5cc92c2848c7e17706289c3839ac2eda581aa9cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2192 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@1x.png deleted file mode 100644 index ecee557954487da8b67d36e0d79b479c84d9c5d8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1156 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-50x50-@3x.png deleted file mode 100644 index c46689480a67825eba87ac68cfe2320044a73f5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4157 zcmXX}1zZ$w69(x!N{nsN z#4|v{)s+h9lWKLF{u1kZ=7D2c*@0RYg!O)WFZ_unoRtT z1#kN}XZcN2_@k9=?rPdtbp0kw{yF!_-Fx}{EdPB*&|Zk!m5kr{XX&%NV`;*1&ibP> zN%k}W!-!BEeT3bedmFUk@~BkW2Z+j`R`s9`2Iw2q!G*z@=wzL zOXI1QG3?g^gu2Slu@et26iELkng<`5;JKC76@Z|o+QbO|rRlI}0y0cyTVeLz^8wvj zPeahYE?@ztCKOnrNa6h$mZy;-B^aKkA8u4Lc2}A-3UEle#rf{e6`D4?Z4kQTD-9}` zFc1A>@*nJi5yTOO9f3YLmszGra=M{$aJzZ%bYFY+A~@9 zO!3vu?n0X%H5@@YC};tjDo`ZRdLu@~DrD9@nlJB~r#JY{qDwVb#^=ibhLcqBQQ}vL zN}a-MfhSw2-TCH~sVXD>u$^1syAvgvF9C$YG5T?X2SLfU1c{k zQ~7W zIpeLKM8_#4`^+lCHG?w-S%yE7AmU6OoM_QvpYC}zBJ{k~at3R~CTd5^tCeXv!L1Zs zpkJo_U8ZYrAiXOsIEyc)M=6GW30QUiga3%#7TeKRmuL4RC0PNhxb4i^L)9wv6yAY_ zu{J;VI5v@M$iW10+e8j=>PQL()%B6w@gfzPFI7fR!`eqA$H#laS1qYB4C&?RV&ur- zHs4(g5EwaIZ_8VBJX41(*fMMLrNf~z^JM+#ffp+Nm0k6b>zo+vO{p;=?yx$K_oG8& z@4eQoFMe#YJr2YX*V}!5^ZiY5hVXTexdqmeSiW37|8QR_y<5QrLJx+Iw z^-mLS$;L6Ky__smibAL1%mX;@s80bUIe=DU2idUemA&^@WpA#1%abI3m3*9}1~Jc*To; zULVcp{LgoPF`i$)G?UEPw1zUvxj>o$#2G%GwR2(+2E;j!#tmsDRQM6xt}>t&5!a~< zL@$c%Msggxm$0*~KF&6_wk6Tivkmsh-MPkrmNI>uSms-^HZ88Mmwy(!J8XwRw72DM z8YpuL>yohQ+2fO~Fm$;oDah1i;JXiXg_n9+bcKp*kH;|F=HQX_T%|nSnMFox?^$#P zvm5Y^P*3Xid%G_Kk89VGBWj;8Sxdu*XDXNa;kww)KAQJfvw7j;kH-RZONXHvdif7o ztgps_6|b}V%z<;ApPunFPfNDa)!T0@-;t#PffE}9=|gV9mRmgn9KO~*=cSL!{owBK zLzb1SC5I$dRdj(OP8#~T6ixEtN7mZF#B=njH1m zTQ7zrir9%!m6d?w@8>ddvy2||eWgWJ;d!A((elt2z(psO#O7O8jFOqF0UKZ>Tf+9? z5n$~Iqv=zBA;>5sq%Oh~DZq349aBsFZAWZ59B72%u^%UjS8^uo8@)Ft4BFGdjOPpX zZ}HZNwo>Xdni9I6!AMeg2eTaxT706<3nIW@3q!^hBMU}_1L@WtC)-Z@o zd*riaV1ZpOHKSc!p;pT2z91ta`twJ~%PE+MhywAKVeICZJ~4cHW3Uldm1OH3u0Ttx zlB%O~EfQ8OtW&+CsC(lJYaQ%bVeo5Oi>Zt|0u#+oTJOGM5P&5y*y)f*ENH3YlK0@L z+uQQOF&=G+d;9ubk40-qVjc&b$_3d?|5}%H9$ky7HhZ7!eG!d9p?^h1MU9OYt8ES@ z-nO}12dX-H$f>Y(PyJPR03dC%U)X6$UAK+^gqFONRTmHOBDag3*z z7r&TTs?KRi{q~=8Gr_1eJ1w>V;Jf*8vTc+tCRPQhuQO|T5k6gQ+}mT~aw6N0ItCDR z63At57#)9|f$LF$>wHrk7G#QW8&#qS1(wH0COK7)hWugiHbupPi#xH43x2C`{-W!bJh-2x^}5JSR!hB`V5K!a-1Fgs=;FFpiNy{M?@E+#JShOaQ%WR8aB*j`;-T@2VP zo+JEj*+g>c=<6$?(P)4V2rT(!2~U@FU@iNeW=o8xfsLw}wXxTv+deYfmK%%bl-%e; zGvl1U3Yj#!Kn9!MmzM|`Y9Rt$!CVba^%TTxPCJ1c!S0`~%1Y?$aflB|d|Jf#))@r&h# zh6YD#>mEmE@Mvx*h?>gemRzv^KKhpeAHEeDOY z<{euX(GJ;Tp;s3wh?FMZU6b9xT7z)Tdl2zSMnqts41h;{vn@5UgTYoXSPw*Z^U+p9 z>x4OCBCHY`esFQJz4<9i6uvJT)oX5U&c&F9L(L6&(>X({Eu)n(UIjGd<#F|B5OK;m zNhSy#0L&EUvkku|X~YJGP|~mVs6O-IOEi&g#eCM}szZ~4IkY@y3@O>55UEC>!1C*m zCPs>%GobuZaaaHp&0cG?67l*(GG>nVB!9sqB$NVVn0{b-l{`- zI&vv!XGTPTpZ_`uF4IksRpQ~pWf=r`GD%Im18UK!qozi&OXwm9=o+g)3~d-$e^>DG z@x=fXOC2atr;yg@y1d_O!x`QHX|AlSWTM%!Mk2|G4<9u{DI<3e7zaM2@KrQ68tznP z?aOy4RIozLDVKW6V2f+VQ=XYOo01VuDps+fDk@~pyFzmVgM#`k1xhs(Vh;~J#%mgz znB;(ZM7Y>R!wTaMy{)i-Wbr%mlGs6*xugW+?j1KKp>s~<<7Diew=tY zHNIy_lG5^wg(Ni6>sw+MSy(|`LwRfKo2{*_@}{PA0Wf&8JDlVOGc)tdz4GryA$c6` z)-!=t>SbJM(Y4OK(R9}N%ilj|qoC1`1Iwk%^50pP41I5XCPxA5ZCKjp7KEHA&N+n| z;D_w1Ja}W`LDO9|w8onwD=>jEL57DTS@a`QxYZD+96_sMl&vPu41yjsO>i3@vhjz#zPSzG(_MH8B=twriG5uwd6ZGx;w7D5Zc3u5k- z75UY~^3Ut2jm7g~5&Z#h2mII;(M!!WnSZ^~2{o@L&$P7w_rK8&v}wCs{{|JQ`{jnp z>GZRH2!sXvqW!FYx`O|Ct@(jhe{?XX{7Wt(($3uLZu&R57NpCRyKFx<^I!5<^inQc z=sf11*ZBf9FylU(f0NXr-S0b?hXY>I$&A~#`_Fp3S-6Sb{QbRGSJ76kg;_@Y4<8`$ AZ~y=R diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@1x.png deleted file mode 100644 index 292fe48808016e23f75f4693f0c339c4b0f1fb1a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1254 zcmVPx#9BD*PQ~&?~0ssI2000004*&oFC;$Ke4*&oF4*&oHhL($%R{#J4Qb|NXR9Fej zmb+_eK@f+H4~VZWja4kvMvGJiZ8Tu1g*MhAR$`$BBUl8)e?f$Rf~1o`ENtxUR1gF! zZF~_E#Uffn)Zb+m_Hr+V8}O_*Sy%@4%+8r_XLe>~3WWmybIRp%sMTsbJUn2(--D0M zW`l4z4Elabe`KdL{+aEwvokoIPQ1OnF<=f|uh(&TdC6c;34JnPa{AB7;bk%zvf1o! z*zI__ zjRwl)G6?qe_7;gmf)%M;F2|zW>2xp}jqv*Vis5jGR;z`_$47)hAzWNs2rFiift5-n zOIM47q*ZF*oUayCCyUh;b{r&wwk1vpZzu!kDlYzlt5E5m{z?5!A zqY=eo5&v?YLmVT=<1zexKReiOO=*IqVsn3gkM(+e49k~$sJJ~nJ;C8{d_OSVTbs?s zQu9mCk5s7DYOJWyzobT&_Df1>YB5w+9>E0Zgzo ztyU|R%jL;{?RL9x;9md$0RR6PLeseb00J6GL_t)wmc7e?Q5eP_A2BE?WkO0eDI)`B znOG%*GRR+GF(Aoeuow(B1G@o#gwc1bl#eK1*V}#SDZ~4gocn$1^oY~#`km`K_c@AA zr^7cxtJT8ga$&dI;Xj_oFk;6x&U+wH~HdJRTU0M(Jov0n`3+yWLnU7OFn>H*FPy?sPf`hr`nG zmI9_`VlWucZnxP%-wP7-{eDL}ofg1)z5Z*brGTkPkjv3%6oQeSjJt_Dh*5m$mLKdgw<-r>MX(1prg-jx3iqb z(!jK86fx?c#bQyo!AZT{ZV`{irJEJ$WN}z6M9@yB6a9XlE!xx!R@Y_QWo6QEZ*$m{~>2&&S8ji;!n$4zIM42X~8lt{gBCQsqH;IcxBIxyc z0_=LdikL5#OAH1Baf!%eGDs$q$Y!&s)oK`z#{!<_p3i4Yr&BZ<4ROYE!je9AU=`Z$ z_am3fpnA}5gF#rWRi_@% diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/apple-aspect.scaled.to.fill-60x30-@2x.png deleted file mode 100644 index 700b49a9d4d82fb122e954278eec3d95bb647f7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2413 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@1x.png deleted file mode 100644 index cbcc8f0026f49b71d7ca0919562b11c6f66f3a2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3413 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 d8*KXn*}9s-ze1Vj5dT8~{s(-#V!QwV diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-50x50-@3x.png deleted file mode 100644 index 9dd8cacf351161ccdfd5cdf3ae26820180142d3d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14876 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-60x30-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/pirate-aspect.scaled.to.fill-60x30-@3x.png deleted file mode 100644 index 25cdff4c3e0aa12932fda012ed746ba73a893261..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9721 zcmXY$V{{!|7l7}LZM%(~G`4Nqwr$(C)!23#G-=e>HX1wm?z`4EYn|CM^K0f{pZz=& zr6@0f2!{s;000oBBt?}$u?5t$VW2=~)DYhRPyo6pO9%t%rU_0#H?WS9S}p*o7=6v064zk?pssQw>8*J!2z3w{is$Rs5yr0NO0$c62ZTO=C0W;3%U z5i_Gndio(+kQ{wR+8lvUkA|p_4U^`T&P&d#bgPsk5w0p-sX7Xk8mjSQl2<`2^|k-Y zqx)RbV%u+eb&Tt21xTCo-|KtTLsE7Pulo)?e)bX>CDx!SDBu43M(VmIS)jf3qmHs2eSzk ztA5<1;^Bhgj-1k3Vs2@mtTUj8o;t^NvBwTh_PFx+sDu76_q-NPGo?SxBCVreBq6X* z9jkEvp|%-7=)6Z`nSx;}hG{#Ty3^&je@VT=3%Q^IXqy54Ec*K*mF)qyK!Hp$+)3S? zI$z}uQ4jNN9m{j8C&Nt^x4I?>20B|DF4s)@EiIVK-kJozP~6*I1}>4qCad;=x8u`v zqU^;hHTbT%&M#hKNpKb1%yiWjt}!%YgMlFMq6UKTulKu|!=Afo8P%K_J3-Q?tb}FFpdn>q z2&P^nNL7IsSs2mCI_dI!3b@~k(vjGyLCG*TbZ&RNp?P>$Q!nycbW7$ z>@WX@k--ZQJ)Ga4ojR|&&e0aHT7WHxsrLlW4Q@KW)tDiFJD2If;Ry&nyde}`O7X!> z=Su6f`0iT{zC$06PJlUboIg01aY>J_jxVC8mebO!2g@KUaxYfggS$Uotde_NZGas= zVdZE3|)L;u=n6gk~1U}Q;V?5f|CrDtZMZMCr(lGC}myJ z&kyIPO%E9>JtgnQi_^@rrFsL# z9Co|p!^w=vNydJWt(J;Nh2o_rC8n=R>XaVCM_;Lp=oI64A3OS|_5Gh{BKl8qTYnV<2&tA+ z3o1!-(;bfF`MmEP*HlX-QK=33dNAm`HLTWZ!tWYWzQ5C$rtQ zNaWd2_aT{YD~!1vD+Swltiq9?lk#zI|!@RF%S_ z)7;@r@Ki1m4ijzV@ek~~{Y?x0IGP~v$ys@)OJeSO_lKkEb|RC*Az#<;VKM5gMMVJ> za#Naoz;YzaGC>xCVg!obqIkYP6&-klMlSQa$!wDM4Nr!GM5;vxm&@yTIxonanAcNL z-|s=~bgQ@9_v2wX$XDL6l=o%?y-KtSkIkCwY<(2TQbPV>O%1emNL`MmoJ@amyPd(X z{FPTJmqj&iWI3p9efA67H*gDU&%JkC!s8Hn2fI#yx8nszPT(}36+sZAacv^J}Hiw_XWIGMFKq7 zn(B!S?-1HdatZcRvoUEIdR37%OQL6^&?!sLPX;6-iN zqwz~y?P zIP1sxsAUo%?(+d!J|WzO3=IlDSgO@)&v5qS{8=TSN;1GGw{)rdgPrTpbPB&yhi*WR zkBE89n{~*H#Wxv$bQRkFYrH$2xpu59#CPfoTsQiPqih!m?R?tu0XJ9Ap6URfmLT#H zHJ{19q}KOztM$0v5~96(yj(ww=edfs@gcqEV@LA)g{d*VRIAhbdUSA8L0S!3A5MJ z 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@1x.png deleted file mode 100644 index 22a3f72ae1254fe84d4d15de6e13bee166701dc0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2143 zcmV-l2%z_gP)Px#9BD*PQ~&?~0ssI2000009smFUC;$Ke9smFU9smFb)o)VPVgLXKp-DtRR9Fe@ zmU(d1)fLC@d%w3NjqGJ>f(R4`FhZ!U#p1Y(Q$?z@whEO|>QEa6gD{1#Ghjd&G_3;^ zYppO$wPQPKJ2)^?RKgO-N+6LCNl3t~FDnU2-uBx*J@n?9EzpmH09^9@jXlsZ1dfcii%+fL86y8IG#OfwonY$u${05}l0;5u~r_3OH{~UT2XA<4B8}s-P+`4Ls(TWr9 zlaMCL&Od_n2iaV>7<+OCF(ZYTIJ14?Fj+9ni#axcnU;i|8pKZX12`pLk$wr4?5g9I-jQ7HfWO(=% zocTeV7Yyv*io-R64YIdMutkugAz5xQa5wsK)&+30MgL_Xv{>+D5FSY){(T?zZONF! z4LSpgUY(Rc*^?xL`v$?n!LY)Ivmt<;OnY!qA(oqowOE~DicfT`EA*Dp@H1tGyDLAhjmRK|}DoIgsLcS*H! zrJApb?Pig!^Ge3T+<*SyOk>;miM&;l#s>|z@_FZY%EM!6j}F6f<=l~@hy*b&4MLT7jN$FN@3NwDDo+&u zfP3<%G2!?W2IpnqKYTBqLvv9F7NGvV4E2|dsC`@T{&_2&KW#(3BX~ClwSP0}{WYkM zpGO^>k2?G)NuSSRblz0bkEJvBC`%OIy}DhC@U5DE`NJ#g$UZWp8+|DhN>A_11* zdv`a1+!?NfrA^YO1Q!&qB~THA_eO()*$tN2#+Vr2K?S>1zLb4BDWc-L0r+jyG5 zmVA<4`;5Swe6=tA3hklBGe-6PNhwyDG5(g4sWglt< z1ed|^Oc=KaZeQq<{*=vKPgvaZn8m%1TKs6P#jJS_(|>L=`Ij~mpEXHaY%};pDeBAe zo>?g`iq&lx>%PGEN&&t-@1s7-!Z`c@%GgwnXH^^iD@dx zse>2NT3I?a#L{nvcxh-eS%X{18Z>~HhBUKeL<^ato5)OU;ra3HES_|gXEMUfxj#($ zFC0ewT3&jRgvyTNUEM_T#u8MDu$%Uj#k^TvESl2Ai>Ym_8Wv(zFhsVml?_HSuX>xw zH5%CItLJUsW%e3%>^Eu!b?h@P@s9BoyS)v(A-Y?=t*rC4u`<}s@|0GVj|`DHuAOJ6 zb@R}Jy-Zr<5Xce|znRp=@}VuP4>Yk(0&MnP=J)I_Ay zlmb=ANp(taQcxf$BHt@=qg3=ybJSnPL9zd9pqAa92Km=*B-`J_if@HjHnN>XcV0zp z@U{!nCO+`jlb3vvf}}4f76-+ugwv{=N(ol&E2es65p|O*Xv+AKmb)*~I=fa-N6V}l zn(wTp`PM2f4XU8pdxkGn8E1uDvC5~=UqET#EP25T><`qF;|sA`DyfcoE|4EACEv&s z=ATjFE8wfNb96p^nXc`PT=}Sj{=$CDniy7-T>Gt-Tzxif`vCOZ2}w)PU=gp8d%UQh z&JR0j-_}Cw{03@M&v8aqLLHMt@+GNL912vRDg(vTB%dZUyOHj#Jy=If%q9z~H-;OL zAg1&da=S|y`3&6o`d-&}xb6cINZjeV+mL%#?p{|ee>WoNafmd=h#ra2pVLPD-RHTG ze3mLtDXL}ZMSAnwu>1S4Olb=oF_&gQI~j1LI|ki32y`3sKagAf+BL6<>6O;hW8%>h zF^k4sqP;dbdJ0TTa zeJnZw{bkuv%y_>vd)iVSZKmhfcnS|$=~$vX;Or)un>GW%98FpaHMC8FYF3JDT^G)Edt?u8H`fDrozX1RM|Nl%{sq_E<07OYdK~(M1Ar1gA48y?w|I-~e z_Xg&&kVHCl_R-Cw-EH`qeAH2E0zH>T%i^dhqUESHS{6r55iLip(Xu#difH*i>H`bJ VXXq^nVvzs<002ovPDHLkV1hL=30(jH diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@2x.png deleted file mode 100644 index 052290d77ca484730f213b8761dca827f6ad4278..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7322 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-30x60-@3x.png deleted file mode 100644 index d5e1222d8da7428827b5c03c4271dd74c51bcb03..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14965 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 BvZw$6 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@1x.png deleted file mode 100644 index 8422413cc4269372bc3c17c65edea1fce7737b5f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3371 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-50x50-@3x.png deleted file mode 100644 index 651bd64a4644af8aa1c9f321847b337c8f2fb2ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25073 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≫FtD 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@1x.png deleted file mode 100644 index 4a8161e59d9a0d4dbf2386c4b5afb7b7bf0fa39c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3359 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@2x.png deleted file mode 100644 index 3b01170c03c75d0d3a7280220c80212869ae136a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11542 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 IM6N<$g7=!-dH?_b diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/rainbow-aspect.scaled.to.fill-60x30-@3x.png deleted file mode 100644 index 53e6ed71bb574532fc909fd28562735d8c4b647d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25124 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 XkA0A*D3+iu00000NkvXXu0mjf0OTt# diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-30x60-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-30x60-@1x.png deleted file mode 100644 index dfd8ecf3990b5661504c8c503f6927bb09f222e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4523 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@1x.png deleted file mode 100644 index 585aa67dfb62d0cce748e49c81822123127d4a9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5386 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-50x50-@2x.png deleted file mode 100644 index a2708979acd3ab4733e47156558c0669cad74aeb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16587 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 b{I>rGrTGgjOSgKS00000NkvXXu0mjfFoNO2 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@1x.png deleted file mode 100644 index 9e9d305c04fea48b7dd8f79e6546ce4554e013af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3842 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fill/unicorn-aspect.scaled.to.fill-60x30-@3x.png deleted file mode 100644 index 118a91ad145fd239048f045b18bf3369bbce7bbf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22806 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@1x.png deleted file mode 100644 index e88d606884b082c3070db28d1724861234985905..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 771 zcmV+e1N{7nP)Px#9BD*PQ~&?~0ssI2000009smFUC;$Ke9smFU9smFVdVgWhod5s-YPCWXMcD0jf9Hq80lx1;mgUZQw}J^e9*>ddIan*p zGMJ`$P2RR>tzep25Cp7D)OC%;V$qqFE_4@6%S4;I-|v~hNs@FXy;-;mCe4OnpePDv z@N&6i2LA#80RR6BqP2ej00BcuL_t*Tm9dJ0KoEvCqL3n`uONZcX(W}9PJ9+$!OC|? z7woRfL)crT5lg|wLPP{b|6~>no+Q~lj&L08!r<;Q%(wHoqM~UUo`tHa*lac^iUOkJ zd_F@_l&AHU3}v~oT*q-N%0*e0*zfm3@V8((eGmk~U`o7RuW%d(WNg{Qe9Z;hwvDdq zegr?APQL@MRx7O6YeZ3maU6xY%?%i&OEX%&Z`@Ux;hGBRdsBK&L zzR!iSx^wTZ<^*?Lm%*E+L7wNhTrSK+k|e0>8dX&x3`6L;4l?zs*0j&<_>p*rlS0q) zU|AM>1%_e3G))|jM;s0Z2IXCtkw{-!-ZJ`ir>#Smclfq=A2K;0Ae7<;g8DO#1);002ovPDHLkV1f=Z BU@HIs diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@2x.png deleted file mode 100644 index 4fe04a1739cb171d8ae360c145c93e7f4e86f942..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1659 zcmaKrdpO%!9>$YU^GiC3OG#7Gy4I9-%51SHoyx>SO5Li@xF$7Pjku+*CFsp%lu*rd z&ev!kI~XP_QggKL z^AzfhE3egmepq(&B81whmNZ@IkJnlniGAx|b(!%N<#ouGB| zB#6hN#8~Q&L%ZVV22PpI{!2*>>Wmsxw3Q-A3u_$0Q}8y1To90vrZ|Iqi8b3FGKh@nCCf>*c!?&cf6b)Rqaa zsi{dn*J&xxb#ikne*E}Eh`kBaS6_V<8_q||<#LsdU%%<6dimn$oSdAHXfm1H`sh*c zn>5?Xoh1abOD2<9<-$X6obvQ67@?Z}QTvn$qj#<>l&?m7BOai}{SaJkoH}AO(Nz+Lyna zpRL&Q@RhYm6`J_b&DnWR^P7^7AJY>O6NPiDLRE%1_Az`zA~}oyDQH8R_v+QF@3s$> zf5PMO#{T#NtrCe~UlR!478KGYAvGdS5W>WpS;Z^0#lTS(54LX&8Y(2qlsF6bg>hiE~K52tZiIU=-gH zt5k_2Sual2W#{JP^o)#{1UGyS;2T0T<9yA1&E>xwSX^8bB)Iqng*iKNCtkh;tSW%* zwheo4WWdU%2YUa0F4iXmy6;%^zJq(&YRJ>PS<=S~u4>1mjIOV*&qE)$G%gV;vN|J=+x6QEgZKC`rJI$<-}S6%hvMmf z#eC}WrX62|7*DxKHumT@9cS5<7^h!+;(WC6*HxK}nLzr2+!G+~m@8a3&{iP^y87VBL+)`$J0o^K3&OnJH?)JTYsJ@ zZSCwVK3^zP;vF&g<~L&ZCS}^~)zws2Y}vgvZQnmOR3(>cmp*)$R;d^@nWxyi`h99oOS2fLOy7xh_Ri_g?=rVHHxGc1gvdTnwc9w?{cbg@*Oeu44Lkoibs?p* zRIANxuV>tFaB%qIQ2FoC>B515fWY`7oMl3CvROyFp(DRpEdDCZ{UE+f5@;f>h) z`}>zpOaN6b`zrrlaE2>Fb%oyHe8z+)B`2FKkB*M^6V0G9TQ56yP0iH8LVS?*)?7w6 zV`e6%Erzu?-Y3visjmj|Mq0`kB|`^MMLs{vs7O}5Z#d%y5yHim^h#A3Va&s!rfc)7 zTiRnwF)-8!Rm?QQE>eYZ~o#fNWW-Wdt|W`#JqypJt(XJv7vXkrOAC zO1t@wT`)7o*AFFNng=OP!(vl)MmU$^HaR(IVF0wWslT;|hmJ~5 zo;-<=&aF1++%AkX=CGBWq~`rkJl=0kdo&Hi>&zOxj3Qj`JlMvswMmGun#{I|P9h}o zK7&vE0CXH8R!sy=%o9cJhedpX(QL+Wd-mOy#A4b)MgIRk5+wTOTHK#I$<>k5*Ig}8 g-|74h1ng9Wc`c4B%L_W~34U@2(c2&2gu8I_pX8|&M*si- diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-30x60-@3x.png deleted file mode 100644 index fc9f52f426d0aae237f4b84e18c3efc9ff39d183..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2420 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 bPThiFPJMif%`|-me4ii}M>kxheE{np*RO-l diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-50x50-@3x.png deleted file mode 100644 index ce2b8f7791f36af01289eb74deeab58ddfc0690b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2949 zcmd6pi9b~9AIE11*Wi+!FmE!R7AGyLu0NomdZY+A%tmUyS7BuY*&QIHYtpy zC{#1bQkP5&g(1f7lHKpj@0Gvd_dCz)dp_r!=e%Cu^L@_qe4clLt+lBTL>2-9frQM> zjO_u<;>2&fz!?F?j{^cG*qa)GYI@{mfE)fmGiL$_bWEQUV3RB@Ebvgy+t>yLC>Ic% z!xD%SzZAIU*$6n*Dhg<)xv?QC6gRMQEmZX_BKOm=ym3ZOppSaAG!SMEU2rq?>~TD5d{@$@WFz zU&58XY&Q=6{r6GRy_klriG72H5xu%LF6BKbtg7t@gG?r)oSn^cb8|fnG}^T{puYvi zLIea#nwt%_Hdj>&ii$q7*=qF-4VX+z)9ZK`A6Di!OGk2Doi@hBr8GNRs!nr$exAgd zq|(D<9m4b5R1S_*trRFr)mG0tZD(rGj>+|;oteP5m8f{UGHv#TBW71E7GP7FXKx=9W~F4dt0 z`T63>h>n2)M+-Bvlf-~0_shb{Lz*f2S?3?9IeB?i1Utu7I$BsjfLg*V>P)t`w=;m+ zL@pl1%Gg#@#iS)m(o_sHD^pU0U@#cu1WFnr-`Ul1q~uwx53T{X$!4)w^tABpfB!X} zn3%{YEL@06>?JS=E9{}w-7)fF;lr_spycAEBh-Ha%M56vGb7)HyJrOW()=+BQMX=+1YupzjW&nofdYUtNiOsk~%h$ zJL_dM)nW4<-o%7QNJyxEYs)}hUcR5jdQz_-C)fA&tE`Z)u!Fz9x|RsfA21lbxz7cI z@o_`-u4bvs>FVm9($+RYL``oFc6ISwy?V8OW=7Q?hx^>wc}Q1JuZ5s(7CyYQEKPaE zZ|RshJL`kNU>;9T-*k*1HnDVmczAfA938Ja>eQTshKQ5GeWbpHwSlW+M-}sJ$*bIBsBQ$m@|(>Uw@bLDOO~rIG2H3huT< z`}_MV$a`bjLkv6Lz4JH`e5LnlLD~87VPvPs8_db;WwL#T|pi{F%rAf{oW( zBw@OLyP%nQ=4TIbF|@EZf4WJBFqV-alKtYvi}N!xGvezVn_?AhZAE_9YHDi%gGmo{ z?FbM)zuAN{n%fF=P!V&ov9b9u08Al2W?5!K!|C=N&+6= zwMN)8_dU|S!k=^`A8%!CO&rc`co`NPY*JEEve0TNkWz#oNq{7wYY4e>NF-xQrQ!Sy zQE2%0G5Xw`pS{gRkP`@P?O}K0hBB~h-V>i25bxeC@9F6&?P&z5f#3>UR3Bg(ItwL) z^!(Z6bmfYwnp!vV`uI)h&qKTvt~cXhPI$Z)<4zqaaT@mw@C);5CqXfwL)+08i@mU3 zoVmQRqP?78ukcnEmNq6wTH{7f{nIfzT9}#h!J0Wb3XGhQvxoWCxz8ozq^@u9)kup{}Y5pQ*oNPqbgqs6vdPQ zl^vn7Cc-U$ys{wnsmuWwRZT%3Cwc+!7UXXhJY z=j54x!?v-g(9;`(TWUCr6; z7-&@-1I(KiW_>7%=2j?1lb9O&&;(YCNtC!fp*ZwTK)JCYzgB8`l_N@BIh-ZA@_h diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-60x30-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/apple-aspect.scaled.to.fit-60x30-@1x.png deleted file mode 100644 index 273a99bbfa854175be9d48ff86d27250b34ce714..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 696 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-30x60-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-30x60-@1x.png deleted file mode 100644 index 69243f21873fb868e3b0dccebb2dc0beef1e3e66..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1103 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@1x.png deleted file mode 100644 index bba089e0125a9978e4be00dcb6a909555bf6a8cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2055 zcmV+i2>ADjP)Px#9BD*PQ~&?~0ssI20000082|tPC;$Ke82|tP82|tT9=;k=3jhEE>PbXFRA>e4 zRc$DpVHiHg5i3G|Swtb5@Po|KCjKZtkoY4qmVB1^;n$h`;0FpR`C7Ev48sx;HLb>W zl&>}AE8iby^RYunCSTX?`{{T)XE*?`Z*0WB>p;pOE8XJ=Cf7rY0uv{p1A401nB* z!ov;53<(Lr+>G=2<8jS|c&COU|UdHC;rjU1TZcb#z-`^i*W@b{*C<3re zB$jAYJ$#6jkrBMiP%4!|1+`j@!$Z~$*xK4cXJ;q;{QUIx zUqDEoh^?(H1_lO1kfo(1tgo+Qc6L^j*v`(5SZAVreSJttNrAnC17a1XqLki7MPYDs z6ghc$u%aHw&(9Z`93CDXFPCogFE$!^WD3! zrlvlN86O`HR?*wrTUs-rALIxrR$5w$tgI~2ha8N_wYRq;oOk-in$bHh&(<4fV%de=YNCFZO5rL|zDtLH!U}$Iv0RaK9x3>qcbKP_A zb#!zfFfb7OmDG*gq(vaG9L#+27yC{QSI7 zh`)+qVPRMO7p_b0&xp9)xr0a43mH!`@usyE8yg# z&P}Nxk^KPx0RR6sYxed400W~*L_t*TluJlkQ4ofc7&VFyRMbjQToqJwD{fi^H!g}w zwMr3%V!9}zqAp5kC14g!!G#M62w5036tzuC6*WqXHK~XXP*7A<6v1ck5y28r{?0ix z<;Fy-F|<%}VL11m=_vu!NS4< zc6N67x5;FJQmI5;UERH6UX$~=d^ zTU(Kyo{mteu&{kXsM_p|aL>!TcaY%VV8q46AvHA>+1c5ssHi|oOABUZW_aMKsVU^< zvL|`pgR#t{Q z^3U3@v$GRzZEajc;n^$io*)cDtyW`fYz$Vb6|=LmJka6cA=cK`P*qihu&^+mkXa;# zkpOhRZ1V9FoSdBSq}VJhE-v!0co>tD zlSoKNa1-H=AnaD@@9*cyFD)&>VzKac(dl%&LP7^03E-Ppgdtj=64V!3Uz6%iY9ryp z+Ujb%3H`X;~G7H%=GB)_(Vlmz}H*@%dg9Cp3*3{H^oOSuQy0SKA6+AsXMR#{M7qp44cQN_B z`d`7fXKR(0mvb@MAezl)-k*X4Zq6Q(a|0zmK-I93y%7Xs^O2aC$Y<@k^VjXGR4Sgs z^71l=iHL}Bi|gf_CrDCK5_WfY`HYN@k0U21=SC+=0(nUgc3PiPn|TRx=e?kyAXHaZ zqqepdDJdzpIqw;mU4L0wSzztZ+uIA7Om?HAM+6{~i1D3Z-jVqO#0MXqAU-&Ol;-Cv zK@<>_FX#Pm#y^2W2}Div@xaT4;D;n{BaZ(-a>Wuz1;hTA09=s%0pUsiI|v37cmfIp l6bL8~P#~Z{K!N{8fuD@!?tv4ezkmP$002ovPDHLkV1i%D%Ao)N diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@2x.png deleted file mode 100644 index c409f9aeba1830c4c6e198bc3bc510b705054edb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5027 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-50x50-@3x.png deleted file mode 100644 index 984e9f357301ff511b46d3db42ca8a36458f1f4a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9977 zcmc(lg;yJ2(D!lI;KkkDonpl`Sb-wN8=$yLaCevB#oda#1#2m;#frNXDDdR>p7(Ef zo;~MgcJIl_&Svj^XXY~-t)=k+8{-`Y92^|BvXZ$;b^3j#lKq0k4q3YYv;Fu$R{a!Yl%8{I{vX2Fw4quzdnyAFstdm_<~U ze-HGAKg~r=(-Z89$R>*kXF>~!*}q;Bcjd&?9=0CaT$9Z~<}j#79*HpJ_~!{sqhtF- zG=f5hW;qhF%-%B;OsI{w-E~3mN8D*9=-aHetE4gnt= zB_mHmhld}9CjY;D*xv~bw$I}IfW?-Bm<)8WuntEwvTrF~pC*iPCScR8d z9p)R>a|AJ6IZc;Z^16>ZGntRl$)nO!QylQS1a!cfNXUYjnYz=*Xt6d>$F#NTx~}WH zqN&z8x?fjxI_&#rw;=lcCn)*hiZr9)FyBDA2W}h%e(^^^Wk%(1iXEbhvU}f^d@7Xq zwS6FgsRvO&H2yxLy2gP;Ne%*eHXd9Z($c`vt%{r_I?SrN zMg}cZe9NdPUIqDQ(|y23ZmsJ(qrM6LTfa_~YXQmGo@}UFItg3u@iW_!J{Q8C$JJ)1 zd<{i4D}p;wqhd5eEXFu|Hj`?Ix^{#JSdFcm<@vC8i zTDOB4&ne!qWu{yZV098uY1efOz|`4ik+|dri_7m$EtP7fcji`_P(<@>L>iL9y!^7S z-!9SGQ@=`C{pGZF#lfqI$))(%J7Zlnz>b(_2Aj8`@7;yXbdFJhQ~>CFz2p9*zHjw< ze^TyoH&Oayxki3X#2}jyoxuVlaaBd#HG9so;3h??sgRCEWD&xwZXHvxkp7CPPefE` zSWc<48Y>MUzy)P1nPImpRL@NHVjlQtuxwGc)3)lsPA=?}=ko;nS&%_lCXIN4z$}=*R>vd3ug)e3#Lt~^=p3wUTpRtg7xb^Q9{*%sQgYF zL3d?4C`U+g^~~U#Co9wYpo3N3oGIj-@$1y8oR|6?Qzf>L(t=o0c0DeGZ0_j0Mkp96 znf~^nqr^4y*vE5Uk$i>I*EXrHKJ#|x2r z->iv$9EVa2Nv_dlceH3Xh_yptC0+nbrPE)?h1ub4o3Z-TK5nF{=xb|AKw(<&exXY53w})OL=M>6b-;&L5i?W6hVqqIkExkD-vKuGk**?LRbxG75k|2IAV%%t{K#E7%_xLAQ zH-a8AKFQq&QqL8d7W*!m!iJqDO$1Ma0x_~^)BWaKN~riGpj^i4+m}CYP)Do~>w8zb z@rt@kB)nnuc`U#xHiIMG>n_(i1?gyb&`|2_-_6jViZB7217FWZs)pD^;PYAg@0Xvr z#P{2g)K0lhot2dSmjj-A$sbl{J`#pe-*0%CtvR-DG%>zsk1*7fesS+703=I2pYnem z`S<#KQTaZBjDHk%g#{pN`Sb2kx(U~W`I%F~N|isz0GCKR(8AP0mu|W^>r$QRn1=Wr z(C@7FXPYb0oLxNa)b}hI=ni1?CKOjHOV9HC56`pJl@|M7vR;QIrJWbO&sg-Y;Uu3L zU}v4jgM;0;@__3J=IxHamnZ8lQc#VWv$nOFkL^yB!$

W>jJ^Ep!2IFAqgG=c}Ez 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 Eg811Ing9R* diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@2x.png deleted file mode 100644 index dab41308318e5b04b8f5bb6834742553eba9e9ab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5143 zcmV+y6zJ=TP)Px#32;bRa{vGqB>(^xB>_oNB=7(L032yVPgDQ^00IC20000003HAU04M+e03HAU z03HAU3ISU}zTyA?3C&4FK~#7F>{@qljp-WCNl_AnSloozVD&Oa%+;`Yjz0NQ? zJC`*VVU!qF-%*#%shGD z@B7~Vd!KsZ;$k}qnttV+a|X5}XJgB+;N~1~iG|bYvjy1TVh{tsVd%rAPX36)w08!xY zptikmDY~OR2mM0;_TMPcWIQ{Yy}Z1nN|h>7u3R}Wq|Tw0nV2j0156-VK`s9mV8laW z^*~yx6I`n2pV80L;3h$?204Uh0?zlz;N$of#KR{$31l}odHwqJlZzKGNfaIEN8kxyPh5(z=obf029Qa3PC`8a zoC3ZA_BVRlj!Sa4Zr$X=hYw;-lO|0{cW*XauABpKfdT~_*@(ry1p(B4fJ4dC1DRf( z>iZ|O_XBX-0N^w5C2%Qq2ybqyR;^_I{P_|R5+X&46meujpZWr%{y2Ee=B5X#_MVqu3&8pg zeU^g%4gROEpA2mIy-c1MD&ae$B>L)AiA_q9#1}6lVr!&$1LQw#eC7eB*4naVi>z9; zN@mQMp;Ytx_wNZZj_d)rXwjnL?d>h|=FL-^61MkR}PwKn7%MU;PD6tP7s5NMRK7RbDRnwHihYxpP zjV>~9;6Qnc3v~bfeTj&OkRwNqNL*Z;L`6l(!i5Xfd~~$*7sAf^Uk`BM!iDAN(W7$i z+&Ssfr;o(M#3*3*?%iwRWW0R&QYKHHENpM*rc`+G8-Pm>;D?afJNO>v=_T{AhIzmI zBAt5lkk_wYrvWje7jx&%wR>&cOF%$?EMLA{dCPnD?2*lzH%okcym2Z5tvOul*RRji z9I0o9!ntI1F>Twn6-_E`+_<4Yr2V}L`(}wwpFXX^hY}@9SRET%QEl=;djA8C$FpW* zSu!(4ulRt6hb-#SMGhT5E-7!`NWcF5g{Hw?+O%nt&1>S?Dpjf^UinWr3xUb!ORfNOnTv+2ed@<=FQbwpFe+Y9RBIk zr=oeu+DqEuJ9qBL&6_ucTJ6e}E6TyLv^P87p}BL(;(=od<9pubH&Bau+PZbCvPb%N ztUr79Ozz#gr?NYA!pvNux%Mk`*gfsLQ5(XL;em1u0ahkZ~OD(-q-a*RLz- zJ#*%avQ4*c-I7J9kPCI7&X>d?UW@9teB>w6|*ztNy-tvHXFtXfr!@ z>?oc9T)(ys9XcqfnL2feVF>ht9Y*ubaD+`u1BXl7Tl~wrp9U7f|Av1T^tXR8_t_IuT2{x z*h~!U-o4u-tk6KGbHZ#`vu4fIcm~)(O0>0gQAKJ*``DyOlMMSDK73d;XN)>#%oycA zX#MqNa&oe4*swvV;DShVT3bgJe8-T^CA&7EzsXpJU41K8t}KHF4N{UvTTKa>J$ts& z2vmcCfq@bf6r?1}+Sv5YNtz920)~Aot&f-T{Q2{$J)JYoZB9(sEQVRA36I^{+*$k` z!#kJ$@(oel*Q!-ZdDR4*={_b;S|W|OX3ZL<*8Tnc(_I%;E<-c6tzW;svc<7TQKt7Z z9m6zUAQIIwy?yi6wG~a8|Y$*-tj&$atMT;~%Raiq$m~`O40cqX3wQ|Pv<7aan z(>s^aJxENGrQh-)pM3JO*4Pz&YhLVtIzkAFJE3=40^(A z*RB<|p*HA(%-6DI%M`#`TJbnCVRW=Owyl0dR-c2}_|8SwZ16M(nw8%fJMP-GOQ>F} zR;{Y+AJcsr9XobRg;66$j8Kjd^S?|m&$Q88Zh2lufnv0RR7O96WOX013NEL_t*TS_y29YZmTb zTj>zB%%B*=c8Mj3B_c#g&^vB#5tA!nZbT|Y)F5;O5jyl@hKkTyJI21N7Io2!D|WF} zYo~P4eX%cRp6Au?&)2_y+wb@N?O${6NlxGQ`@VNO@AIDXo^$@Xxfv%xQ zH&HUPbL7`w&q?5<$r8R{gPc5hQkpbrBEiAI^5Me=(dg5sPjc$iDcQe&zj}Y|+BM0^ z$CmBrym;|K#*Q89QW+iCW8=sfZ0T~r|AYe;(6OVeS-4RAMvoRB zi$(tZ-FFJ8HEY&LqehM7`Sa&R04(bvB_%~#wrnX!j~-P`7cX8cJ$v?)DpjhuT;4Lk zHVB*XW-b@l7l5V!C&a=A+Y+Bk9sTe?ipYSpUApWC*T zzq?x`45h$!mAiNE%83&vWarMEa`x<5 zS-*b0EM2-(mMmE!)L3f&$B!Q+FE39nUAk06=^s3JAfch5(z|zWm&yNs4REt&&1B=o zjS>nlegdFp+$?exJRJ2j@Oc1yC;pBC>k~?=k157{&(uffwq+h>&(hlZ( z*sx*Z@9!_2J9k#^=}fh1)k=ZXzkh$ZdiAOm$0tvoNRJ*pWYC~NvS`sFbwJ*{d1L*~ z3QhgRix(vzAi&k;+c7KXUU6dr)&HPMjz;YSgfftDl4QPMtc*g$ox{4}wPGfzr40^z;-z zKR-EgO!w}Rg3w8$?Cfk=xpJj+>C&adH8Z55wrj*g;RS1e zEi1;=t5=t9-MY!Tb?YP}BSY(AEt8XzW%cUSO7nRr?2Vzlqd(CW{zUus?MrQ^wJ)W_ zC+Cvc1zG!7ty)#Ztv)_J3JBhN)Dn8RdOCmpy!d|mt^C2_E}NjaLD1SH@Kk`1jOV|g z9t)1gb1dRvJ@KFrM4IX5&6_Kxb)e?Xn>SCMJ$t5aE;DD&w5|`^R${#)!ZbQ?wx*kd z@!gdxSCsSC9fz(?ojTTWYSyeN0|yS2W5U+PrqYITu|!6O_6z zg2?!Cz<>eD%uSduLFUe#E1NfOmNRG0DCdV^3I*N(aP;>mot|marb*qpb=4e=0OBEV zBtSim&7Td;&Bn72>e1jV@Dac7<+TnnhC!*Rsmei{F=K|hQv(A773kE&q@*Nk>#VFS zbuT+2Bjuupt|!LeVPRpib?a8Se*L;~=GcY@nAZU<#^uYGW!tuGGJE!H^<9(Ek+}=o zqHr#i3Mi(sey66;lciUyC*E~D^ftY(|@ zWoBkdOiYYANYqef*=S7&Di7AOWy@5kMlI%*^d<8at_Ov4$qFEbEw$dOS1)yvLqb9n zkPKZ`ty-nbF~gTFTehf#1d|II5ont1;$vIH17KbNzu=tjjplk5ELdP> zUgx5#7pSBQQCo*?sf9%c4jd4A@J8l0(uVOhWzrL^6dgEb&v@_0#l=ZfRFrBm zZrnICb7M))r7{=8&C-(glz>?znjxBHnkEXQX%~fTir5xQG{k)YUMku$O}QA%`g81uG#(<2Xr^hw_)8V#A2n)}GuD9RJC_VEYVzdCnrw3V^l9Zx z(4(d&IcLrsHIBn47x!*0n6#e(+EMUd0VcKi3F=uW|E5fHQ4NOp#n$ZbymrR0H?HkF z&O@0s;!lu__vu;Nw*A6qbaO5lUKsPY8c~}E4<4+7f5y38yLL4^4wi4z)*}DHyNlpI zVgsYVX#kf12cTZOy>0)BeP*&JC@4sUi2T*6Z{NNuv*x6AIu~6>7DYk$^V+_B`;>56 zmWtt$*}E?YnjDH>l-vO7=YIgOz-(J&BS5zlI}jBMs3Uvigto2&nEBPALx-x^mO(yK zhNOk~R~xf}^#+LFz*I9l^1?g}n=)XYkK?)e?*N+u{fohA)25C3E!ITd)$ZJ00Qwhz z%CseuAHQp`DSRuRxvL2c<~^JTaOrf>Y@4+ZUr~Q^Xxiyr={Bz#?&2tb%75YUs)SBf zIUg1~5Se>b=>T@e-FpbYhVbq!%wU!CrdFmsFo&j{-jzwX&uam={{guE%IW&zAI>YE zTs*L4vmJ=cy)rUs#kK*!^TC}9y=nuSQnBkR8zeL9F^8s|-ewk4E`6CTY6VBj^S9?< zaX+0-MF3K1`2cb`7rS{~H0=HJe)*4wWH*{|6HDjzXXcO_2Zq002ovPDHLk FV1il}1~LEu diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/pirate-aspect.scaled.to.fit-60x30-@3x.png deleted file mode 100644 index abb66ebc412a9ca7e6e65598c354b97caff26c99..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10154 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 L6vV4U4FmrVi(0S_ diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@1x.png deleted file mode 100644 index 0727acee3f9d3cdf9dcc8e60361fb5834041cbe5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1151 zcmV-_1c3XAP)Px#9BD*PQ~&?~0ssI2000009smFUC;$Ke9smFU9smFWYd-wEtN;K4H%UZ6R9Fe@ zkzYuYQ5eQ&SXSPryNJTDY=#zLnvt;!y{KdfmSBa8ZVC#+uponwFuDjLx)LHvX-E`A zXcQlkW7864E}ha6nYu-PR916iy6?}gGX=@i?WW7`h3A|X&ck`m`#T1MUOEAtfKEUs zpcBvu=mc~EI)VRA0FV+(lQiK`gyi@>r%BO??^0xBOo|K(iC&4y3+Hi9+?)8m#dCu& zB`rA^LYBHv@7;l`m1woaXqWRAb*UI?D^Tw?BERiKo(d+tFK$Q}tc0T|tu{D+7_O!B zt2K>*?hU+lXY$mYMT=0oJAL zf`-j_dNy*yUBsc64VZ2{C%48y;fa0@RP>X3&d#3OHq5W;X&T(iXm={qZvyLa2Dqf{@I^fK1LN8Kj^z0-1VKc?0UalJh*mh0gESbP%nH2KlD4E2T?4d;$gV(w6qw11BUg@IY#XZgr82dHwDBexk)PnJP+e#!g?00960?zgPr0005b zNklQb+a)dI9N(cgNQ$ZUSF^jNvZ6w3mgw--IS_FZ(NGU5? zs6-%2!qtoA+9qLGbJ^5F3rt5ch1w9NfDQmvpgT1Kh8Pd`+d(VSd9Fm zCvYJ^$IM=~HOF|m-opD}FI|_t=Et%OZb-1{^m}g4)25)!-+JjvD(m?&; z1mlM+SXioUIbGSiT%L~&7CXb!bWQJq);0J;&vZ#3d_DQsuky2Bu;*b1m#XH;^sc7c zmF3yJKWN=L&ynFa{62wq{%i@iP(|f)O+=$XYA(OvLG>KU`iEm>ivK&QxXay*->B>C zWA(3uFYrq;oU8dNfk$jv0Q zzdN`QYvkauuf&dP;gSoL5ia;1pTl$1pPFDWzFYeoLQTeX#~DZR>9L$}q diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@2x.png deleted file mode 100644 index 2b3c3b6061c3fc9f98efe16eac0cd783a9ce7abc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3676 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 NX{zd~R4Unp{tvv){0{&C diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-30x60-@3x.png deleted file mode 100644 index 71762340ccd14831204bce84745ff64e25407e5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7442 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 F{|7ANorC}Y diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@1x.png deleted file mode 100644 index 4d2344f85a62bd62e5187b3f7dab8234d4812f97..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2502 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 Qy8r+H07*qoM6N<$g4@5n&;S4c diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@2x.png deleted file mode 100644 index 02e2b16de10d41304a88b0f2e7acafad8db8037b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8592 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-50x50-@3x.png deleted file mode 100644 index eb0cb68985900f604915de36744a656d917f5f1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18253 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@1x.png deleted file mode 100644 index 21eac07cb6fc44e2cf3c5ab135735c3720e6ea68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3249 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%0DTCQXO4yH3^EMhM^l2zJ!^A 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 U!0=oUwEzGB07*qoM6N<$f@{f;-~a#s diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/rainbow-aspect.scaled.to.fit-60x30-@3x.png deleted file mode 100644 index 00f8115adaaec0af6fa84a0a769c946df4ceef8d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 23958 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@2x.png deleted file mode 100644 index 5db17ddd91522647b3522cbc0f14b7b277a1d819..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7295 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-30x60-@3x.png deleted file mode 100644 index 259bf54665d6c6c5343ce9122654ffcd94f8cd5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14330 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@1x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@1x.png deleted file mode 100644 index 89fc33064c7c023992c0321f577e874a4c2d6cfa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5465 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 P00000NkvXXu0mjfmY#cq diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@2x.png deleted file mode 100644 index 92050f017a83e083ff2ed947312e2e25d2488b9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15402 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@3x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-50x50-@3x.png deleted file mode 100644 index fff4802eb388be1b86868beecb75543f897d8469..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31002 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-60x30-@2x.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Aspect Scaled to Fit/unicorn-aspect.scaled.to.fit-60x30-@2x.png deleted file mode 100644 index 1df94bef65cc253b78a1886379469485049d3ee8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7420 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/apple-circle.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/apple-circle.png deleted file mode 100644 index 8b82b5cb6b13844cb135dd72f28b177fc7c898e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6477 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 diff --git a/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/pirate-circle.png b/Carthage/Checkouts/AlamofireImage/Tests/Resources/Modified Images/Circle/pirate-circle.png deleted file mode 100644 index e19c028b4ce10d6c1bb1f49294d8b63936f2ee0c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26506 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