mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
105 lines
3.8 KiB
C#
105 lines
3.8 KiB
C#
// /***************************************************************************
|
|
// Aaru Data Preservation Suite
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : partclone.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 Aaru.DiscImages;
|
|
using NUnit.Framework;
|
|
|
|
namespace Aaru.Tests.Images
|
|
{
|
|
[TestFixture]
|
|
public class Partclone : BlockMediaImageTest
|
|
{
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "partclone");
|
|
public override IMediaImage _plugin => new PartClone();
|
|
|
|
public override BlockImageTestExpected[] Tests => new[]
|
|
{
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "ext2.partclone.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 127882,
|
|
SectorSize = 4096,
|
|
MD5 = "ff239c91166b6b13fa826dd258b40666"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "fat16.partclone.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 1012032,
|
|
SectorSize = 512,
|
|
MD5 = "f98b1a51ca2e7bf047d84969a2392a3d",
|
|
Partitions = new[]
|
|
{
|
|
new BlockPartitionVolumes
|
|
{
|
|
Start = 0,
|
|
Length = 1012032
|
|
}
|
|
}
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "fat32.partclone.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 1023057,
|
|
SectorSize = 512,
|
|
MD5 = "1b0b5eb965a401f16fa8a07e303cd1c0"
|
|
/* TODO: NullReferenceException
|
|
Partitions = new[]
|
|
{
|
|
new BlockPartitionVolumes
|
|
{
|
|
Start = 0,
|
|
Length = 1023057
|
|
}
|
|
}
|
|
*/
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "hfsplus.partclone.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 127882,
|
|
SectorSize = 4096,
|
|
MD5 = "880a6777d05c496901e930684abbecff"
|
|
},
|
|
new BlockImageTestExpected
|
|
{
|
|
TestFile = "ntfs.partclone.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 1023056,
|
|
SectorSize = 512,
|
|
MD5 = "61cc3faa286364e7ad5bab18120c1151"
|
|
}
|
|
};
|
|
}
|
|
} |