summaryrefslogtreecommitdiff
path: root/platform/ios/uitest/OHHTTPStubs/Examples/Swift/MainViewController.swift
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/uitest/OHHTTPStubs/Examples/Swift/MainViewController.swift')
m---------platform/ios/uitest/OHHTTPStubs0
-rw-r--r--platform/ios/uitest/OHHTTPStubs/Examples/Swift/MainViewController.swift131
2 files changed, 0 insertions, 131 deletions
diff --git a/platform/ios/uitest/OHHTTPStubs b/platform/ios/uitest/OHHTTPStubs
new file mode 160000
+Subproject deed01a1592210a4c37f3f5c5f2b32fe0e41c60
diff --git a/platform/ios/uitest/OHHTTPStubs/Examples/Swift/MainViewController.swift b/platform/ios/uitest/OHHTTPStubs/Examples/Swift/MainViewController.swift
deleted file mode 100644
index 9133e20d46..0000000000
--- a/platform/ios/uitest/OHHTTPStubs/Examples/Swift/MainViewController.swift
+++ /dev/null
@@ -1,131 +0,0 @@
-//
-// ViewController.swift
-// OHHTTPStubsDemo
-//
-// Created by Olivier Halligon on 18/04/2015.
-// Copyright (c) 2015 AliSoftware. All rights reserved.
-//
-
-import UIKit
-import OHHTTPStubs
-
-class MainViewController: UIViewController {
-
- ////////////////////////////////////////////////////////////////////////////////
- // MARK: - Outlets
-
- @IBOutlet var delaySwitch: UISwitch!
- @IBOutlet var textView: UITextView!
- @IBOutlet var installTextStubSwitch: UISwitch!
- @IBOutlet var imageView: UIImageView!
- @IBOutlet var installImageStubSwitch: UISwitch!
-
- ////////////////////////////////////////////////////////////////////////////////
- // MARK: - Init & Dealloc
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
- installTextStub(self.installTextStubSwitch)
- installImageStub(self.installImageStubSwitch)
- OHHTTPStubs.onStubActivation { (request: NSURLRequest!, stub: OHHTTPStubsDescriptor!) in
- print("[OHHTTPStubs] Request to \(request.URL!) has been stubbed with \(stub.name)")
- }
- }
-
- ////////////////////////////////////////////////////////////////////////////////
- // MARK: - Global stubs activation
-
- @IBAction func toggleStubs(sender: UISwitch) {
- OHHTTPStubs.setEnabled(sender.on)
- self.delaySwitch.enabled = sender.on
- self.installTextStubSwitch.enabled = sender.on
- self.installImageStubSwitch.enabled = sender.on
-
- let state = sender.on ? "and enabled" : "but disabled"
- print("Installed (\(state)) stubs: \(OHHTTPStubs.allStubs)")
- }
-
-
-
- ////////////////////////////////////////////////////////////////////////////////
- // MARK: - Text Download and Stub
-
-
- @IBAction func downloadText(sender: UIButton) {
- sender.enabled = false
- self.textView.text = nil
-
- let urlString = "http://www.opensource.apple.com/source/Git/Git-26/src/git-htmldocs/git-commit.txt?txt"
- let req = NSURLRequest(URL: NSURL(string: urlString)!)
-
- NSURLConnection.sendAsynchronousRequest(req, queue: NSOperationQueue.mainQueue()) { (_, data, _) in
- sender.enabled = true
- if let receivedData = data, receivedText = NSString(data: receivedData, encoding: NSASCIIStringEncoding) {
- self.textView.text = receivedText as String
- }
- }
- }
-
- weak var textStub: OHHTTPStubsDescriptor?
- @IBAction func installTextStub(sender: UISwitch) {
- if sender.on {
- // Install
-
- textStub = stub(isExtension("txt")) { _ in
- let stubPath = OHPathForFile("stub.txt", self.dynamicType)
- return fixture(stubPath!, headers: ["Content-Type":"text/plain"])
- .requestTime(self.delaySwitch.on ? 2.0 : 0.0, responseTime:OHHTTPStubsDownloadSpeedWifi)
- }
- textStub?.name = "Text stub"
- } else {
- // Uninstall
- OHHTTPStubs.removeStub(textStub!)
- }
- }
-
-
- ////////////////////////////////////////////////////////////////////////////////
- // MARK: - Image Download and Stub
-
- @IBAction func downloadImage(sender: UIButton) {
- sender.enabled = false
- self.imageView.image = nil
-
- let urlString = "http://images.apple.com/support/assets/images/products/iphone/hero_iphone4-5_wide.png"
- let req = NSURLRequest(URL: NSURL(string: urlString)!)
-
- NSURLConnection.sendAsynchronousRequest(req, queue: NSOperationQueue.mainQueue()) { (_, data, _) in
- sender.enabled = true
- if let receivedData = data {
- self.imageView.image = UIImage(data: receivedData)
- }
- }
- }
-
- weak var imageStub: OHHTTPStubsDescriptor?
- @IBAction func installImageStub(sender: UISwitch) {
- if sender.on {
- // Install
-
- imageStub = stub(isExtension("png") || isExtension("jpg") || isExtension("gif")) { _ in
- let stubPath = OHPathForFile("stub.jpg", self.dynamicType)
- return fixture(stubPath!, headers: ["Content-Type":"image/jpeg"])
- .requestTime(self.delaySwitch.on ? 2.0 : 0.0, responseTime: OHHTTPStubsDownloadSpeedWifi)
- }
- imageStub?.name = "Image stub"
- } else {
- // Uninstall
- OHHTTPStubs.removeStub(imageStub!)
- }
- }
-
- ////////////////////////////////////////////////////////////////////////////////
- // MARK: - Cleaning
-
- @IBAction func clearResults() {
- self.textView.text = ""
- self.imageView.image = nil
- }
-
-}