Skip to content

Instantly share code, notes, and snippets.

@RodolfoGS
Created September 19, 2024 20:52
Show Gist options
  • Save RodolfoGS/e179fe4d049753d648f651e090964c49 to your computer and use it in GitHub Desktop.
Save RodolfoGS/e179fe4d049753d648f651e090964c49 to your computer and use it in GitHub Desktop.
Simulate "No space left on device" exception
diff --git a/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift b/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift
index d0ceffb..a939e7d 100644
--- a/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift
+++ b/node_modules/expo-modules-core/ios/Core/Logging/PersistentFileLog.swift
@@ -110,10 +110,12 @@ public class PersistentFileLog {
}
}
- private func appendTextToFile(text: String) {
+ private func appendTextToFile(text: String) throws {
if let data = text.data(using: .utf8) {
if let fileHandle = FileHandle(forWritingAtPath: filePath) {
fileHandle.seekToEndOfFile()
+ // add an exception here to simulate "No space left on device" exception
+ throw Exception(name: "NSFileHandleOperationException", description: "No space left on device")
fileHandle.write(data)
fileHandle.closeFile()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment