Add basic ID3v2 write support, add unit tests

git-svn-id: http://php-reader.googlecode.com/svn/trunk@64 51a70ab9-7547-0410-9469-37e369ee0574
This commit is contained in:
svollbehr
2008-04-01 10:38:12 +00:00
parent 1182f0e0ff
commit 458335dc9f
15 changed files with 950 additions and 475 deletions

View File

@@ -1,57 +1,58 @@
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("PHPUnit/TextUI/TestRunner.php");
$suite = new PHPUnit_Framework_TestSuite("PHP Reader");
$dir = opendir(dirname(__FILE__));
while (($file = readdir($dir)) !== false) {
if ($file == basename(__FILE__))
continue;
if (file_exists(dirname(__FILE__) . "/" . $file) &&
preg_match("/^Test.+\.php$/", $file)) {
require_once($file);
$suite->addTestSuite(substr($file, 0, -4));
}
}
closedir($dir);
PHPUnit_TextUI_TestRunner::run($suite);
/**#@-*/
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("PHPUnit/TextUI/TestRunner.php");
ini_set("include_path", ini_get("include_path") . PATH_SEPARATOR . "../src/");
$suite = new PHPUnit_Framework_TestSuite("PHP Reader");
$dir = opendir(dirname(__FILE__));
while (($file = readdir($dir)) !== false) {
if ($file == basename(__FILE__))
continue;
if (preg_match("/^Test.+\.php$/", $file)) {
require_once($file);
$suite->addTestSuite(substr($file, 0, -4));
}
}
closedir($dir);
PHPUnit_TextUI_TestRunner::run($suite);
/**#@-*/

View File

@@ -1,194 +1,194 @@
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("../src/ID3v1.php");
/**#@-*/
/**
* Unit test case for ID3v1 class.
*
* @package php-reader
* @subpackage Tests
* @author Sven Vollbehr <svollbehr@gmail.com>
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Rev$
*/
final class TestID3v1 extends PHPUnit_Framework_TestCase
{
function testTagCreate()
{
$id3 = new ID3v1();
$id3->title = "Title 1";
$this->assertEquals("Title 1", $id3->title);
$id3->artist = "Artist 1";
$this->assertEquals("Artist 1", $id3->artist);
$id3->album = "Album 1";
$this->assertEquals("Album 1", $id3->album);
$id3->year = "2008";
$this->assertEquals("2008", $id3->year);
$id3->comment = "Comment 1";
$this->assertEquals("Comment 1", $id3->comment);
$id3->track = 30;
$this->assertEquals(30, $id3->track);
$id3->genre = array_search("Classical", ID3v1::$genres);
$this->assertEquals("Classical", $id3->genre);
$id3->write("id3v1.tag");
}
function testTagReadAfterCreate()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 1", $id3->title);
$this->assertEquals("Artist 1", $id3->artist);
$this->assertEquals("Album 1", $id3->album);
$this->assertEquals("2008", $id3->year);
$this->assertEquals("Comment 1", $id3->comment);
$this->assertEquals(30, $id3->track);
$this->assertEquals("Classical", $id3->genre);
}
function testTagChange()
{
$id3 = new ID3v1("id3v1.tag");
$id3->title = "Title 2";
$this->assertEquals("Title 2", $id3->title);
$id3->artist = "Artist 2";
$this->assertEquals("Artist 2", $id3->artist);
$id3->album = "Album 2";
$this->assertEquals("Album 2", $id3->album);
$id3->year = "2045";
$this->assertEquals("2045", $id3->year);
$id3->comment = "Comment 2";
$this->assertEquals("Comment 2", $id3->comment);
$id3->track = 10;
$this->assertEquals(10, $id3->track);
$id3->genre = array_search("Trance", ID3v1::$genres);
$this->assertEquals("Trance", $id3->genre);
$id3->write();
}
function testTagReadAfterChange()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 2", $id3->title);
$this->assertEquals("Artist 2", $id3->artist);
$this->assertEquals("Album 2", $id3->album);
$this->assertEquals("2045", $id3->year);
$this->assertEquals("Comment 2", $id3->comment);
$this->assertEquals(10, $id3->track);
$this->assertEquals("Trance", $id3->genre);
}
function testTagReplace()
{
$id3 = new ID3v1();
$id3->title = "Title 3";
$this->assertEquals("Title 3", $id3->title);
$this->assertEquals("Unknown", $id3->genre);
$id3->write("id3v1.tag");
}
function testTagReadAfterReplace()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 3", $id3->title);
$this->assertEquals("", $id3->artist);
$this->assertEquals("", $id3->album);
$this->assertEquals("", $id3->year);
$this->assertEquals("", $id3->comment);
$this->assertEquals("", $id3->track);
$this->assertEquals("Unknown", $id3->genre);
}
function testTagCreateVersion10()
{
$id3 = new ID3v1();
$id3->title = "Title 4";
$this->assertEquals("Title 4", $id3->title);
$id3->artist = "Artist 4";
$this->assertEquals("Artist 4", $id3->artist);
$id3->album = "Album 4";
$this->assertEquals("Album 4", $id3->album);
$id3->year = "2020";
$this->assertEquals("2020", $id3->year);
$id3->comment = "A comment field with 30 chars.";
$this->assertEquals("A comment field with 30 chars.", $id3->comment);
$id3->genre = array_search("Classical", ID3v1::$genres);
$this->assertEquals("Classical", $id3->genre);
$id3->write("id3v1.tag");
}
function testTagReadAfterCreateVersion10()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 4", $id3->title);
$this->assertEquals("Artist 4", $id3->artist);
$this->assertEquals("Album 4", $id3->album);
$this->assertEquals("2020", $id3->year);
$this->assertEquals("A comment field with 30 chars.", $id3->comment);
$this->assertEquals("", $id3->track);
$this->assertEquals("Classical", $id3->genre);
}
}
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("ID3v1.php");
/**#@-*/
/**
* Unit test case for ID3v1 class.
*
* @package php-reader
* @subpackage Tests
* @author Sven Vollbehr <svollbehr@gmail.com>
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Rev$
*/
final class TestID3v1 extends PHPUnit_Framework_TestCase
{
function testTagCreate()
{
$id3 = new ID3v1();
$id3->title = "Title 1";
$this->assertEquals("Title 1", $id3->title);
$id3->artist = "Artist 1";
$this->assertEquals("Artist 1", $id3->artist);
$id3->album = "Album 1";
$this->assertEquals("Album 1", $id3->album);
$id3->year = "2008";
$this->assertEquals("2008", $id3->year);
$id3->comment = "Comment 1";
$this->assertEquals("Comment 1", $id3->comment);
$id3->track = 30;
$this->assertEquals(30, $id3->track);
$id3->genre = array_search("Classical", ID3v1::$genres);
$this->assertEquals("Classical", $id3->genre);
$id3->write("id3v1.tag");
}
function testTagReadAfterCreate()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 1", $id3->title);
$this->assertEquals("Artist 1", $id3->artist);
$this->assertEquals("Album 1", $id3->album);
$this->assertEquals("2008", $id3->year);
$this->assertEquals("Comment 1", $id3->comment);
$this->assertEquals(30, $id3->track);
$this->assertEquals("Classical", $id3->genre);
}
function testTagChange()
{
$id3 = new ID3v1("id3v1.tag");
$id3->title = "Title 2";
$this->assertEquals("Title 2", $id3->title);
$id3->artist = "Artist 2";
$this->assertEquals("Artist 2", $id3->artist);
$id3->album = "Album 2";
$this->assertEquals("Album 2", $id3->album);
$id3->year = "2045";
$this->assertEquals("2045", $id3->year);
$id3->comment = "Comment 2";
$this->assertEquals("Comment 2", $id3->comment);
$id3->track = 10;
$this->assertEquals(10, $id3->track);
$id3->genre = array_search("Trance", ID3v1::$genres);
$this->assertEquals("Trance", $id3->genre);
$id3->write();
}
function testTagReadAfterChange()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 2", $id3->title);
$this->assertEquals("Artist 2", $id3->artist);
$this->assertEquals("Album 2", $id3->album);
$this->assertEquals("2045", $id3->year);
$this->assertEquals("Comment 2", $id3->comment);
$this->assertEquals(10, $id3->track);
$this->assertEquals("Trance", $id3->genre);
}
function testTagReplace()
{
$id3 = new ID3v1();
$id3->title = "Title 3";
$this->assertEquals("Title 3", $id3->title);
$this->assertEquals("Unknown", $id3->genre);
$id3->write("id3v1.tag");
}
function testTagReadAfterReplace()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 3", $id3->title);
$this->assertEquals("", $id3->artist);
$this->assertEquals("", $id3->album);
$this->assertEquals("", $id3->year);
$this->assertEquals("", $id3->comment);
$this->assertEquals("", $id3->track);
$this->assertEquals("Unknown", $id3->genre);
}
function testTagCreateVersion10()
{
$id3 = new ID3v1();
$id3->title = "Title 4";
$this->assertEquals("Title 4", $id3->title);
$id3->artist = "Artist 4";
$this->assertEquals("Artist 4", $id3->artist);
$id3->album = "Album 4";
$this->assertEquals("Album 4", $id3->album);
$id3->year = "2020";
$this->assertEquals("2020", $id3->year);
$id3->comment = "A comment field with 30 chars.";
$this->assertEquals("A comment field with 30 chars.", $id3->comment);
$id3->genre = array_search("Classical", ID3v1::$genres);
$this->assertEquals("Classical", $id3->genre);
$id3->write("id3v1.tag");
}
function testTagReadAfterCreateVersion10()
{
$id3 = new ID3v1("id3v1.tag");
$this->assertEquals("Title 4", $id3->title);
$this->assertEquals("Artist 4", $id3->artist);
$this->assertEquals("Album 4", $id3->album);
$this->assertEquals("2020", $id3->year);
$this->assertEquals("A comment field with 30 chars.", $id3->comment);
$this->assertEquals("", $id3->track);
$this->assertEquals("Classical", $id3->genre);
}
}

123
tests/TestID3v2.php Normal file
View File

@@ -0,0 +1,123 @@
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("ID3v2.php");
/**#@-*/
/**
* Unit test case for ID3v1 class.
*
* @package php-reader
* @subpackage Tests
* @author Sven Vollbehr <svollbehr@gmail.com>
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Rev$
*/
final class TestID3v2 extends PHPUnit_Framework_TestCase
{
function testTagCreate()
{
$id3 = new ID3v2();
$id3->tit2->text = "Title 1";
$this->assertEquals("Title 1", $id3->tit2->text);
$id3->tope->text = "Artist 1";
$this->assertEquals("Artist 1", $id3->tope->text);
$id3->talb->text = "Album 1";
$this->assertEquals("Album 1", $id3->talb->text);
$id3->tdrc->text = "2008";
$this->assertEquals("2008", $id3->tdrc->text);
$id3->comm->text = "Comment 1";
$this->assertEquals("Comment 1", $id3->comm->text);
$id3->trck->text = "11/13";
$this->assertEquals("11/13", $id3->trck->text);
$id3->tcon->text = "Classical";
$this->assertEquals("Classical", $id3->tcon->text);
$id3->write("id3v2.tag");
echo "create";
}
function testTagReadAfterCreate()
{
$id3 = new ID3v2("id3v2.tag");
echo "read after create";
$this->assertEquals("Title 1", $id3->tit2->text);
$this->assertEquals("Artist 1", $id3->tope->text);
$this->assertEquals("Album 1", $id3->talb->text);
$this->assertEquals("2008", $id3->tdrc->text);
$this->assertEquals("Comment 1", $id3->comm->text);
$this->assertEquals("11/13", $id3->trck->text);
$this->assertEquals("Classical", $id3->tcon->text);
}
function testTagChange()
{
$id3 = new ID3v2("id3v2.tag");
$id3->tit2->text = "Title 2";
$this->assertEquals("Title 2", $id3->tit2->text);
$id3->tope->text = "Artist 2";
$this->assertEquals("Artist 2", $id3->tope->text);
$id3->talb->text = "Album 2";
$this->assertEquals("Album 2", $id3->talb->text);
$id3->tdrc->text = "2020";
$this->assertEquals("2020", $id3->tdrc->text);
$id3->comm->text = "Comment 2";
$this->assertEquals("Comment 2", $id3->comm->text);
$id3->trck->text = "13/13";
$this->assertEquals("13/13", $id3->trck->text);
$id3->tcon->text = "Trance";
$this->assertEquals("Trance", $id3->tcon->text);
$id3->write();
}
function testTagReadAfterChange()
{
$id3 = new ID3v2("id3v2.tag");
$this->assertEquals("Title 2", $id3->tit2->text);
$this->assertEquals("Artist 2", $id3->tope->text);
$this->assertEquals("Album 2", $id3->talb->text);
$this->assertEquals("2020", $id3->tdrc->text);
$this->assertEquals("Comment 2", $id3->comm->text);
$this->assertEquals("13/13", $id3->trck->text);
$this->assertEquals("Trance", $id3->tcon->text);
}
}

View File

@@ -1,166 +1,166 @@
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("../src/Transform.php");
/**#@-*/
/**
* Unit test case for Transform class.
*
* @package php-reader
* @subpackage Tests
* @author Sven Vollbehr <svollbehr@gmail.com>
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Rev$
*/
final class TestTransform extends PHPUnit_Framework_TestCase
{
function testInt64LE()
{
$this->assertEquals
(0x7fffffffffffffff, Transform::fromInt64BE
(Transform::toInt64BE(0x7fffffffffffffff)));
}
function testInt64BE()
{
$this->assertEquals
(0x7fffffffffffffff, Transform::fromInt64BE
(Transform::toInt64BE(0x7fffffffffffffff)));
}
function testInt32()
{
$this->assertEquals
(0x7fffffff, Transform::fromInt32(Transform::toInt32(0x7fffffff)));
}
function testUInt32LE()
{
$this->assertEquals
("78563412", Transform::fromHHex(Transform::toUInt32LE(0x12345678)));
$this->assertEquals
(0xffffffff, Transform::fromUInt32LE(Transform::toUInt32LE(0xffffffff)));
}
function testUInt32BE()
{
$this->assertEquals
("12345678", Transform::fromHHex(Transform::toUInt32BE(0x12345678)));
$this->assertEquals
(0xffffffff, Transform::fromUInt32BE(Transform::toUInt32BE(0xffffffff)));
}
function testInt16()
{
$this->assertEquals
(0x7fff, Transform::fromInt16(Transform::toInt16(0x7fff)));
}
function testUInt16LE()
{
$this->assertEquals
("fffe", Transform::fromHHex(Transform::toUInt16LE(0xfeff)));
$this->assertEquals
(0xffff, Transform::fromUInt16LE(Transform::toUInt16LE(0xffff)));
}
function testUInt16BE()
{
$this->assertEquals
("feff", Transform::fromHHex(Transform::toUInt16BE(0xfeff)));
$this->assertEquals
(0xffff, Transform::fromUInt16BE(Transform::toUInt16BE(0xffff)));
}
function testInt8()
{
$this->assertEquals(0x7f, Transform::fromInt8(Transform::toInt8(0x7f)));
}
function testString16()
{
$this->assertEquals("00e4", Transform::fromHHex
(Transform::fromString16(Transform::toString16("\xff\xfe\xe4\x00"))));
$this->assertEquals("e400", Transform::fromHHex
(Transform::fromString16(Transform::toString16("\xfe\xff\x00\xe4"))));
}
function testString16LE()
{
$this->assertEquals
("fffe", Transform::fromHHex(Transform::toString16LE("\xff\xfe")));
$this->assertEquals
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.",
Transform::fromString16LE(Transform::toString16LE
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.")));
}
function testString16BE()
{
$this->assertEquals
("feff", Transform::fromHHex(Transform::toString16BE("\xff\xfe")));
$this->assertEquals
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.",
Transform::fromString16BE(Transform::toString16BE
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.")));
}
function testHHex()
{
$this->assertEquals("6c34", bin2hex(Transform::toHHex("6c34")));
$this->assertEquals("6c34", Transform::fromHHex(Transform::toHHex("6c34")));
}
function testLHex()
{
$this->assertEquals("c643", bin2hex(Transform::toLHex("6c34")));
$this->assertEquals("6c34", Transform::fromLHex(Transform::toLHex("6c34")));
}
function testGUID()
{
$this->assertEquals
("75b22630-668e-11cf-a6d9-00aa0062ce6c",
Transform::fromGUID(Transform::toGUID
("75b22630-668e-11cf-a6d9-00aa0062ce6c")));
}
}
<?php
/**
* PHP Reader Library
*
* Copyright (c) 2008 The PHP Reader Project Workgroup. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the project workgroup nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package php-reader
* @subpackage Tests
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Id$
*/
/**#@+ @ignore */
require_once("PHPUnit/Framework.php");
require_once("Transform.php");
/**#@-*/
/**
* Unit test case for Transform class.
*
* @package php-reader
* @subpackage Tests
* @author Sven Vollbehr <svollbehr@gmail.com>
* @copyright Copyright (c) 2008 The PHP Reader Project Workgroup
* @license http://code.google.com/p/php-reader/wiki/License New BSD License
* @version $Rev$
*/
final class TestTransform extends PHPUnit_Framework_TestCase
{
function testInt64LE()
{
$this->assertEquals
(0x7fffffffffffffff, Transform::fromInt64BE
(Transform::toInt64BE(0x7fffffffffffffff)));
}
function testInt64BE()
{
$this->assertEquals
(0x7fffffffffffffff, Transform::fromInt64BE
(Transform::toInt64BE(0x7fffffffffffffff)));
}
function testInt32()
{
$this->assertEquals
(0x7fffffff, Transform::fromInt32(Transform::toInt32(0x7fffffff)));
}
function testUInt32LE()
{
$this->assertEquals
("78563412", Transform::fromHHex(Transform::toUInt32LE(0x12345678)));
$this->assertEquals
(0xffffffff, Transform::fromUInt32LE(Transform::toUInt32LE(0xffffffff)));
}
function testUInt32BE()
{
$this->assertEquals
("12345678", Transform::fromHHex(Transform::toUInt32BE(0x12345678)));
$this->assertEquals
(0xffffffff, Transform::fromUInt32BE(Transform::toUInt32BE(0xffffffff)));
}
function testInt16()
{
$this->assertEquals
(0x7fff, Transform::fromInt16(Transform::toInt16(0x7fff)));
}
function testUInt16LE()
{
$this->assertEquals
("fffe", Transform::fromHHex(Transform::toUInt16LE(0xfeff)));
$this->assertEquals
(0xffff, Transform::fromUInt16LE(Transform::toUInt16LE(0xffff)));
}
function testUInt16BE()
{
$this->assertEquals
("feff", Transform::fromHHex(Transform::toUInt16BE(0xfeff)));
$this->assertEquals
(0xffff, Transform::fromUInt16BE(Transform::toUInt16BE(0xffff)));
}
function testInt8()
{
$this->assertEquals(0x7f, Transform::fromInt8(Transform::toInt8(0x7f)));
}
function testString16()
{
$this->assertEquals("00e4", Transform::fromHHex
(Transform::fromString16(Transform::toString16("\xff\xfe\x00\xe4"))));
$this->assertEquals("00e4", Transform::fromHHex
(Transform::fromString16(Transform::toString16("\xfe\xff\x00\xe4"))));
}
function testString16LE()
{
$this->assertEquals
("fffe", Transform::fromHHex(Transform::toString16LE("\xff\xfe")));
$this->assertEquals
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.",
Transform::fromString16LE(Transform::toString16LE
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.")));
}
function testString16BE()
{
$this->assertEquals
("feff", Transform::fromHHex(Transform::toString16BE("\xff\xfe")));
$this->assertEquals
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.",
Transform::fromString16BE(Transform::toString16BE
("\0T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.")));
}
function testHHex()
{
$this->assertEquals("6c34", bin2hex(Transform::toHHex("6c34")));
$this->assertEquals("6c34", Transform::fromHHex(Transform::toHHex("6c34")));
}
function testLHex()
{
$this->assertEquals("c643", bin2hex(Transform::toLHex("6c34")));
$this->assertEquals("6c34", Transform::fromLHex(Transform::toLHex("6c34")));
}
function testGUID()
{
$this->assertEquals
("75b22630-668e-11cf-a6d9-00aa0062ce6c",
Transform::fromGUID(Transform::toGUID
("75b22630-668e-11cf-a6d9-00aa0062ce6c")));
}
}