X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fdatasets%2Fstorage%2Fdatabase.fixture.php;h=9fbd7f983f621da869f6f35392c0ef2f9075b80a;hb=24c32cff0dcd38d5aa509208f5f17abb05a8b140;hp=780bfa140282f74e50616856d77c671ce4a4ea75;hpb=dbd5b5bb6e329ceb216fc2c13540e9f482129ccd;p=friendica.git diff --git a/tests/datasets/storage/database.fixture.php b/tests/datasets/storage/database.fixture.php index 780bfa1402..9fbd7f983f 100644 --- a/tests/datasets/storage/database.fixture.php +++ b/tests/datasets/storage/database.fixture.php @@ -1,10 +1,69 @@ . + * + */ + +use Friendica\Core\Protocol; +use Friendica\Model\Contact; return [ + 'user' => [ + [ + 'uid' => 42, + 'username' => 'Test user', + 'nickname' => 'selfcontact', + 'verified' => 1, + 'password' => '$2y$10$DLRNTRmJgKe1cSrFJ5Jb0edCqvXlA9sh/RHdSnfxjbR.04yZRm4Qm', + 'theme' => 'frio', + ], + ], + 'item-uri' => [ + [ + 'id' => 42, + 'uri' => 'http://localhost/profile/selfcontact', + 'guid' => '42', + ], + ], + 'contact' => [ + [ + 'id' => 42, + 'uid' => 42, + 'uri-id' => 42, + 'name' => 'Self contact', + 'nick' => 'selfcontact', + 'self' => 1, + 'nurl' => 'http://localhost/profile/selfcontact', + 'url' => 'http://localhost/profile/selfcontact', + 'about' => 'User used in tests', + 'pending' => 0, + 'blocked' => 0, + 'rel' => Contact::FOLLOWER, + 'network' => Protocol::DFRN, + 'location' => 'DFRN', + ], + ], 'photo' => [ // move from data-attribute to storage backend [ 'id' => 1, + 'uid' => 42, + 'contact-id' => 42, 'backend-class' => null, 'backend-ref' => 'f0c0d0i2', 'data' => 'without class', @@ -12,6 +71,8 @@ return [ // move from storage-backend to maybe filesystem backend, skip at database backend [ 'id' => 2, + 'uid' => 42, + 'contact-id' => 42, 'backend-class' => 'Database', 'backend-ref' => 1, 'data' => '', @@ -19,17 +80,21 @@ return [ // move data if invalid storage [ 'id' => 3, + 'uid' => 42, + 'contact-id' => 42, 'backend-class' => 'invalid!', 'backend-ref' => 'unimported', 'data' => 'invalid data moved', ], - // skip everytime because of invalid storage and no data - [ - 'id' => 3, - 'backend-class' => 'invalid!', - 'backend-ref' => 'unimported', - 'data' => '', - ], +// @todo Check failing test because of this (never loaded) fixture +// [ +// 'id' => 4, +// 'uid' => 42, +// 'contact-id' => 42, +// 'backend-class' => 'invalid!', +// 'backend-ref' => 'unimported', +// 'data' => '', +// ], ], 'storage' => [ [