mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-04 05:35:49 +00:00
34 lines
1021 B
C#
34 lines
1021 B
C#
using System.IO;
|
|
using BinaryObjectScanner.Packer;
|
|
using Xunit;
|
|
|
|
namespace BinaryObjectScanner.Test.Packer
|
|
{
|
|
public class EXEStealthTests
|
|
{
|
|
[Fact]
|
|
public void CheckContentsTest()
|
|
{
|
|
string file = "filename";
|
|
byte[] fileContent = [0x01, 0x02, 0x03, 0x04];
|
|
|
|
var checker = new EXEStealth();
|
|
string? actual = checker.CheckContents(file, fileContent, includeDebug: true);
|
|
Assert.Null(actual);
|
|
}
|
|
|
|
[Fact]
|
|
public void CheckPortableExecutableTest()
|
|
{
|
|
string file = "filename";
|
|
SabreTools.Data.Models.PortableExecutable.Executable model = new();
|
|
Stream source = new MemoryStream(new byte[1024]);
|
|
SabreTools.Serialization.Wrappers.PortableExecutable exe = new(model, source);
|
|
|
|
var checker = new EXEStealth();
|
|
string? actual = checker.CheckExecutable(file, exe, includeDebug: false);
|
|
Assert.Null(actual);
|
|
}
|
|
}
|
|
}
|