-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright © 2015 Abhishek Banthia | ||
|
||
import XCTest | ||
|
||
class CopyToClipboardTests: XCTestCase { | ||
var app: XCUIApplication! | ||
|
||
override func setUp() { | ||
continueAfterFailure = false | ||
app = XCUIApplication() | ||
app.launch() | ||
|
||
if app.tables["FloatingTableView"].exists == false { | ||
app.tapMenubarIcon() | ||
app.buttons["FloatingPin"].click() | ||
} | ||
} | ||
|
||
override func tearDownWithError() throws { | ||
app = nil | ||
} | ||
|
||
func testFullCopy() throws { | ||
let cellCount = app.tables["FloatingTableView"].cells.count | ||
var clipboardValue = String() | ||
for cellIndex in 0..<cellCount { | ||
let cell = app.tables["FloatingTableView"].cells.element(boundBy: cellIndex) | ||
let customLabel = cell.staticTexts["CustomNameLabelForCell"].value ?? "Nil Custom Label" | ||
let time = cell.staticTexts["ActualTime"].value ?? "Nil Value" | ||
clipboardValue.append(contentsOf: "\(customLabel) - \(time)\n") | ||
} | ||
|
||
app.buttons["Share"].click() | ||
app/*@START_MENU_TOKEN@*/.menuItems["Copy All Times"]/*[[".dialogs[\"Clocker Panel\"]",".buttons[\"Share\"]",".menus.menuItems[\"Copy All Times\"]",".menuItems[\"Copy All Times\"]"],[[[-1,3],[-1,2],[-1,1,2],[-1,0,1]],[[-1,3],[-1,2],[-1,1,2]],[[-1,3],[-1,2]]],[0]]@END_MENU_TOKEN@*/.click() | ||
|
||
let clipboard = NSPasteboard.general.string(forType: .string) | ||
XCTAssert(clipboardValue == clipboard) | ||
} | ||
|
||
func testIndividualTimezoneCopy() { | ||
let cell = app.tables["FloatingTableView"].cells.firstMatch | ||
let customLabel = cell.staticTexts["CustomNameLabelForCell"].value ?? "Nil Custom Label" | ||
let time = cell.staticTexts["ActualTime"].value ?? "Nil Value" | ||
let expectedValue = "\(customLabel) - \(time)" | ||
|
||
// Tap to copy! | ||
cell.tap() | ||
|
||
let clipboard = NSPasteboard.general.string(forType: .string) ?? "Empty Pasteboard" | ||
XCTAssert(expectedValue == clipboard, "Clipboard value (\(clipboard)) doesn't match expected result") | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters