update feedutils with as:author changes, also update tests

This commit is contained in:
zotlabs
2017-04-27 16:50:37 -07:00
parent 2778e63d6c
commit ab32372f8f
2 changed files with 22 additions and 11 deletions

View File

@@ -38,15 +38,18 @@ class FeedutilsTest extends UnitTestCase {
}*/
public function test_atom_author() {
$this->assertEquals('', atom_author('', 'name', 'uri', 72, 72, 'png', 'photourl'));
$this->assertEquals('', atom_author('', 'nick', 'name', 'uri', 72, 72, 'png', 'photourl'));
$a = '<tag>
<name>name</name>
<id>uri</id>
<name>nick</name>
<uri>uri</uri>
<link rel="photo" type="png" media:width="72" media:height="72" href="http://photourl" />
<link rel="avatar" type="png" media:width="72" media:height="72" href="http://photourl" />
<poco:preferredUsername>nick</poco:preferredUsername>
<poco:displayName>name<poco:displayName>
</tag>';
$this->assertXmlStringEqualsXmlString($a, atom_author('tag', 'name', 'uri', 72, 72, 'png', 'http://photourl'));
$this->assertXmlStringEqualsXmlString($a, atom_author('tag', 'nick', 'name', 'uri', 72, 72, 'png', 'http://photourl'));
}
}