blob: 6715ed0ea45b985f9be5508087d61989aecb7372 [file] [log] [blame]
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
#if DEPLOYMENT_RUNTIME_OBJC || os(Linux)
import Foundation
import XCTest
#else
import SwiftFoundation
import SwiftXCTest
#endif
class TestNSTimer : XCTestCase {
static var allTests : [(String, (TestNSTimer) -> () throws -> Void)] {
return [
("test_timerInit", test_timerInit),
("test_timerTickOnce", test_timerTickOnce),
("test_timerRepeats", test_timerRepeats),
("test_timerInvalidate", test_timerInvalidate),
]
}
func test_timerInit() {
let timer = Timer(fire: Date(), interval: 0.3, repeats: false) { _ in }
XCTAssertNotNil(timer)
}
func test_timerTickOnce() {
var flag = false
let dummyTimer = Timer.scheduledTimer(withTimeInterval: 0.01, repeats: false) { timer in
XCTAssertFalse(flag)
flag = true
timer.invalidate()
}
let runLoop = RunLoop.current
runLoop.add(dummyTimer, forMode: .defaultRunLoopMode)
runLoop.run(until: Date(timeIntervalSinceNow: 0.05))
XCTAssertTrue(flag)
}
func test_timerRepeats() {
var flag = 0
let interval = TimeInterval(0.1)
let numberOfRepeats = 3
var previousInterval = Date().timeIntervalSince1970
let dummyTimer = Timer.scheduledTimer(withTimeInterval: interval, repeats: true) { timer in
XCTAssertEqual(timer.timeInterval, interval)
let currentInterval = Date().timeIntervalSince1970
XCTAssertEqualWithAccuracy(currentInterval, previousInterval + interval, accuracy: 0.01)
previousInterval = currentInterval
flag += 1
if (flag == numberOfRepeats) {
timer.invalidate()
}
}
let runLoop = RunLoop.current
runLoop.add(dummyTimer, forMode: .defaultRunLoopMode)
runLoop.run(until: Date(timeIntervalSinceNow: interval * Double(numberOfRepeats + 1)))
XCTAssertEqual(flag, numberOfRepeats)
}
func test_timerInvalidate() {
var flag = false
let dummyTimer = Timer.scheduledTimer(withTimeInterval: 0.01, repeats: true) { timer in
XCTAssertTrue(timer.isValid)
XCTAssertFalse(flag) // timer should tick only once
flag = true
timer.invalidate()
XCTAssertFalse(timer.isValid)
}
let runLoop = RunLoop.current
runLoop.add(dummyTimer, forMode: .defaultRunLoopMode)
runLoop.run(until: Date(timeIntervalSinceNow: 0.05))
XCTAssertTrue(flag)
}
}