You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

217 lines
11 KiB

  1. <?php
  2. use Symfony\Component\HttpFoundation\Request;
  3. use Symfony\Component\HttpFoundation\Response;
  4. class InstagramTest extends PHPUnit_Framework_TestCase {
  5. private $http;
  6. public function setUp() {
  7. $this->client = new Parse();
  8. $this->client->http = new p3k\HTTP\Test(dirname(__FILE__).'/data/');
  9. $this->client->mc = null;
  10. }
  11. private function parse($params) {
  12. $request = new Request($params);
  13. $response = new Response();
  14. return $this->client->parse($request, $response);
  15. }
  16. public function testInstagramPhoto() {
  17. // Original URL: https://www.instagram.com/p/BO5rYVElvJq/
  18. $url = 'https://www.instagram.com/p/BO5rYVElvJq/';
  19. $response = $this->parse(['url' => $url]);
  20. $body = $response->getContent();
  21. $this->assertEquals(200, $response->getStatusCode());
  22. $data = json_decode($body, true);
  23. $this->assertEquals('entry', $data['data']['type']);
  24. $this->assertEquals('2017-01-05T23:31:32+00:00', $data['data']['published']);
  25. $this->assertContains('planning', $data['data']['category']);
  26. $this->assertContains('2017', $data['data']['category']);
  27. $this->assertEquals('Kind of crazy to see the whole year laid out like this. #planning #2017', $data['data']['content']['text']);
  28. $this->assertEquals(1, count($data['data']['photo']));
  29. $this->assertEquals(['https://instagram.fsea1-1.fna.fbcdn.net/vp/214e719b6026ef54e0545f2ed70d4c83/5B56795F/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg'], $data['data']['photo']);
  30. $this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']);
  31. $this->assertEquals('Aaron Parecki', $data['data']['author']['name']);
  32. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/0dc6166cbd4ec6782453d36cd07fec06/5B67568E/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg', $data['data']['author']['photo']);
  33. }
  34. public function testBGDpqNoiMJ0() {
  35. // https://www.instagram.com/p/BGDpqNoiMJ0/
  36. $url = 'http://www.instagram.com/BGDpqNoiMJ0';
  37. $response = $this->parse(['url' => $url]);
  38. $body = $response->getContent();
  39. $this->assertEquals(200, $response->getStatusCode());
  40. $data = json_decode($body, true);
  41. $this->assertEquals('entry', $data['data']['type']);
  42. $this->assertSame([
  43. 'type' => 'card',
  44. 'name' => 'pk_spam',
  45. 'url' => 'https://aaronparecki.com/',
  46. 'photo' => 'https://instagram.fhel2-1.fna.fbcdn.net/vp/f17e1275a70fc32e93cbf434ddc32bcd/5B6CCC7A/t51.2885-19/11906329_960233084022564_1448528159_a.jpg',
  47. 'note' => 'My website is https://aaronparecki.com.dev/ and http://aaronpk.micro.blog/about/ and https://tiny.xyz.dev/'
  48. ], $data['data']['author']);
  49. $this->assertSame([
  50. 'muffins',
  51. 'https://indiewebcat.com/'
  52. ], $data['data']['category']);
  53. $this->assertEquals('Meow #muffins', $data['data']['content']['text']);
  54. $this->assertSame(['https://instagram.fsea1-1.fna.fbcdn.net/vp/9433ea494a8b055bebabf70fd81cfa32/5B51F092/t51.2885-15/e35/13266755_877794672348882_1908663476_n.jpg'], $data['data']['photo']);
  55. $this->assertEquals('2016-05-30T20:46:22-07:00', $data['data']['published']);
  56. $this->assertEquals('https://www.instagram.com/explore/locations/359000003/', $data['data']['location'][0]);
  57. $this->assertSame([
  58. 'type' => 'card',
  59. 'name' => 'Burnside 26',
  60. 'url' => 'https://www.instagram.com/explore/locations/359000003/',
  61. 'latitude' => 45.5228640678,
  62. 'longitude' => -122.6389405085
  63. ], $data['data']['refs']['https://www.instagram.com/explore/locations/359000003/']);
  64. }
  65. public function testInstagramVideo() {
  66. // Original URL: https://www.instagram.com/p/BO_RN8AFZSx/
  67. $url = 'https://www.instagram.com/p/BO_RN8AFZSx/';
  68. $response = $this->parse(['url' => $url]);
  69. $body = $response->getContent();
  70. $this->assertEquals(200, $response->getStatusCode());
  71. $data = json_decode($body, true);
  72. $this->assertEquals('entry', $data['data']['type']);
  73. $this->assertContains('100daysofmusic', $data['data']['category']);
  74. $this->assertEquals('Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject https://aaronparecki.com/2017/01/07/14/day18', $data['data']['content']['text']);
  75. $this->assertEquals(1, count($data['data']['photo']));
  76. $this->assertEquals(['https://instagram.fsea1-1.fna.fbcdn.net/vp/32890db04701c4ab4fa7da05a6e9de93/5ADB9BDF/t51.2885-15/e15/15624670_548881701986735_8264383763249627136_n.jpg'], $data['data']['photo']);
  77. $this->assertEquals(1, count($data['data']['video']));
  78. $this->assertEquals(['https://instagram.fsea1-1.fna.fbcdn.net/vp/46c7118509146b978fb7bfc497eeb16f/5ADB639E/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4'], $data['data']['video']);
  79. $this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']);
  80. $this->assertEquals('Aaron Parecki', $data['data']['author']['name']);
  81. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/0dc6166cbd4ec6782453d36cd07fec06/5B67568E/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg', $data['data']['author']['photo']);
  82. }
  83. public function testInstagramPhotoWithPersonTag() {
  84. // Original URL: https://www.instagram.com/p/BNfqVfVlmkj/
  85. $url = 'https://www.instagram.com/p/BNfqVfVlmkj/';
  86. $response = $this->parse(['url' => $url]);
  87. $body = $response->getContent();
  88. $this->assertEquals(200, $response->getStatusCode());
  89. $data = json_decode($body, true);
  90. $this->assertEquals(2, count($data['data']['category']));
  91. $this->assertContains('http://www.kmikeym.com/', $data['data']['category']);
  92. $this->assertArrayHasKey('http://www.kmikeym.com/', $data['data']['refs']);
  93. $this->assertEquals(['type'=>'card','name'=>'Mike Merrill','url'=>'http://www.kmikeym.com/','photo'=>'https://instagram.fsea1-1.fna.fbcdn.net/vp/dea521b3000a53d2d9a6845f5b066256/5B66D2FC/t51.2885-19/s320x320/20634957_814691788710973_2275383796935163904_a.jpg','note'=>'The world’s first Publicly Traded Person and working on things at @sandwichvideo'], $data['data']['refs']['http://www.kmikeym.com/']);
  94. }
  95. public function testInstagramPhotoWithVenue() {
  96. // Original URL: https://www.instagram.com/p/BN3Z5salSys/
  97. $url = 'https://www.instagram.com/p/BN3Z5salSys/';
  98. $response = $this->parse(['url' => $url]);
  99. $body = $response->getContent();
  100. $this->assertEquals(200, $response->getStatusCode());
  101. $data = json_decode($body, true);
  102. $this->assertEquals(1, count($data['data']['location']));
  103. $this->assertContains('https://www.instagram.com/explore/locations/109284789535230/', $data['data']['location']);
  104. $this->assertArrayHasKey('https://www.instagram.com/explore/locations/109284789535230/', $data['data']['refs']);
  105. $venue = $data['data']['refs']['https://www.instagram.com/explore/locations/109284789535230/'];
  106. $this->assertEquals('XOXO Outpost', $venue['name']);
  107. $this->assertEquals('45.5261002', $venue['latitude']);
  108. $this->assertEquals('-122.6558081', $venue['longitude']);
  109. // Setting a venue should set the timezone
  110. $this->assertEquals('2016-12-10T21:48:56-08:00', $data['data']['published']);
  111. }
  112. public function testTwoPhotos() {
  113. // Original URL: https://www.instagram.com/p/BZWmUB_DVtp/
  114. $url = 'https://www.instagram.com/p/BZWmUB_DVtp/';
  115. $response = $this->parse(['url' => $url]);
  116. $body = $response->getContent();
  117. $this->assertEquals(200, $response->getStatusCode());
  118. $data = json_decode($body, true);
  119. $this->assertEquals(2, count($data['data']['photo']));
  120. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/406101ff9601ab78147e121b65ce3eea/5B5BC738/t51.2885-15/e35/21827424_134752690591737_8093088291252862976_n.jpg', $data['data']['photo'][0]);
  121. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/03ddc8c03c8708439dae29663b8c2305/5B5EDE4D/t51.2885-15/e35/21909774_347707439021016_5237540582556958720_n.jpg', $data['data']['photo'][1]);
  122. $this->assertArrayNotHasKey('video', $data['data']);
  123. $this->assertEquals(2, count($data['data']['category']));
  124. }
  125. public function testMixPhotosAndVideos() {
  126. // Original URL: https://www.instagram.com/p/BZWmpecjBwN/
  127. $url = 'https://www.instagram.com/p/BZWmpecjBwN/';
  128. $response = $this->parse(['url' => $url]);
  129. $body = $response->getContent();
  130. $this->assertEquals(200, $response->getStatusCode());
  131. $data = json_decode($body, true);
  132. $this->assertEquals(3, count($data['data']['photo']));
  133. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/b0f6cd9dc4d5c3371efe9f412a0d7f0b/5B6BC5B8/t51.2885-15/e35/21878922_686481254874005_8468823712617988096_n.jpg', $data['data']['photo'][0]);
  134. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/f8939cca504f97931fd4768b77d2c152/5ADB3CC9/t51.2885-15/e15/21910026_1507234999368159_6974261907783942144_n.jpg', $data['data']['photo'][1]);
  135. $this->assertEquals('https://instagram.fsea1-1.fna.fbcdn.net/vp/254c313bdcac37c19da5e10be8222a88/5B689788/t51.2885-15/e35/21878800_273567963151023_7672178549897297920_n.jpg', $data['data']['photo'][2]);
  136. $this->assertArrayNotHasKey('video', $data['data']);
  137. $this->assertEquals(2, count($data['data']['category']));
  138. }
  139. public function testInstagramProfile() {
  140. $url = 'https://www.instagram.com/aaronpk/';
  141. $response = $this->parse(['url' => $url]);
  142. $body = $response->getContent();
  143. $this->assertEquals(200, $response->getStatusCode());
  144. $data = json_decode($body, true);
  145. $this->assertSame([
  146. 'type' => 'card',
  147. 'name' => 'Aaron Parecki',
  148. 'url' => 'https://aaronparecki.com/',
  149. 'photo' => 'https://instagram.fsea1-1.fna.fbcdn.net/vp/0dc6166cbd4ec6782453d36cd07fec06/5B67568E/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg',
  150. 'note' => '📡 w7apk.com 🔒 oauth.net 🎥 backpedal.tv 🎙 streampdx.com'
  151. ], $data['data']);
  152. }
  153. public function testInstagramProfileWithBio() {
  154. $url = 'https://www.instagram.com/pk_spam/';
  155. $response = $this->parse(['url' => $url]);
  156. $body = $response->getContent();
  157. $this->assertEquals(200, $response->getStatusCode());
  158. $data = json_decode($body, true);
  159. $this->assertSame([
  160. 'type' => 'card',
  161. 'name' => 'pk_spam',
  162. 'url' => 'https://aaronparecki.com/',
  163. 'photo' => 'https://instagram.fhel2-1.fna.fbcdn.net/vp/f17e1275a70fc32e93cbf434ddc32bcd/5B6CCC7A/t51.2885-19/11906329_960233084022564_1448528159_a.jpg',
  164. 'note' => 'My website is https://aaronparecki.com.dev/ and http://aaronpk.micro.blog/about/ and https://tiny.xyz.dev/'
  165. ], $data['data']);
  166. }
  167. public function testInstagramProfileFeed() {
  168. $url = 'https://www.instagram.com/pk_spam/';
  169. $response = $this->parse(['url' => $url, 'expect' => 'feed']);
  170. $body = $response->getContent();
  171. $this->assertEquals(200, $response->getStatusCode());
  172. $data = json_decode($body, true);
  173. $this->assertEquals('feed', $data['data']['type']);
  174. $this->assertEquals(12, count($data['data']['items']));
  175. $this->assertEquals('https://www.instagram.com/p/Be0lBpGDncI/', $data['data']['items'][0]['url']);
  176. $this->assertEquals('https://www.instagram.com/p/BGC8l_ZCMKb/', $data['data']['items'][11]['url']);
  177. }
  178. }