Normalize API fixture data

- Change public contact name to the related local user name
- Add location data to profile record that is used to update self and public contact during Auth
pull/13965/head^2
Hypolite Petovan 2024-03-05 10:10:15 -05:00
rodzic ba07172a65
commit 1b651519a3
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -215,7 +215,7 @@ return [
'id' => 48, 'id' => 48,
'uid' => 0, 'uid' => 0,
'uri-id' => 42, 'uri-id' => 42,
'name' => 'Self contact', 'name' => 'Test user',
'nick' => 'selfcontact', 'nick' => 'selfcontact',
'self' => 0, 'self' => 0,
'nurl' => 'http://friendica.local/profile/selfcontact', 'nurl' => 'http://friendica.local/profile/selfcontact',
@ -928,6 +928,7 @@ return [
[ [
'id' => 1, 'id' => 1,
'uid' => 42, 'uid' => 42,
'locality' => 'DFRN',
], ],
], ],
'group' => [ 'group' => [

Wyświetl plik

@ -43,7 +43,7 @@ abstract class ApiTest extends FixtureTest
// User data that the test database is populated with // User data that the test database is populated with
const SELF_USER = [ const SELF_USER = [
'id' => 42, 'id' => 42,
'name' => 'Self contact', 'name' => 'Test user',
'nick' => 'selfcontact', 'nick' => 'selfcontact',
'nurl' => 'http://localhost/profile/selfcontact' 'nurl' => 'http://localhost/profile/selfcontact'
]; ];