// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : QCOW3.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.QEMU { [TestFixture] public class QCOW3 : BlockMediaImageTest { public override string DataFolder => Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "QEMU", "QEMU Copy On Write 3"); public override IMediaImage _plugin => new Qcow2(); public override BlockImageTestExpected[] Tests => new[] { new BlockImageTestExpected { TestFile = "qcow3.qc2.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 251904, SectorSize = 512, MD5 = "4bfc9e9e2dd86aa52ef709e77d2617ed", Partitions = new[] { new BlockPartitionVolumes { Start = 63, Length = 251841 } } }, new BlockImageTestExpected { TestFile = "qcow3_compressed.qc2.lz", MediaType = MediaType.GENERIC_HDD, Sectors = 251904, SectorSize = 512, MD5 = "4bfc9e9e2dd86aa52ef709e77d2617ed", Partitions = new[] { new BlockPartitionVolumes { Start = 63, Length = 251841 } } } }; } }