Files
Aaru/Aaru.Tests/Issues/358.cs

29 lines
1.0 KiB
C#
Raw Normal View History

2021-03-07 23:18:29 +00:00
// ReSharper disable StringLiteralTypo
2022-03-07 07:36:44 +00:00
using System.Collections.Generic;
2023-10-05 01:05:23 +01:00
using System.Diagnostics.CodeAnalysis;
2022-03-07 07:36:44 +00:00
using System.IO;
namespace Aaru.Tests.Issues;
2022-03-06 13:29:38 +00:00
/* https://github.com/aaru-dps/Aaru/issues/358
*
* roysmeding commented on Apr 27, 2020
*
* When extracting files from a CD-i disk image, the sector subheader data that is required to be able to
* interpret most real-time files is not extracted.
*/
2021-03-07 23:18:29 +00:00
2022-03-06 13:29:38 +00:00
// 20200621 CLAUNIA: Fixed in 83a28237fab9e21b23bd43eb91b5b29f1bf9f220
2023-10-05 01:05:23 +01:00
[SuppressMessage("ReSharper", "UnusedType.Global")]
2022-03-06 13:29:38 +00:00
public class _358 : FsExtractHashIssueTest
{
2022-11-13 05:48:58 +00:00
protected override string DataFolder => Path.Combine(Consts.TestFilesRoot, "Issues", "Fixed", "issue358");
2022-03-06 13:29:38 +00:00
protected override string TestFile => "cdi.aif";
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 => true;
protected override string Encoding => null;
protected override bool ExpectPartitions => true;
protected override string Namespace => null;
2021-03-07 23:18:29 +00:00
}