-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathSwiftWeatherUITests.swift
70 lines (55 loc) · 2.17 KB
/
SwiftWeatherUITests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//
// Created by Jake Lin on 8/18/15.
// Copyright © 2015 Jake Lin. All rights reserved.
//
import XCTest
import Quick
import Nimble
class SwiftWeatherUITests: QuickSpec {
override func spec() {
let app = XCUIApplication()
beforeSuite {
self.continueAfterFailure = false
app.launch()
}
describe("a wheather viewcontroller") {
context("location service is enabled") {
context("when in portrait") {
beforeEach {
XCUIDevice.shared.orientation = .portrait
}
itBehavesLike("a properly laidout wheather viewcontroller")
}
context("when in landscape") {
beforeEach {
XCUIDevice.shared.orientation = .landscapeLeft
}
itBehavesLike("a properly laidout wheather viewcontroller")
}
}
}
}
}
class RegularWheatherViewControllerConfiguration: QuickConfiguration {
override class func configure(_ configuration: Configuration) {
let app = XCUIApplication()
let window = app.windows.element(boundBy: 0)
sharedExamples("a properly laidout wheather viewcontroller") { (context: SharedExampleContext) in
it("shows city") {
let cityLabel = app.staticTexts["a11y_current_city"]
expect(cityLabel.exists).to(beTruthy())
expect(window.frame.contains(cityLabel.frame)).to(beTruthy())
}
it("shows wheather icon") {
let wheatherIconLabel = app.staticTexts["a11y_wheather_icon"]
expect(wheatherIconLabel.exists).to(beTruthy())
expect(window.frame.contains(wheatherIconLabel.frame)).to(beTruthy())
}
it("shows wheather temperature") {
let wheatherTemperatureLabel = app.staticTexts["a11y_wheather_temperature"]
expect(wheatherTemperatureLabel.exists).to(beTruthy())
expect(window.frame.contains(wheatherTemperatureLabel.frame)).to(beTruthy())
}
}
}
}