Changed tests to reflect correct values.

This commit is contained in:
2017-07-10 21:36:43 +01:00
parent ef10f16d96
commit 4c5d978f9f
12 changed files with 424 additions and 107 deletions

View File

@@ -48,38 +48,38 @@ using NUnit.Framework;
namespace DiscImageChef.Tests.Filesystems
{
[TestFixture]
public class FAT16_APM
public class FAT16_Atari
{
readonly string[] testfiles = {
"macosx_10.11.vdi.lz",
"tos_1.04.vdi.lz","tos_1.04_small.vdi.lz",
};
readonly ulong[] sectors = {
1024000,
81920, 16384,
};
readonly uint[] sectorsize = {
512,
512, 512,
};
readonly long[] clusters = {
63995,
10239, 8191,
};
readonly int[] clustersize = {
8192,
4096, 1024,
};
readonly string[] volumename = {
"VOLUMELABEL",
null, null,
};
readonly string[] volumeserial = {
"063D1F09",
"BA9831", "2019E1",
};
readonly string[] oemid = {
"BSD 4.4",
null, null,
};
[Test]
@@ -87,20 +87,20 @@ namespace DiscImageChef.Tests.Filesystems
{
for(int i = 0; i < testfiles.Length; i++)
{
string location = Path.Combine(Consts.TestFilesRoot, "filesystems", "fat16_apm", testfiles[i]);
string location = Path.Combine(Consts.TestFilesRoot, "filesystems", "fat16_atari", testfiles[i]);
Filter filter = new LZip();
filter.Open(location);
ImagePlugin image = new VDI();
Assert.AreEqual(true, image.OpenImage(filter), testfiles[i]);
Assert.AreEqual(sectors[i], image.ImageInfo.sectors, testfiles[i]);
Assert.AreEqual(sectorsize[i], image.ImageInfo.sectorSize, testfiles[i]);
PartPlugin parts = new AppleMap();
PartPlugin parts = new AtariPartitions();
Assert.AreEqual(true, parts.GetInformation(image, out List<Partition> partitions), testfiles[i]);
Filesystem fs = new DiscImageChef.Filesystems.FAT();
int part = -1;
for(int j = 0; j < partitions.Count; j++)
{
if(partitions[j].PartitionType == "DOS_FAT_16")
if(partitions[j].PartitionType == "GEM" || partitions[j].PartitionType == "BGM")
{
part = j;
break;