2020-01-06 16:42:28 +00:00
|
|
|
<?php
|
2020-02-09 15:34:23 +00:00
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 15:34:23 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2020-01-06 16:42:28 +00:00
|
|
|
|
2021-04-01 21:04:30 +00:00
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
|
2020-01-06 16:42:28 +00:00
|
|
|
return [
|
2021-04-01 21:04:30 +00:00
|
|
|
'user' => [
|
|
|
|
[
|
|
|
|
'uid' => 42,
|
|
|
|
'username' => 'Test user',
|
|
|
|
'nickname' => 'selfcontact',
|
|
|
|
'verified' => 1,
|
|
|
|
'password' => '$2y$10$DLRNTRmJgKe1cSrFJ5Jb0edCqvXlA9sh/RHdSnfxjbR.04yZRm4Qm',
|
|
|
|
'theme' => 'frio',
|
|
|
|
],
|
|
|
|
],
|
2021-07-09 17:13:54 +00:00
|
|
|
'item-uri' => [
|
|
|
|
[
|
|
|
|
'id' => 42,
|
|
|
|
'uri' => 'http://localhost/profile/selfcontact',
|
|
|
|
'guid' => '42',
|
|
|
|
],
|
|
|
|
],
|
2021-04-01 21:04:30 +00:00
|
|
|
'contact' => [
|
|
|
|
[
|
|
|
|
'id' => 42,
|
|
|
|
'uid' => 42,
|
2021-07-09 17:13:54 +00:00
|
|
|
'uri-id' => 42,
|
2021-04-01 21:04:30 +00:00
|
|
|
'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',
|
|
|
|
],
|
|
|
|
],
|
2020-01-06 16:42:28 +00:00
|
|
|
'photo' => [
|
|
|
|
// move from data-attribute to storage backend
|
|
|
|
[
|
|
|
|
'id' => 1,
|
2021-04-01 21:04:30 +00:00
|
|
|
'uid' => 42,
|
|
|
|
'contact-id' => 42,
|
2020-01-06 16:42:28 +00:00
|
|
|
'backend-class' => null,
|
|
|
|
'backend-ref' => 'f0c0d0i2',
|
|
|
|
'data' => 'without class',
|
|
|
|
],
|
|
|
|
// move from storage-backend to maybe filesystem backend, skip at database backend
|
|
|
|
[
|
|
|
|
'id' => 2,
|
2021-04-01 21:04:30 +00:00
|
|
|
'uid' => 42,
|
|
|
|
'contact-id' => 42,
|
2020-01-06 16:42:28 +00:00
|
|
|
'backend-class' => 'Database',
|
|
|
|
'backend-ref' => 1,
|
|
|
|
'data' => '',
|
|
|
|
],
|
|
|
|
// move data if invalid storage
|
|
|
|
[
|
|
|
|
'id' => 3,
|
2021-04-01 21:04:30 +00:00
|
|
|
'uid' => 42,
|
|
|
|
'contact-id' => 42,
|
2020-01-06 16:42:28 +00:00
|
|
|
'backend-class' => 'invalid!',
|
|
|
|
'backend-ref' => 'unimported',
|
|
|
|
'data' => 'invalid data moved',
|
|
|
|
],
|
2020-05-15 20:52:01 +00:00
|
|
|
// @todo Check failing test because of this (never loaded) fixture
|
|
|
|
// [
|
|
|
|
// 'id' => 4,
|
2021-04-01 21:04:30 +00:00
|
|
|
// 'uid' => 42,
|
|
|
|
// 'contact-id' => 42,
|
2020-05-15 20:52:01 +00:00
|
|
|
// 'backend-class' => 'invalid!',
|
|
|
|
// 'backend-ref' => 'unimported',
|
|
|
|
// 'data' => '',
|
2020-05-15 20:58:40 +00:00
|
|
|
// ],
|
|
|
|
],
|
2020-01-06 16:42:28 +00:00
|
|
|
'storage' => [
|
|
|
|
[
|
|
|
|
'id' => 1,
|
|
|
|
'data' => 'inside database',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|