Files
Aaru/Aaru.Tests/Images/AppleDOS/DOS32.cs

64 lines
2.2 KiB
C#
Raw Normal View History

2021-02-22 05:00:12 +00:00
// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : DOS32.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/>.
//
// ----------------------------------------------------------------------------
2022-12-03 16:07:10 +00:00
// Copyright © 2011-2023 Natalia Portillo
2021-02-22 05:00:12 +00:00
// ****************************************************************************/
using System.IO;
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
2021-02-22 05:00:12 +00:00
using Aaru.DiscImages;
using NUnit.Framework;
namespace Aaru.Tests.Images.AppleDOS;
2022-03-06 13:29:38 +00:00
[TestFixture]
public class DOS32 : BlockMediaImageTest
2021-02-22 05:00:12 +00:00
{
2022-03-06 13:29:38 +00:00
public override string DataFolder =>
2022-11-13 05:48:58 +00:00
Path.Combine(Consts.TestFilesRoot, "Media image formats", "Apple DOS 13 sectors");
2023-10-03 23:44:33 +01:00
2022-03-15 01:37:37 +00:00
public override IMediaImage Plugin => new AppleDos();
2022-03-06 13:29:38 +00:00
public override BlockImageTestExpected[] Tests => new[]
{
new BlockImageTestExpected
{
2022-03-06 13:29:38 +00:00
TestFile = "alice.d13.lz",
MediaType = MediaType.Apple32SS,
Sectors = 455,
SectorSize = 256,
2022-03-15 01:37:37 +00:00
Md5 = "76f8fe4c5bc1976f99641ad7cdf53109",
2022-03-06 13:29:38 +00:00
Partitions = new[]
{
2022-03-06 13:29:38 +00:00
new BlockPartitionVolumes
{
2022-03-06 13:29:38 +00:00
Start = 0,
Length = 455
}
}
2022-03-06 13:29:38 +00:00
}
};
2021-02-22 05:00:12 +00:00
}