Start adding 'fetchAccountByUsername' tests

environments/review-more-tests-zupkp9/deployments/160
Justin 2022-06-02 10:52:00 -04:00
rodzic 1d2c07f0a9
commit 14d614e055
2 zmienionych plików z 77 dodań i 5 usunięć

Wyświetl plik

@ -5,7 +5,7 @@ import { mockStore } from 'soapbox/jest/test-helpers';
import rootReducer from 'soapbox/reducers'; import rootReducer from 'soapbox/reducers';
import { normalizeAccount } from '../../normalizers'; import { normalizeAccount } from '../../normalizers';
import { createAccount, fetchAccount } from '../accounts'; import { createAccount, fetchAccount, fetchAccountByUsername } from '../accounts';
let store; let store;
@ -130,3 +130,75 @@ describe('fetchAccount()', () => {
}); });
}); });
}); });
describe('fetchAccountByUsername()', () => {
const id = '123';
const username = 'tiger';
let state, account;
describe('when the account has already been cached in redux', () => {
beforeEach(() => {
account = normalizeAccount({
id,
acct: username,
display_name: 'Tiger',
avatar: 'test.jpg',
birthday: undefined,
});
state = rootReducer(undefined, {})
.set('accounts', ImmutableMap({
[id]: account,
}));
store = mockStore(state);
__stub((mock) => {
mock.onGet(`/api/v1/accounts/${id}`).reply(200, account);
});
});
it('should return null', async() => {
const result = await store.dispatch(fetchAccountByUsername(username));
const actions = store.getActions();
expect(actions).toEqual([]);
expect(result).toBeNull();
});
});
describe('when "accountByUsername" feature is enabled', () => {
beforeEach(() => {
const state = rootReducer(undefined, {})
.set('soapbox', ImmutableMap({ accountByUsername: true }))
.set('instance', {
version: '2.7.2 (compatible; Pleroma 2.4.52-1337-g4779199e.gleasonator+soapbox)',
pleroma: ImmutableMap({
metadata: ImmutableMap({
features: [],
}),
}),
})
.set('me', '123');
store = mockStore(state);
__stub((mock) => {
mock.onGet(`/api/v1/accounts/${username}`).reply(200, account);
mock.onGet(`/api/v1/accounts/relationships?${[account.id].map(id => `id[]=${id}`).join('&')}`);
});
});
it('should return dispatch the proper actions', async() => {
await store.dispatch(fetchAccountByUsername(username));
const actions = store.getActions();
expect(actions[0]).toEqual({
type: 'RELATIONSHIPS_FETCH_REQUEST',
ids: ['123'],
skipLoading: true,
});
expect(actions[1].type).toEqual('ACCOUNTS_IMPORT');
expect(actions[2].type).toEqual('ACCOUNT_FETCH_SUCCESS');
});
});
});

Wyświetl plik

@ -160,7 +160,7 @@ export function fetchAccountByUsername(username) {
if (account) { if (account) {
dispatch(fetchAccount(account.get('id'))); dispatch(fetchAccount(account.get('id')));
return; return null;
} }
const instance = state.get('instance'); const instance = state.get('instance');
@ -168,7 +168,7 @@ export function fetchAccountByUsername(username) {
const me = state.get('me'); const me = state.get('me');
if (features.accountByUsername && (me || !features.accountLookup)) { if (features.accountByUsername && (me || !features.accountLookup)) {
api(getState).get(`/api/v1/accounts/${username}`).then(response => { return api(getState).get(`/api/v1/accounts/${username}`).then(response => {
dispatch(fetchRelationships([response.data.id])); dispatch(fetchRelationships([response.data.id]));
dispatch(importFetchedAccount(response.data)); dispatch(importFetchedAccount(response.data));
dispatch(fetchAccountSuccess(response.data)); dispatch(fetchAccountSuccess(response.data));
@ -177,14 +177,14 @@ export function fetchAccountByUsername(username) {
dispatch(importErrorWhileFetchingAccountByUsername(username)); dispatch(importErrorWhileFetchingAccountByUsername(username));
}); });
} else if (features.accountLookup) { } else if (features.accountLookup) {
dispatch(accountLookup(username)).then(account => { return dispatch(accountLookup(username)).then(account => {
dispatch(fetchAccountSuccess(account)); dispatch(fetchAccountSuccess(account));
}).catch(error => { }).catch(error => {
dispatch(fetchAccountFail(null, error)); dispatch(fetchAccountFail(null, error));
dispatch(importErrorWhileFetchingAccountByUsername(username)); dispatch(importErrorWhileFetchingAccountByUsername(username));
}); });
} else { } else {
dispatch(accountSearch({ return dispatch(accountSearch({
q: username, q: username,
limit: 5, limit: 5,
resolve: true, resolve: true,