summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-11-15 11:55:28 -0800
committerBrion Vibber <brion@pobox.com>2010-11-15 11:55:28 -0800
commit87114a5c30ff50d75cb00fa0bffee1a47da35156 (patch)
treec840a24030684b573fa8574772ebeedd478250e8
parent57ec01d0b8c6d46fba1c0aca258dec690f408c60 (diff)
Add some basic oEmbed lookup test cases; fixed a bug in discovery fallback.
-rw-r--r--lib/oembedhelper.php1
-rw-r--r--tests/oEmbedTest.php67
2 files changed, 67 insertions, 1 deletions
diff --git a/lib/oembedhelper.php b/lib/oembedhelper.php
index 8cd4a9dc4..84cf10586 100644
--- a/lib/oembedhelper.php
+++ b/lib/oembedhelper.php
@@ -164,7 +164,6 @@ class oEmbedHelper
}
}
- return false;
throw new oEmbedHelper_DiscoveryException();
}
diff --git a/tests/oEmbedTest.php b/tests/oEmbedTest.php
new file mode 100644
index 000000000..eabee00ad
--- /dev/null
+++ b/tests/oEmbedTest.php
@@ -0,0 +1,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;
+ }
+
+}
+