mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Support for wierd CDs with two data tracks before audio.
Minor enhancements to CTDB download routine, fixed support for parity files without header
This commit is contained in:
@@ -82,17 +82,23 @@ namespace CUETools.TestProcessor
|
||||
// test playstation-type CD-Extra
|
||||
CUESheet target = new CUESheet(new CUEConfig());
|
||||
target.Open("Circuitry\\1.cue");
|
||||
Assert.AreEqual<string>("00078c13-001b4ab9-40086205", AccurateRipVerify.CalculateAccurateRipId(target.TOC), "Wrong TOC");
|
||||
Assert.AreEqual<string>("-0:37001:70001:99814:126819:160976", target.TOC.ToString(), "Wrong TOC");
|
||||
|
||||
// test playstation-type CD-Extra with nonstandard pregap
|
||||
target = new CUESheet(new CUEConfig());
|
||||
target.Open("Headcandy\\Headcandy.cue");
|
||||
Assert.AreEqual<string>("0014fc22-0052b286-62104a06", AccurateRipVerify.CalculateAccurateRipId(target.TOC), "Wrong TOC");
|
||||
Assert.AreEqual<string>("-0:141942:168581:223645:248699:279575:312824", target.TOC.ToString(), "Wrong TOC");
|
||||
|
||||
// test playstation-type CD-Extra with no info in cuesheet
|
||||
target = new CUESheet(new CUEConfig());
|
||||
target.Open("Anatomy\\Anatomy.cue");
|
||||
Assert.AreEqual<string>("002a09da-01e82f64-f00f4811", AccurateRipVerify.CalculateAccurateRipId(target.TOC), "Wrong TOC");
|
||||
Assert.AreEqual<string>("-0:19687:33144:50680:69872:89822:108084:132098:150625:166271:194882:200172:215884:236046:242815:269518:282018:293416", target.TOC.ToString(), "Wrong TOC");
|
||||
|
||||
// test playstation-type CD-Extra with two data tracks
|
||||
target = new CUESheet(new CUEConfig());
|
||||
target.Open("Les Mysterieuses Cites d'Or\\Les Mysterieuses Cites d'Or.cue");
|
||||
Assert.AreEqual<string>("-0:-31952:127883:137816:149173:160223:171479:180777:186738:196134:205613:214526:221674:227031:232824:239376:249495:259604:266115:267080:275100:281599:284452:291422:295511:297642:302114:309263:312269:320051:326235:333841", target.TOC.ToString(), "Wrong TOC");
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user