Files
Aaru/Aaru.Tests/Filesystems/UDF/2.01/Whole.cs

114 lines
4.4 KiB
C#
Raw Normal View History

2017-07-05 06:54:50 +01:00
// /***************************************************************************
2020-07-25 02:01:36 +01:00
// Aaru Data Preservation Suite
2017-07-05 06:54:50 +01:00
// ----------------------------------------------------------------------------
//
2017-07-05 06:55:25 +01:00
// Filename : UDF.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
2017-07-05 06:54:50 +01:00
//
2020-07-25 02:01:36 +01:00
// Component : Aaru unit testing.
2017-07-05 06:54:50 +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/>.
//
// ----------------------------------------------------------------------------
2020-12-31 23:08:23 +00:00
// Copyright © 2011-2021 Natalia Portillo
2017-07-05 06:54:50 +01:00
// ****************************************************************************/
2021-08-17 17:31:13 +01:00
// ReSharper disable CheckNamespace
2017-07-05 06:54:50 +01:00
using System.IO;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
2017-07-05 06:54:50 +01:00
using NUnit.Framework;
namespace Aaru.Tests.Filesystems.UDF._201
2017-07-05 06:54:50 +01:00
{
[TestFixture]
public class Whole : FilesystemTest
2017-07-05 06:54:50 +01:00
{
2021-03-01 21:33:58 +00:00
public override string DataFolder =>
Path.Combine(Consts.TEST_FILES_ROOT, "Filesystems", "Universal Disc Format", "2.01");
2021-03-01 21:33:58 +00:00
public override IFilesystem Plugin => new Aaru.Filesystems.UDF();
public override bool Partitions => false;
public override FileSystemTest[] Tests => new[]
2017-12-19 20:33:03 +00:00
{
new FileSystemTest
{
TestFile = "linux.aif",
MediaType = MediaType.GENERIC_HDD,
Sectors = 1024000,
SectorSize = 512,
Clusters = 1024000,
ClusterSize = 512,
SystemId = "*Linux UDFFS",
Type = "UDF v2.01",
VolumeName = "Volume label",
VolumeSerial = "595c5d0bee60c3bbLinuxUDF"
},
new FileSystemTest
{
TestFile = "macosx_10.11.aif",
MediaType = MediaType.GENERIC_HDD,
Sectors = 819200,
SectorSize = 512,
Clusters = 819200,
ClusterSize = 512,
SystemId = "*Apple Mac OS X UDF FS",
Type = "UDF v2.01",
VolumeName = "Volume label",
VolumeSerial = "48847EB3 (Mac OS X newfs_udf) UDF Volume Set"
},
new FileSystemTest
{
TestFile = "netbsd_7.1.aif",
MediaType = MediaType.GENERIC_HDD,
2021-05-05 01:50:19 +01:00
Sectors = 262144,
SectorSize = 512,
2021-05-05 01:50:19 +01:00
Clusters = 262144,
ClusterSize = 512,
SystemId = "*NetBSD userland UDF",
Type = "UDF v2.01",
VolumeName = "anonymous",
2021-05-05 01:50:19 +01:00
VolumeSerial = "5bc935e11b089104"
},
new FileSystemTest
{
TestFile = "linux_4.19_udf_2.01_flashdrive.aif",
MediaType = MediaType.GENERIC_HDD,
Sectors = 1024000,
SectorSize = 512,
Clusters = 1024000,
ClusterSize = 512,
SystemId = "*Linux UDFFS",
Type = "UDF v2.01",
VolumeName = "DicSetter",
VolumeSerial = "5cc8816fcb3a3b38LinuxUDF"
2021-05-05 01:50:19 +01:00
},
new FileSystemTest
{
TestFile = "netbsd_6.1.5.aif",
MediaType = MediaType.GENERIC_HDD,
Sectors = 262144,
SectorSize = 512,
Clusters = 262144,
ClusterSize = 512,
SystemId = "*NetBSD userland UDF",
Type = "UDF v2.01",
VolumeName = "anonymous",
VolumeSerial = "60a80c385dda0f96"
}
};
2017-07-05 06:54:50 +01:00
}
2017-12-19 20:33:03 +00:00
}