summaryrefslogtreecommitdiff
path: root/lib/facebook-graph-sdk/tests/GraphNodes/GraphUserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/facebook-graph-sdk/tests/GraphNodes/GraphUserTest.php')
-rw-r--r--lib/facebook-graph-sdk/tests/GraphNodes/GraphUserTest.php140
1 files changed, 140 insertions, 0 deletions
diff --git a/lib/facebook-graph-sdk/tests/GraphNodes/GraphUserTest.php b/lib/facebook-graph-sdk/tests/GraphNodes/GraphUserTest.php
new file mode 100644
index 0000000..ca75573
--- /dev/null
+++ b/lib/facebook-graph-sdk/tests/GraphNodes/GraphUserTest.php
@@ -0,0 +1,140 @@
+<?php
+/**
+ * Copyright 2014 Facebook, Inc.
+ *
+ * You are hereby granted a non-exclusive, worldwide, royalty-free license to
+ * use, copy, modify, and distribute this software in source code or binary
+ * form for use in connection with the web services and APIs provided by
+ * Facebook.
+ *
+ * As with any software that integrates with the Facebook platform, your use
+ * of this software is subject to the Facebook Developer Principles and
+ * Policies [http://developers.facebook.com/policy/]. This copyright notice
+ * shall be included in all copies or substantial portions of the software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ */
+namespace Facebook\Tests\GraphNodes;
+
+use Facebook\FacebookResponse;
+use Mockery as m;
+use Facebook\GraphNodes\GraphNodeFactory;
+
+class GraphUserTest extends \PHPUnit_Framework_TestCase
+{
+ /**
+ * @var FacebookResponse
+ */
+ protected $responseMock;
+
+ public function setUp()
+ {
+ $this->responseMock = m::mock('\\Facebook\\FacebookResponse');
+ }
+
+ public function testDatesGetCastToDateTime()
+ {
+ $dataFromGraph = [
+ 'birthday' => '1984-01-01',
+ ];
+
+ $this->responseMock
+ ->shouldReceive('getDecodedBody')
+ ->once()
+ ->andReturn($dataFromGraph);
+ $factory = new GraphNodeFactory($this->responseMock);
+ $graphNode = $factory->makeGraphUser();
+
+ $birthday = $graphNode->getBirthday();
+
+ $this->assertInstanceOf('DateTime', $birthday);
+ }
+
+ public function testPagePropertiesWillGetCastAsGraphPageObjects()
+ {
+ $dataFromGraph = [
+ 'id' => '123',
+ 'name' => 'Foo User',
+ 'hometown' => [
+ 'id' => '1',
+ 'name' => 'Foo Place',
+ ],
+ 'location' => [
+ 'id' => '2',
+ 'name' => 'Bar Place',
+ ],
+ ];
+
+ $this->responseMock
+ ->shouldReceive('getDecodedBody')
+ ->once()
+ ->andReturn($dataFromGraph);
+ $factory = new GraphNodeFactory($this->responseMock);
+ $graphNode = $factory->makeGraphUser();
+
+ $hometown = $graphNode->getHometown();
+ $location = $graphNode->getLocation();
+
+ $this->assertInstanceOf('\\Facebook\\GraphNodes\\GraphPage', $hometown);
+ $this->assertInstanceOf('\\Facebook\\GraphNodes\\GraphPage', $location);
+ }
+
+ public function testUserPropertiesWillGetCastAsGraphUserObjects()
+ {
+ $dataFromGraph = [
+ 'id' => '123',
+ 'name' => 'Foo User',
+ 'significant_other' => [
+ 'id' => '1337',
+ 'name' => 'Bar User',
+ ],
+ ];
+
+ $this->responseMock
+ ->shouldReceive('getDecodedBody')
+ ->once()
+ ->andReturn($dataFromGraph);
+ $factory = new GraphNodeFactory($this->responseMock);
+ $graphNode = $factory->makeGraphUser();
+
+ $significantOther = $graphNode->getSignificantOther();
+
+ $this->assertInstanceOf('\\Facebook\\GraphNodes\\GraphUser', $significantOther);
+ }
+
+ public function testPicturePropertiesWillGetCastAsGraphPictureObjects()
+ {
+ $dataFromGraph = [
+ 'id' => '123',
+ 'name' => 'Foo User',
+ 'picture' => [
+ 'is_silhouette' => true,
+ 'url' => 'http://foo.bar',
+ 'width' => 200,
+ 'height' => 200,
+ ],
+ ];
+
+ $this->responseMock
+ ->shouldReceive('getDecodedBody')
+ ->once()
+ ->andReturn($dataFromGraph);
+ $factory = new GraphNodeFactory($this->responseMock);
+ $graphNode = $factory->makeGraphUser();
+
+ $Picture = $graphNode->getPicture();
+
+ $this->assertInstanceOf('\\Facebook\\GraphNodes\\GraphPicture', $Picture);
+ $this->assertTrue($Picture->isSilhouette());
+ $this->assertEquals(200, $Picture->getWidth());
+ $this->assertEquals(200, $Picture->getHeight());
+ $this->assertEquals('http://foo.bar', $Picture->getUrl());
+ }
+}