<?php include dirname(__FILE__) . '/../bootstrap/unit.php'; include dirname(__FILE__) . '/../../apps/client/lib/StreemeItunesPlaylistParser.class.php'; // Initialize the test object $t = new lime_test(7, new lime_output_color()); $t->comment('->construct()'); try { $missing_file = new StreemeItunesPlaylistParser(dirname(__FILE__) . '/../files/nonexistent xml file.xml'); $t->fail('This should halt execution until the user fixes the file'); } catch (Exception $e) { if ($e->getMessage() === 'Could not open iTunes File') { $t->pass('File Does not Exist Exception thrown properly'); } else { $t->fail('Unexpected exception thrown...'); } } $parser = new StreemeItunesPlaylistParser(dirname(__FILE__) . '/../files/iTunes Music Library.xml'); $playlist_name = $itunes_playlist_id = null; $playlist_songs = array(); $parser->getPlaylist($playlist_name, $itunes_playlist_id, $playlist_songs); $t->is($playlist_name, 'Library', 'Correct name for first library entry'); $t->is($itunes_playlist_id, 'E913B5CC1E293488', 'Correct playlist permanent id'); $t->is($playlist_songs, array(0 => array('filename' => 'file://localhost/E:/music/TheKingOfLimbs-MP3/The%20King%20Of%20Limbs/01%20Bloom.MP3'), 1 => array('filename' => 'file://localhost/E:/music/03%20Hoppipolla.mp3'), 2 => array('filename' => 'file://localhost/E:/music/1Xtra%20D&B%20Show%20%5B2010-08-04%5D%20%E2%80%93%20Bailey%20&%20DJ%20Fresh/1Xtra%20D&B%20Show%20%5B2010-08-04%5D%20%E2%80%93%20Bailey%20&%20DJ%20Fresh.mp3')), 'playlist songs are correct'); $playlist_name = $itunes_playlist_id = null; $playlist_songs = array(); $parser->getPlaylist($playlist_name, $itunes_playlist_id, $playlist_songs); $t->is($playlist_name, '90\'s Rock', 'Correct name for first library entry'); $t->is($itunes_playlist_id, 'B16E9C5DFFC4695D', 'Correct playlist permanent id'); $t->is($playlist_songs, array(0 => array('filename' => 'file://localhost/E:/music/TheKingOfLimbs-MP3/The%20King%20Of%20Limbs/01%20Bloom.MP3'), 1 => array('filename' => 'file://localhost/E:/music/03%20Hoppipolla.mp3')), 'playlist songs are correct'); $parser->free();
* @package streeme * @author Richard Hoar * @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $ */ $itunes_music_library = sfConfig::get('app_itunes_xml_location'); $mapped_drive_locations = sfConfig::get('app_mdl_mapped_drive_locations'); $allowed_filetypes = array_map('strtolower', sfConfig::get('app_aft_allowed_file_types')); $itunes_parser = new StreemeItunesPlaylistParser($itunes_music_library); $playlist_scan = new PlaylistScan('itunes'); $playlist_name = $itunes_playlist_id = null; $playlist_songs = array(); function mapItunes($collection) { return array('filename' => iconv(sfConfig::get(app_filesystem_encoding, 'ISO-8859-1'), 'UTF-8//TRANSLIT', StreemeUtil::itunes_format_decode($collection['filename'], StreemeUtil::is_windows(), sfConfig::get('app_mdl_mapped_drive_locations')))); } while ($itunes_parser->getPlaylist($playlist_name, $itunes_playlist_id, $playlist_songs)) { //There's no point scanning the entire library again, so we'll exclude the first record in iTunes if (!isset($first_skipped)) { $first_skipped = true; continue; } //convert itunes filenames to system specific paths $playlist_songs = array_map(mapItunes, $playlist_songs); //update playlists if (count($playlist_songs) > 0) { $playlist_id = $playlist_scan->is_scanned($playlist_scan->get_service_name(), $playlist_name, $itunes_playlist_id); $playlist_id = $playlist_scan->add_playlist($playlist_name, $playlist_songs, $playlist_id, $playlist_scan->get_last_scan_id(), $playlist_scan->get_service_name(), $itunes_playlist_id); } } $playlist_scan->finalize_scan(PlaylistFilesTable::getInstance()); echo $playlist_scan->get_summary();