This is a small tool (SimctlCLI) and library (Simctl), written in Swift, to automate xcrun simctl
commands for Simulator in unit and UI tests.
It enables, among other things, reliable fully automated testing of Push Notifications with dynamic content, driven by a UI Test you control.
Swift Simctl is made of two parts. SimctlCLI
and Simctl
.
Simctl
is a Swift library that can be added to your project's test bundles.
It provides an interface to commands that are otherwise only available via xcrun simctl
from within your test code.
To enable calling these commands Simctl
communicates over a local network connection to SimctlCLI
.
SimctlCLI
is a small command line tool that starts a local server, listens to requests from Simctl
(the client library) and executes xcrun simctl
commands.
The following commands will be available in code in your (test) targets:
For specific usage please refer to the example projects Swift Simctl Package Example
These instructions will get your copy of the project up and running on your machine.
To use Swift Simctl in your Xcode project add the package:
SwiftSimctl
or find https://github.com/ctreffs/SwiftSimctl.git
SwiftSimctl
package > Next
import Simctl
to access the library in your (test) target.Make sure that for the duration of your test run SimctlCLI
runs on your host machine.
To automate that with Xcode itself use the following snippets as pre and post action of your test target.
Your Scheme
> Test > Pre-Actions > Run Script#!/bin/bash
killall SimctlCLI # cleaning up hanging servers
set -e # fail fast
# start the server non-blocking from the checked out package
${BUILD_ROOT}/../../SourcePackages/checkouts/SwiftSimctl/bin/SimctlCLI start-server > /dev/null 2>&1 &
Your Scheme
> Test > Post-Actions > Run Script#!/bin/bash
set -e
killall SimctlCLI
Please refer to the example project for an in depth code example https://github.com/ctreffs/SwiftSimctlExample
The default port used by the server is 8080
.
If you need to use another port you need to provide it via the --port
flag when calling SimctlCLI
and adjust
the client port accordingly when setting up your test in code.
Use SimctlCLI --help
to get help regarding this and other server configuration settings.
Swift Simctl would not be possible without these awesome libraries:
If you want to contribute please see the CONTRIBUTION GUIDE first.
Before commiting code please ensure to run:
make precommit
This project is currently maintained by @ctreffs.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details.
link |
Stars: 57 |
Last commit: 3 weeks ago |
Full Changelog: https://github.com/ctreffs/SwiftSimctl/compare/0.4.1...0.4.2
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics