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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
//===--- LogEntryTests.swift ----------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2018-2020 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
//
//===----------------------------------------------------------------------===//
import XCTest
@testable import PlaygroundLogger
import Foundation
#if os(macOS)
import AppKit
#elseif os(iOS) || os(tvOS)
import UIKit
#endif
class LogEntryTests: XCTestCase {
func testNilIUO() throws {
let nilIUO: Int! = nil
let logEntry = try LogEntry(describing: nilIUO as Any, name: "nilIUO", policy: .default)
guard case let .structured(name, _, _, totalChildrenCount, children, _) = logEntry else {
XCTFail("Expected a structured log entry")
return
}
XCTAssertEqual(name, "nilIUO")
XCTAssertEqual(totalChildrenCount, 0)
XCTAssert(children.isEmpty)
}
func testEmptyView() throws {
#if os(macOS)
let emptyView = NSView()
#elseif os(iOS) || os(tvOS)
let emptyView = UIView()
#endif
let logEntry = try LogEntry(describing: emptyView, name: "emptyView", policy: .default)
guard case let .opaque(name, _, _, _, representation) = logEntry else {
XCTFail("Expected an opaque log entry")
return
}
XCTAssertEqual(name, "emptyView")
XCTAssert(representation is ImageOpaqueRepresentation)
// Try to encode the log entry. This operation shouldn't throw; if it does, it will fail the test.
let encoder = LogEncoder()
try logEntry.encode(with: encoder, format: .current)
}
func testEmptyImage() throws {
#if os(macOS)
let emptyImage = NSImage()
#elseif os(iOS) || os(tvOS)
let emptyImage = UIImage()
#endif
let logEntry = try LogEntry(describing: emptyImage, name: "emptyImage", policy: .default)
guard case let .opaque(name, _, _, _, representation) = logEntry else {
XCTFail("Expected an opaque log entry")
return
}
XCTAssertEqual(name, "emptyImage")
XCTAssert(representation is ImageOpaqueRepresentation)
// Try to encode the log entry. This operation shouldn't throw; if it does, it will fail the test.
let encoder = LogEncoder()
try logEntry.encode(with: encoder, format: .current)
}
func testViewBackgroundThread() throws {
#if os(macOS)
let view = NSView(frame: NSRect(x: 0, y: 0, width: 100, height: 100))
#elseif os(iOS) || os(tvOS)
let view = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
#endif
func testLoggingOfView() throws {
let logEntry = try LogEntry(describing: view, name: "view", policy: .default)
guard case let .opaque(name, _, _, _, representation) = logEntry else {
XCTFail("Expected an opaque log entry")
return
}
XCTAssertEqual(name, "view")
XCTAssert(representation is ImageOpaqueRepresentation)
// Try to encode the log entry. This operation shouldn't throw; if it does, it will fail the test.
let encoder = LogEncoder()
try logEntry.encode(with: encoder, format: .current)
}
try testLoggingOfView()
var backgroundTestSucceeded = false
let expectation = self.expectation(description: "Background logging expectation")
DispatchQueue.global().async {
do {
try testLoggingOfView()
backgroundTestSucceeded = true
}
catch {
XCTFail("Logging the view failed")
}
expectation.fulfill()
}
self.wait(for: [expectation], timeout: 5)
XCTAssertTrue(backgroundTestSucceeded)
}
func testLargeSet() throws {
let set = Set(1...1000)
let logEntry = try LogEntry(describing: set, name: "set", policy: .default)
guard case let .structured(name, _, _, totalChildrenCount, children, disposition) = logEntry else {
XCTFail("Expected a structured log entry")
return
}
XCTAssertEqual(name, "set")
// We expect `totalChildrenCount` to be 1000 because `set` has 1000 elements.
XCTAssertEqual(totalChildrenCount, 1000)
// We expect `children.count` to be 101 due to the default logging policy, which encodes the first 80 and the last 20 children when there's more than 100 children, plus a gap in between to indicate what was elided.
XCTAssertEqual(children.count, 101)
for (index, childEntry) in children.enumerated() {
if index == 80 {
// We expect the 81st child to be a gap based on the default logging policy for containers.
guard case .gap = childEntry else {
XCTFail("Expected this entry to be a gap entry!")
return
}
}
else {
// We expect all other children to be opaque entries representing the Ints in the set.
guard case let .opaque(_, _, _, _, representation) = childEntry else {
XCTFail("Expected this entry to be an opaque entry!")
return
}
// We don't know the precise value, due to hashing in the set.
// But we *do* know that the value should be an Int64, so check that at least.
XCTAssert(representation is Int64)
}
}
XCTAssertEqual(disposition, .membershipContainer)
}
func testOptionalNilObject() throws {
let object: NSObject? = nil
let logEntry = try LogEntry(describing: object as Any, name: "object", policy: .default)
guard case let .structured(name, typeName, summary, totalChildrenCount, children, disposition) = logEntry else {
XCTFail("Expected to receive a structured log entry, but didn't")
return
}
XCTAssertEqual(name, "object")
XCTAssert(typeName.hasPrefix("Optional<"))
XCTAssertEqual(summary, "nil")
XCTAssertEqual(totalChildrenCount, 0)
XCTAssert(children.isEmpty)
guard case .aggregate = disposition else {
XCTFail("Expected to receive an aggregate, but didn't")
return
}
}
func testNonOptionalNilObject() throws {
// PGLNilObject is a type which returns nil from -init.
// This occurs despite the fact that -init is marked as return a nonnull value.
// This allows us to test PlaygroundLogger against Objective-C types which have bad nullability annotations.
let object: PGLNilObject = PGLNilObject()
XCTAssertEqual(Int(bitPattern: ObjectIdentifier(object)), 0, "We expect PGLNilObject to produce a nil object")
let logEntry = try LogEntry(describing: object, name: "object", policy: .default)
guard case let .structured(name, typeName, summary, totalChildrenCount, children, disposition) = logEntry else {
XCTFail("Expected to receive an error log entry, but didn't")
return
}
XCTAssertEqual(name, "object")
XCTAssertEqual(typeName, "PGLNilObject")
XCTAssertEqual(summary, "nil")
XCTAssertEqual(totalChildrenCount, 0)
XCTAssert(children.isEmpty)
guard case .aggregate = disposition else {
XCTFail("Expected to receive an aggregate, but didn't")
return
}
}
}
|