Indefero

Indefero Git Source Tree


Root/test/IDF/DiffTest.php

<?php

include 'IDF/Diff.php';

class IDF_DiffTest extends PHPUnit_Framework_TestCase
{
    public function testParse()
    {
        $datadir = DATADIR.'/'.__CLASS__;

        foreach (glob($datadir.'/*.diff') as $difffile)
        {
            $diffprefix = 0;
            if (strpos($difffile, '-git-') != false || strpos($difffile, '-hg-') != false)
            {
                $diffprefix = 1;
            }

            $expectedfile = str_replace('.diff', '.expected', $difffile);
            $expectedcontent = @file_get_contents($expectedfile);

            $diffcontent = file_get_contents($difffile);
            $diff = new IDF_Diff($diffcontent, $diffprefix);
            $this->assertEquals(unserialize($expectedcontent),
                                $diff->parse(),
                                'parsed diff '.$difffile.' does not match');
        }
    }
}

Archive Download this file

Page rendered in 0.09017s using 11 queries.