Files
Aaru/Aaru.Tests/Images/pce/DiskCopy42.cs

95 lines
3.4 KiB
C#

// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : DiskCopy42.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-2021 Natalia Portillo
// ****************************************************************************/
using System.IO;
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
using NUnit.Framework;
namespace Aaru.Tests.Images.pce
{
[TestFixture]
public class DiskCopy42 : BlockMediaImageTest
{
public override string DataFolder =>
Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "pce", "DiskCopy 4.2");
public override IMediaImage _plugin => new DiscImages.DiskCopy42();
public override BlockImageTestExpected[] Tests => new[]
{
new BlockImageTestExpected
{
TestFile = "mf1dd_gcr.dc42.lz",
MediaType = MediaType.AppleSonySS,
Sectors = 800,
SectorSize = 512,
MD5 = "c5d92544c3e78b7f0a9b4baaa9a64eec",
Partitions = new[]
{
new BlockPartitionVolumes
{
Start = 0,
Length = 800
}
}
},
new BlockImageTestExpected
{
TestFile = "mf2dd.dc42.lz",
MediaType = MediaType.DOS_35_DS_DD_9,
Sectors = 1440,
SectorSize = 512,
MD5 = "de3f85896f771b7e5bc4c9e3926d64e4",
Partitions = new[]
{
new BlockPartitionVolumes
{
Start = 0,
Length = 1440
}
}
},
new BlockImageTestExpected
{
TestFile = "mf2dd_gcr.dc42.lz",
MediaType = MediaType.AppleSonyDS,
Sectors = 1600,
SectorSize = 512,
MD5 = "93e71b9ecdb39d3ec9245b4f451856d4",
Partitions = new[]
{
new BlockPartitionVolumes
{
Start = 0,
Length = 1600
}
}
}
};
}
}