mazyod
Passionate Developer! Loves games, Elixir, and cats.
The AIO UI testing platform
let path = "/mock-server/api/path"
pylot.get(path)
// returns mock response
let mount = "/mock-server-api/mount"
let query = "group=foo"
pylot.post("\(mount)?\(query)")
// group "foo" from postman is now mounted
let unmount = "/mock-server-api/unmount"
pylot.post("\(unmount)?\(query)")
// group "foo" from postman is now unmounted
pylot.post(unmount)
// all groups are now unmounted
let json = {
'request': {
'path': 'test-api/somePath',
'method': 'GET',
'headers': {},
'body': '{"foo":"bar"}'
},
'response': {
'headers': {
'Content-Length': '13',
'Content-Type': 'application/json'
},
'body': '{"foo":"bar"}',
'code': 200
}
}
pylot.post("/postman-dump", body: json)
# pylot will write it to disk:
# captured.postman_collection.json
A logger that writes to the network
var postRequest = URLRequest(url: self.url)
postRequest.httpMethod = "POST"
postRequest.httpBody = data
postRequest.setValue("\(data.count)", forHTTPHeaderField: "Content-Length")
postRequest.setValue("application/json", forHTTPHeaderField: "Content-Type")
URLSession.shared.dataTask(with: postRequest).resume()
Rewriting URLs in a URL Builder
let baseURL: BaseURL
switch Network.shared.buildConfig {
case var .mock(mockBase):
mockBase.path.append(api.id)
baseURL = mockBase
default:
baseURL = api.baseUrls[baseUrlIndex]
}
One possibility for the future is using a proxy to capture/reroute requests
UI Test side integration
final class Pylot {
// MARK: methods
func enforceServerAvailability() {
// ...
}
func uploadResult(_ result: ResultDTO, path: String) {
// ...
}
func uploadScreenshot(_ screenshot: Data, path: String, index: Int) {
// ...
}
}
// this is critical ATM .. might make it flexible in the future
private var uploadPath: String {
return "\(featureName)/\(variantName)/\(environmentName)"
}
// ui test launch sequence...
Pylot.shared.enforceServerAvailability()
// a sample test class code
func testExistingUserLogin() {
// ...
pylot.mount(group: "foo")
// ...
let tablesQuery = app.tables
tablesQuery.buttons["Button - Select Country"].tap()
addScreenshot(app)
// ...
}
// tearDown
override func tearDown() {
let testResult = ResultDTO(success: testRun!.failureCount == 0)
pylot.uploadResult(testResult, path: uploadPath)
pylot.unmount()
super.tearDown()
}
Pushing the automation limits
#!/bin/sh
function perform_tests () {
xcodebuild \
-workspace "$WORKSPACE" \
-scheme "CareemUITests" \
-configuration "Debug" \
-destination "platform=iOS Simulator,name=$1" \
TEST_LANG="$2" \
SWIFT_OPTIMIZATION_LEVEL="-Owholemodule" \
OTHER_SWIFT_FLAGS='$(inherited) -Onone' \
test | xcpretty -c
}
perform_tests "iPhone SE" "en"
perform_tests "iPhone SE" "ar"
# perform_tests "iPhone X" "en"
# perform_tests "iPhone X" "ar"
By mazyod
Pylot is a webserver that represents our UI testing platform.