Files
Aaru/Aaru.Tests/Filters/MacBinary3.cs

106 lines
3.7 KiB
C#
Raw Normal View History

// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : MacBinary3.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : DiscImageChef 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/>.
//
// ----------------------------------------------------------------------------
2020-07-25 01:58:50 +01:00
// Copyright © 2011-2020 Natalia Portillo
// ****************************************************************************/
using System.IO;
2020-02-27 00:33:26 +00:00
using Aaru.Checksums;
using Aaru.CommonTypes.Interfaces;
using Aaru.Filters;
using NUnit.Framework;
2020-02-27 00:33:26 +00:00
namespace Aaru.Tests.Filters
{
[TestFixture]
public class MacBinary3
{
const string EXPECTED_FILE = "3a7363a6109fb52a264b0b45dfa16694";
const string EXPECTED_CONTENTS = "c2be571406cf6353269faa59a4a8c0a4";
const string EXPECTED_RESOURCE = "a972d27c44193a7587b21416c0953cc3";
2020-07-20 21:11:32 +01:00
readonly string _location;
2020-07-20 21:11:32 +01:00
public MacBinary3() =>
_location = Path.Combine(Consts.TEST_FILES_ROOT, "Filters", "MacBinary", "macbinary3.bin");
2020-02-29 18:03:35 +00:00
[Test]
public void CheckContents()
{
2020-02-29 18:03:35 +00:00
IFilter filter = new MacBinary();
2020-07-20 21:11:32 +01:00
filter.Open(_location);
2020-02-29 18:03:35 +00:00
Stream str = filter.GetDataForkStream();
byte[] data = new byte[737280];
str.Read(data, 0, 737280);
str.Close();
str.Dispose();
filter.Close();
string result = Md5Context.Data(data, out _);
Assert.AreEqual(EXPECTED_CONTENTS, result);
}
[Test]
public void CheckCorrectFile()
{
2020-07-20 21:11:32 +01:00
string result = Md5Context.File(_location, out _);
Assert.AreEqual(EXPECTED_FILE, result);
}
[Test]
public void CheckFilterId()
{
IFilter filter = new MacBinary();
2020-07-20 21:11:32 +01:00
Assert.AreEqual(true, filter.Identify(_location));
}
[Test]
2020-02-29 18:03:35 +00:00
public void CheckResource()
{
IFilter filter = new MacBinary();
2020-07-20 21:11:32 +01:00
filter.Open(_location);
2020-02-29 18:03:35 +00:00
Stream str = filter.GetResourceForkStream();
byte[] data = new byte[286];
str.Read(data, 0, 286);
str.Close();
str.Dispose();
filter.Close();
string result = Md5Context.Data(data, out _);
2020-02-29 18:03:35 +00:00
Assert.AreEqual(EXPECTED_RESOURCE, result);
}
[Test]
2020-02-29 18:03:35 +00:00
public void Test()
{
IFilter filter = new MacBinary();
2020-07-20 21:11:32 +01:00
filter.Open(_location);
2020-02-29 18:03:35 +00:00
Assert.AreEqual(true, filter.IsOpened());
Assert.AreEqual(737280, filter.GetDataForkLength());
Assert.AreNotEqual(null, filter.GetDataForkStream());
Assert.AreEqual(286, filter.GetResourceForkLength());
Assert.AreNotEqual(null, filter.GetResourceForkStream());
Assert.AreEqual(true, filter.HasResourceFork());
filter.Close();
}
}
2017-12-19 20:33:03 +00:00
}