summaryrefslogtreecommitdiff
path: root/tests/TagURITest.php
blob: d23f8bfe6672214f3024348639f4b36f8a8414bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php

if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
    print "This script must be run from the command line\n";
    exit();
}

define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
define('STATUSNET', true);

require_once INSTALLDIR . '/lib/common.php';

$config['site']['server'] = 'example.net';
$config['site']['path']   = '/apps/statusnet';

class TagURITest extends PHPUnit_Framework_TestCase
{
    /**
     * @dataProvider provider
     */
    public function testProduction($format, $args, $uri)
    {
        $minted = call_user_func_array(array('TagURI', 'mint'),
                                       array_merge(array($format), $args));

        $this->assertEquals($uri, $minted);
    }

    static public function provider()
    {
        return array(array('favorite:%d:%d',
                           array(1, 3),
                           'tag:example.net,'.date('Y-m-d').':apps:statusnet:favorite:1:3'));
    }
}