2012-05-24 06:51:30 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class OembedTest extends SapphireTest {
|
2013-10-15 23:49:04 +02:00
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
Config::nest();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
|
|
|
Config::unnest();
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testGetOembedFromUrl() {
|
2012-05-24 06:51:30 +02:00
|
|
|
Config::inst()->update('Oembed', 'providers', array(
|
|
|
|
'http://*.silverstripe.com/watch*'=>'http://www.silverstripe.com/oembed/'
|
|
|
|
));
|
|
|
|
$escapedEndpointURL = urlencode("http://www.silverstripe.com/oembed/");
|
|
|
|
|
|
|
|
// Test with valid URL
|
|
|
|
$result = Oembed::get_oembed_from_url('http://www.silverstripe.com/watch12345');
|
|
|
|
$this->assertTrue($result!=false);
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($result->getOembedURL(),
|
|
|
|
'http://www.silverstripe.com/oembed/?format=json&url='.urlencode('http://www.silverstripe.com/watch12345'),
|
|
|
|
'Triggers on matching URL');
|
2012-05-24 06:51:30 +02:00
|
|
|
|
|
|
|
// Test without www.
|
|
|
|
$result = Oembed::get_oembed_from_url('http://silverstripe.com/watch12345');
|
|
|
|
$this->assertTrue($result!=false);
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($result->getOembedURL(),
|
|
|
|
'http://www.silverstripe.com/oembed/?format=json&url='.urlencode('http://silverstripe.com/watch12345'),
|
|
|
|
'Triggers on matching URL without www');
|
2012-05-24 06:51:30 +02:00
|
|
|
|
|
|
|
// Test if options make their way to the URL
|
|
|
|
$result = Oembed::get_oembed_from_url('http://www.silverstripe.com/watch12345', false, array('foo'=>'bar'));
|
|
|
|
$this->assertTrue($result!=false);
|
2012-09-26 23:34:00 +02:00
|
|
|
$this->assertEquals($result->getOembedURL(), 'http://www.silverstripe.com/oembed/?format=json&url='
|
2014-08-15 08:53:05 +02:00
|
|
|
. urlencode('http://www.silverstripe.com/watch12345').'&foo=bar',
|
2012-09-26 23:34:00 +02:00
|
|
|
'Includes options');
|
2012-05-24 06:51:30 +02:00
|
|
|
|
|
|
|
// Test magic.
|
2012-09-26 23:34:00 +02:00
|
|
|
$result = Oembed::get_oembed_from_url('http://www.silverstripe.com/watch12345', false,
|
|
|
|
array('height'=>'foo', 'width'=>'bar'));
|
2012-05-24 06:51:30 +02:00
|
|
|
$this->assertTrue($result!=false);
|
|
|
|
$urlParts = parse_url($result->getOembedURL());
|
|
|
|
parse_str($urlParts['query'], $query);
|
|
|
|
$this->assertEquals($query['maxheight'], 'foo', 'Magically creates maxheight option');
|
|
|
|
$this->assertEquals($query['maxwidth'], 'bar', 'Magically creates maxwidth option');
|
|
|
|
}
|
2013-10-15 23:49:04 +02:00
|
|
|
|
|
|
|
public function testRequestProtocolReflectedInGetOembedFromUrl() {
|
|
|
|
Config::inst()->update('Oembed', 'providers', array(
|
|
|
|
'http://*.silverstripe.com/watch*'=> array(
|
|
|
|
'http' => 'http://www.silverstripe.com/oembed/',
|
|
|
|
'https' => 'https://www.silverstripe.com/oembed/?scheme=https',
|
|
|
|
),
|
|
|
|
'https://*.silverstripe.com/watch*'=> array(
|
|
|
|
'http' => 'http://www.silverstripe.com/oembed/',
|
|
|
|
'https' => 'https://www.silverstripe.com/oembed/?scheme=https',
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
Config::inst()->update('Director', 'alternate_protocol', 'http');
|
|
|
|
|
|
|
|
foreach(array('http', 'https') as $protocol) {
|
|
|
|
$url = $protocol.'://www.silverstripe.com/watch12345';
|
|
|
|
$result = Oembed::get_oembed_from_url($url);
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Oembed_Result', $result);
|
|
|
|
$this->assertEquals($result->getOembedURL(),
|
|
|
|
'http://www.silverstripe.com/oembed/?format=json&url='.urlencode($url),
|
|
|
|
'Returns http based URLs when request is over http, regardless of source URL');
|
|
|
|
}
|
|
|
|
|
|
|
|
Config::inst()->update('Director', 'alternate_protocol', 'https');
|
|
|
|
|
|
|
|
foreach(array('http', 'https') as $protocol) {
|
|
|
|
$url = $protocol.'://www.silverstripe.com/watch12345';
|
|
|
|
$result = Oembed::get_oembed_from_url($url);
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Oembed_Result', $result);
|
|
|
|
$this->assertEquals($result->getOembedURL(),
|
|
|
|
'https://www.silverstripe.com/oembed/?scheme=https&format=json&url='.urlencode($url),
|
|
|
|
'Returns https based URLs when request is over https, regardless of source URL');
|
|
|
|
}
|
|
|
|
|
|
|
|
Config::inst()->update('Director', 'alternate_protocol', 'foo');
|
|
|
|
|
|
|
|
foreach(array('http', 'https') as $protocol) {
|
|
|
|
$url = $protocol.'://www.silverstripe.com/watch12345';
|
|
|
|
$result = Oembed::get_oembed_from_url($url);
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Oembed_Result', $result);
|
|
|
|
$this->assertEquals($result->getOembedURL(),
|
|
|
|
'http://www.silverstripe.com/oembed/?format=json&url='.urlencode($url),
|
|
|
|
'When request protocol doesn\'t have specific handler, fall back to first option');
|
|
|
|
}
|
|
|
|
}
|
2012-05-24 06:51:30 +02:00
|
|
|
}
|