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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
// Copyright © 2011-2021 Natalia Portillo
|
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Aaru.Tests.Images
|
|
|
|
|
|
{
|
|
|
|
|
|
[TestFixture]
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public class AppleNib : BlockMediaImageTest
|
2021-02-26 16:14:58 +00:00
|
|
|
|
{
|
2021-03-03 14:31:56 +00:00
|
|
|
|
public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "Nibbles");
|
2021-03-02 02:59:20 +00:00
|
|
|
|
public override IMediaImage _plugin => new DiscImages.AppleNib();
|
2021-02-26 16:14:58 +00:00
|
|
|
|
|
2021-03-02 02:59:20 +00:00
|
|
|
|
public override BlockImageTestExpected[] Tests => new[]
|
2021-02-26 16:14:58 +00:00
|
|
|
|
{
|
2021-03-02 02:59:20 +00:00
|
|
|
|
new BlockImageTestExpected
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "dos32.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple32SS,
|
|
|
|
|
|
Sectors = 455,
|
|
|
|
|
|
SectorSize = 256,
|
|
|
|
|
|
MD5 = "76f8fe4c5bc1976f99641ad7cdf53109"
|
|
|
|
|
|
},
|
|
|
|
|
|
new BlockImageTestExpected
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "dos33.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple33SS,
|
|
|
|
|
|
Sectors = 560,
|
|
|
|
|
|
SectorSize = 256,
|
|
|
|
|
|
MD5 = "0ffcbd4180306192726926b43755db2f"
|
|
|
|
|
|
},
|
|
|
|
|
|
new BlockImageTestExpected
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "pascal.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple33SS,
|
|
|
|
|
|
Sectors = 560,
|
|
|
|
|
|
SectorSize = 256,
|
|
|
|
|
|
MD5 = "4c4926103a32ac15f7e430ec3ced4be5"
|
|
|
|
|
|
},
|
|
|
|
|
|
new BlockImageTestExpected
|
|
|
|
|
|
{
|
|
|
|
|
|
TestFile = "prodos.nib.lz",
|
|
|
|
|
|
MediaType = MediaType.Apple33SS,
|
|
|
|
|
|
Sectors = 560,
|
|
|
|
|
|
SectorSize = 256,
|
|
|
|
|
|
MD5 = "11ef56c80c94347d2e3f921d5c36c8de"
|
|
|
|
|
|
}
|
2021-02-26 16:14:58 +00:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|