// // PCMPatchedTrackTests.m // Clock Signal // // Created by Thomas Harte on 17/12/2016. // Copyright © 2016 Thomas Harte. All rights reserved. // #import #include "PCMTrack.hpp" #include "PCMPatchedTrack.hpp" @interface PCMPatchedTrackTests : XCTestCase @end @implementation PCMPatchedTrackTests - (std::shared_ptr)togglingTrack { Storage::Disk::PCMSegment segment; segment.data = { 0xff, 0xff, 0xff, 0xff }; segment.number_of_bits = 32; return std::shared_ptr(new Storage::Disk::PCMTrack(segment)); } - (std::shared_ptr)patchableTogglingTrack { std::shared_ptr track = self.togglingTrack; return std::shared_ptr(new Storage::Disk::PCMPatchedTrack(track)); } - (void)assertOneThirtyTwosForTrack:(std::shared_ptr)track { // Confirm that there are now flux transitions (just the first five will do) // located 1/32nd of a rotation apart. int c = 5; while(c--) { Storage::Disk::Track::Event event = track->get_next_event(); Storage::Time simplified_time = event.length.simplify(); XCTAssert(simplified_time.length == 1 && simplified_time.clock_rate == 32, "flux transitions should be 1/32nd of a track apart"); } } - (void)testUnpatchedRawTrack { [self assertOneThirtyTwosForTrack:self.togglingTrack]; } - (void)testUnpatchedTrack { [self assertOneThirtyTwosForTrack:self.patchableTogglingTrack]; } - (void)testZeroPatch { std::shared_ptr patchableTrack = self.togglingTrack; Storage::Disk::PCMPatchedTrack *patchable = dynamic_cast(patchableTrack.get()); if(patchable) { printf("."); } } @end