2021-02-26 21:29:20 +00:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : VirtualPC.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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2022-12-03 16:07:10 +00:00
|
|
|
|
// Copyright © 2011-2023 Natalia Portillo
|
2021-02-26 21:29:20 +00:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using Aaru.CommonTypes;
|
2021-03-02 00:35:16 +00:00
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2021-02-26 21:29:20 +00:00
|
|
|
|
using Aaru.DiscImages;
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
|
namespace Aaru.Tests.Images.QEMU;
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
[TestFixture]
|
|
|
|
|
|
public class VirtualPC : BlockMediaImageTest
|
2021-02-26 21:29:20 +00:00
|
|
|
|
{
|
2022-11-15 15:58:43 +00:00
|
|
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Media image formats", "QEMU", "VirtualPC");
|
2022-03-15 01:37:37 +00:00
|
|
|
|
public override IMediaImage Plugin => new Vhd();
|
2021-03-02 02:59:20 +00:00
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
public override BlockImageTestExpected[] Tests => new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
new BlockImageTestExpected
|
2021-03-02 02:59:20 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
TestFile = "qemu_dynamic_250mb.vhd.lz",
|
|
|
|
|
|
MediaType = MediaType.Unknown,
|
|
|
|
|
|
Sectors = 512064,
|
|
|
|
|
|
SectorSize = 512,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "26d2745c1d614207b4bce4ee003c326d",
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Partitions = new[]
|
2021-03-02 02:59:20 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
new BlockPartitionVolumes
|
2021-07-13 20:05:06 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Start = 0,
|
|
|
|
|
|
Length = 512064
|
2021-07-13 20:05:06 +01:00
|
|
|
|
}
|
2022-03-06 13:29:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
new BlockImageTestExpected
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "qemu_fixed_10mb.vhd.lz",
|
|
|
|
|
|
MediaType = MediaType.Unknown,
|
|
|
|
|
|
Sectors = 20536,
|
|
|
|
|
|
SectorSize = 512,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "adfad4fb019f157e868baa39e7753db7",
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Partitions = new[]
|
2021-03-02 02:59:20 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
new BlockPartitionVolumes
|
2021-07-13 20:05:06 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Start = 0,
|
|
|
|
|
|
Length = 20536
|
2021-07-13 20:05:06 +01:00
|
|
|
|
}
|
2022-03-06 13:29:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
new BlockImageTestExpected
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "virtualpc.vhd.lz",
|
|
|
|
|
|
MediaType = MediaType.Unknown,
|
|
|
|
|
|
Sectors = 251940,
|
|
|
|
|
|
SectorSize = 512,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "7126d647c1cefc5a81b4140e10f50269",
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Partitions = new[]
|
2021-03-02 02:59:20 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
new BlockPartitionVolumes
|
2021-07-13 20:05:06 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Start = 63,
|
|
|
|
|
|
Length = 251841
|
2021-07-13 20:05:06 +01:00
|
|
|
|
}
|
2021-03-02 02:59:20 +00:00
|
|
|
|
}
|
2022-03-06 13:29:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
};
|
2021-02-26 21:29:20 +00:00
|
|
|
|
}
|