Tal Zion [email protected]
platform :ios, '10.0'
pod 'StanwoodUITestingCore', :configurations => ['Debug']
Note: Make sure StanwoodUITestingCore is only added to Debug configurations.
$ pod update StanwoodCore
#if DEBUG
import StanwoodUITestingCore
#endif
#if DEBUG
private var listener: UITestingCoreListener!
#endif
#if DEBUG
listener = UITestingCoreListener()
// Auth anonymously
// Note: Make sure this option is enabled on Firebsae, and only runs on the Debug instance
Auth.auth().signInAnonymously { (user, error) in
DispatchQueue.global(qos: .background).async {
// Listening to view events
self.listener.listen { (item) in
// Setting a Database instance
let dataBase = Database.database()
var ref = dataBase.reference()
ref = ref.child("uitesting_hierarchy_ios")
// Observing previous core versions
ref.observeSingleEvent(of: .value, with: { (snapshot) in
// Checking if the version exists
guard let value = snapshot.value as? [String: Any],
let data = try? JSONSerialization.data(withJSONObject: value, options: .prettyPrinted) else {
let currentItems = UITestingCoreItems(versions: [item])
if let payload = currentItems.payload() {
ref.setValue(payload)
}
return
}
// Updating the current version
if var currentItems = try? JSONDecoder().decode(UITestingCoreItems.self, from: data) {
currentItems.append(item)
if let payload = currentItems.payload() {
ref.setValue(payload)
}
}
})
}
}
}
#endif
If you want to disable the listener, call:
listener.shouldListen = false
StanwoodUITestingCore is under MIT licence. See the LICENSE file for more info.