Cuckoo/Tests/Source/TestedClass.swift

259 lines
5.4 KiB
Swift

//
// TestedClass.swift
// Cuckoo
//
// Created by Tadeas Kriz on 09/02/16.
// Copyright © 2016 Brightify. All rights reserved.
//
import UIKit.DocumentManager ; import Foundation
import class UIKit.UIFont
import UIKit
@available(swift 4.0)
class TestedClass {
let constant: Float = 0.0
private(set) var privateSetProperty: Int = 0
var readOnlyProperty: String {
return "a"
}
lazy var readWriteProperty: Int = 0
lazy var optionalProperty: Int? = 0
func noReturn() {
}
func count(characters: String) -> Int {
return characters.count
}
func withThrows() throws -> Int {
return 0
}
func withNoReturnThrows() throws {
}
func withClosure(_ closure: (String) -> Int) -> Int {
return closure("hello")
}
func withEscape(_ a: String, action closure: @escaping (String) -> Void) {
closure(a)
}
func withOptionalClosure(_ a: String, closure: ((String) -> Void)?) {
closure?(a)
}
func withLabelAndUnderscore(labelA a: String, _ b: String) {
}
func callingCountCharactersMethodWithHello() -> Int {
return count(characters: "Hello")
}
// How to test for the absence of all these?
private func thisFunctionShouldNotBeMocked1() {
}
fileprivate func thisFunctionShouldNotBeMocked2() {
}
private var notMocked1: Int?
fileprivate var notMocked2: Int?
deinit {
}
}
private class ThisClassShouldNotBeMocked1 {
var property: Int?
}
open class OpenTestedClass {
let constant = 1
open func printConstant() {
print(constant)
}
}
fileprivate class ThisClassShouldNotBeMocked2 {
var property: Int?
// How to test that the expected output is generated??
func withTwoDefaultConstructedValues(value1: Int = Int(10), value2: Int = Int(10)) {
}
// How to test that the expected output is generated??
func withTwoDefaultConstructedValues(_ value3: Int = Int(10), value4: Int = Int(10)) {
}
}
// Notice the subtle difference, this class is public. The generated code does not compile.
public class PublicTestedClass {
let constant: Float = 0.0
var readOnlyProperty: String {
return "a"
}
lazy var readWriteProperty: Int = 0
lazy var optionalProperty: Int? = 0
func noReturn() {
}
func count(characters: String) -> Int {
return characters.count
}
func withThrows() throws -> Int {
return 0
}
func withNoReturnThrows() throws {
}
func withClosure(_ closure: (String) -> Int) -> Int {
return closure("hello")
}
func withEscape(_ a: String, action closure: @escaping (String) -> Void) {
closure(a)
}
func withOptionalClosure(_ a: String, closure: ((String) -> Void)?) {
closure?(a)
}
func withLabelAndUnderscore(labelA a: String, _ b: String) {
}
}
public class PublicPublicTestedClass {
public let constant: Float = 0.0
public var readOnlyProperty: String {
return "a"
}
public lazy var readWriteProperty: Int = 0
public lazy var optionalProperty: Int? = 0
public func noReturn() {
}
public func count(characters: String) -> Int {
return characters.count
}
public func withThrows() throws -> Int {
return 0
}
public func withNoReturnThrows() throws {
}
public func withClosure(_ closure: (String) -> Int) -> Int {
return closure("hello")
}
public func withEscape(_ a: String, action closure: @escaping (String) -> Void) {
closure(a)
}
public func withOptionalClosure(_ a: String, closure: ((String) -> Void)?) {
closure?(a)
}
public func withLabelAndUnderscore(labelA a: String, _ b: String) {
}
}
class ClassWithInnerEnum {
enum InnerEnum {
case foo
case bar
}
}
class ClassUsingInnerEnum {
func doFoo() -> ClassWithInnerEnum.InnerEnum {
return .foo
}
func doFooOpt() -> ClassWithInnerEnum.InnerEnum? {
return .foo
}
}
final class FinalClass {
var shouldBeIgnoredByCuckoo = true
}
// should generate a compiler error if `FinalClass` isn't ignored and `MockFinalClass` is generated
final class MockFinalClass {}
final class FinalClassStub {}
public class InternalFieldsInPublicClass {
internal var field: Int? = nil
private(set) var privateSetField: Int? = nil
internal func function() {
}
}
class FinalFields {
final var field: Int? = nil
final func function() {
}
}
class InoutMethodClass {
func inoutko(param: inout Int) {
}
func inoutkoMultiple(param1: inout Int, param2: inout String, param3: Void) {
}
func inoutkoClosure(param: (inout Int) -> Void) {
}
}
class OptionalParamsClass {
func function(param: String?) {
}
// the next two methods are exactly the same except for parameter types
// this is not ambiguous for Swift, however, mocking this in a way so
// that the stubbing and verifying calls wouldn't be ambiguous would require
// some serious amount of hacks, so we decided to postpone this feature for now
// see `clashingFunction` calls in tests to see how to disambiguate if you're ever
// in need of two almost identical methods
func clashingFunction(param1: Int?, param2: String) {
}
func clashingFunction(param1: Int, param2: String?) {
}
}