-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a NRE when matching an Open Office XML format
- Loading branch information
1 parent
b0598b0
commit f17f4cb
Showing
3 changed files
with
29 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using FileSignatures.Formats; | ||
using System.IO; | ||
using Xunit; | ||
|
||
namespace FileSignatures.Tests.Formats | ||
{ | ||
public class OfficeOpenXmlTests | ||
{ | ||
[Fact] | ||
public void InvalidZipArchive_DoesNotThrow() | ||
{ | ||
var inspector = new FileFormatInspector(); | ||
|
||
using (var stream = new MemoryStream(new byte[] { 0x50, 0x4B, 0x03, 0x04 })) | ||
{ | ||
var format = inspector.DetermineFileFormat(stream); | ||
|
||
Assert.NotNull(format); | ||
Assert.IsType<Zip>(format); | ||
} | ||
} | ||
} | ||
} |
f17f4cb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes #18