2017-07-18 06:33:47 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
2017-07-18 06:34:06 +01:00
|
|
|
|
// Filename : RDB.cs
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2017-07-18 06:33:47 +01:00
|
|
|
|
//
|
2017-12-19 03:50:57 +00: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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Copyright © 2011-2018 Natalia Portillo
|
2017-07-18 06:33:47 +01:00
|
|
|
|
// ****************************************************************************/
|
2017-12-19 03:50:57 +00:00
|
|
|
|
|
2017-07-18 06:33:47 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using DiscImageChef.CommonTypes;
|
|
|
|
|
|
using DiscImageChef.DiscImages;
|
|
|
|
|
|
using DiscImageChef.Filters;
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DiscImageChef.Tests.Partitions
|
|
|
|
|
|
{
|
|
|
|
|
|
[TestFixture]
|
2017-07-18 06:34:06 +01:00
|
|
|
|
public class RDB
|
2017-07-18 06:33:47 +01:00
|
|
|
|
{
|
2017-12-21 02:52:12 +00:00
|
|
|
|
readonly string[] testfiles = {"amigaos_3.9.vdi.lz", "amigaos_4.0.vdi.lz", "parted.vdi.lz"};
|
2017-07-18 06:33:47 +01:00
|
|
|
|
|
2017-12-19 20:33:03 +00:00
|
|
|
|
readonly Partition[][] wanted =
|
|
|
|
|
|
{
|
2017-07-18 06:34:06 +01:00
|
|
|
|
// AmigaOS 3.9
|
2017-12-19 20:33:03 +00:00
|
|
|
|
new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 87392256,
|
|
|
|
|
|
Name = "UDH0",
|
|
|
|
|
|
Type = "\"DOS\\0\"",
|
|
|
|
|
|
Offset = 2080768,
|
|
|
|
|
|
Length = 170688,
|
|
|
|
|
|
Sequence = 0,
|
|
|
|
|
|
Start = 4064
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 87392256,
|
|
|
|
|
|
Name = "UDH1",
|
|
|
|
|
|
Type = "\"DOS\\2\"",
|
|
|
|
|
|
Offset = 89473024,
|
|
|
|
|
|
Length = 170688,
|
|
|
|
|
|
Sequence = 1,
|
|
|
|
|
|
Start = 174752
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 87392256,
|
|
|
|
|
|
Name = "UDH2",
|
|
|
|
|
|
Type = "\"DOS\\1\"",
|
|
|
|
|
|
Offset = 176865280,
|
|
|
|
|
|
Length = 170688,
|
|
|
|
|
|
Sequence = 2,
|
|
|
|
|
|
Start = 345440
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 87392256,
|
|
|
|
|
|
Name = "UDH3",
|
|
|
|
|
|
Type = "\"DOS\\3\"",
|
|
|
|
|
|
Offset = 264257536,
|
|
|
|
|
|
Length = 170688,
|
|
|
|
|
|
Sequence = 3,
|
|
|
|
|
|
Start = 516128
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 87300096,
|
|
|
|
|
|
Name = "FAT16",
|
|
|
|
|
|
Type = "0x06",
|
|
|
|
|
|
Offset = 351663104,
|
|
|
|
|
|
Length = 170508,
|
|
|
|
|
|
Sequence = 4,
|
|
|
|
|
|
Start = 686842
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 85311488,
|
|
|
|
|
|
Name = "UDH5",
|
|
|
|
|
|
Type = "\"RES\\86\"",
|
|
|
|
|
|
Offset = 439042048,
|
|
|
|
|
|
Length = 166624,
|
|
|
|
|
|
Sequence = 5,
|
|
|
|
|
|
Start = 857504
|
2017-12-21 02:52:12 +00:00
|
|
|
|
}
|
2017-07-18 06:34:06 +01:00
|
|
|
|
},
|
|
|
|
|
|
// AmigaOS 4.0
|
2017-12-19 20:33:03 +00:00
|
|
|
|
new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 91455488,
|
|
|
|
|
|
Name = "DH1",
|
|
|
|
|
|
Type = "\"DOS\\1\"",
|
|
|
|
|
|
Offset = 1048576,
|
|
|
|
|
|
Length = 178624,
|
|
|
|
|
|
Sequence = 0,
|
|
|
|
|
|
Start = 2048
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 76546048,
|
|
|
|
|
|
Name = "DH2",
|
|
|
|
|
|
Type = "\"DOS\\3\"",
|
|
|
|
|
|
Offset = 92504064,
|
|
|
|
|
|
Length = 149504,
|
|
|
|
|
|
Sequence = 1,
|
|
|
|
|
|
Start = 180672
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 78741504,
|
|
|
|
|
|
Name = "DH3",
|
|
|
|
|
|
Type = "\"DOS\\3\"",
|
|
|
|
|
|
Offset = 169050112,
|
|
|
|
|
|
Length = 153792,
|
|
|
|
|
|
Sequence = 2,
|
|
|
|
|
|
Start = 330176
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 78020608,
|
|
|
|
|
|
Name = "DH4",
|
|
|
|
|
|
Type = "\"DOS\\7\"",
|
|
|
|
|
|
Offset = 247791616,
|
|
|
|
|
|
Length = 152384,
|
|
|
|
|
|
Sequence = 3,
|
|
|
|
|
|
Start = 483968
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 85000192,
|
|
|
|
|
|
Name = "DH5",
|
|
|
|
|
|
Type = "\"SFS\\0\"",
|
|
|
|
|
|
Offset = 325812224,
|
|
|
|
|
|
Length = 166016,
|
|
|
|
|
|
Sequence = 4,
|
|
|
|
|
|
Start = 636352
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 113541120,
|
|
|
|
|
|
Name = "DH6",
|
|
|
|
|
|
Type = "\"SFS\\2\"",
|
|
|
|
|
|
Offset = 410812416,
|
|
|
|
|
|
Length = 221760,
|
|
|
|
|
|
Sequence = 5,
|
|
|
|
|
|
Start = 802368
|
2017-12-21 02:52:12 +00:00
|
|
|
|
}
|
2017-07-18 06:34:06 +01:00
|
|
|
|
},
|
2017-07-19 05:19:10 +01:00
|
|
|
|
// Parted
|
2017-12-19 20:33:03 +00:00
|
|
|
|
new[]
|
|
|
|
|
|
{
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 8225280,
|
|
|
|
|
|
Name = "primary",
|
|
|
|
|
|
Type = "\"\0\0\0\\0\"",
|
|
|
|
|
|
Offset = 8225280,
|
|
|
|
|
|
Length = 16065,
|
|
|
|
|
|
Sequence = 0,
|
|
|
|
|
|
Start = 16065
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 24675840,
|
|
|
|
|
|
Name = "name",
|
|
|
|
|
|
Type = "\"FAT\\1\"",
|
|
|
|
|
|
Offset = 16450560,
|
|
|
|
|
|
Length = 48195,
|
|
|
|
|
|
Sequence = 1,
|
|
|
|
|
|
Start = 32130
|
|
|
|
|
|
},
|
|
|
|
|
|
new Partition
|
|
|
|
|
|
{
|
|
|
|
|
|
Description = null,
|
|
|
|
|
|
Size = 90478080,
|
|
|
|
|
|
Name = "partition",
|
|
|
|
|
|
Type = "\"\0\0\0\\0\"",
|
|
|
|
|
|
Offset = 41126400,
|
|
|
|
|
|
Length = 176715,
|
|
|
|
|
|
Sequence = 2,
|
|
|
|
|
|
Start = 80325
|
2017-12-21 02:52:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
};
|
2017-07-18 06:33:47 +01:00
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
|
public void Test()
|
|
|
|
|
|
{
|
|
|
|
|
|
for(int i = 0; i < testfiles.Length; i++)
|
|
|
|
|
|
{
|
2017-07-18 06:34:06 +01:00
|
|
|
|
string location = Path.Combine(Consts.TestFilesRoot, "partitions", "rdb", testfiles[i]);
|
2017-07-18 06:33:47 +01:00
|
|
|
|
Filter filter = new LZip();
|
|
|
|
|
|
filter.Open(location);
|
2017-12-20 17:15:26 +00:00
|
|
|
|
ImagePlugin image = new Vdi();
|
2017-07-18 06:33:47 +01:00
|
|
|
|
Assert.AreEqual(true, image.OpenImage(filter), testfiles[i]);
|
2017-07-24 23:35:33 +01:00
|
|
|
|
List<Partition> partitions = Core.Partitions.GetAll(image);
|
2017-07-18 06:33:47 +01:00
|
|
|
|
Assert.AreEqual(wanted[i].Length, partitions.Count, testfiles[i]);
|
|
|
|
|
|
for(int j = 0; j < partitions.Count; j++)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Too chatty
|
|
|
|
|
|
//Assert.AreEqual(wanted[i][j].PartitionDescription, partitions[j].PartitionDescription, testfiles[i]);
|
2017-07-19 16:37:11 +01: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]);
|
|
|
|
|
|
Assert.AreEqual(wanted[i][j].Sequence, partitions[j].Sequence, testfiles[i]);
|
|
|
|
|
|
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
|
|
|
|
}
|