2021-03-08 03:21:39 +00:00
|
|
|
using System.Collections.Generic;
|
2023-10-05 01:05:23 +01:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2021-03-08 03:21:39 +00:00
|
|
|
using System.IO;
|
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2023-10-06 01:16:28 +01:00
|
|
|
using Aaru.Images;
|
2021-03-08 03:21:39 +00:00
|
|
|
|
2022-11-15 15:58:43 +00:00
|
|
|
namespace Aaru.Tests.Issues;
|
|
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
/* https://github.com/aaru-dps/Aaru/issues/398
|
|
|
|
|
*
|
|
|
|
|
* SilasLaspada commented on Jul 28, 2020
|
|
|
|
|
*
|
|
|
|
|
* Trying to convert a CDI image of a CDROM crashes Aaru. I've tried ISO, CUE, MDS, and AARUF.
|
|
|
|
|
* Image file: sonycdi.zip
|
|
|
|
|
*/
|
2021-03-08 03:21:39 +00:00
|
|
|
|
2022-03-06 13:29:38 +00:00
|
|
|
// 20201104 CLAUNIA: Fixed in 7723fc2d0dbe0a6e6dc7b5cabc17f6798bb5eebb
|
2023-10-05 01:05:23 +01:00
|
|
|
[SuppressMessage("ReSharper", "UnusedType.Global")]
|
2022-03-06 13:29:38 +00:00
|
|
|
public class _398 : OpticalImageConvertIssueTest
|
|
|
|
|
{
|
2022-03-07 07:36:44 +00:00
|
|
|
public override Dictionary<string, string> ParsedOptions => new();
|
2022-11-13 05:48:58 +00:00
|
|
|
public override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue398");
|
2022-03-06 13:29:38 +00:00
|
|
|
public override string InputPath => "sonycdi.cdi.xz";
|
|
|
|
|
public override string SuggestedOutputFilename => "AaruIssue398Output.aif";
|
|
|
|
|
public override IWritableImage OutputFormat => new AaruFormat();
|
|
|
|
|
public override string Md5 => null;
|
|
|
|
|
public override bool UseLong => false;
|
2021-03-08 03:21:39 +00:00
|
|
|
}
|