2021-02-26 16:14:58 +00:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : AppleNIB.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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2024-12-19 10:45:18 +00:00
|
|
|
|
// Copyright © 2011-2025 Natalia Portillo
|
2021-02-26 16:14:58 +00:00
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using Aaru.CommonTypes;
|
2021-03-02 00:35:16 +00:00
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2021-02-26 16:14:58 +00:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
|
namespace Aaru.Tests.Images;
|
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
|
[TestFixture]
|
|
|
|
|
|
public class AppleNib : BlockMediaImageTest
|
2021-02-26 16:14:58 +00:00
|
|
|
|
{
|
2022-11-13 05:48:58 +00:00
|
|
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Media image formats", "Nibbles");
|
2023-10-06 01:16:28 +01:00
|
|
|
|
public override IMediaImage Plugin => new Aaru.Images.AppleNib();
|
2021-02-26 16:14:58 +00:00
|
|
|
|
|
2024-05-01 04:39:38 +01:00
|
|
|
|
public override BlockImageTestExpected[] Tests =>
|
|
|
|
|
|
[
|
2025-11-24 20:12:10 +00:00
|
|
|
|
new()
|
2021-02-26 16:14:58 +00:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
TestFile = "dos32.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple32SS,
|
|
|
|
|
|
Sectors = 455,
|
|
|
|
|
|
SectorSize = 256,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "76f8fe4c5bc1976f99641ad7cdf53109",
|
2024-05-01 04:39:38 +01:00
|
|
|
|
Partitions =
|
|
|
|
|
|
[
|
2022-03-06 13:29:38 +00:00
|
|
|
|
new BlockPartitionVolumes
|
2021-07-13 20:05:51 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Start = 0,
|
|
|
|
|
|
Length = 455
|
2021-07-13 20:05:51 +01:00
|
|
|
|
}
|
2024-05-01 04:39:38 +01:00
|
|
|
|
]
|
2022-03-06 13:29:38 +00:00
|
|
|
|
},
|
2025-11-24 20:12:10 +00:00
|
|
|
|
new()
|
2022-03-06 13:29:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
TestFile = "dos33.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple33SS,
|
|
|
|
|
|
Sectors = 560,
|
|
|
|
|
|
SectorSize = 256,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "0ffcbd4180306192726926b43755db2f",
|
2024-05-01 04:39:38 +01:00
|
|
|
|
Partitions =
|
|
|
|
|
|
[
|
2022-03-06 13:29:38 +00:00
|
|
|
|
new BlockPartitionVolumes
|
2021-07-13 20:05:51 +01:00
|
|
|
|
{
|
2022-03-06 13:29:38 +00:00
|
|
|
|
Start = 0,
|
|
|
|
|
|
Length = 560
|
2021-07-13 20:05:51 +01:00
|
|
|
|
}
|
2024-05-01 04:39:38 +01:00
|
|
|
|
]
|
2022-03-06 13:29:38 +00:00
|
|
|
|
},
|
2025-11-24 20:12:10 +00:00
|
|
|
|
new()
|
2022-03-06 13:29:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pascal.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple33SS,
|
|
|
|
|
|
Sectors = 560,
|
|
|
|
|
|
SectorSize = 256,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "4c4926103a32ac15f7e430ec3ced4be5"
|
2022-03-06 13:29:38 +00:00
|
|
|
|
},
|
2025-11-24 20:12:10 +00:00
|
|
|
|
new()
|
2022-03-06 13:29:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
TestFile = "prodos.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple33SS,
|
|
|
|
|
|
Sectors = 560,
|
|
|
|
|
|
SectorSize = 256,
|
2022-03-15 01:37:37 +00:00
|
|
|
|
Md5 = "11ef56c80c94347d2e3f921d5c36c8de"
|
2022-03-06 13:29:38 +00:00
|
|
|
|
}
|
2024-05-01 04:39:38 +01:00
|
|
|
|
];
|
2021-02-26 16:14:58 +00:00
|
|
|
|
}
|