Add test for contents of Mac OS X (macOS) disk images.

This commit is contained in:
2021-07-13 02:14:08 +01:00
parent 714376ac55
commit 7f9bce0dff
13 changed files with 450 additions and 50 deletions

View File

@@ -48,7 +48,15 @@ namespace Aaru.Tests.Images.DiskImagesFramework
MediaType = MediaType.DOS_35_HD,
Sectors = 2880,
SectorSize = 512,
MD5 = "ff419213080574056ebd9adf7bab3d32"
MD5 = "ff419213080574056ebd9adf7bab3d32",
Partitions = new[]
{
new BlockPartitionVolumes
{
Start = 0,
Length = 2880
}
}
},
new BlockImageTestExpected
{
@@ -56,7 +64,15 @@ namespace Aaru.Tests.Images.DiskImagesFramework
MediaType = MediaType.DOS_35_DS_DD_9,
Sectors = 1440,
SectorSize = 512,
MD5 = "c2be571406cf6353269faa59a4a8c0a4"
MD5 = "c2be571406cf6353269faa59a4a8c0a4",
Partitions = new[]
{
new BlockPartitionVolumes
{
Start = 0,
Length = 1440
}
}
},
new BlockImageTestExpected
{