Skip to content

Commit

Permalink
Refactor LilyPondTests.testAll() (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbean authored Oct 13, 2019
1 parent fb20988 commit 306dd02
Showing 1 changed file with 94 additions and 80 deletions.
174 changes: 94 additions & 80 deletions Tests/MusicXMLTests/LilyPondTests/LilyPondTestSuite.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,95 +10,109 @@ import MusicXML

class LilyPondTests: XCTestCase {

// All of the LilyPond tests which we will _not_ test, either because they require a breaking of
// the specification, or for some other good reason.
private let blacklist = [
// This test requires our model to break the spec.
"41g-PartNoId.xml",
// I don't think this is our job (at least at this point in time)
"90a-Compressed-MusicXML.mxl",
]

func testAll() throws {
// Create temporary directory for successfully parsed scores from the LilyPond test suite
let tempDirUrl = URL(fileURLWithPath: NSTemporaryDirectory())
let rootDir = try! prepareResultsDirectory()
publishResultsDirectoryLocation(rootDir)
for traversal in ["Partwise", "Timewise"] {
let resultsDir = try prepareResultsDirectoryForTraversal(traversal, in: rootDir)
let sourceDir = testSuiteURL.appendingPathComponent(traversal, isDirectory: true)
let sources = try FileManager.default.contentsOfDirectory(atPath: sourceDir.path)
let sanitizedSources = sources.lazy
.filter { $0.hasSuffix("xml") }
.filter { !blacklist.contains($0) }
.sorted()
try sanitizedSources.forEach { source in
let sourceURL = sourceDir.appendingPathComponent(source)
do {
let start = now()
let parsed = try MusicXML(url: sourceURL)
let duration = now() - start

publishSuccessfulParsing(for: "\(traversal)/\(source)", in: duration)
let resultFileURL = resultsDir.appendingPathComponent("\(source).parsed")
try! String(describing: parsed).write(
to: resultFileURL,
atomically: true,
encoding: .utf8
)
} catch {
publishFailedParsing(for: "\(traversal)/\(source)")
throw error
}
}
}
}

/// Creates a directory for storing successfully parsed MusicXML files for a given traversal
/// (either "Partwise" or "Timewise").
func prepareResultsDirectoryForTraversal(_ traversal: String, in directory: URL) throws -> URL {
let url = directory.appendingPathComponent(traversal)
try FileManager.default.createDirectory(at: url, withIntermediateDirectories: true)
return url
}

/// Creates a temporary directory for storing successfully parsed MusicXML files.
///
/// - Returns: The `URL` of the created directory.
func prepareResultsDirectory() throws -> URL {
let url = URL(fileURLWithPath: NSTemporaryDirectory())
.appendingPathComponent("LilyPondTestsResults")
try FileManager.default.createDirectory(
at: tempDirUrl,
withIntermediateDirectories: true,
attributes: nil
)
try FileManager.default.createDirectory(at: url, withIntermediateDirectories: true)
return url
}

func publishFailedParsing(for fileName: String) {
print("\(fileName)")
}

func publishSuccessfulParsing(for fileName: String, in secondsElapsed: Double) {
print("\(secondsElapsed.formatted(decimalPlaces: 3))s \(fileName)")
}

func publishResultsDirectoryLocation(_ url: URL) {
print(
"""
Created LilyPondTest result directory at \(tempDirUrl.absoluteString).
Created LilyPondTest result directory at:
\(url.absoluteString)
Parsed scores from LilyPond test suite will be written there for inspection.
"""
)
// Collect successes and failures for logging
var successes: [String] = []
var failures: [(name: String, error: Error)] = []
for subdir in ["Partwise", "Timewise"] {
try FileManager.default.createDirectory(
at: tempDirUrl,
withIntermediateDirectories: true,
attributes: nil
)
let directory = testSuiteURL.appendingPathComponent(subdir, isDirectory: true)
try FileManager.default
.contentsOfDirectory(atPath: directory.path)
.sorted()
.filter { !blacklist.contains($0) }
.forEach { fileName in
let fileURL = directory.appendingPathComponent(fileName)
do {
let parsed = try MusicXML(url: fileURL)
let parsedResultDirUrl = tempDirUrl.appendingPathComponent(subdir)
try FileManager.default.createDirectory(
at: parsedResultDirUrl,
withIntermediateDirectories: true
)
let parsedResultFileUrl = parsedResultDirUrl
.appendingPathComponent("\(fileName).parsed")
do {
try String(describing: parsed).write(
to: parsedResultFileUrl,
atomically: true,
encoding: .utf8
)
} catch {
print("Failed to write result for \(fileName)")
}
successes.append("\(subdir)/\(fileName)")
} catch {
failures.append((name: "\(subdir)/\(fileName)", error: error))
}
}
}
print()
print("# Successfully parsed \(successes.count) files:")
successes.forEach { print("- \($0)") }
print()
print("# Failed to parse \(failures.count) files:")
failures.forEach { name, error in
print("- \(name)")
print(" error: \(error))")
}
}
}

extension LilyPondTests {

// The `URL` of the `LilyPondTestSuite` directory which contains two subdirectories:
//
// - `Partwise`
// - `Timewise`
//
// Each of these subdirectories contains all of the test music xml files for a given traversal.
var testSuiteURL: URL {
return URL(fileURLWithPath: "\(#file)")
.deletingLastPathComponent() // => MusicXML/Tests/MusicXMLTests/LilyPondTests
.deletingLastPathComponent() // => MusicXML/Tests/LilyPondTests
.deletingLastPathComponent() // => MusicXML/Tests
.appendingPathComponent("LilyPondTestSuite", isDirectory: true)
// All of the LilyPond tests which we will _not_ test, either because they require a breaking of
// the specification, or for some other good reason.
private let blacklist = [
// This test requires our model to break the spec.
"41g-PartNoId.xml",
// I don't think this is our job (at least at this point in time)
"90a-Compressed-MusicXML.mxl",
]

// The `URL` of the `LilyPondTestSuite` directory which contains two subdirectories:
//
// - `Partwise`
// - `Timewise`
//
// Each of these subdirectories contains all of the test music xml files for a given traversal.
private var testSuiteURL: URL {
return URL(fileURLWithPath: "\(#file)")
.deletingLastPathComponent() // => MusicXML/Tests/MusicXMLTests/LilyPondTests
.deletingLastPathComponent() // => MusicXML/Tests/LilyPondTests
.deletingLastPathComponent() // => MusicXML/Tests
.appendingPathComponent("LilyPondTestSuite", isDirectory: true)
}

// MARK: - Benchmarking

private func now() -> Double {
return Double(DispatchTime.now().uptimeNanoseconds) / 1_000_000_000
}

extension Double {
func formatted(decimalPlaces: Int) -> String {
return String(format: "%.\(decimalPlaces)f", self)
}
}

0 comments on commit 306dd02

Please sign in to comment.