Files
Aaru/DiscImageChef.Tests/Filters/AppleSingle.cs

113 lines
4.0 KiB
C#
Raw Normal View History

// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : AppleSingle.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/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
using System.IO;
using DiscImageChef.Checksums;
using DiscImageChef.Filters;
using NUnit.Framework;
namespace DiscImageChef.Tests.Filters
{
[TestFixture]
public class AppleSingle
{
const string ExpectedFile = "7497a3b156dcd0c1046a1ab12e188ab7";
const string ExpectedContents = "c2be571406cf6353269faa59a4a8c0a4";
const string ExpectedResource = "a972d27c44193a7587b21416c0953cc3";
readonly string location;
public AppleSingle()
{
location = Path.Combine(Consts.TestFilesRoot, "filters", "applesingle", "DOS_720.ASF");
}
[Test]
public void CheckCorrectFile()
{
MD5Context ctx = new MD5Context();
ctx.Init();
string result = ctx.File(location, out byte[] tmp);
Assert.AreEqual(ExpectedFile, result);
}
[Test]
public void CheckFilterId()
{
Filter filter = new DiscImageChef.Filters.AppleSingle();
Assert.AreEqual(true, filter.Identify(location));
}
[Test]
public void Test()
{
Filter filter = new DiscImageChef.Filters.AppleSingle();
filter.Open(location);
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();
}
[Test]
public void CheckContents()
{
Filter filter = new DiscImageChef.Filters.AppleSingle();
filter.Open(location);
Stream str = filter.GetDataForkStream();
byte[] data = new byte[737280];
str.Read(data, 0, 737280);
str.Close();
str.Dispose();
filter.Close();
MD5Context ctx = new MD5Context();
ctx.Init();
string result = ctx.Data(data, out byte[] tmp);
Assert.AreEqual(ExpectedContents, result);
}
[Test]
public void CheckResource()
{
Filter filter = new DiscImageChef.Filters.AppleSingle();
filter.Open(location);
Stream str = filter.GetResourceForkStream();
byte[] data = new byte[286];
str.Read(data, 0, 286);
str.Close();
str.Dispose();
filter.Close();
MD5Context ctx = new MD5Context();
ctx.Init();
string result = ctx.Data(data, out byte[] tmp);
Assert.AreEqual(ExpectedResource, result);
}
}
2017-12-19 20:33:03 +00:00
}