Files
Aaru/Aaru.Tests/Images/TapeMediaImageTest.cs

191 lines
6.6 KiB
C#
Raw Normal View History

using System;
using System.IO;
using Aaru.Checksums;
using Aaru.CommonTypes;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
using Aaru.Core;
using FluentAssertions;
using FluentAssertions.Execution;
using NUnit.Framework;
namespace Aaru.Tests.Images;
2022-03-06 13:29:38 +00:00
public abstract class TapeMediaImageTest : BaseMediaImageTest
{
2022-03-06 13:29:38 +00:00
// How many sectors to read at once
const uint SECTORS_TO_READ = 256;
2022-03-06 13:29:38 +00:00
public abstract TapeImageTestExpected[] Tests { get; }
[OneTimeSetUp]
public void InitTest() => PluginBase.Init();
2022-03-06 13:29:38 +00:00
[Test]
public void Tape()
{
Environment.CurrentDirectory = DataFolder;
2022-03-06 13:29:38 +00:00
Assert.Multiple(() =>
{
foreach(TapeImageTestExpected test in Tests)
{
2022-03-06 13:29:38 +00:00
string testFile = test.TestFile;
2022-03-06 13:29:38 +00:00
bool exists = File.Exists(testFile);
2024-05-02 03:40:35 +01:00
Assert.That(exists, string.Format(Localization._0_not_found, testFile));
2022-03-06 13:29:38 +00:00
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
// It arrives here...
2024-05-01 04:05:22 +01:00
if(!exists) continue;
IFilter filter = PluginRegister.Singleton.GetFilter(testFile);
2022-03-06 13:29:38 +00:00
filter.Open(testFile);
2022-03-15 01:37:37 +00:00
var image = Activator.CreateInstance(Plugin.GetType()) as ITapeImage;
2024-05-02 03:40:35 +01:00
Assert.That(image,
Is.Not.Null,
string.Format(Localization.Could_not_instantiate_filesystem_for_0, testFile));
2022-03-06 13:29:38 +00:00
ErrorNumber opened = image.Open(filter);
2024-05-02 03:40:35 +01:00
Assert.That(opened, Is.EqualTo(ErrorNumber.NoError), string.Format(Localization.Open_0, testFile));
2024-05-01 04:05:22 +01:00
if(opened != ErrorNumber.NoError) continue;
2024-05-02 03:40:35 +01:00
Assert.That(image.IsTape, Is.True, string.Format(Localization.Is_tape_0, testFile));
2022-03-06 13:29:38 +00:00
using(new AssertionScope())
2023-10-03 23:44:33 +01:00
{
2022-03-06 13:29:38 +00:00
Assert.Multiple(() =>
{
2024-05-01 04:05:22 +01:00
image.Files.Should()
.BeEquivalentTo(test.Files, string.Format(Localization.Tape_files_0, testFile));
2024-05-01 04:05:22 +01:00
image.TapePartitions.Should()
.BeEquivalentTo(test.Partitions, string.Format(Localization.Tape_partitions_0, testFile));
2022-03-06 13:29:38 +00:00
});
2023-10-03 23:44:33 +01:00
}
2022-03-06 13:29:38 +00:00
}
});
}
2022-03-06 13:29:38 +00:00
[Test]
public void Info()
{
Environment.CurrentDirectory = DataFolder;
2022-03-06 13:29:38 +00:00
Assert.Multiple(() =>
{
foreach(TapeImageTestExpected test in Tests)
{
2022-03-06 13:29:38 +00:00
string testFile = test.TestFile;
2022-03-06 13:29:38 +00:00
bool exists = File.Exists(testFile);
2024-05-02 03:40:35 +01:00
Assert.That(exists, string.Format(Localization._0_not_found, testFile));
2022-03-06 13:29:38 +00:00
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
// It arrives here...
2024-05-01 04:05:22 +01:00
if(!exists) continue;
IFilter filter = PluginRegister.Singleton.GetFilter(testFile);
2022-03-06 13:29:38 +00:00
filter.Open(testFile);
2022-03-15 01:37:37 +00:00
var image = Activator.CreateInstance(Plugin.GetType()) as IMediaImage;
2024-05-02 03:40:35 +01:00
Assert.That(image,
Is.Not.Null,
string.Format(Localization.Could_not_instantiate_filesystem_for_0, testFile));
2022-03-06 13:29:38 +00:00
ErrorNumber opened = image.Open(filter);
2024-05-02 03:40:35 +01:00
Assert.That(opened, Is.EqualTo(ErrorNumber.NoError), string.Format(Localization.Open_0, testFile));
2024-05-01 04:05:22 +01:00
if(opened != ErrorNumber.NoError) continue;
2022-03-06 13:29:38 +00:00
using(new AssertionScope())
2023-10-03 23:44:33 +01:00
{
2022-03-06 13:29:38 +00:00
Assert.Multiple(() =>
{
2024-05-02 03:40:35 +01:00
Assert.That(image.Info.Sectors,
Is.EqualTo(test.Sectors),
string.Format(Localization.Sectors_0, testFile));
2024-05-02 03:40:35 +01:00
Assert.That(image.Info.SectorSize,
Is.EqualTo(test.SectorSize),
string.Format(Localization.Sector_size_0, testFile));
2024-05-02 03:40:35 +01:00
Assert.That(image.Info.MediaType,
Is.EqualTo(test.MediaType),
string.Format(Localization.Media_type_0, testFile));
2022-03-06 13:29:38 +00:00
});
2023-10-03 23:44:33 +01:00
}
2022-03-06 13:29:38 +00:00
}
});
}
2022-03-06 13:29:38 +00:00
[Test]
public void Hashes()
{
Environment.CurrentDirectory = DataFolder;
ErrorNumber errno;
2022-03-06 13:29:38 +00:00
Assert.Multiple(() =>
{
foreach(TapeImageTestExpected test in Tests)
{
2022-03-06 13:29:38 +00:00
string testFile = test.TestFile;
2022-03-06 13:29:38 +00:00
bool exists = File.Exists(testFile);
2024-05-02 03:40:35 +01:00
Assert.That(exists, string.Format(Localization._0_not_found, testFile));
2022-03-06 13:29:38 +00:00
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
// It arrives here...
2024-05-01 04:05:22 +01:00
if(!exists) continue;
IFilter filter = PluginRegister.Singleton.GetFilter(testFile);
2022-03-06 13:29:38 +00:00
filter.Open(testFile);
2022-03-15 01:37:37 +00:00
var image = Activator.CreateInstance(Plugin.GetType()) as IMediaImage;
2024-05-02 03:40:35 +01:00
Assert.That(image,
Is.Not.Null,
string.Format(Localization.Could_not_instantiate_filesystem_for_0, testFile));
2022-03-06 13:29:38 +00:00
ErrorNumber opened = image.Open(filter);
2024-05-02 03:40:35 +01:00
Assert.That(opened, Is.EqualTo(ErrorNumber.NoError), string.Format(Localization.Open_0, testFile));
2024-05-01 04:05:22 +01:00
if(opened != ErrorNumber.NoError) continue;
2022-03-06 13:29:38 +00:00
ulong doneSectors = 0;
var ctx = new Md5Context();
2022-03-06 13:29:38 +00:00
while(doneSectors < image.Info.Sectors)
{
byte[] sector;
if(image.Info.Sectors - doneSectors >= SECTORS_TO_READ)
{
errno = image.ReadSectors(doneSectors, false, SECTORS_TO_READ, out sector, out _);
2022-03-06 13:29:38 +00:00
doneSectors += SECTORS_TO_READ;
}
else
{
errno = image.ReadSectors(doneSectors,
false,
(uint)(image.Info.Sectors - doneSectors),
out sector,
out _);
2022-03-06 13:29:38 +00:00
doneSectors += image.Info.Sectors - doneSectors;
}
2024-05-02 03:40:35 +01:00
Assert.That(errno, Is.EqualTo(ErrorNumber.NoError));
2022-03-06 13:29:38 +00:00
ctx.Update(sector);
}
2022-03-06 13:29:38 +00:00
2024-05-02 03:40:35 +01:00
Assert.That(ctx.End(), Is.EqualTo(test.Md5), string.Format(Localization.Hash_0, testFile));
2022-03-06 13:29:38 +00:00
}
});
}
}