-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add reportNSException method and deprecate old API (#588)
* Add reportNSException method and deprecate currentSnapshotUserReportedExceptionHandler * Fix unit tests * Add missing import * Add integration test for NSException reporting * Add user report test * Check KSCrash state after user reported crashes * Resolve implicit merge conflict * Use explicit assert messages in tests * Address review comments
- Loading branch information
Showing
18 changed files
with
379 additions
and
50 deletions.
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
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
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
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
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
62 changes: 62 additions & 0 deletions
62
Samples/Common/Sources/IntegrationTestsHelper/KSCrashState.swift
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,62 @@ | ||
// | ||
// KSCrashState.swift | ||
// | ||
// Created by Nikolay Volosatov on 2024-11-02. | ||
// | ||
// Copyright (c) 2012 Karl Stenerud. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall remain in place | ||
// in this source code. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
import Foundation | ||
import KSCrashRecording | ||
|
||
public struct KSCrashState: Codable { | ||
public var sessionsSinceLaunch: Int | ||
public var activeDurationSinceLaunch: TimeInterval | ||
public var backgroundDurationSinceLaunch: TimeInterval | ||
|
||
public var launchesSinceLastCrash: Int | ||
public var sessionsSinceLastCrash: Int | ||
public var activeDurationSinceLastCrash: TimeInterval | ||
public var backgroundDurationSinceLastCrash: TimeInterval | ||
|
||
public var crashedLastLaunch: Bool | ||
} | ||
|
||
extension KSCrashState { | ||
static func collect() -> Self { | ||
.init( | ||
sessionsSinceLaunch: KSCrash.shared.sessionsSinceLaunch, | ||
activeDurationSinceLaunch: KSCrash.shared.activeDurationSinceLaunch, | ||
backgroundDurationSinceLaunch: KSCrash.shared.backgroundDurationSinceLaunch, | ||
launchesSinceLastCrash: KSCrash.shared.launchesSinceLastCrash, | ||
sessionsSinceLastCrash: KSCrash.shared.sessionsSinceLastCrash, | ||
activeDurationSinceLastCrash: KSCrash.shared.activeDurationSinceLastCrash, | ||
backgroundDurationSinceLastCrash: KSCrash.shared.backgroundDurationSinceLastCrash, | ||
crashedLastLaunch: KSCrash.shared.crashedLastLaunch | ||
) | ||
} | ||
|
||
func save(to path: String) throws { | ||
let encoder = JSONEncoder() | ||
encoder.outputFormatting = .prettyPrinted | ||
try encoder.encode(self).write(to: URL(fileURLWithPath: path)) | ||
} | ||
} |
74 changes: 74 additions & 0 deletions
74
Samples/Common/Sources/IntegrationTestsHelper/UserReportConfig.swift
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,74 @@ | ||
// | ||
// UserReportConfig.swift | ||
// | ||
// Created by Nikolay Volosatov on 2024-11-02. | ||
// | ||
// Copyright (c) 2012 Karl Stenerud. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall remain in place | ||
// in this source code. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
import Foundation | ||
import CrashTriggers | ||
import KSCrashRecording | ||
|
||
public struct UserReportConfig: Codable { | ||
public enum ReportType: String, Codable { | ||
case userException | ||
case nsException | ||
} | ||
|
||
public var reportType: ReportType | ||
|
||
public init(reportType: ReportType) { | ||
self.reportType = reportType | ||
} | ||
} | ||
|
||
extension UserReportConfig { | ||
public static let crashName = "Crash Name" | ||
public static let crashReason = "Crash Reason" | ||
public static let crashLanguage = "Crash Language" | ||
public static let crashLineOfCode = "108" | ||
public static let crashCustomStacktrace = ["func01", "func02", "func03"] | ||
|
||
func report() { | ||
switch reportType { | ||
case .userException: | ||
KSCrash.shared.reportUserException( | ||
Self.crashName, | ||
reason: Self.crashReason, | ||
language: Self.crashLanguage, | ||
lineOfCode: Self.crashLineOfCode, | ||
stackTrace: Self.crashCustomStacktrace, | ||
logAllThreads: true, | ||
terminateProgram: false | ||
) | ||
case .nsException: | ||
KSCrash.shared.report( | ||
CrashTriggersHelper.exceptionWithStacktrace(for: NSException( | ||
name: .init(rawValue:Self.crashName), | ||
reason: Self.crashReason, | ||
userInfo: ["a":"b"] | ||
)), | ||
logAllThreads: true | ||
) | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.