@@ -226,26 +226,32 @@ class GzipTests: XCTestCase {
226
226
for _ in 0 ..< 100 {
227
227
let truncationIndex = Int . random ( in: 23 ..< testData. count - 8 )
228
228
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) " )
231
233
}
232
234
233
235
// This test file contains static Huffman Deflate block.
234
236
testData = try Constants . data ( forTest: " test8 " , withType: GzipTests . testType)
235
237
for _ in 0 ..< 10 {
236
238
let truncationIndex = Int . random ( in: 23 ..< testData. count - 8 )
237
239
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) " )
240
244
}
241
245
242
246
// This test file contains dynamic Huffman Deflate block.
243
247
testData = try Constants . data ( forTest: " test6 " , withType: GzipTests . testType)
244
248
for _ in 0 ..< 10 {
245
249
let truncationIndex = Int . random ( in: 23 ..< testData. count - 8 )
246
250
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) " )
249
255
}
250
256
}
251
257
0 commit comments