// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : UDZO.cs // Author(s) : Natalia Portillo // // Component : Aaru 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-2021 Natalia Portillo // ****************************************************************************/ using System.IO; using Aaru.CommonTypes; using Aaru.CommonTypes.Interfaces; using Aaru.DiscImages; using NUnit.Framework; namespace Aaru.Tests.Images.DiskImagesFramework.UDIF { [TestFixture] public class UDZO : BlockMediaImageTest { public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "DiskImagesFramework", "UDIF", "UDZO"); public override IMediaImage _plugin => new Udif(); public override BlockImageTestExpected[] Tests => new[] { new BlockImageTestExpected { TestFile = "DOS_1440.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 2880, SectorSize = 512, MD5 = "ff419213080574056ebd9adf7bab3d32", Partitions = new[] { new BlockPartitionVolumes { Start = 0, Length = 2880 } } }, new BlockImageTestExpected { TestFile = "DOS_720.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 1440, SectorSize = 512, MD5 = "c2be571406cf6353269faa59a4a8c0a4", Partitions = new[] { new BlockPartitionVolumes { Start = 0, Length = 1440 } } }, new BlockImageTestExpected { TestFile = "DOS_DMF.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 3360, SectorSize = 512, MD5 = "92ea7a359957012a682ba126cfdef0ce", Partitions = new[] { new BlockPartitionVolumes { Start = 0, Length = 3360 } } }, new BlockImageTestExpected { TestFile = "DOS_SP_5Mb.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 10240, SectorSize = 512, MD5 = "df3b4331a4a5652393ff55f001998439", Partitions = new[] { new BlockPartitionVolumes { Start = 0, Length = 10240 } } }, new BlockImageTestExpected { TestFile = "HFS_1440.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 2880, SectorSize = 512, MD5 = "3160038ca028ccf52ad7863790072145" }, new BlockImageTestExpected { TestFile = "HFS_800.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 1600, SectorSize = 512, MD5 = "5e255c4bc0f6a26ecd27845b37e65aaa" }, new BlockImageTestExpected { TestFile = "HFS_DMF.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 3360, SectorSize = 512, MD5 = "652dc979c177f2d8e846587158b38478" }, new BlockImageTestExpected { TestFile = "HFSP_SP_5Mb.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 10240, SectorSize = 512, MD5 = "894fa8596f64e161fe7d7f81e74a8839" }, new BlockImageTestExpected { TestFile = "HFS_SP_5Mb.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 10240, SectorSize = 512, MD5 = "506c3deb99e78579b4d77e76224d3b4e" }, new BlockImageTestExpected { TestFile = "ProDOS_1440.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 2880, SectorSize = 512, MD5 = "7975e8cf7579a6848d6fb4e546d1f682" }, new BlockImageTestExpected { TestFile = "ProDOS_800.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 1600, SectorSize = 512, MD5 = "a72da7aedadbe194c22a3d71c62e4766" }, new BlockImageTestExpected { TestFile = "ProDOS_DMF.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 3360, SectorSize = 512, MD5 = "7fbf0251a93cb36d98e68b7d19624de5" }, new BlockImageTestExpected { TestFile = "UFS_1440.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 2880, SectorSize = 512, MD5 = "b37823c7a90d1917f719ba5927b23da8" }, new BlockImageTestExpected { TestFile = "UFS_720.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 1440, SectorSize = 512, MD5 = "4942032f7bf1d115237ea1764424828b" }, new BlockImageTestExpected { TestFile = "UFS_800.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 1600, SectorSize = 512, MD5 = "85574aebeef03eb355bf8541955d06ea" }, new BlockImageTestExpected { TestFile = "UFS_DMF.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 3360, SectorSize = 512, MD5 = "cdfebf3f8b8f250dc6905a90dd1bc90f" }, new BlockImageTestExpected { TestFile = "UFS_SP_5Mb.dmg.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 10304, SectorSize = 512, MD5 = "b7d4ad55c7702658081b6578b588a57f" } }; } }