Files
Aaru/Aaru.Tests/Partitions/GPT.cs

135 lines
5.7 KiB
C#
Raw Normal View History

2017-07-18 06:33:47 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : GPT.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
2017-07-18 06:33:47 +01:00
//
// Component : DiscImageChef unit testing.
2017-07-18 06:33:47 +01:00
//
// --[ 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/>.
//
// ----------------------------------------------------------------------------
2018-12-29 17:34:38 +00:00
// Copyright © 2011-2019 Natalia Portillo
2017-07-18 06:33:47 +01:00
// ****************************************************************************/
2017-07-18 06:33:47 +01:00
using System.Collections.Generic;
using System.IO;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
using Aaru.DiscImages;
using Aaru.Filters;
2017-07-18 06:33:47 +01:00
using NUnit.Framework;
2020-02-27 00:33:26 +00:00
namespace Aaru.Tests.Partitions
2017-07-18 06:33:47 +01:00
{
[TestFixture]
public class Gpt
2017-07-18 06:33:47 +01:00
{
2020-02-29 18:03:35 +00:00
readonly string[] testfiles =
{
"linux.vdi.lz", "parted.vdi.lz"
};
2017-07-18 06:33:47 +01:00
2017-12-19 20:33:03 +00:00
readonly Partition[][] wanted =
{
// Linux
2017-12-19 20:33:03 +00:00
new[]
{
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 10485760, Name = "EFI System", Type = "EFI System",
Offset = 1048576, Length = 20480, Sequence = 0, Start = 2048
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 15728640, Name = "Microsoft basic data",
2018-06-22 08:08:38 +01:00
Type = "Microsoft Basic data",
2020-02-29 18:03:35 +00:00
Offset = 11534336, Length = 30720, Sequence = 1, Start = 22528
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 20971520, Name = "Apple label", Type = "Apple Label",
Offset = 27262976, Length = 40960, Sequence = 2, Start = 53248
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 26214400, Name = "Solaris /usr & Mac ZFS",
Type = "Solaris /usr or Apple ZFS", Offset = 48234496, Length = 51200, Sequence = 3,
2018-06-22 08:08:38 +01:00
Start = 94208
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 31457280, Name = "FreeBSD ZFS", Type = "FreeBSD ZFS",
Offset = 74448896, Length = 61440, Sequence = 4, Start = 145408
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 28294656, Name = "HP-UX data", Type = "HP-UX Data",
Offset = 105906176, Length = 55263, Sequence = 5, Start = 206848
2017-12-21 02:52:12 +00:00
}
},
2020-02-29 18:03:35 +00:00
2017-07-18 06:33:47 +01:00
// Parted
2017-12-19 20:33:03 +00:00
new[]
{
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 42991616, Name = "", Type = "Apple HFS",
Offset = 1048576, Length = 83968, Sequence = 0, Start = 2048
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 52428800, Name = "", Type = "Linux filesystem",
Offset = 44040192, Length = 102400, Sequence = 1, Start = 86016
2017-12-19 20:33:03 +00:00
},
new Partition
{
2020-02-29 18:03:35 +00:00
Description = null, Size = 36700160, Name = "", Type = "Microsoft Basic data",
Offset = 96468992, Length = 71680, Sequence = 2, Start = 188416
2017-12-21 02:52:12 +00:00
}
}
};
2017-07-18 06:33:47 +01:00
[Test]
public void Test()
{
for(int i = 0; i < testfiles.Length; i++)
{
2018-06-22 08:08:38 +01:00
string location = Path.Combine(Consts.TestFilesRoot, "partitions", "gpt", testfiles[i]);
IFilter filter = new LZip();
2017-07-18 06:33:47 +01:00
filter.Open(location);
IMediaImage image = new Vdi();
Assert.AreEqual(true, image.Open(filter), testfiles[i]);
List<Partition> partitions = Core.Partitions.GetAll(image);
2017-07-18 06:33:47 +01:00
Assert.AreEqual(wanted[i].Length, partitions.Count, testfiles[i]);
2020-02-29 18:03:35 +00:00
2017-07-18 06:33:47 +01:00
for(int j = 0; j < partitions.Count; j++)
{
// Too chatty
//Assert.AreEqual(wanted[i][j].PartitionDescription, partitions[j].PartitionDescription, testfiles[i]);
2020-02-29 18:03:35 +00:00
Assert.AreEqual(wanted[i][j].Size, partitions[j].Size, testfiles[i]);
Assert.AreEqual(wanted[i][j].Name, partitions[j].Name, testfiles[i]);
Assert.AreEqual(wanted[i][j].Type, partitions[j].Type, testfiles[i]);
Assert.AreEqual(wanted[i][j].Offset, partitions[j].Offset, testfiles[i]);
Assert.AreEqual(wanted[i][j].Length, partitions[j].Length, testfiles[i]);
2017-07-19 16:37:11 +01:00
Assert.AreEqual(wanted[i][j].Sequence, partitions[j].Sequence, testfiles[i]);
2020-02-29 18:03:35 +00:00
Assert.AreEqual(wanted[i][j].Start, partitions[j].Start, testfiles[i]);
2017-07-18 06:33:47 +01:00
}
}
}
}
2017-12-19 20:33:03 +00:00
}