mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
202 lines
6.5 KiB
C#
202 lines
6.5 KiB
C#
// /***************************************************************************
|
|
// Aaru Data Preservation Suite
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : FAT16.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-2025 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
using System.IO;
|
|
using Aaru.CommonTypes;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
using Aaru.Filesystems;
|
|
using NUnit.Framework;
|
|
|
|
namespace Aaru.Tests.Filesystems.FAT16;
|
|
|
|
[TestFixture]
|
|
public class Whole() : ReadOnlyFilesystemTest("fat16")
|
|
{
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Filesystems", "FAT16");
|
|
|
|
public override IFilesystem Plugin => new FAT();
|
|
public override bool Partitions => false;
|
|
|
|
public override FileSystemTest[] Tests =>
|
|
[
|
|
new()
|
|
{
|
|
TestFile = "msdos_3.30A_mf2ed.img.lz",
|
|
MediaType = MediaType.ECMA_147,
|
|
Sectors = 5760,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 5711,
|
|
ClusterSize = 512,
|
|
SystemId = "MSDOS3.3"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "msdos_3.31_mf2ed.img.lz",
|
|
MediaType = MediaType.ECMA_147,
|
|
Sectors = 5760,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 5711,
|
|
ClusterSize = 512,
|
|
SystemId = "IBM 3.3"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "linux_2.2.17_mf2hd.img.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 2841,
|
|
ClusterSize = 512,
|
|
VolumeName = "VolumeLabel",
|
|
VolumeSerial = "609C51D1"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "linux_2.2.20_mf2hd.img.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 2841,
|
|
ClusterSize = 512,
|
|
VolumeName = "VolumeLabel",
|
|
VolumeSerial = "609C817B"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "linux_2.4.18_mf2hd.img.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 2841,
|
|
ClusterSize = 512,
|
|
VolumeName = "VolumeLabel",
|
|
VolumeSerial = "609CA5B2"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "linux_2.2.17_mf2hd_umsdos.img.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 2841,
|
|
ClusterSize = 512,
|
|
VolumeName = "VolumeLabel",
|
|
VolumeSerial = "609C545C"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "linux_2.2.20_mf2hd_umsdos.img.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 2841,
|
|
ClusterSize = 512,
|
|
VolumeName = "VolumeLabel",
|
|
VolumeSerial = "609C87E7"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "linux_2.4.18_mf2hd_umsdos.img.lz",
|
|
MediaType = MediaType.DOS_35_HD,
|
|
Sectors = 2880,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 2841,
|
|
ClusterSize = 512,
|
|
VolumeName = "VolumeLabel",
|
|
VolumeSerial = "609CA685"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "macos_8.5.img.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 204800,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 51091,
|
|
ClusterSize = 2048,
|
|
VolumeName = "FAT",
|
|
VolumeSerial = "34050000"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "macos_8.6.img.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 204800,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 51091,
|
|
ClusterSize = 2048,
|
|
VolumeName = "FAT",
|
|
VolumeSerial = "A6040000"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "pcexchange_3.0.3.img.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 262144,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 32731,
|
|
ClusterSize = 4096,
|
|
VolumeName = "VOLUMELABEL",
|
|
VolumeSerial = "A1360000"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "pcexchange_3.0.4.img.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 262144,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 32731,
|
|
ClusterSize = 4096,
|
|
VolumeName = "VOLUMELABEL",
|
|
VolumeSerial = "4B320000"
|
|
},
|
|
new()
|
|
{
|
|
TestFile = "pcexchange_3.0.5.img.lz",
|
|
MediaType = MediaType.GENERIC_HDD,
|
|
Sectors = 262144,
|
|
SectorSize = 512,
|
|
Bootable = true,
|
|
Clusters = 32731,
|
|
ClusterSize = 4096,
|
|
VolumeName = "VOLUMELABEL",
|
|
VolumeSerial = "E3230000"
|
|
}
|
|
];
|
|
} |