summaryrefslogtreecommitdiff
path: root/tests/oEmbedTest.php
blob: eabee00ad9681b7d2a10a58c5fb621ae76889262 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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';

class oEmbedTest extends PHPUnit_Framework_TestCase
{

    public function setup()
    {
        //$this->old_oohembed = common_config('oohembed', 'endpoint');
    }

    public function tearDown()
    {
        //$GLOBALS['config']['attachments']['supported'] = $this->old_attachments_supported;
    }

    /**
     * @dataProvider fileTypeCases
     *
     */
    public function testoEmbed($url, $expectedType)
    {
        try {
            $data = oEmbedHelper::getObject($url);
            $this->assertEquals($expectedType, $data->type);
        } catch (Exception $e) {
            if ($expectedType == 'none') {
                $this->assertEquals($expectedType, 'none', 'Should not have data for this URL.');
            } else {
                throw $e;
            }
        }
    }

    static public function fileTypeCases()
    {
        $files = array(
            'http://www.flickr.com/photos/brionv/5172500179/' => 'photo',
            'http://twitpic.com/36adw6' => 'photo',
            'http://yfrog.com/fy42747177j' => 'photo',
            'http://identi.ca/attachment/34437400' => 'photo',

            'http://www.youtube.com/watch?v=eUgLR232Cnw' => 'video',
            'http://vimeo.com/9283184' => 'video',

            'http://en.wikipedia.org/wiki/File:Wiki.png' => 'link', // @fixme in future there may be a native provider -- will change to 'photo'
            'http://leuksman.com/log/2010/10/29/statusnet-0-9-6-release/' => 'none',
        );

        $dataset = array();
        foreach ($files as $url => $type) {
            $dataset[] = array($url, $type);
        }
        return $dataset;
    }

}