'1337', 'app_secret' => 'foo_secret', ]; /** * @expectedException \Facebook\Exceptions\FacebookSDKException */ public function testInstantiatingWithoutAppIdThrows() { // unset value so there is no fallback to test expected Exception putenv(Facebook::APP_ID_ENV_NAME.'='); $config = [ 'app_secret' => 'foo_secret', ]; new Facebook($config); } /** * @expectedException \Facebook\Exceptions\FacebookSDKException */ public function testInstantiatingWithoutAppSecretThrows() { // unset value so there is no fallback to test expected Exception putenv(Facebook::APP_SECRET_ENV_NAME.'='); $config = [ 'app_id' => 'foo_id', ]; new Facebook($config); } /** * @expectedException \InvalidArgumentException */ public function testSettingAnInvalidHttpClientHandlerThrows() { $config = array_merge($this->config, [ 'http_client_handler' => 'foo_handler', ]); new Facebook($config); } public function testCurlHttpClientHandlerCanBeForced() { if (!extension_loaded('curl')) { $this->markTestSkipped('cURL must be installed to test cURL client handler.'); } $config = array_merge($this->config, [ 'http_client_handler' => 'curl' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\HttpClients\FacebookCurlHttpClient', $fb->getClient()->getHttpClientHandler() ); } public function testStreamHttpClientHandlerCanBeForced() { $config = array_merge($this->config, [ 'http_client_handler' => 'stream' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\HttpClients\FacebookStreamHttpClient', $fb->getClient()->getHttpClientHandler() ); } public function testGuzzleHttpClientHandlerCanBeForced() { $config = array_merge($this->config, [ 'http_client_handler' => 'guzzle' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\HttpClients\FacebookGuzzleHttpClient', $fb->getClient()->getHttpClientHandler() ); } /** * @expectedException \InvalidArgumentException */ public function testSettingAnInvalidPersistentDataHandlerThrows() { $config = array_merge($this->config, [ 'persistent_data_handler' => 'foo_handler', ]); new Facebook($config); } public function testPersistentDataHandlerCanBeForced() { $config = array_merge($this->config, [ 'persistent_data_handler' => 'memory' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\PersistentData\FacebookMemoryPersistentDataHandler', $fb->getRedirectLoginHelper()->getPersistentDataHandler() ); } public function testSettingAnInvalidUrlHandlerThrows() { $expectedException = (PHP_MAJOR_VERSION > 5 && class_exists('TypeError')) ? 'TypeError' : 'PHPUnit_Framework_Error'; $this->setExpectedException($expectedException); $config = array_merge($this->config, [ 'url_detection_handler' => 'foo_handler', ]); new Facebook($config); } public function testTheUrlHandlerWillDefaultToTheFacebookImplementation() { $fb = new Facebook($this->config); $this->assertInstanceOf('Facebook\Url\FacebookUrlDetectionHandler', $fb->getUrlDetectionHandler()); } public function testAnAccessTokenCanBeSetAsAString() { $fb = new Facebook($this->config); $fb->setDefaultAccessToken('foo_token'); $accessToken = $fb->getDefaultAccessToken(); $this->assertInstanceOf('Facebook\Authentication\AccessToken', $accessToken); $this->assertEquals('foo_token', (string)$accessToken); } public function testAnAccessTokenCanBeSetAsAnAccessTokenEntity() { $fb = new Facebook($this->config); $fb->setDefaultAccessToken(new AccessToken('bar_token')); $accessToken = $fb->getDefaultAccessToken(); $this->assertInstanceOf('Facebook\Authentication\AccessToken', $accessToken); $this->assertEquals('bar_token', (string)$accessToken); } /** * @expectedException \InvalidArgumentException */ public function testSettingAnInvalidPseudoRandomStringGeneratorThrows() { $config = array_merge($this->config, [ 'pseudo_random_string_generator' => 'foo_generator', ]); new Facebook($config); } public function testRandomBytesCsprgCanBeForced() { if (!function_exists('random_bytes')) { $this->markTestSkipped( 'Must have PHP 7 or paragonie/random_compat installed to test random_bytes().' ); } $config = array_merge($this->config, [ 'persistent_data_handler' => 'memory', // To keep session errors from happening 'pseudo_random_string_generator' => 'random_bytes' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\PseudoRandomString\RandomBytesPseudoRandomStringGenerator', $fb->getRedirectLoginHelper()->getPseudoRandomStringGenerator() ); } public function testMcryptCsprgCanBeForced() { if (!function_exists('mcrypt_create_iv')) { $this->markTestSkipped( 'Mcrypt must be installed to test mcrypt_create_iv().' ); } $config = array_merge($this->config, [ 'persistent_data_handler' => 'memory', // To keep session errors from happening 'pseudo_random_string_generator' => 'mcrypt' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\PseudoRandomString\McryptPseudoRandomStringGenerator', $fb->getRedirectLoginHelper()->getPseudoRandomStringGenerator() ); } public function testOpenSslCsprgCanBeForced() { if (!function_exists('openssl_random_pseudo_bytes')) { $this->markTestSkipped( 'The OpenSSL extension must be enabled to test openssl_random_pseudo_bytes().' ); } $config = array_merge($this->config, [ 'persistent_data_handler' => 'memory', // To keep session errors from happening 'pseudo_random_string_generator' => 'openssl' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\PseudoRandomString\OpenSslPseudoRandomStringGenerator', $fb->getRedirectLoginHelper()->getPseudoRandomStringGenerator() ); } public function testUrandomCsprgCanBeForced() { if (ini_get('open_basedir')) { $this->markTestSkipped( 'Cannot test /dev/urandom generator due to open_basedir constraint.' ); } if (!is_readable('/dev/urandom')) { $this->markTestSkipped( '/dev/urandom not found or is not readable.' ); } $config = array_merge($this->config, [ 'persistent_data_handler' => 'memory', // To keep session errors from happening 'pseudo_random_string_generator' => 'urandom' ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\PseudoRandomString\UrandomPseudoRandomStringGenerator', $fb->getRedirectLoginHelper()->getPseudoRandomStringGenerator() ); } /** * @expectedException \InvalidArgumentException */ public function testSettingAnAccessThatIsNotStringOrAccessTokenThrows() { $config = array_merge($this->config, [ 'default_access_token' => 123, ]); new Facebook($config); } public function testCreatingANewRequestWillDefaultToTheProperConfig() { $config = array_merge($this->config, [ 'default_access_token' => 'foo_token', 'enable_beta_mode' => true, 'default_graph_version' => 'v1337', ]); $fb = new Facebook($config); $request = $fb->request('FOO_VERB', '/foo'); $this->assertEquals('1337', $request->getApp()->getId()); $this->assertEquals('foo_secret', $request->getApp()->getSecret()); $this->assertEquals('foo_token', (string)$request->getAccessToken()); $this->assertEquals('v1337', $request->getGraphVersion()); $this->assertEquals( FacebookClient::BASE_GRAPH_URL_BETA, $fb->getClient()->getBaseGraphUrl() ); } public function testCreatingANewBatchRequestWillDefaultToTheProperConfig() { $config = array_merge($this->config, [ 'default_access_token' => 'foo_token', 'enable_beta_mode' => true, 'default_graph_version' => 'v1337', ]); $fb = new Facebook($config); $batchRequest = $fb->newBatchRequest(); $this->assertEquals('1337', $batchRequest->getApp()->getId()); $this->assertEquals('foo_secret', $batchRequest->getApp()->getSecret()); $this->assertEquals('foo_token', (string)$batchRequest->getAccessToken()); $this->assertEquals('v1337', $batchRequest->getGraphVersion()); $this->assertEquals( FacebookClient::BASE_GRAPH_URL_BETA, $fb->getClient()->getBaseGraphUrl() ); $this->assertInstanceOf('Facebook\FacebookBatchRequest', $batchRequest); $this->assertEquals(0, count($batchRequest->getRequests())); } public function testCanInjectCustomHandlers() { $config = array_merge($this->config, [ 'http_client_handler' => new FooClientInterface(), 'persistent_data_handler' => new FooPersistentDataInterface(), 'url_detection_handler' => new FooUrlDetectionInterface(), 'pseudo_random_string_generator' => new FooBarPseudoRandomStringGenerator(), ]); $fb = new Facebook($config); $this->assertInstanceOf( 'Facebook\Tests\Fixtures\FooClientInterface', $fb->getClient()->getHttpClientHandler() ); $this->assertInstanceOf( 'Facebook\Tests\Fixtures\FooPersistentDataInterface', $fb->getRedirectLoginHelper()->getPersistentDataHandler() ); $this->assertInstanceOf( 'Facebook\Tests\Fixtures\FooUrlDetectionInterface', $fb->getRedirectLoginHelper()->getUrlDetectionHandler() ); $this->assertInstanceOf( 'Facebook\Tests\Fixtures\FooBarPseudoRandomStringGenerator', $fb->getRedirectLoginHelper()->getPseudoRandomStringGenerator() ); } public function testPaginationReturnsProperResponse() { $config = array_merge($this->config, [ 'http_client_handler' => new FooClientInterface(), ]); $fb = new Facebook($config); $request = new FacebookRequest($fb->getApp(), 'foo_token', 'GET'); $graphEdge = new GraphEdge( $request, [], [ 'paging' => [ 'cursors' => [ 'after' => 'bar_after_cursor', 'before' => 'bar_before_cursor', ], 'previous' => 'previous_url', 'next' => 'next_url', ] ], '/1337/photos', '\Facebook\GraphNodes\GraphUser' ); $nextPage = $fb->next($graphEdge); $this->assertInstanceOf('Facebook\GraphNodes\GraphEdge', $nextPage); $this->assertInstanceOf('Facebook\GraphNodes\GraphUser', $nextPage[0]); $this->assertEquals('Foo', $nextPage[0]['name']); $lastResponse = $fb->getLastResponse(); $this->assertInstanceOf('Facebook\FacebookResponse', $lastResponse); $this->assertEquals(1337, $lastResponse->getHttpStatusCode()); } public function testCanGetSuccessfulTransferWithMaxTries() { $config = array_merge($this->config, [ 'http_client_handler' => new FakeGraphApiForResumableUpload(), ]); $fb = new Facebook($config); $response = $fb->uploadVideo('me', __DIR__.'/foo.txt', [], 'foo-token', 3); $this->assertEquals([ 'video_id' => '1337', 'success' => true, ], $response); } /** * @expectedException \Facebook\Exceptions\FacebookResponseException */ public function testMaxingOutRetriesWillThrow() { $client = new FakeGraphApiForResumableUpload(); $client->failOnTransfer(); $config = array_merge($this->config, [ 'http_client_handler' => $client, ]); $fb = new Facebook($config); $fb->uploadVideo('4', __DIR__.'/foo.txt', [], 'foo-token', 3); } }