Skip to content

Commit 1de0d9b

Browse files
committed
[Tests] Report test details on failures in deflate truncation tests
1 parent 2b47fb7 commit 1de0d9b

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

Tests/GzipTests.swift

+12-6
Original file line numberDiff line numberDiff line change
@@ -226,26 +226,32 @@ class GzipTests: XCTestCase {
226226
for _ in 0..<100 {
227227
let truncationIndex = Int.random(in: 23..<testData.count - 8)
228228
var thrownError: Error? = nil
229-
XCTAssertThrowsError(try GzipArchive.unarchive(archive: testData[..<truncationIndex])) { thrownError = $0 }
230-
XCTAssertTrue(thrownError is DeflateError, "Unexpected error type: \(type(of: thrownError))")
229+
XCTAssertThrowsError(try GzipArchive.unarchive(archive: testData[..<truncationIndex]),
230+
"No error thrown, test9, truncationIndex=\(truncationIndex)") { thrownError = $0 }
231+
XCTAssertTrue(thrownError is DeflateError, "Unexpected error type: \(type(of: thrownError)), " +
232+
"test9, truncationIndex=\(truncationIndex)")
231233
}
232234

233235
// This test file contains static Huffman Deflate block.
234236
testData = try Constants.data(forTest: "test8", withType: GzipTests.testType)
235237
for _ in 0..<10 {
236238
let truncationIndex = Int.random(in: 23..<testData.count - 8)
237239
var thrownError: Error? = nil
238-
XCTAssertThrowsError(try GzipArchive.unarchive(archive: testData[..<truncationIndex])) { thrownError = $0 }
239-
XCTAssertTrue(thrownError is DeflateError, "Unexpected error type: \(type(of: thrownError))")
240+
XCTAssertThrowsError(try GzipArchive.unarchive(archive: testData[..<truncationIndex]),
241+
"No error thrown, test8, truncationIndex=\(truncationIndex)") { thrownError = $0 }
242+
XCTAssertTrue(thrownError is DeflateError, "Unexpected error type: \(type(of: thrownError)), " +
243+
"test8, truncationIndex=\(truncationIndex)")
240244
}
241245

242246
// This test file contains dynamic Huffman Deflate block.
243247
testData = try Constants.data(forTest: "test6", withType: GzipTests.testType)
244248
for _ in 0..<10 {
245249
let truncationIndex = Int.random(in: 23..<testData.count - 8)
246250
var thrownError: Error? = nil
247-
XCTAssertThrowsError(try GzipArchive.unarchive(archive: testData[..<truncationIndex])) { thrownError = $0 }
248-
XCTAssertTrue(thrownError is DeflateError, "Unexpected error type: \(type(of: thrownError))")
251+
XCTAssertThrowsError(try GzipArchive.unarchive(archive: testData[..<truncationIndex]),
252+
"No error thrown, test6, truncationIndex=\(truncationIndex)") { thrownError = $0 }
253+
XCTAssertTrue(thrownError is DeflateError, "Unexpected error type: \(type(of: thrownError)), " +
254+
"test6, truncationIndex=\(truncationIndex)")
249255
}
250256
}
251257

0 commit comments

Comments
 (0)