/*
* Wire
* Copyright (C) 2020 Wire Swiss GmbH
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*
*/
import {render} from '@testing-library/react';
import {Availability} from '@wireapp/protocol-messaging';
import {User} from 'src/script/entity/User';
import {TeamState} from 'src/script/team/TeamState';
import {UserAvatar} from './UserAvatar';
import {AVATAR_SIZE, STATE} from '../Avatar';
describe('UserAvatar', () => {
it('shows participant initials if no avatar is defined', async () => {
const participant = new User('id');
participant.name('Anton Bertha');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.NONE,
};
const {getByText} = render();
expect(getByText('AB')).not.toBeNull();
});
it('shows single initial character when avatar size is extra small', async () => {
const participant = new User('id');
participant.name('Anton Bertha');
const props = {
avatarSize: AVATAR_SIZE.X_SMALL,
participant: participant,
state: STATE.NONE,
};
const {getByText} = render();
expect(getByText('A')).not.toBeNull();
});
it('does not show avatar badge in default state', async () => {
const participant = new User('id');
participant.name('Anton Bertha');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.NONE,
};
const {queryByTestId} = render();
expect(queryByTestId('element-avatar-user-badge-icon')).toBeNull();
});
it('shows avatar badge for blocked user', async () => {
const participant = new User('id');
participant.name('Anton Bertha');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.BLOCKED,
};
const {getByTestId} = render();
const badgeIcon = getByTestId('element-avatar-user-badge-icon');
expect(badgeIcon.getAttribute('data-uie-value')).toEqual(STATE.BLOCKED);
});
it('shows avatar badge for connection request', async () => {
const participant = new User('id');
participant.name('Anton Bertha');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.PENDING,
};
const {getByTestId} = render();
const badgeIcon = getByTestId('element-avatar-user-badge-icon');
expect(badgeIcon.getAttribute('data-uie-value')).toEqual(STATE.PENDING);
});
it('renders available icon', async () => {
const participant = new User('id');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.NONE,
teamState: {isInTeam: () => true} as unknown as TeamState,
};
participant.availability(Availability.Type.AVAILABLE);
const {getByTestId} = render();
const statusAvailabilityIcon = getByTestId('status-availability-icon');
expect(statusAvailabilityIcon.getAttribute('data-uie-value')).toEqual('available');
});
it('renders away icon', async () => {
const participant = new User('id');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.NONE,
teamState: {isInTeam: () => true} as unknown as TeamState,
};
participant.availability(Availability.Type.AWAY);
const {getByTestId} = render();
const statusAvailabilityIcon = getByTestId('status-availability-icon');
expect(statusAvailabilityIcon.getAttribute('data-uie-value')).toEqual('away');
});
it('renders busy icon', async () => {
const participant = new User('id');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.NONE,
teamState: {isInTeam: () => true} as unknown as TeamState,
};
participant.availability(Availability.Type.BUSY);
const {getByTestId} = render();
const statusAvailabilityIcon = getByTestId('status-availability-icon');
expect(statusAvailabilityIcon.getAttribute('data-uie-value')).toEqual('busy');
});
it('does not show availability icon if param is false', async () => {
const participant = new User('id');
const props = {
avatarSize: AVATAR_SIZE.LARGE,
participant: participant,
state: STATE.NONE,
teamState: {isInTeam: () => true} as unknown as TeamState,
};
participant.availability(Availability.Type.AVAILABLE);
const {queryByTestId} = render();
const statusAvailabilityIcon = queryByTestId('status-availability-icon');
expect(statusAvailabilityIcon).toBeNull();
});
});