]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - tests/ActivityParseTests.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / tests / ActivityParseTests.php
1 <?php
2
3 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
4     print "This script must be run from the command line\n";
5     exit();
6 }
7
8 // XXX: we should probably have some common source for this stuff
9
10 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
11 define('STATUSNET', true);
12
13 require_once INSTALLDIR . '/lib/common.php';
14
15 class ActivityParseTests extends PHPUnit_Framework_TestCase
16 {
17     public function testExample1()
18     {
19         global $_example1;
20         $dom = DOMDocument::loadXML($_example1);
21         $act = new Activity($dom->documentElement);
22
23         $this->assertFalse(empty($act));
24
25         $this->assertEquals($act->time, 1243860840);
26         $this->assertEquals($act->verb, ActivityVerb::POST);
27
28         $this->assertFalse(empty($act->object));
29         $this->assertEquals($act->object->title, 'Punctuation Changeset');
30         $this->assertEquals($act->object->type, 'http://versioncentral.example.org/activity/changeset');
31         $this->assertEquals($act->object->summary, 'Fixing punctuation because it makes it more readable.');
32         $this->assertEquals($act->object->id, 'tag:versioncentral.example.org,2009:/change/1643245');
33     }
34
35     public function testExample3()
36     {
37         global $_example3;
38         $dom = DOMDocument::loadXML($_example3);
39
40         $feed = $dom->documentElement;
41
42         $entries = $feed->getElementsByTagName('entry');
43
44         $entry = $entries->item(0);
45
46         $act = new Activity($entry, $feed);
47
48         $this->assertFalse(empty($act));
49         $this->assertEquals($act->time, 1071340202);
50         $this->assertEquals($act->link, 'http://example.org/2003/12/13/atom03.html');
51
52         $this->assertEquals($act->verb, ActivityVerb::POST);
53
54         $this->assertFalse(empty($act->actor));
55         $this->assertEquals($act->actor->type, ActivityObject::PERSON);
56         $this->assertEquals($act->actor->title, 'John Doe');
57         $this->assertEquals($act->actor->id, 'mailto:johndoe@example.com');
58
59         $this->assertFalse(empty($act->object));
60         $this->assertEquals($act->object->type, ActivityObject::NOTE);
61         $this->assertEquals($act->object->id, 'urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a');
62         $this->assertEquals($act->object->title, 'Atom-Powered Robots Run Amok');
63         $this->assertEquals($act->object->summary, 'Some text.');
64         $this->assertEquals($act->object->link, 'http://example.org/2003/12/13/atom03.html');
65
66         $this->assertFalse(empty($act->context));
67
68         $this->assertTrue(empty($act->target));
69
70         $this->assertEquals($act->entry, $entry);
71         $this->assertEquals($act->feed, $feed);
72     }
73
74     public function testExample4()
75     {
76         global $_example4;
77         $dom = DOMDocument::loadXML($_example4);
78
79         $entry = $dom->documentElement;
80
81         $act = new Activity($entry);
82
83         $this->assertFalse(empty($act));
84         $this->assertEquals(1266547958, $act->time);
85         $this->assertEquals('http://example.net/notice/14', $act->link);
86
87         $this->assertFalse(empty($act->context));
88         $this->assertEquals('http://example.net/notice/12', $act->context->replyToID);
89         $this->assertEquals('http://example.net/notice/12', $act->context->replyToUrl);
90         $this->assertEquals('http://example.net/conversation/11', $act->context->conversation);
91         $this->assertEquals(array('http://example.net/user/1'), $act->context->attention);
92
93         $this->assertFalse(empty($act->object));
94         $this->assertEquals($act->object->content,
95                             '@<span class="vcard"><a href="http://example.net/user/1" class="url"><span class="fn nickname">evan</span></a></span> now is the time for all good men to come to the aid of their country. #<span class="tag"><a href="http://example.net/tag/thetime" rel="tag">thetime</a></span>');
96
97         $this->assertFalse(empty($act->actor));
98     }
99
100     public function testExample5()
101     {
102         global $_example5;
103         $dom = DOMDocument::loadXML($_example5);
104
105         $feed = $dom->documentElement;
106
107         // @todo Test feed elements
108
109         $entries = $feed->getElementsByTagName('entry');
110         $entry = $entries->item(0);
111
112         $act = new Activity($entry, $feed);
113
114         // Post
115         $this->assertEquals($act->verb, ActivityVerb::POST);
116         $this->assertFalse(empty($act->context));
117
118         // Actor w/Portable Contacts stuff
119         $this->assertFalse(empty($act->actor));
120         $this->assertEquals($act->actor->type, ActivityObject::PERSON);
121         $this->assertEquals($act->actor->title, 'Test User');
122         $this->assertEquals($act->actor->id, 'http://example.net/mysite/user/3');
123         $this->assertEquals($act->actor->link, 'http://example.net/mysite/testuser');
124         $this->assertEquals(
125             $act->actor->avatar,
126             'http://example.net/mysite/avatar/3-96-20100224004207.jpeg'
127         );
128         $this->assertEquals($act->actor->displayName, 'Test User');
129
130         $poco = $act->actor->poco;
131         $this->assertEquals($poco->preferredUsername, 'testuser');
132         $this->assertEquals($poco->address->formatted, 'San Francisco, CA');
133         $this->assertEquals($poco->urls[0]->type, 'homepage');
134         $this->assertEquals($poco->urls[0]->value, 'http://example.com/blog.html');
135         $this->assertEquals($poco->urls[0]->primary, 'true');
136     }
137
138 }
139
140 $_example1 = <<<EXAMPLE1
141 <?xml version='1.0' encoding='UTF-8'?>
142 <entry xmlns='http://www.w3.org/2005/Atom' xmlns:activity='http://activitystrea.ms/spec/1.0/'>
143   <id>tag:versioncentral.example.org,2009:/commit/1643245</id>
144   <published>2009-06-01T12:54:00Z</published>
145   <title>Geraldine committed a change to yate</title>
146   <content type="xhtml">Geraldine just committed a change to yate on VersionCentral</content>
147   <link rel="alternate" type="text/html"
148         href="http://versioncentral.example.org/geraldine/yate/commit/1643245" />
149   <activity:verb>http://activitystrea.ms/schema/1.0/post</activity:verb>
150   <activity:verb>http://versioncentral.example.org/activity/commit</activity:verb>
151   <activity:object>
152     <activity:object-type>http://versioncentral.example.org/activity/changeset</activity:object-type>
153     <id>tag:versioncentral.example.org,2009:/change/1643245</id>
154     <title>Punctuation Changeset</title>
155     <summary>Fixing punctuation because it makes it more readable.</summary>
156     <link rel="alternate" type="text/html" href="..." />
157   </activity:object>
158 </entry>
159 EXAMPLE1;
160
161 $_example2 = <<<EXAMPLE2
162 <?xml version='1.0' encoding='UTF-8'?>
163 <entry xmlns='http://www.w3.org/2005/Atom' xmlns:activity='http://activitystrea.ms/spec/1.0/'>
164   <id>tag:photopanic.example.com,2008:activity01</id>
165   <title>Geraldine posted a Photo on PhotoPanic</title>
166   <published>2008-11-02T15:29:00Z</published>
167   <link rel="alternate" type="text/html" href="/geraldine/activities/1" />
168   <activity:verb>
169   http://activitystrea.ms/schema/1.0/post
170   </activity:verb>
171   <activity:object>
172     <id>tag:photopanic.example.com,2008:photo01</id>
173     <title>My Cat</title>
174     <published>2008-11-02T15:29:00Z</published>
175     <link rel="alternate" type="text/html" href="/geraldine/photos/1" />
176     <activity:object-type>
177       tag:atomactivity.example.com,2008:photo
178     </activity:object-type>
179     <source>
180       <title>Geraldine's Photos</title>
181       <link rel="self" type="application/atom+xml" href="/geraldine/photofeed.xml" />
182       <link rel="alternate" type="text/html" href="/geraldine/" />
183     </source>
184   </activity:object>
185   <content type="html">
186      &lt;p&gt;Geraldine posted a Photo on PhotoPanic&lt;/p&gt;
187      &lt;img src="/geraldine/photo1.jpg"&gt;
188   </content>
189 </entry>
190 EXAMPLE2;
191
192 $_example3 = <<<EXAMPLE3
193 <?xml version="1.0" encoding="utf-8"?>
194
195 <feed xmlns="http://www.w3.org/2005/Atom">
196
197     <title>Example Feed</title>
198     <subtitle>A subtitle.</subtitle>
199     <link href="http://example.org/feed/" rel="self" />
200     <link href="http://example.org/" />
201     <id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
202     <updated>2003-12-13T18:30:02Z</updated>
203     <author>
204         <name>John Doe</name>
205         <email>johndoe@example.com</email>
206     </author>
207
208     <entry>
209         <title>Atom-Powered Robots Run Amok</title>
210         <link href="http://example.org/2003/12/13/atom03" />
211         <link rel="alternate" type="text/html" href="http://example.org/2003/12/13/atom03.html"/>
212         <link rel="edit" href="http://example.org/2003/12/13/atom03/edit"/>
213         <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
214         <updated>2003-12-13T18:30:02Z</updated>
215         <summary>Some text.</summary>
216     </entry>
217
218 </feed>
219 EXAMPLE3;
220
221 $_example4 = <<<EXAMPLE4
222 <?xml version='1.0' encoding='UTF-8'?>
223 <entry xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:georss="http://www.georss.org/georss" xmlns:activity="http://activitystrea.ms/spec/1.0/" xmlns:ostatus="http://ostatus.org/schema/1.0">
224  <title>@evan now is the time for all good men to come to the aid of their country. #thetime</title>
225  <summary>@evan now is the time for all good men to come to the aid of their country. #thetime</summary>
226 <author>
227  <name>spock</name>
228  <uri>http://example.net/user/2</uri>
229 </author>
230 <activity:actor>
231  <activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
232  <id>http://example.net/user/2</id>
233  <title>spock</title>
234  <link type="image/png" rel="avatar" href="http://example.net/theme/identica/default-avatar-profile.png"></link>
235 </activity:actor>
236  <link rel="alternate" type="text/html" href="http://example.net/notice/14"/>
237  <id>http://example.net/notice/14</id>
238  <published>2010-02-19T02:52:38+00:00</published>
239  <updated>2010-02-19T02:52:38+00:00</updated>
240  <link rel="related" href="http://example.net/notice/12"/>
241  <thr:in-reply-to ref="http://example.net/notice/12" href="http://example.net/notice/12"></thr:in-reply-to>
242  <link rel="ostatus:conversation" href="http://example.net/conversation/11"/>
243  <link rel="ostatus:attention" href="http://example.net/user/1"/>
244  <content type="html">@&lt;span class=&quot;vcard&quot;&gt;&lt;a href=&quot;http://example.net/user/1&quot; class=&quot;url&quot;&gt;&lt;span class=&quot;fn nickname&quot;&gt;evan&lt;/span&gt;&lt;/a&gt;&lt;/span&gt; now is the time for all good men to come to the aid of their country. #&lt;span class=&quot;tag&quot;&gt;&lt;a href=&quot;http://example.net/tag/thetime&quot; rel=&quot;tag&quot;&gt;thetime&lt;/a&gt;&lt;/span&gt;</content>
245  <category term="thetime"></category>
246 </entry>
247 EXAMPLE4;
248
249 $_example5 = <<<EXAMPLE5
250 <?xml version="1.0" encoding="UTF-8"?>
251 <feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:georss="http://www.georss.org/georss" xmlns:activity="http://activitystrea.ms/spec/1.0/" xmlns:poco="http://portablecontacts.net/spec/1.0" xmlns:ostatus="http://ostatus.org/schema/1.0">
252  <id>3</id>
253  <title>testuser timeline</title>
254  <subtitle>Updates from testuser on Zach Dev!</subtitle>
255  <logo>http://example.net/mysite/avatar/3-96-20100224004207.jpeg</logo>
256  <updated>2010-02-24T06:38:49+00:00</updated>
257 <author>
258  <name>testuser</name>
259  <uri>http://example.net/mysite/user/3</uri>
260
261 </author>
262  <link href="http://example.net/mysite/testuser" rel="alternate" type="text/html"/>
263  <link href="http://example.net/mysite/api/statuses/user_timeline/3.atom" rel="self" type="application/atom+xml"/>
264  <link href="http://example.net/mysite/main/sup#3" rel="http://api.friendfeed.com/2008/03#sup" type="application/json"/>
265  <link href="http://example.net/mysite/main/push/hub" rel="hub"/>
266  <link href="http://example.net/mysite/main/salmon/user/3" rel="salmon"/>
267 <activity:subject>
268  <activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
269  <id>http://example.net/mysite/user/3</id>
270  <title>Test User</title>
271  <link rel="alternate" type="text/html" href="http://example.net/mysite/testuser"/>
272  <link type="image/jpeg" rel="avatar" href="http://example.net/mysite/avatar/3-96-20100224004207.jpeg"/>
273  <georss:point>37.7749295 -122.4194155</georss:point>
274
275 <poco:preferredUsername>testuser</poco:preferredUsername>
276 <poco:displayName>Test User</poco:displayName>
277 <poco:note>Just another test user.</poco:note>
278 <poco:address>
279  <poco:formatted>San Francisco, CA</poco:formatted>
280 </poco:address>
281 <poco:urls>
282  <poco:type>homepage</poco:type>
283  <poco:value>http://example.com/blog.html</poco:value>
284  <poco:primary>true</poco:primary>
285
286 </poco:urls>
287 </activity:subject>
288 <entry>
289  <title>Hey man, is that Freedom Code?! #freedom #hippy</title>
290  <summary>Hey man, is that Freedom Code?! #freedom #hippy</summary>
291 <author>
292  <name>testuser</name>
293  <uri>http://example.net/mysite/user/3</uri>
294 </author>
295 <activity:actor>
296  <activity:object-type>http://activitystrea.ms/schema/1.0/person</activity:object-type>
297  <id>http://example.net/mysite/user/3</id>
298  <title>Test User</title>
299  <link rel="alternate" type="text/html" href="http://example.net/mysite/testuser"/>
300  <link type="image/jpeg" rel="avatar" href="http://example.net/mysite/avatar/3-96-20100224004207.jpeg"/>
301  <georss:point>37.7749295 -122.4194155</georss:point>
302
303 <poco:preferredUsername>testuser</poco:preferredUsername>
304 <poco:displayName>Test User</poco:displayName>
305 <poco:note>Just another test user.</poco:note>
306 <poco:address>
307  <poco:formatted>San Francisco, CA</poco:formatted>
308 </poco:address>
309 <poco:urls>
310  <poco:type>homepage</poco:type>
311  <poco:value>http://example.com/blog.html</poco:value>
312  <poco:primary>true</poco:primary>
313
314 </poco:urls>
315 </activity:actor>
316  <link rel="alternate" type="text/html" href="http://example.net/mysite/notice/7"/>
317  <id>http://example.net/mysite/notice/7</id>
318  <published>2010-02-24T00:53:06+00:00</published>
319  <updated>2010-02-24T00:53:06+00:00</updated>
320  <link rel="ostatus:conversation" href="http://example.net/mysite/conversation/7"/>
321  <content type="html">Hey man, is that Freedom Code?! #&lt;span class=&quot;tag&quot;&gt;&lt;a href=&quot;http://example.net/mysite/tag/freedom&quot; rel=&quot;tag&quot;&gt;freedom&lt;/a&gt;&lt;/span&gt; #&lt;span class=&quot;tag&quot;&gt;&lt;a href=&quot;http://example.net/mysite/tag/hippy&quot; rel=&quot;tag&quot;&gt;hippy&lt;/a&gt;&lt;/span&gt;</content>
322  <georss:point>37.8313160 -122.2852473</georss:point>
323
324 </entry>
325 </feed>
326 EXAMPLE5;