X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fdatasets%2Fapi.fixture.php;h=ce7161e413271cc9abc464c825ed1a3016a415ce;hb=21af40b2f904a4b720342097789cd3f01905445e;hp=fb11ae3476460f234a7153befa6de496fd574bf2;hpb=59675c4f0bbb12029e3b7a141ca484fb180a2fef;p=friendica.git diff --git a/tests/datasets/api.fixture.php b/tests/datasets/api.fixture.php index fb11ae3476..ce7161e413 100644 --- a/tests/datasets/api.fixture.php +++ b/tests/datasets/api.fixture.php @@ -19,6 +19,8 @@ * */ +use Friendica\Model\Notify; + return [ // Empty these tables 'cache', @@ -70,6 +72,7 @@ return [ 'blocked' => 0, 'rel' => 1, 'network' => 'dfrn', + 'location' => 'DFRN', ], // Having the same name and nick allows us to test // the fallback to api_get_nick() in api_get_user() @@ -85,6 +88,7 @@ return [ 'blocked' => 0, 'rel' => 0, 'network' => 'dfrn', + 'location' => 'DFRN', ], [ 'id' => 44, @@ -98,6 +102,81 @@ return [ 'blocked' => 0, 'rel' => 2, 'network' => 'dfrn', + 'location' => 'DFRN', + ], + [ + 'id' => 45, + 'uid' => 0, + 'name' => 'Friend contact', + 'nick' => 'friendcontact', + 'self' => 0, + 'nurl' => 'http://localhost/profile/friendcontact', + 'url' => 'http://localhost/profile/friendcontact', + 'pending' => 0, + 'blocked' => 0, + 'rel' => 2, + 'network' => 'dfrn', + 'location' => 'DFRN', + ], + [ + 'id' => 46, + 'uid' => 42, + 'name' => 'Mutual contact', + 'nick' => 'mutualcontact', + 'self' => 0, + 'nurl' => 'http://localhost/profile/mutualcontact', + 'url' => 'http://localhost/profile/mutualcontact', + 'pending' => 0, + 'blocked' => 0, + 'rel' => 3, + 'network' => 'dfrn', + 'location' => 'DFRN', + ], + [ + 'id' => 47, + 'uid' => 0, + 'name' => 'Mutual contact', + 'nick' => 'mutualcontact', + 'self' => 0, + 'nurl' => 'http://localhost/profile/mutualcontact', + 'url' => 'http://localhost/profile/mutualcontact', + 'pending' => 0, + 'blocked' => 0, + 'rel' => 2, + 'network' => 'dfrn', + 'location' => 'DFRN', + ], + ], + 'item-uri' => [ + [ + 'id' => 1, + 'uri' => '1', + 'guid' => '1', + ], + [ + 'id' => 2, + 'uri' => '2', + 'guid' => '2', + ], + [ + 'id' => 3, + 'uri' => '3', + 'guid' => '3', + ], + [ + 'id' => 4, + 'uri' => '4', + 'guid' => '4', + ], + [ + 'id' => 5, + 'uri' => '5', + 'guid' => '5', + ], + [ + 'id' => 6, + 'uri' => '6', + 'guid' => '6', ], ], 'item' => [ @@ -121,6 +200,8 @@ return [ 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '', + 'guid' => '1', + 'plink' => 'http://localhost/display/1', ], [ 'id' => 2, @@ -138,6 +219,8 @@ return [ 'wall' => 1, 'starred' => 0, 'origin' => 1, + 'guid' => '2', + 'plink' => 'http://localhost/display/2', ], [ @@ -156,6 +239,8 @@ return [ 'wall' => 1, 'starred' => 0, 'origin' => 1, + 'guid' => '3', + 'plink' => 'http://localhost/display/3', ], [ 'id' => 4, @@ -173,6 +258,8 @@ return [ 'wall' => 1, 'starred' => 0, 'origin' => 1, + 'guid' => '4', + 'plink' => 'http://localhost/display/4', ], [ @@ -195,6 +282,8 @@ return [ 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '', + 'guid' => '5', + 'plink' => 'http://localhost/display/5', ], [ 'id' => 6, @@ -212,6 +301,8 @@ return [ 'wall' => 1, 'starred' => 0, 'origin' => 1, + 'guid' => '6', + 'plink' => 'http://localhost/display/6', ], ], 'notify' => [ @@ -228,7 +319,7 @@ return [ 'iid' => 4, 'seen' => 0, 'verb' => '', - 'otype' => 'item', + 'otype' => Notify\ObjectType::ITEM, 'name_cache' => 'Reply to', 'msg_cache' => 'A test reply from an item', ], @@ -236,6 +327,7 @@ return [ 'thread' => [ [ 'iid' => 1, + 'uri-id' => 1, 'visible' => 1, 'contact-id' => 42, 'author-id' => 42, @@ -245,6 +337,7 @@ return [ ], [ 'iid' => 3, + 'uri-id' => 3, 'visible' => 1, 'contact-id' => 43, 'author-id' => 43, @@ -254,6 +347,7 @@ return [ ], [ 'iid' => 6, + 'uri-id' => 6, 'visible' => 1, 'contact-id' => 44, 'author-id' => 44,