Files
Aaru/Aaru.Tests/Images/SuperCardPro.cs
2025-12-26 21:42:05 +01:00

106 lines
3.6 KiB
C#

// /***************************************************************************
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : SuperCardPro.cs
// Author(s) : Rebecca Wallander <sakcheen+github@gmail.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-2026 Rebecca Wallander
// ****************************************************************************/
using System.IO;
using Aaru.CommonTypes.Interfaces;
using NUnit.Framework;
namespace Aaru.Tests.Images;
[TestFixture]
public class SuperCardPro : FluxMediaImageTest
{
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Media image formats", "SuperCardPro");
public override IMediaImage Plugin => new Aaru.Images.SuperCardPro();
public override FluxImageTestExpected[] Tests =>
[
new()
{
TestFile = "Go Simulator (1992)(Infogrames).scp",
FluxCaptureCount = 160,
FluxCaptures = [
new FluxCaptureTestExpected
{
Head = 0,
Track = 0,
SubTrack = 0,
CaptureIndex = 0,
IndexResolution = 25000,
DataResolution = 25000
},
new FluxCaptureTestExpected
{
Head = 1,
Track = 0,
SubTrack = 0,
CaptureIndex = 0,
IndexResolution = 25000,
DataResolution = 25000
},
new FluxCaptureTestExpected
{
Head = 0,
Track = 1,
SubTrack = 0,
CaptureIndex = 0,
IndexResolution = 25000,
DataResolution = 25000
},
new FluxCaptureTestExpected
{
Head = 1,
Track = 1,
SubTrack = 0,
CaptureIndex = 0,
IndexResolution = 25000,
DataResolution = 25000
},
new FluxCaptureTestExpected
{
Head = 0,
Track = 2,
SubTrack = 0,
CaptureIndex = 0,
IndexResolution = 25000,
DataResolution = 25000
},
new FluxCaptureTestExpected
{
Head = 1,
Track = 2,
SubTrack = 0,
CaptureIndex = 0,
IndexResolution = 25000,
DataResolution = 25000
},
]
},
];
}