123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <?php
- require_once 'Soundcloud_Test_Helper.php';
- class Soundcloud_Test extends PHPUnit_Framework_TestCase {
- protected $soundcloud;
- function setUp() {
- $this->soundcloud = new Services_Soundcloud_Expose(
- '1337',
- '1337',
- 'http://soundcloud.local/callback'
- );
- }
- function tearDown() {
- $this->soundcloud = null;
- }
- function testVersionFormat() {
- $this->assertRegExp(
- '/^[0-9]+\.[0-9]+\.[0-9]+$/',
- Services_Soundcloud_Version::get()
- );
- }
- function testGetUserAgent() {
- $this->assertRegExp(
- '/^PHP\-SoundCloud\/[0-9]+\.[0-9]+\.[0-9]+$/',
- $this->soundcloud->getUserAgent()
- );
- }
- function testApiVersion() {
- $this->assertEquals(1, $this->soundcloud->getApiVersion());
- }
- function testGetAudioMimeTypes() {
- $supportedExtensions = array(
- 'aac' => 'video/mp4',
- 'aiff' => 'audio/x-aiff',
- 'flac' => 'audio/flac',
- 'mp3' => 'audio/mpeg',
- 'ogg' => 'audio/ogg',
- 'wav' => 'audio/x-wav'
- );
- $unsupportedExtensions = array('gif', 'html', 'jpg', 'mp4', 'xml', 'xspf');
- foreach ($supportedExtensions as $extension => $mimeType) {
- $this->assertEquals(
- $mimeType,
- $this->soundcloud->getAudioMimeType($extension)
- );
- }
- foreach ($unsupportedExtensions as $extension => $mimeType) {
- $this->setExpectedException('Services_Soundcloud_Unsupported_Audio_Format_Exception');
- $this->soundcloud->getAudioMimeType($extension);
- }
- }
- function testGetAuthorizeUrl() {
- $this->assertEquals(
- 'https://soundcloud.com/connect?client_id=1337&redirect_uri=http%3A%2F%2Fsoundcloud.local%2Fcallback&response_type=code',
- $this->soundcloud->getAuthorizeUrl()
- );
- }
- function testGetAuthorizeUrlWithCustomQueryParameters() {
- $this->assertEquals(
- 'https://soundcloud.com/connect?client_id=1337&redirect_uri=http%3A%2F%2Fsoundcloud.local%2Fcallback&response_type=code&foo=bar',
- $this->soundcloud->getAuthorizeUrl(array('foo' => 'bar'))
- );
- $this->assertEquals(
- 'https://soundcloud.com/connect?client_id=1337&redirect_uri=http%3A%2F%2Fsoundcloud.local%2Fcallback&response_type=code&foo=bar&bar=foo',
- $this->soundcloud->getAuthorizeUrl(array('foo' => 'bar', 'bar' => 'foo'))
- );
- }
- function testGetAccessTokenUrl() {
- $this->assertEquals(
- 'https://api.soundcloud.com/oauth2/token',
- $this->soundcloud->getAccessTokenUrl()
- );
- }
- function testSetAccessToken() {
- $this->soundcloud->setAccessToken('1337');
- $this->assertEquals('1337', $this->soundcloud->getAccessToken());
- }
- function testSetDevelopment() {
- $this->soundcloud->setDevelopment(true);
- $this->assertTrue($this->soundcloud->getDevelopment());
- }
- function testSetRedirectUri() {
- $this->soundcloud->setRedirectUri('http://soundcloud.local/callback');
- $this->assertEquals(
- 'http://soundcloud.local/callback',
- $this->soundcloud->getRedirectUri()
- );
- }
- function testDefaultResponseFormat() {
- $this->assertEquals(
- 'application/json',
- $this->soundcloud->getResponseFormat()
- );
- }
- function testSetResponseFormatHtml() {
- $this->setExpectedException('Services_Soundcloud_Unsupported_Response_Format_Exception');
- $this->soundcloud->setResponseFormat('html');
- }
- function testSetResponseFormatAll() {
- $this->soundcloud->setResponseFormat('*');
- $this->assertEquals(
- '*/*',
- $this->soundcloud->getResponseFormat()
- );
- }
- function testSetResponseFormatJson() {
- $this->soundcloud->setResponseFormat('json');
- $this->assertEquals(
- 'application/json',
- $this->soundcloud->getResponseFormat()
- );
- }
- function testSetResponseFormatXml() {
- $this->soundcloud->setResponseFormat('xml');
- $this->assertEquals(
- 'application/xml',
- $this->soundcloud->getResponseFormat()
- );
- }
- function testResponseCodeSuccess() {
- $this->assertTrue($this->soundcloud->validResponseCode(200));
- }
- function testResponseCodeRedirect() {
- $this->assertFalse($this->soundcloud->validResponseCode(301));
- }
- function testResponseCodeClientError() {
- $this->assertFalse($this->soundcloud->validResponseCode(400));
- }
- function testResponseCodeServerError() {
- $this->assertFalse($this->soundcloud->validResponseCode(500));
- }
- function testBuildDefaultHeaders() {
- $this->assertEquals(
- array('Accept: application/json'),
- $this->soundcloud->buildDefaultHeaders()
- );
- }
- function testBuildDefaultHeadersWithAccessToken() {
- $this->soundcloud->setAccessToken('1337');
- $this->assertEquals(
- array('Accept: application/json', 'Authorization: OAuth 1337'),
- $this->soundcloud->buildDefaultHeaders()
- );
- }
- function testBuildUrl() {
- $this->assertEquals(
- 'https://api.soundcloud.com/v1/me',
- $this->soundcloud->buildUrl('me')
- );
- }
- function testBuildUrlWithQueryParameters() {
- $this->assertEquals(
- 'https://api.soundcloud.com/v1/tracks?q=rofl+dubstep',
- $this->soundcloud->buildUrl(
- 'tracks',
- array('q' => 'rofl dubstep')
- )
- );
- $this->assertEquals(
- 'https://api.soundcloud.com/v1/tracks?q=rofl+dubstep&filter=public',
- $this->soundcloud->buildUrl(
- 'tracks',
- array('q' => 'rofl dubstep', 'filter' => 'public')
- )
- );
- }
- function testBuildUrlWithDevelopmentDomain() {
- $this->soundcloud->setDevelopment(true);
- $this->assertEquals(
- 'https://api.sandbox-soundcloud.com/v1/me',
- $this->soundcloud->buildUrl('me')
- );
- }
- function testBuildUrlWithoutApiVersion() {
- $this->assertEquals(
- 'https://api.soundcloud.com/me',
- $this->soundcloud->buildUrl('me', null, false)
- );
- }
- function testBuildUrlWithAbsoluteUrl() {
- $this->assertEquals(
- 'https://api.soundcloud.com/me',
- $this->soundcloud->buildUrl('https://api.soundcloud.com/me')
- );
- }
- /**
- * @dataProvider dataProviderHttpHeaders
- */
- function testParseHttpHeaders($rawHeaders, $expectedHeaders) {
- $parsedHeaders = $this->soundcloud->parseHttpHeaders($rawHeaders);
- foreach ($parsedHeaders as $key => $val) {
- $this->assertEquals($val, $expectedHeaders[$key]);
- }
- }
- function testSoundcloudMissingConsumerKeyException() {
- $this->setExpectedException('Services_Soundcloud_Missing_Client_Id_Exception');
- $soundcloud = new Services_Soundcloud('', '');
- }
- function testSoundcloudInvalidHttpResponseCodeException() {
- $this->setExpectedException('Services_Soundcloud_Invalid_Http_Response_Code_Exception');
- $this->soundcloud->get('me');
- }
- /**
- * @dataProvider dataProviderSoundcloudInvalidHttpResponseCode
- */
- function testSoundcloudInvalidHttpResponseCode($expectedHeaders) {
- try {
- $this->soundcloud->get('me');
- } catch (Services_Soundcloud_Invalid_Http_Response_Code_Exception $e) {
- $this->assertEquals(
- '{"error":"401 - Unauthorized"}',
- $e->getHttpBody()
- );
- $this->assertEquals(401, $e->getHttpCode());
- foreach ($expectedHeaders as $key => $val) {
- $this->assertEquals(
- $val,
- $this->soundcloud->getHttpHeader($key)
- );
- }
- }
- }
- static function dataProviderHttpHeaders() {
- $rawHeaders = <<<HEADERS
- HTTP/1.1 200 OK
- Date: Wed, 17 Nov 2010 15:39:52 GMT
- Cache-Control: public
- Content-Type: text/html; charset=utf-8
- Content-Encoding: gzip
- Server: foobar
- Content-Length: 1337
- HEADERS;
- $expectedHeaders = array(
- 'date' => 'Wed, 17 Nov 2010 15:39:52 GMT',
- 'cache_control' => 'public',
- 'content_type' => 'text/html; charset=utf-8',
- 'content_encoding' => 'gzip',
- 'server' => 'foobar',
- 'content_length' => '1337'
- );
- return array(array($rawHeaders, $expectedHeaders));
- }
- static function dataProviderSoundcloudInvalidHttpResponseCode() {
- $expectedHeaders = array(
- 'server' => 'nginx',
- 'content_type' => 'application/json; charset=utf-8',
- 'connection' => 'keep-alive',
- 'cache_control' => 'no-cache',
- 'content_length' => '30'
- );
- return array(array($expectedHeaders));
- }
- }
|