Skip to content

Commit

Permalink
Get rid of the dependency between TestTools and TestHelpers (#2897)
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple authored Nov 21, 2023
1 parent 5d81c8b commit 530910b
Show file tree
Hide file tree
Showing 77 changed files with 5,563 additions and 105 deletions.
2 changes: 2 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ excluded:
- Pods
- .build
- spm_cache
- vendor/bundle
- .ruby-lsp

disabled_rules:
- large_tuple
Expand Down
259 changes: 194 additions & 65 deletions StreamChat.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright © 2022 Stream.io Inc. All rights reserved.
// Copyright © 2023 Stream.io Inc. All rights reserved.
//

import Foundation
Expand Down
2 changes: 1 addition & 1 deletion TestTools/StreamChatTestMockServer/Extensions/String.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright © 2022 Stream.io Inc. All rights reserved.
// Copyright © 2023 Stream.io Inc. All rights reserved.
//

import XCTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Copyright © 2023 Stream.io Inc. All rights reserved.
//

import Swifter
import Foundation

public extension HttpServer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import XCTest

public extension StreamMockServer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import Foundation

@testable import StreamChat
import Swifter
import XCTest

// MARK: - Config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import XCTest

public let channelKey = ChannelCodingKeys.self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import XCTest

public let eventKey = EventPayload.CodingKeys.self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Copyright © 2023 Stream.io Inc. All rights reserved.
//

import Swifter

public extension StreamMockServer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import XCTest

public let messageKey = MessagePayloadsCodingKeys.self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import XCTest

public let reactionKey = MessageReactionPayload.CodingKeys.self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import Foundation
import XCTest

Expand Down
1 change: 0 additions & 1 deletion TestTools/StreamChatTestMockServer/MockServer/User.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter

public let userKey = UserPayloadsCodingKeys.self

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

@testable import StreamChat
import Foundation
import Swifter

public extension StreamMockServer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

@testable import StreamChat
import Swifter
import XCTest

public class ParticipantRobot {
Expand Down
205 changes: 205 additions & 0 deletions TestTools/StreamChatTestMockServer/Swifter/DemoServer.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
//
// DemoServer.swift
// Swifter
//
// Copyright (c) 2014-2016 Damian Kołakowski. All rights reserved.
//

import Foundation

// swiftlint:disable function_body_length
public func demoServer(_ publicDir: String) -> HttpServer {

print(publicDir)

let server = HttpServer()

server["/public/:path"] = shareFilesFromDirectory(publicDir)

server["/files/:path"] = directoryBrowser("/")

server["/"] = scopes {
html {
body {
ul(server.routes) { service in
li {
a { href = service; inner = service }
}
}
}
}
}

server["/magic"] = { .ok(.htmlBody("You asked for " + $0.path), ["XXX-Custom-Header": "value"]) }

server["/test/:param1/:param2"] = { request in
scopes {
html {
body {
h3 { inner = "Address: \(request.address ?? "unknown")" }
h3 { inner = "Url: \(request.path)" }
h3 { inner = "Method: \(request.method)" }

h3 { inner = "Query:" }

table(request.queryParams) { param in
tr {
td { inner = param.0 }
td { inner = param.1 }
}
}

h3 { inner = "Headers:" }

table(request.headers) { header in
tr {
td { inner = header.0 }
td { inner = header.1 }
}
}

h3 { inner = "Route params:" }

table(request.params) { param in
tr {
td { inner = param.0 }
td { inner = param.1 }
}
}
}
}
}(request)
}

server.GET["/upload"] = scopes {
html {
body {
form {
method = "POST"
action = "/upload"
enctype = "multipart/form-data"

input { name = "my_file1"; type = "file" }
input { name = "my_file2"; type = "file" }
input { name = "my_file3"; type = "file" }

button {
type = "submit"
inner = "Upload"
}
}
}
}
}

server.POST["/upload"] = { request in
var response = ""
for multipart in request.parseMultiPartFormData() {
guard let name = multipart.name, let fileName = multipart.fileName else { continue }
response += "Name: \(name) File name: \(fileName) Size: \(multipart.body.count)<br>"
}
return HttpResponse.ok(.htmlBody(response), ["XXX-Custom-Header": "value"])
}

server.GET["/login"] = scopes {
html {
head {
script { src = "http://cdn.staticfile.org/jquery/2.1.4/jquery.min.js" }
stylesheet { href = "http://cdn.staticfile.org/twitter-bootstrap/3.3.0/css/bootstrap.min.css" }
}
body {
h3 { inner = "Sign In" }

form {
method = "POST"
action = "/login"

fieldset {
input { placeholder = "E-mail"; name = "email"; type = "email"; autofocus = "" }
input { placeholder = "Password"; name = "password"; type = "password"; autofocus = "" }
a {
href = "/login"
button {
type = "submit"
inner = "Login"
}
}
}

}
javascript {
src = "http://cdn.staticfile.org/twitter-bootstrap/3.3.0/js/bootstrap.min.js"
}
}
}
}

server.POST["/login"] = { request in
let formFields = request.parseUrlencodedForm()
return HttpResponse.ok(.htmlBody(formFields.map({ "\($0.0) = \($0.1)" }).joined(separator: "<br>")), ["XXX-Custom-Header": "value"])
}

server["/demo"] = scopes {
html {
body {
center {
h2 { inner = "Hello Swift" }
img { src = "https://devimages.apple.com.edgekey.net/swift/images/swift-hero_2x.png" }
}
}
}
}

server["/raw"] = { _ in
return HttpResponse.raw(200, "OK", ["XXX-Custom-Header": "value"], { try $0.write([UInt8]("test".utf8)) })
}

server["/redirect/permanently"] = { _ in
return .movedPermanently("http://www.google.com")
}

server["/redirect/temporarily"] = { _ in
return .movedTemporarily("http://www.google.com")
}

server["/long"] = { _ in
var longResponse = ""
for index in 0..<1000 { longResponse += "(\(index)),->" }
return .ok(.htmlBody(longResponse), ["XXX-Custom-Header": "value"])
}

server["/wildcard/*/test/*/:param"] = { request in
return .ok(.htmlBody(request.path), ["XXX-Custom-Header": "value"])
}

server["/stream"] = { _ in
return HttpResponse.raw(200, "OK", nil, { writer in
for index in 0...100 {
try writer.write([UInt8]("[chunk \(index)]".utf8))
}
})
}

server["/websocket-echo"] = websocket(text: { (session, text) in
session.writeText(text)
}, binary: { (session, binary) in
session.writeBinary(binary)
}, pong: { (_, _) in
// Got a pong frame
}, connected: { _ in
// New client connected
}, disconnected: { _ in
// Client disconnected
})

server.notFoundHandler = { _ in
return .movedPermanently("https://github.com/404")
}

server.middleware.append { request in
print("Middleware: \(request.address ?? "unknown address") -> \(request.method) -> \(request.path)")
return nil
}

return server
}
16 changes: 16 additions & 0 deletions TestTools/StreamChatTestMockServer/Swifter/Errno.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// Errno.swift
// Swifter
//
// Copyright © 2016 Damian Kołakowski. All rights reserved.
//

import Foundation

public class Errno {

public class func description() -> String {
// https://forums.developer.apple.com/thread/113919
return String(cString: strerror(errno))
}
}
Loading

0 comments on commit 530910b

Please sign in to comment.