// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : MacBinary1.cs // Author(s) : Natalia Portillo // // 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 . // // ---------------------------------------------------------------------------- // Copyright © 2011-2018 Natalia Portillo // ****************************************************************************/ using System.IO; using DiscImageChef.Checksums; using DiscImageChef.Filters; using NUnit.Framework; namespace DiscImageChef.Tests.Filters { [TestFixture] public class MacBinary1 { const string EXPECTED_FILE = "596c38555bc7ba284648d1ce57700884"; const string EXPECTED_CONTENTS = "c2be571406cf6353269faa59a4a8c0a4"; const string EXPECTED_RESOURCE = "a972d27c44193a7587b21416c0953cc3"; readonly string location; public MacBinary1() { location = Path.Combine(Consts.TestFilesRoot, "filters", "macbinary", "macbinary1.bin"); } [Test] public void CheckCorrectFile() { Md5Context ctx = new Md5Context(); ctx.Init(); string result = ctx.File(location, out _); Assert.AreEqual(EXPECTED_FILE, 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 _); Assert.AreEqual(EXPECTED_CONTENTS, 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 _); Assert.AreEqual(EXPECTED_RESOURCE, result); } } }