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.

250 lines
12 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(200, $data['code']);
  24. $this->assertEquals('instagram', $data['source-format']);
  25. $this->assertEquals('entry', $data['data']['type']);
  26. $this->assertEquals('photo', $data['data']['post-type']);
  27. $this->assertEquals('2017-01-05T23:31:32+00:00', $data['data']['published']);
  28. $this->assertContains('planning', $data['data']['category']);
  29. $this->assertContains('2017', $data['data']['category']);
  30. $this->assertEquals('Kind of crazy to see the whole year laid out like this. #planning #2017', $data['data']['content']['text']);
  31. $this->assertEquals(1, count($data['data']['photo']));
  32. $this->assertEquals(['https://instagram.fsea1-1.fna.fbcdn.net/vp/214e719b6026ef54e0545f2ed70d4c83/5B56795F/t51.2885-15/e35/15803256_1832278043695907_4846092951052353536_n.jpg'], $data['data']['photo']);
  33. $this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']);
  34. $this->assertEquals('Aaron Parecki', $data['data']['author']['name']);
  35. $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']);
  36. }
  37. public function testBGDpqNoiMJ0() {
  38. // https://www.instagram.com/p/BGDpqNoiMJ0/
  39. $url = 'http://www.instagram.com/BGDpqNoiMJ0';
  40. $response = $this->parse(['url' => $url]);
  41. $body = $response->getContent();
  42. $this->assertEquals(200, $response->getStatusCode());
  43. $data = json_decode($body, true);
  44. $this->assertEquals(200, $data['code']);
  45. $this->assertEquals('instagram', $data['source-format']);
  46. $this->assertEquals('entry', $data['data']['type']);
  47. $this->assertEquals('photo', $data['data']['post-type']);
  48. $this->assertSame([
  49. 'type' => 'card',
  50. 'name' => 'pk_spam',
  51. 'url' => 'https://aaronparecki.com/',
  52. 'photo' => 'https://instagram.fhel2-1.fna.fbcdn.net/vp/f17e1275a70fc32e93cbf434ddc32bcd/5B6CCC7A/t51.2885-19/11906329_960233084022564_1448528159_a.jpg',
  53. 'note' => 'My website is https://aaronparecki.com.dev/ and http://aaronpk.micro.blog/about/ and https://tiny.xyz.dev/'
  54. ], $data['data']['author']);
  55. $this->assertSame([
  56. 'muffins',
  57. 'https://indiewebcat.com/'
  58. ], $data['data']['category']);
  59. $this->assertEquals('Meow #muffins', $data['data']['content']['text']);
  60. $this->assertSame(['https://instagram.fsea1-1.fna.fbcdn.net/vp/9433ea494a8b055bebabf70fd81cfa32/5B51F092/t51.2885-15/e35/13266755_877794672348882_1908663476_n.jpg'], $data['data']['photo']);
  61. $this->assertEquals('2016-05-30T20:46:22-07:00', $data['data']['published']);
  62. $this->assertEquals('https://www.instagram.com/explore/locations/359000003/', $data['data']['location'][0]);
  63. $this->assertSame([
  64. 'type' => 'card',
  65. 'name' => 'Burnside 26',
  66. 'url' => 'https://www.instagram.com/explore/locations/359000003/',
  67. 'latitude' => 45.5228640678,
  68. 'longitude' => -122.6389405085
  69. ], $data['data']['refs']['https://www.instagram.com/explore/locations/359000003/']);
  70. }
  71. public function testInstagramVideo() {
  72. // Original URL: https://www.instagram.com/p/BO_RN8AFZSx/
  73. $url = 'https://www.instagram.com/p/BO_RN8AFZSx/';
  74. $response = $this->parse(['url' => $url]);
  75. $body = $response->getContent();
  76. $this->assertEquals(200, $response->getStatusCode());
  77. $data = json_decode($body, true);
  78. $this->assertEquals(200, $data['code']);
  79. $this->assertEquals('instagram', $data['source-format']);
  80. $this->assertEquals('entry', $data['data']['type']);
  81. $this->assertEquals('video', $data['data']['post-type']);
  82. $this->assertContains('100daysofmusic', $data['data']['category']);
  83. $this->assertEquals('Day 18. Maple and Spruce #100daysofmusic #100daysproject #the100dayproject https://aaronparecki.com/2017/01/07/14/day18', $data['data']['content']['text']);
  84. $this->assertEquals(1, count($data['data']['photo']));
  85. $this->assertEquals(['https://instagram.fsea1-1.fna.fbcdn.net/vp/32890db04701c4ab4fa7da05a6e9de93/5ADB9BDF/t51.2885-15/e15/15624670_548881701986735_8264383763249627136_n.jpg'], $data['data']['photo']);
  86. $this->assertEquals(1, count($data['data']['video']));
  87. $this->assertEquals(['https://instagram.fsea1-1.fna.fbcdn.net/vp/46c7118509146b978fb7bfc497eeb16f/5ADB639E/t50.2886-16/15921147_1074837002642259_2269307616507199488_n.mp4'], $data['data']['video']);
  88. $this->assertEquals('https://aaronparecki.com/', $data['data']['author']['url']);
  89. $this->assertEquals('Aaron Parecki', $data['data']['author']['name']);
  90. $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']);
  91. }
  92. public function testInstagramPhotoWithPersonTag() {
  93. // Original URL: https://www.instagram.com/p/BNfqVfVlmkj/
  94. $url = 'https://www.instagram.com/p/BNfqVfVlmkj/';
  95. $response = $this->parse(['url' => $url]);
  96. $body = $response->getContent();
  97. $this->assertEquals(200, $response->getStatusCode());
  98. $data = json_decode($body, true);
  99. $this->assertEquals(200, $data['code']);
  100. $this->assertEquals('instagram', $data['source-format']);
  101. $this->assertEquals(2, count($data['data']['category']));
  102. $this->assertContains('http://www.kmikeym.com/', $data['data']['category']);
  103. $this->assertArrayHasKey('http://www.kmikeym.com/', $data['data']['refs']);
  104. $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/']);
  105. }
  106. public function testInstagramPhotoWithVenue() {
  107. // Original URL: https://www.instagram.com/p/BN3Z5salSys/
  108. $url = 'https://www.instagram.com/p/BN3Z5salSys/';
  109. $response = $this->parse(['url' => $url]);
  110. $body = $response->getContent();
  111. $this->assertEquals(200, $response->getStatusCode());
  112. $data = json_decode($body, true);
  113. $this->assertEquals(200, $data['code']);
  114. $this->assertEquals('instagram', $data['source-format']);
  115. $this->assertEquals(1, count($data['data']['location']));
  116. $this->assertContains('https://www.instagram.com/explore/locations/109284789535230/', $data['data']['location']);
  117. $this->assertArrayHasKey('https://www.instagram.com/explore/locations/109284789535230/', $data['data']['refs']);
  118. $venue = $data['data']['refs']['https://www.instagram.com/explore/locations/109284789535230/'];
  119. $this->assertEquals('XOXO Outpost', $venue['name']);
  120. $this->assertEquals('45.5261002', $venue['latitude']);
  121. $this->assertEquals('-122.6558081', $venue['longitude']);
  122. // Setting a venue should set the timezone
  123. $this->assertEquals('2016-12-10T21:48:56-08:00', $data['data']['published']);
  124. }
  125. public function testTwoPhotos() {
  126. // Original URL: https://www.instagram.com/p/BZWmUB_DVtp/
  127. $url = 'https://www.instagram.com/p/BZWmUB_DVtp/';
  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(200, $data['code']);
  133. $this->assertEquals('instagram', $data['source-format']);
  134. $this->assertEquals(2, count($data['data']['photo']));
  135. $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]);
  136. $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]);
  137. $this->assertArrayNotHasKey('video', $data['data']);
  138. $this->assertEquals(2, count($data['data']['category']));
  139. }
  140. public function testMixPhotosAndVideos() {
  141. // Original URL: https://www.instagram.com/p/BZWmpecjBwN/
  142. $url = 'https://www.instagram.com/p/BZWmpecjBwN/';
  143. $response = $this->parse(['url' => $url]);
  144. $body = $response->getContent();
  145. $this->assertEquals(200, $response->getStatusCode());
  146. $data = json_decode($body, true);
  147. $this->assertEquals(200, $data['code']);
  148. $this->assertEquals('instagram', $data['source-format']);
  149. $this->assertEquals('photo', $data['data']['post-type']); // we discard videos in this case right now
  150. $this->assertEquals(3, count($data['data']['photo']));
  151. $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]);
  152. $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]);
  153. $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]);
  154. $this->assertArrayNotHasKey('video', $data['data']);
  155. $this->assertEquals(2, count($data['data']['category']));
  156. }
  157. public function testInstagramProfile() {
  158. $url = 'https://www.instagram.com/aaronpk/';
  159. $response = $this->parse(['url' => $url]);
  160. $body = $response->getContent();
  161. $this->assertEquals(200, $response->getStatusCode());
  162. $data = json_decode($body, true);
  163. $this->assertEquals(200, $data['code']);
  164. $this->assertEquals('instagram', $data['source-format']);
  165. $this->assertSame([
  166. 'type' => 'card',
  167. 'name' => 'Aaron Parecki',
  168. 'url' => 'https://aaronparecki.com/',
  169. 'photo' => 'https://instagram.fsea1-1.fna.fbcdn.net/vp/0dc6166cbd4ec6782453d36cd07fec06/5B67568E/t51.2885-19/s320x320/14240576_268350536897085_1129715662_a.jpg',
  170. 'note' => '📡 w7apk.com 🔒 oauth.net 🎥 backpedal.tv 🎙 streampdx.com'
  171. ], $data['data']);
  172. }
  173. public function testInstagramProfileWithBio() {
  174. $url = 'https://www.instagram.com/pk_spam/';
  175. $response = $this->parse(['url' => $url]);
  176. $body = $response->getContent();
  177. $this->assertEquals(200, $response->getStatusCode());
  178. $data = json_decode($body, true);
  179. $this->assertEquals(200, $data['code']);
  180. $this->assertEquals('instagram', $data['source-format']);
  181. $this->assertSame([
  182. 'type' => 'card',
  183. 'name' => 'pk_spam',
  184. 'url' => 'https://aaronparecki.com/',
  185. 'photo' => 'https://instagram.fhel2-1.fna.fbcdn.net/vp/f17e1275a70fc32e93cbf434ddc32bcd/5B6CCC7A/t51.2885-19/11906329_960233084022564_1448528159_a.jpg',
  186. 'note' => 'My website is https://aaronparecki.com.dev/ and http://aaronpk.micro.blog/about/ and https://tiny.xyz.dev/'
  187. ], $data['data']);
  188. }
  189. public function testInstagramProfileFeed() {
  190. $url = 'https://www.instagram.com/pk_spam/';
  191. $response = $this->parse(['url' => $url, 'expect' => 'feed']);
  192. $body = $response->getContent();
  193. $this->assertEquals(200, $response->getStatusCode());
  194. $data = json_decode($body, true);
  195. $this->assertEquals(200, $data['code']);
  196. $this->assertEquals('instagram', $data['source-format']);
  197. $this->assertEquals('feed', $data['data']['type']);
  198. $this->assertEquals(12, count($data['data']['items']));
  199. $this->assertEquals('https://www.instagram.com/p/Be0lBpGDncI/', $data['data']['items'][0]['url']);
  200. $this->assertEquals('https://www.instagram.com/p/BGC8l_ZCMKb/', $data['data']['items'][11]['url']);
  201. }
  202. }