X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fdatasets%2Fstorage%2Fdatabase.fixture.php;h=9fbd7f983f621da869f6f35392c0ef2f9075b80a;hb=24c32cff0dcd38d5aa509208f5f17abb05a8b140;hp=8e2e92ecc2590963fedfa2c2b3e795e0532d897d;hpb=befc2af5043a3afde251721c0d27df695db1bb7e;p=friendica.git diff --git a/tests/datasets/storage/database.fixture.php b/tests/datasets/storage/database.fixture.php index 8e2e92ecc2..9fbd7f983f 100644 --- a/tests/datasets/storage/database.fixture.php +++ b/tests/datasets/storage/database.fixture.php @@ -1,6 +1,6 @@ [ + [ + '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', @@ -31,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' => '', @@ -38,6 +80,8 @@ return [ // move data if invalid storage [ 'id' => 3, + 'uid' => 42, + 'contact-id' => 42, 'backend-class' => 'invalid!', 'backend-ref' => 'unimported', 'data' => 'invalid data moved', @@ -45,6 +89,8 @@ return [ // @todo Check failing test because of this (never loaded) fixture // [ // 'id' => 4, +// 'uid' => 42, +// 'contact-id' => 42, // 'backend-class' => 'invalid!', // 'backend-ref' => 'unimported', // 'data' => '',