Files
Aaru/Aaru.Tests/Issues/266.cs

30 lines
1.0 KiB
C#
Raw Normal View History

2022-03-07 07:36:44 +00:00
2021-03-07 21:10:27 +00:00
// ReSharper disable StringLiteralTypo
2022-03-06 13:29:38 +00:00
namespace Aaru.Tests.Issues;
2022-03-07 07:36:44 +00:00
using System.Collections.Generic;
using System.IO;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/263
*
* SilasLaspada commented on Jan 2, 2020
*
* Trying to extract files from an ISO9660 cue image results in output that have the correct names and folders,
* but are corrupted past the first few sectors. The image can be found at
* https://archive.org/details/redump-id-54014
*/
2021-03-07 21:10:27 +00:00
2022-03-06 13:29:38 +00:00
// 20200309 CLAUNIA: Fixed in 3b2bb0ebf0c6c615c5622aebff494ed34b51055d
public class _266 : FsExtractHashIssueTest
{
2022-11-13 05:48:58 +00:00
protected override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue266");
2022-03-06 13:29:38 +00:00
protected override string TestFile => "Namco (USA) (2005 Assets).cue";
2022-03-07 07:36:44 +00:00
protected override Dictionary<string, string> ParsedOptions => new();
2022-03-06 13:29:38 +00:00
protected override bool Debug => false;
protected override bool Xattrs => false;
protected override string Encoding => null;
protected override bool ExpectPartitions => true;
protected override string Namespace => null;
2021-03-07 21:10:27 +00:00
}