mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
152 lines
4.9 KiB
C#
152 lines
4.9 KiB
C#
// /***************************************************************************
|
|
// Aaru Data Preservation Suite
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : DiskDup.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : Aaru unit testing.
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2011-2025 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
using System.IO;
|
|
using Aaru.CommonTypes;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
using Aaru.Images;
|
|
using NUnit.Framework;
|
|
|
|
namespace Aaru.Tests.Images.ShrinkWrap;
|
|
|
|
[TestFixture]
|
|
public class DiskDup : BlockMediaImageTest
|
|
{
|
|
public override string DataFolder =>
|
|
Path.Combine(Consts.TestFilesRoot, "Media image formats", "ShrinkWrap 3", "DiskDup+");
|
|
|
|
public override IMediaImage Plugin => new ZZZRawImage();
|
|
|
|
public override BlockImageTestExpected[] Tests =>
|
|
[
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "CDROM.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 91108,
|
|
SectorSize = 512,
|
|
Md5 = "69e3234920e472b24365060241934ca6"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "DC6_RW_HFS_1440.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Md5 = "3160038ca028ccf52ad7863790072145"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "DC6_RW_HFS_800.lz",
|
|
MediaType = MediaType.AppleSonyDS,
|
|
Sectors = 1600,
|
|
SectorSize = 512,
|
|
Md5 = "5e255c4bc0f6a26ecd27845b37e65aaa"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "DC6_RW_HFS_DMF.lz",
|
|
MediaType = MediaType.DMF,
|
|
Sectors = 3360,
|
|
SectorSize = 512,
|
|
Md5 = "652dc979c177f2d8e846587158b38478"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "DOS1440.image.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Md5 = "ff419213080574056ebd9adf7bab3d32",
|
|
Partitions =
|
|
[
|
|
new BlockPartitionVolumes
|
|
{
|
|
Start = 0,
|
|
Length = 2880
|
|
}
|
|
]
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "DOS720.lz",
|
|
MediaType = MediaType.DOS_35_DS_DD_9,
|
|
Sectors = 1440,
|
|
SectorSize = 512,
|
|
Md5 = "c2be571406cf6353269faa59a4a8c0a4",
|
|
Partitions =
|
|
[
|
|
new BlockPartitionVolumes
|
|
{
|
|
Start = 0,
|
|
Length = 1440
|
|
}
|
|
]
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "DOSDMF.lz",
|
|
MediaType = MediaType.DMF,
|
|
Sectors = 3360,
|
|
SectorSize = 512,
|
|
Md5 = "92ea7a359957012a682ba126cfdef0ce",
|
|
Partitions =
|
|
[
|
|
new BlockPartitionVolumes
|
|
{
|
|
Start = 0,
|
|
Length = 3360
|
|
}
|
|
]
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "PD1440.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Md5 = "7975e8cf7579a6848d6fb4e546d1f682"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "PD800.lz",
|
|
MediaType = MediaType.AppleSonyDS,
|
|
Sectors = 1600,
|
|
SectorSize = 512,
|
|
Md5 = "a72da7aedadbe194c22a3d71c62e4766"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "PDDMF.lz",
|
|
MediaType = MediaType.DMF,
|
|
Sectors = 3360,
|
|
SectorSize = 512,
|
|
Md5 = "7fbf0251a93cb36d98e68b7d19624de5"
|
|
}
|
|
];
|
|
} |