2021-02-26 21:29:08 +00:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// Aaru Data Preservation Suite
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : VirtualBox.cs
|
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
|
//
|
|
|
|
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
// Copyright © 2011-2021 Natalia Portillo
|
|
|
|
|
|
// ****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using Aaru.CommonTypes;
|
2021-03-02 00:35:16 +00:00
|
|
|
|
using Aaru.CommonTypes.Interfaces;
|
2021-02-26 21:29:08 +00:00
|
|
|
|
using Aaru.DiscImages;
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Aaru.Tests.Images.QEMU
|
|
|
|
|
|
{
|
|
|
|
|
|
[TestFixture]
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public class VirtualBox : BlockMediaImageTest
|
2021-02-26 21:29:08 +00:00
|
|
|
|
{
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public override string[] _testFiles => new[]
|
2021-02-26 21:29:08 +00:00
|
|
|
|
{
|
|
|
|
|
|
"virtualbox.vdi.lz"
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public override ulong[] _sectors => new ulong[]
|
2021-02-26 21:29:08 +00:00
|
|
|
|
{
|
|
|
|
|
|
// virtualbox.vdi.lz
|
|
|
|
|
|
251904
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public override uint[] _sectorSize => new uint[]
|
2021-02-26 21:29:08 +00:00
|
|
|
|
{
|
|
|
|
|
|
// virtualbox.vdi.lz
|
|
|
|
|
|
512
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public override MediaType[] _mediaTypes => new[]
|
2021-02-26 21:29:08 +00:00
|
|
|
|
{
|
|
|
|
|
|
// virtualbox.vdi.lz
|
|
|
|
|
|
MediaType.GENERIC_HDD
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public override string[] _md5S => new[]
|
2021-02-26 21:29:08 +00:00
|
|
|
|
{
|
|
|
|
|
|
// virtualbox.vdi.lz
|
|
|
|
|
|
"4bfc9e9e2dd86aa52ef709e77d2617ed"
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2021-03-02 00:35:16 +00:00
|
|
|
|
public override string _dataFolder =>
|
|
|
|
|
|
Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "QEMU", "VirtualBox");
|
|
|
|
|
|
public override IMediaImage _plugin => new Vdi();
|
2021-02-26 21:29:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|