]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - tests/ActivityGenerationTests.php
add some more tests for replies and group posts
[quix0rs-gnu-social.git] / tests / ActivityGenerationTests.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 ActivityGenerationTests extends PHPUnit_Framework_TestCase
16 {
17     var $author1 = null;
18     var $author2 = null;
19
20     var $targetUser1 = null;
21     var $targetUser2 = null;
22
23     var $targetGroup1 = null;
24     var $targetGroup2 = null;
25
26     function __construct()
27     {
28         parent::__construct();
29
30         $authorNick1 = 'activitygenerationtestsuser' . common_good_rand(4);
31         $authorNick2 = 'activitygenerationtestsuser' . common_good_rand(4);
32
33         $targetNick1 = 'activitygenerationteststarget' . common_good_rand(4);
34         $targetNick2 = 'activitygenerationteststarget' . common_good_rand(4);
35
36         $groupNick1 = 'activitygenerationtestsgroup' . common_good_rand(4);
37         $groupNick2 = 'activitygenerationtestsgroup' . common_good_rand(4);
38
39         $this->author1 = User::register(array('nickname' => $authorNick1,
40                                               'email' => $authorNick1 . '@example.net',
41                                               'email_confirmed' => true));
42
43         $this->author2 = User::register(array('nickname' => $authorNick2,
44                                               'email' => $authorNick2 . '@example.net',
45                                               'email_confirmed' => true));
46
47         $this->targetUser1 = User::register(array('nickname' => $targetNick1,
48                                                   'email' => $targetNick1 . '@example.net',
49                                                   'email_confirmed' => true));
50
51         $this->targetUser2 = User::register(array('nickname' => $targetNick2,
52                                                   'email' => $targetNick2 . '@example.net',
53                                                   'email_confirmed' => true));
54
55         $this->targetGroup1 = User_group::register(array('nickname' => $groupNick1,
56                                                          'userid' => $this->author1->id,
57                                                          'aliases' => array(),
58                                                          'local' => true,
59                                                          'location' => null,
60                                                          'description' => null,
61                                                          'fullname' => null,
62                                                          'homepage' => null,
63                                                          'mainpage' => null));
64         $this->targetGroup2 = User_group::register(array('nickname' => $groupNick2,
65                                                          'userid' => $this->author1->id,
66                                                          'aliases' => array(),
67                                                          'local' => true,
68                                                          'location' => null,
69                                                          'description' => null,
70                                                          'fullname' => null,
71                                                          'homepage' => null,
72                                                          'mainpage' => null));
73     }
74
75     public function testBasicNoticeActivity()
76     {
77         $notice = $this->_fakeNotice();
78
79         $entry = $notice->asAtomEntry(true);
80
81         $element = $this->_entryToElement($entry, false);
82
83         $this->assertEquals($notice->uri, ActivityUtils::childContent($element, 'id'));
84         $this->assertEquals($notice->content, ActivityUtils::childContent($element, 'title'));
85         $this->assertEquals($notice->rendered, ActivityUtils::childContent($element, 'content'));
86         $this->assertEquals(strtotime($notice->created), strtotime(ActivityUtils::childContent($element, 'published')));
87         $this->assertEquals(strtotime($notice->created), strtotime(ActivityUtils::childContent($element, 'updated')));
88         $this->assertEquals(ActivityVerb::POST, ActivityUtils::childContent($element, 'verb', Activity::SPEC));
89         $this->assertEquals(ActivityObject::NOTE, ActivityUtils::childContent($element, 'object-type', Activity::SPEC));
90     }
91
92     public function testNamespaceFlag()
93     {
94         $notice = $this->_fakeNotice();
95
96         $entry = $notice->asAtomEntry(true);
97
98         $element = $this->_entryToElement($entry, false);
99
100         $this->assertTrue($element->hasAttribute('xmlns'));
101         $this->assertTrue($element->hasAttribute('xmlns:thr'));
102         $this->assertTrue($element->hasAttribute('xmlns:georss'));
103         $this->assertTrue($element->hasAttribute('xmlns:activity'));
104         $this->assertTrue($element->hasAttribute('xmlns:media'));
105         $this->assertTrue($element->hasAttribute('xmlns:poco'));
106         $this->assertTrue($element->hasAttribute('xmlns:ostatus'));
107         $this->assertTrue($element->hasAttribute('xmlns:statusnet'));
108
109         $entry = $notice->asAtomEntry(false);
110
111         $element = $this->_entryToElement($entry, true);
112
113         $this->assertFalse($element->hasAttribute('xmlns'));
114         $this->assertFalse($element->hasAttribute('xmlns:thr'));
115         $this->assertFalse($element->hasAttribute('xmlns:georss'));
116         $this->assertFalse($element->hasAttribute('xmlns:activity'));
117         $this->assertFalse($element->hasAttribute('xmlns:media'));
118         $this->assertFalse($element->hasAttribute('xmlns:poco'));
119         $this->assertFalse($element->hasAttribute('xmlns:ostatus'));
120         $this->assertFalse($element->hasAttribute('xmlns:statusnet'));
121     }
122
123     public function testSourceFlag()
124     {
125         $notice = $this->_fakeNotice();
126
127         // Test with no source
128
129         $entry = $notice->asAtomEntry(false, false);
130
131         $element = $this->_entryToElement($entry, true);
132
133         $source = ActivityUtils::child($element, 'source');
134
135         $this->assertNull($source);
136
137         // Test with source
138
139         $entry = $notice->asAtomEntry(false, true);
140
141         $element = $this->_entryToElement($entry, true);
142
143         $source = ActivityUtils::child($element, 'source');
144
145         $this->assertNotNull($source);
146     }
147
148     public function testSourceContent()
149     {
150         $notice = $this->_fakeNotice();
151         // make a time difference!
152         sleep(2);
153         $notice2 = $this->_fakeNotice();
154
155         $entry = $notice->asAtomEntry(false, true);
156
157         $element = $this->_entryToElement($entry, true);
158
159         $source = ActivityUtils::child($element, 'source');
160
161         $atomUrl = common_local_url('ApiTimelineUser', array('id' => $this->author1->id, 'format' => 'atom'));
162
163         $profile = $this->author1->getProfile();
164
165         $this->assertEquals($atomUrl, ActivityUtils::childContent($source, 'id'));
166         $this->assertEquals($atomUrl, ActivityUtils::getLink($source, 'self', 'application/atom+xml'));
167         $this->assertEquals($profile->profileurl, ActivityUtils::getPermalink($source));
168         $this->assertEquals($notice2->created, strtotime(ActivityUtils::childContent($source, 'updated')));
169         // XXX: do we care here?
170         $this->assertFalse(is_null(ActivityUtils::childContent($source, 'title')));
171         $this->assertEquals(common_config('license', 'url'), ActivityUtils::getLink($source, 'license'));
172     }
173
174     public function testAuthorFlag()
175     {
176         $notice = $this->_fakeNotice();
177
178         // Test with no author
179
180         $entry = $notice->asAtomEntry(false, false, false);
181
182         $element = $this->_entryToElement($entry, true);
183
184         $this->assertNull(ActivityUtils::child($element, 'author'));
185         $this->assertNull(ActivityUtils::child($element, 'actor', Activity::SPEC));
186
187         // Test with source
188
189         $entry = $notice->asAtomEntry(false, false, true);
190
191         $element = $this->_entryToElement($entry, true);
192
193         $author = ActivityUtils::child($element, 'author');
194         $actor  = ActivityUtils::child($element, 'actor', Activity::SPEC);
195
196         $this->assertFalse(is_null($author));
197         $this->assertFalse(is_null($actor));
198     }
199
200     public function testCurArgument()
201     {
202         $this->assertTrue(FALSE);
203     }
204
205     public function testReplyLink()
206     {
207         $orig = $this->_fakeNotice($this->targetUser1);
208
209         $text = "@" . $this->targetUser1->nickname . " reply text " . common_good_rand(4);
210
211         $reply = Notice::saveNew($this->author1->id, $text, 'test', array('uri' => null, 'reply_to' => $orig->id));
212
213         $entry = $reply->asAtomEntry();
214
215         $element = $this->_entryToElement($entry, true);
216
217         $irt = ActivityUtils::child($element, 'in-reply-to', 'http://purl.org/syndication/thread/1.0');
218
219         $this->assertNotNull($irt);
220         $this->assertEquals($orig->uri, $irt->getAttribute('ref'));
221         $this->assertEquals($orig->bestUrl(), $irt->getAttribute('href'));
222     }
223
224     public function testReplyAttention()
225     {
226         $orig = $this->_fakeNotice($this->targetUser1);
227
228         $text = "@" . $this->targetUser1->nickname . " reply text " . common_good_rand(4);
229
230         $reply = Notice::saveNew($this->author1->id, $text, 'test', array('uri' => null, 'reply_to' => $orig->id));
231
232         $entry = $reply->asAtomEntry();
233
234         $element = $this->_entryToElement($entry, true);
235
236         $this->assertEquals($this->targetUser1->uri, ActivityUtils::getLink($element, 'ostatus:attention'));
237     }
238
239     public function testMultipleReplyAttention()
240     {
241         $orig = $this->_fakeNotice($this->targetUser1);
242
243         $text = "@" . $this->targetUser1->nickname . " reply text " . common_good_rand(4);
244
245         $reply = Notice::saveNew($this->targetUser2->id, $text, 'test', array('uri' => null, 'reply_to' => $orig->id));
246
247         $text = "@" . $this->targetUser1->nickname . " @" . $this->targetUser2->nickname . " reply text " . common_good_rand(4);
248
249         $reply2 = Notice::saveNew($this->author1->id, $text, 'test', array('uri' => null, 'reply_to' => $reply->id));
250
251         $entry = $reply2->asAtomEntry();
252
253         $element = $this->_entryToElement($entry, true);
254
255         $links = ActivityUtils::getLinks($element, 'ostatus:attention');
256
257         $this->assertEquals(2, count($links));
258
259         $hrefs = array();
260
261         foreach ($links as $link) {
262             $hrefs[] = $link->getAttribute('href');
263         }
264
265         $this->assertTrue(in_array($this->targetUser1->uri, $hrefs));
266         $this->assertTrue(in_array($this->targetUser2->uri, $hrefs));
267     }
268
269     public function testGroupPostAttention()
270     {
271         $text = "!" . $this->targetGroup1->nickname . " reply text " . common_good_rand(4);
272
273         $notice = Notice::saveNew($this->author1->id, $text, 'test', array('uri' => null));
274
275         $entry = $notice->asAtomEntry();
276
277         $element = $this->_entryToElement($entry, true);
278
279         $this->assertEquals($this->targetGroup1->uri, ActivityUtils::getLink($element, 'ostatus:attention'));
280     }
281
282     public function testMultipleGroupPostAttention()
283     {
284         $text = "!" . $this->targetGroup1->nickname . " !" . $this->targetGroup2->nickname . " reply text " . common_good_rand(4);
285
286         $notice = Notice::saveNew($this->author1->id, $text, 'test', array('uri' => null));
287
288         $entry = $notice->asAtomEntry();
289
290         $element = $this->_entryToElement($entry, true);
291
292         $links = ActivityUtils::getLinks($element, 'ostatus:attention');
293
294         $this->assertEquals(2, count($links));
295
296         $hrefs = array();
297
298         foreach ($links as $link) {
299             $hrefs[] = $link->getAttribute('href');
300         }
301
302         $this->assertTrue(in_array($this->targetGroup1->uri, $hrefs));
303         $this->assertTrue(in_array($this->targetGroup2->uri, $hrefs));
304     }
305
306     public function testRepeatLink()
307     {
308         $this->assertTrue(FALSE);
309     }
310
311     public function testTaggedActivity()
312     {
313         $this->assertTrue(FALSE);
314     }
315
316     public function testGeotaggedActivity()
317     {
318         $this->assertTrue(FALSE);
319     }
320
321     public function testNoticeInfo()
322     {
323         $this->assertTrue(FALSE);
324     }
325
326     function __destruct()
327     {
328         if (!is_null($this->author1)) {
329             $this->author1->delete();
330         }
331
332         if (!is_null($this->author2)) {
333             $this->author2->delete();
334         }
335
336         if (!is_null($this->targetUser1)) {
337             $this->targetUser1->delete();
338         }
339
340         if (!is_null($this->targetUser2)) {
341             $this->targetUser2->delete();
342         }
343
344         if (!is_null($this->targetGroup1)) {
345             $this->targetGroup1->delete();
346         }
347
348         if (!is_null($this->targetGroup2)) {
349             $this->targetGroup2->delete();
350         }
351     }
352
353     private function _fakeNotice($user = null, $text = null)
354     {
355         if (empty($user)) {
356             $user = $this->author1;
357         }
358
359         if (empty($text)) {
360             $text = "fake-o text-o " . common_good_rand(32);
361         }
362
363         return Notice::saveNew($user->id, $text, 'test', array('uri' => null));
364     }
365
366     private function _entryToElement($entry, $namespace = false)
367     {
368         $xml = '<?xml version="1.0" encoding="utf-8"?>'."\n\n";
369         $xml .= '<feed';
370         if ($namespace) {
371             $xml .= ' xmlns="http://www.w3.org/2005/Atom"';
372             $xml .= ' xmlns:thr="http://purl.org/syndication/thread/1.0"';
373             $xml .= ' xmlns:georss="http://www.georss.org/georss"';
374             $xml .= ' xmlns:activity="http://activitystrea.ms/spec/1.0/"';
375             $xml .= ' xmlns:media="http://purl.org/syndication/atommedia"';
376             $xml .= ' xmlns:poco="http://portablecontacts.net/spec/1.0"';
377             $xml .= ' xmlns:ostatus="http://ostatus.org/schema/1.0"';
378             $xml .= ' xmlns:statusnet="http://status.net/schema/api/1/"';
379         }
380         $xml .= '>' . "\n" . $entry . "\n" . '</feed>' . "\n";
381         $doc = DOMDocument::loadXML($xml);
382         $feed = $doc->documentElement;
383         $entries = $feed->getElementsByTagName('entry');
384
385         return $entries->item(0);
386     }
387 }