// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : V1.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; using System.IO; using System.Linq; using System.Threading.Tasks; using Aaru.Checksums; using Aaru.CommonTypes; using Aaru.CommonTypes.Enums; using Aaru.CommonTypes.Structs; using Aaru.Filters; using FluentAssertions; using FluentAssertions.Execution; using NUnit.Framework; namespace Aaru.Tests.Images.AaruFormat { [TestFixture] public class V1 { readonly string[] _testFiles = { "cdiready_the_apprentice.aif", "report_audiocd.aif", "report_cdr.aif", "report_cdrom.aif", "report_cdrw_2x.aif", "report_dvd+r.aif", "report_dvd-r.aif", "report_dvd-ram_v1.aif", "report_dvd-ram_v2.aif", "report_dvd+r_dl.aif", "report_dvd-rom.aif", "report_dvd+rw.aif", "report_dvd-rw.aif", "report_enhancedcd.aif", "test_audiocd_cdtext.aif", "test_audiocd_multiple_indexes.aif", "test_cdr_incd_finalized.aif", "test_enhancedcd.aif", "test_multi_karaoke_sampler.aif", "test_multisession.aif", "test_videocd.aif" }; readonly ulong[] _sectors = { // cdiready_the_apprentice.aif 279300, // report_audiocd.aif 247073, // report_cdr.aif 254265, // report_cdrom.aif 254265, // report_cdrw_2x.aif 308224, // report_dvd+r.aif 2146368, // report_dvd-r.aif 2146368, // report_dvd-ram_v1.aif 1218960, // report_dvd-ram_v2.aif 2236704, // report_dvd+r_dl.aif 16384000, // report_dvd-rom.aif 2146368, // report_dvd+rw.aif 2295104, // report_dvd-rw.aif 2146368, // report_enhancedcd.aif 303316, // test_audiocd_cdtext.aif 277696, // test_audiocd_multiple_indexes.aif 65536, // test_cdr_incd_finalized.aif 350134, // test_enhancedcd.aif 59206, // test_multi_karaoke_sampler.aif 329158, // test_multisession.aif 51168, // test_videocd.aif 48794 }; readonly MediaType[] _mediaTypes = { // cdiready_the_apprentice.aif MediaType.CDIREADY, // report_audiocd.aif MediaType.CDDA, // report_cdr.aif MediaType.CDR, // report_cdrom.aif MediaType.CDROM, // report_cdrw_2x.aif MediaType.CDRW, // report_dvd+r.aif MediaType.DVDPR, // report_dvd-r.aif MediaType.DVDR, // report_dvd-ram_v1.aif MediaType.DVDRAM, // report_dvd-ram_v2.aif MediaType.DVDRAM, // report_dvd+r_dl.aif MediaType.DVDROM, // report_dvd-rom.aif MediaType.DVDROM, // report_dvd+rw.aif MediaType.DVDPRW, // report_dvd-rw.aif MediaType.DVDRWDL, // report_enhancedcd.aif MediaType.CD, // test_audiocd_cdtext.aif MediaType.CDR, // test_audiocd_multiple_indexes.aif MediaType.CDR, // test_cdr_incd_finalized.aif MediaType.CDR, // test_enhancedcd.aif MediaType.CDR, // test_multi_karaoke_sampler.aif MediaType.CD, // test_multisession.aif MediaType.CDR, // test_videocd.aif MediaType.CDR }; readonly string[] _md5S = { // cdiready_the_apprentice.aif "ad6b898e5f93faf33967fe53fea7037e", // report_audiocd.aif "c9036cb72bcb67d469ca82eb7a66cb2a", // report_cdr.aif "bf4bbec517101d0d6f45d2e4d50cb875", // report_cdrom.aif "bf4bbec517101d0d6f45d2e4d50cb875", // report_cdrw_2x.aif "1e55aa420ca8f8ea77d5b597c9cfc19b", // report_dvd+r.aif "106f141400355476b499213f36a363f9", // report_dvd-r.aif "106f141400355476b499213f36a363f9", // report_dvd-ram_v1.aif "c22b7796791cd4299d74863ed04496c6", // report_dvd-ram_v2.aif "00b1d7c5e9855959a4d2f6b796aeaf4c", // report_dvd+r_dl.aif "63d0fd3f25ab503a1818b15ca5eb86b5", // report_dvd-rom.aif "106f141400355476b499213f36a363f9", // report_dvd+rw.aif "3c03ab1def372553f1b04afa0fdbc527", // report_dvd-rw.aif "106f141400355476b499213f36a363f9", // report_enhancedcd.aif "d10b427d18546a3c8f548edb6d911798", // test_audiocd_cdtext.aif "78466ec1a08d7804a6cb38f2ed89b10f", // test_audiocd_multiple_indexes.aif "d5d22e15dcf3f081d562b351611a8991", // test_cdr_incd_finalized.aif "edc146b00d622f92c6a9bb4648cbea82", // test_enhancedcd.aif "2fd88f1e8c21601017c937963d8fe5eb", // test_multi_karaoke_sampler.aif "fef9ff409aa2643ac0c0649e84346f5f", // test_multisession.aif "099011fe470ce7ca0ecb52368cd2efe5", // test_videocd.aif "a5531d15eefe70ff21718b3b5da08255" }; readonly string[] _longMd5S = { // cdiready_the_apprentice.aif "8c897ff39ce1ae7b091bfd00fbc3c1bb", // report_audiocd.aif "c9036cb72bcb67d469ca82eb7a66cb2a", // report_cdr.aif "3d3f9cf7d1ba2249b1e7960071e5af46", // report_cdrom.aif "3d3f9cf7d1ba2249b1e7960071e5af46", // report_cdrw_2x.aif "3af5f943ddb9427d9c63a4ce3b704db9", // report_dvd+r.aif "106f141400355476b499213f36a363f9", // report_dvd-r.aif "106f141400355476b499213f36a363f9", // report_dvd-ram_v1.aif "c22b7796791cd4299d74863ed04496c6", // report_dvd-ram_v2.aif "00b1d7c5e9855959a4d2f6b796aeaf4c", // report_dvd+r_dl.aif "63d0fd3f25ab503a1818b15ca5eb86b5", // report_dvd-rom.aif "106f141400355476b499213f36a363f9", // report_dvd+rw.aif "3c03ab1def372553f1b04afa0fdbc527", // report_dvd-rw.aif "106f141400355476b499213f36a363f9", // report_enhancedcd.aif "1c2ff79133d4db028ce415a8b03e70c2", // test_audiocd_cdtext.aif "78466ec1a08d7804a6cb38f2ed89b10f", // test_audiocd_multiple_indexes.aif "d5d22e15dcf3f081d562b351611a8991", // test_cdr_incd_finalized.aif "6b36340c27d5583e73539175eb87c683", // test_enhancedcd.aif "151e45bd1e949e0416d64eb89f48a55b", // test_multi_karaoke_sampler.aif "ef18dc4f63ad59c6294ab09da7704366", // test_multisession.aif "997fa9a35a2c9a6efbbbd55fcc9008f5", // test_videocd.aif "11a0d9994ee761655ef4d61c6cda99e9" }; readonly string[] _subchannelMd5S = { // cdiready_the_apprentice.aif "579e2b502d86bc1eb7d6aded2b752c36", // report_audiocd.aif "6d2ae02b362918f531ad414c736d349a", // report_cdr.aif "34b8e75c3038deceaea7d382f22740cb", // report_cdrom.aif "5d7f79a75e21f56e62d6fc894ee71ee6", // report_cdrw_2x.aif "80a59aaf861f925a530e1b0d7857fe25", // report_dvd+r.aif null, // report_dvd-r.aif null, // report_dvd-ram_v1.aif null, // report_dvd-ram_v2.aif null, // report_dvd+r_dl.aif null, // report_dvd-rom.aif null, // report_dvd+rw.aif null, // report_dvd-rw.aif null, // report_enhancedcd.aif "f80d8f55069a8815bd03cb2b6d9284b8", // test_audiocd_cdtext.aif "ac39ed98b7033da6aa936b4314574a2a", // test_audiocd_multiple_indexes.aif "3546cc3e1b2b3898de5a03083af9d6ee", // test_cdr_incd_finalized.aif "663da762a5bef780d09217fca9d23e08", // test_enhancedcd.aif "9b33f13d1dab986e981ba924797f464a", // test_multi_karaoke_sampler.aif "aa71734f6385319656e2f1a64af5328b", // test_multisession.aif "0eecfd65daf8a2aa9fea47cf2072350e", // test_videocd.aif "f49e383ccee2f3cb97aeb82fcb4fdb18" }; readonly int[] _tracks = { // cdiready_the_apprentice.aif 23, // report_audiocd.aif 14, // report_cdr.aif 1, // report_cdrom.aif 1, // report_cdrw_2x.aif 1, // report_dvd+r.aif 1, // report_dvd-r.aif 1, // report_dvd-ram_v1.aif 1, // report_dvd-ram_v2.aif 1, // report_dvd+r_dl.aif 1, // report_dvd-rom.aif 1, // report_dvd+rw.aif 1, // report_dvd-rw.aif 1, // report_enhancedcd.aif 14, // test_audiocd_cdtext.aif 11, // test_audiocd_multiple_indexes.aif 5, // test_cdr_incd_finalized.aif 1, // test_enhancedcd.aif 3, // test_multi_karaoke_sampler.aif 16, // test_multisession.aif 4, // test_videocd.aif 2 }; readonly int[][] _trackSessions = { // cdiready_the_apprentice.aif new[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, // report_audiocd.aif new[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, // report_cdr.aif new[] { 1 }, // report_cdrom.aif new[] { 1 }, // report_cdrw_2x.aif new[] { 1 }, // report_dvd+r.aif new[] { 1 }, // report_dvd-r.aif new[] { 1 }, // report_dvd-ram_v1.aif new[] { 1 }, // report_dvd-ram_v2.aif new[] { 1 }, // report_dvd+r_dl.aif new[] { 1 }, // report_dvd-rom.aif new[] { 1 }, // report_dvd+rw.aif new[] { 1 }, // report_dvd-rw.aif new[] { 1 }, // report_enhancedcd.aif new[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2 }, // test_audiocd_cdtext.aif new[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, // test_audiocd_multiple_indexes.aif new[] { 1, 1, 1, 1, 1 }, // test_cdr_incd_finalized.aif new[] { 1 }, // test_enhancedcd.aif new[] { 1, 1, 2 }, // test_multi_karaoke_sampler.aif new[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }, // test_multisession.aif new[] { 1, 2, 3, 4 }, // test_videocd.aif new[] { 1, 1 } }; readonly ulong[][] _trackStarts = { // cdiready_the_apprentice.aif new ulong[] { 0, 69150, 88650, 107475, 112050, 133500, 138075, 159675, 164625, 185250, 189975, 208725, 212850, 232050, 236550, 241725, 255975, 256725, 265500, 267225, 269850, 271500, 274125 }, // report_audiocd.aif new ulong[] { 0, 16399, 29901, 47800, 63164, 78775, 94582, 116975, 136016, 153922, 170601, 186389, 201649, 224299 }, // report_cdr.aif new ulong[] { 0 }, // report_cdrom.aif new ulong[] { 0 }, // report_cdrw_2x.aif new ulong[] { 0 }, // report_dvd+r.aif new ulong[] { 0 }, // report_dvd-r.aif new ulong[] { 0 }, // report_dvd-ram_v1.aif new ulong[] { 0 }, // report_dvd-ram_v2.aif new ulong[] { 0 }, // report_dvd+r_dl.aif new ulong[] { 0 }, // report_dvd-rom.aif new ulong[] { 0 }, // report_dvd+rw.aif new ulong[] { 0 }, // report_dvd-rw.aif new ulong[] { 0 }, // report_enhancedcd.aif new ulong[] { 0, 15661, 33959, 51330, 71973, 87582, 103305, 117691, 136167, 153418, 166932, 187113, 201441, 234034 }, // test_audiocd_cdtext.aif new ulong[] { 0, 29752, 65034, 78426, 95080, 126147, 154959, 191685, 222776, 243438, 269600 }, // test_audiocd_multiple_indexes.aif new ulong[] { 0, 4653, 13805, 36685, 54989 }, // test_cdr_incd_finalized.aif new ulong[] { 0 }, // test_enhancedcd.aif new ulong[] { 0, 14256, 40207 }, // test_multi_karaoke_sampler.aif new ulong[] { 0, 1737, 32749, 52672, 70304, 100098, 119761, 136999, 155790, 175826, 206461, 226450, 244355, 273965, 293752, 310711 }, // test_multisession.aif new ulong[] { 0, 19387, 32714, 45232 }, // test_videocd.aif new ulong[] { 0, 1108 } }; readonly ulong[][] _trackEnds = { // cdiready_the_apprentice.aif new ulong[] { 69149, 88649, 107474, 112049, 133499, 138074, 159674, 164624, 185249, 189974, 208724, 212849, 232049, 236549, 241724, 255974, 256724, 265499, 267224, 269849, 271499, 274124, 279299 }, // report_audiocd.aif new ulong[] { 16398, 29900, 47799, 63163, 78774, 94581, 116974, 136015, 153921, 170600, 186388, 201648, 224298, 247072 }, // report_cdr.aif new ulong[] { 254264 }, // report_cdrom.aif new ulong[] { 254264 }, // report_cdrw_2x.aif new ulong[] { 308223 }, // report_dvd+r.aif new ulong[] { 2146367 }, // report_dvd-r.aif new ulong[] { 2146367 }, // report_dvd-ram_v1.aif new ulong[] { 1218959 }, // report_dvd-ram_v2.aif new ulong[] { 2236703 }, // report_dvd+r_dl.aif new ulong[] { 16383999 }, // report_dvd-rom.aif new ulong[] { 2146367 }, // report_dvd+rw.aif new ulong[] { 2295103 }, // report_dvd-rw.aif new ulong[] { 2146367 }, // report_enhancedcd.aif new ulong[] { 15660, 33958, 51329, 71972, 87581, 103304, 117690, 136166, 153417, 166931, 187112, 201440, 234033, 303315 }, // test_audiocd_cdtext.aif new ulong[] { 29751, 65033, 78425, 95079, 126146, 154958, 191684, 222775, 243437, 269599, 277695 }, // test_audiocd_multiple_indexes.aif new ulong[] { 4652, 13804, 36684, 54988, 65535 }, // test_cdr_incd_finalized.aif new ulong[] { 350133 }, // test_enhancedcd.aif new ulong[] { 14255, 40206, 59205 }, // test_multi_karaoke_sampler.aif new ulong[] { 1736, 32748, 52671, 70303, 100097, 119760, 136998, 155789, 175825, 206460, 226449, 244354, 273964, 293751, 310710, 329157 }, // test_multisession.aif new ulong[] { 19386, 32713, 45231, 51167 }, // test_videocd.aif new ulong[] { 1107, 48793 } }; readonly ulong[][] _trackPregaps = { // cdiready_the_apprentice.aif new ulong[] { 0, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150 }, // report_audiocd.aif new ulong[] { 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150 }, // report_cdr.aif new ulong[] { 150 }, // report_cdrom.aif new ulong[] { 150 }, // report_cdrw_2x.aif new ulong[] { 150 }, // report_dvd+r.aif new ulong[] { 0 }, // report_dvd-r.aif new ulong[] { 0 }, // report_dvd-ram_v1.aif new ulong[] { 0 }, // report_dvd-ram_v2.aif new ulong[] { 0 }, // report_dvd+r_dl.aif new ulong[] { 0 }, // report_dvd-rom.aif new ulong[] { 0 }, // report_dvd+rw.aif new ulong[] { 0 }, // report_dvd-rw.aif new ulong[] { 0 }, // report_enhancedcd.aif new ulong[] { 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146 }, // test_audiocd_cdtext.aif new ulong[] { 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150 }, // test_audiocd_multiple_indexes.aif new ulong[] { 150, 151, 70, 4500, 0 }, // test_cdr_incd_finalized.aif new ulong[] { 150 }, // test_enhancedcd.aif new ulong[] { 150, 149, 146 }, // test_multi_karaoke_sampler.aif new ulong[] { 150, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, // test_multisession.aif new ulong[] { 150, 146, 146, 146 }, // test_videocd.aif new ulong[] { 150, 144 } }; readonly byte[][] _trackFlags = { // cdiready_the_apprentice.aif new byte[] { 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, // report_audiocd.aif new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, // report_cdr.aif new byte[] { 4 }, // report_cdrom.aif new byte[] { 4 }, // report_cdrw_2x.aif new byte[] { 4 }, // report_dvd+r.aif // null, new byte[] { 0 }, // report_dvd-r.aif // null, new byte[] { 0 }, // report_dvd-ram_v1.aif // null, new byte[] { 0 }, // report_dvd-ram_v2.aif // null, new byte[] { 0 }, // report_dvd+r_dl.aif // null, new byte[] { 0 }, // report_dvd-rom.aif // null, new byte[] { 0 }, // report_dvd+rw.aif // null, new byte[] { 0 }, // report_dvd-rw.aif // null, new byte[] { 0 }, // report_enhancedcd.aif new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4 }, // test_audiocd_cdtext.aif new byte[] { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 }, // test_audiocd_multiple_indexes.aif new byte[] { 2, 0, 0, 8, 1 }, // test_cdr_incd_finalized.aif new byte[] { 7 }, // test_enhancedcd.aif new byte[] { 0, 0, 4 }, // test_multi_karaoke_sampler.aif new byte[] { 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, // test_multisession.aif new byte[] { 4, 4, 4, 4 }, // test_videocd.aif new byte[] { 4, 4 } }; [Test] public void Test() { Environment.CurrentDirectory = Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "AaruFormat", "V1"); for(int i = 0; i < _testFiles.Length; i++) { var filter = new ZZZNoFilter(); filter.Open(_testFiles[i]); var image = new DiscImages.AaruFormat(); bool opened = image.Open(filter); Assert.AreEqual(true, opened, $"Open: {_testFiles[i]}"); using(new AssertionScope()) { Assert.Multiple(() => { Assert.AreEqual(_sectors[i], image.Info.Sectors, $"Sectors: {_testFiles[i]}"); Assert.AreEqual(_mediaTypes[i], image.Info.MediaType, $"Media type: {_testFiles[i]}"); Assert.AreEqual(_tracks[i], image.Tracks.Count, $"Tracks: {_testFiles[i]}"); image.Tracks.Select(t => t.TrackSession).Should(). BeEquivalentTo(_trackSessions[i], $"Track session: {_testFiles[i]}"); image.Tracks.Select(t => t.TrackStartSector).Should(). BeEquivalentTo(_trackStarts[i], $"Track start: {_testFiles[i]}"); image.Tracks.Select(t => t.TrackEndSector).Should(). BeEquivalentTo(_trackEnds[i], $"Track end: {_testFiles[i]}"); image.Tracks.Select(t => t.TrackPregap).Should(). BeEquivalentTo(_trackPregaps[i], $"Track pregap: {_testFiles[i]}"); int trackNo = 0; byte[] flags = new byte[image.Tracks.Count]; foreach(Track currentTrack in image.Tracks) { if(image.Info.ReadableSectorTags.Contains(SectorTagType.CdTrackFlags)) flags[trackNo] = image.ReadSectorTag(currentTrack.TrackSequence, SectorTagType.CdTrackFlags)[0]; trackNo++; } flags.Should().BeEquivalentTo(_trackFlags[i], $"Track flags: {_testFiles[i]}"); }); } } } [Test] public void Hashes() { // How many sectors to read at once const uint sectorsToRead = 256; Environment.CurrentDirectory = Path.Combine(Consts.TEST_FILES_ROOT, "Media image formats", "AaruFormat", "V1"); Assert.Multiple(() => { Parallel.For(0, _testFiles.Length, (i, state) => { var filter = new ZZZNoFilter(); filter.Open(_testFiles[i]); var image = new DiscImages.AaruFormat(); bool opened = image.Open(filter); Assert.AreEqual(true, opened, $"Open: {_testFiles[i]}"); Md5Context ctx; foreach(bool @long in new[] { false, true }) { ctx = new Md5Context(); foreach(Track currentTrack in image.Tracks) { ulong sectors = currentTrack.TrackEndSector - currentTrack.TrackStartSector + 1; ulong doneSectors = 0; while(doneSectors < sectors) { byte[] sector; if(sectors - doneSectors >= sectorsToRead) { sector = @long ? image.ReadSectorsLong(doneSectors, sectorsToRead, currentTrack.TrackSequence) : image.ReadSectors(doneSectors, sectorsToRead, currentTrack.TrackSequence); doneSectors += sectorsToRead; } else { sector = @long ? image.ReadSectorsLong(doneSectors, (uint)(sectors - doneSectors), currentTrack.TrackSequence) : image.ReadSectors(doneSectors, (uint)(sectors - doneSectors), currentTrack.TrackSequence); doneSectors += sectors - doneSectors; } ctx.Update(sector); } } Assert.AreEqual(@long ? _longMd5S[i] : _md5S[i], ctx.End(), $"{(@long ? "Long hash" : "Hash")}: {_testFiles[i]}"); } if(!image.Info.ReadableSectorTags.Contains(SectorTagType.CdSectorSubchannel)) return; ctx = new Md5Context(); foreach(Track currentTrack in image.Tracks) { ulong sectors = currentTrack.TrackEndSector - currentTrack.TrackStartSector + 1; ulong doneSectors = 0; while(doneSectors < sectors) { byte[] sector; if(sectors - doneSectors >= sectorsToRead) { sector = image.ReadSectorsTag(doneSectors, sectorsToRead, currentTrack.TrackSequence, SectorTagType.CdSectorSubchannel); doneSectors += sectorsToRead; } else { sector = image.ReadSectorsTag(doneSectors, (uint)(sectors - doneSectors), currentTrack.TrackSequence, SectorTagType.CdSectorSubchannel); doneSectors += sectors - doneSectors; } ctx.Update(sector); } } Assert.AreEqual(_subchannelMd5S[i], ctx.End(), $"Subchannel hash: {_testFiles[i]}"); }); }); } } }