211 lines
6 KiB
TypeScript
211 lines
6 KiB
TypeScript
// Copyright 2019-2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { assert } from 'chai';
|
|
import { reducer as rootReducer } from '../../../state/reducer';
|
|
import { noopAction } from '../../../state/ducks/noop';
|
|
import { actions as userActions } from '../../../state/ducks/user';
|
|
import {
|
|
CallMode,
|
|
CallState,
|
|
CallViewMode,
|
|
GroupCallConnectionState,
|
|
GroupCallJoinState,
|
|
} from '../../../types/Calling';
|
|
import {
|
|
getCallsByConversation,
|
|
getCallSelector,
|
|
getIncomingCall,
|
|
isInCall,
|
|
} from '../../../state/selectors/calling';
|
|
import type {
|
|
CallingStateType,
|
|
DirectCallStateType,
|
|
GroupCallStateType,
|
|
} from '../../../state/ducks/calling';
|
|
import { getEmptyState } from '../../../state/ducks/calling';
|
|
|
|
describe('state/selectors/calling', () => {
|
|
const getEmptyRootState = () => {
|
|
const initial = rootReducer(undefined, noopAction());
|
|
return rootReducer(
|
|
initial,
|
|
userActions.userChanged({
|
|
ourACI: '00000000-0000-4000-8000-000000000000',
|
|
})
|
|
);
|
|
};
|
|
|
|
const getCallingState = (calling: CallingStateType) => ({
|
|
...getEmptyRootState(),
|
|
calling,
|
|
});
|
|
|
|
const stateWithDirectCall: CallingStateType = {
|
|
...getEmptyState(),
|
|
callsByConversation: {
|
|
'fake-direct-call-conversation-id': {
|
|
callMode: CallMode.Direct,
|
|
conversationId: 'fake-direct-call-conversation-id',
|
|
callState: CallState.Accepted,
|
|
isIncoming: false,
|
|
isVideoCall: false,
|
|
hasRemoteVideo: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
const stateWithActiveDirectCall: CallingStateType = {
|
|
...stateWithDirectCall,
|
|
activeCallState: {
|
|
conversationId: 'fake-direct-call-conversation-id',
|
|
hasLocalAudio: true,
|
|
hasLocalVideo: false,
|
|
localAudioLevel: 0,
|
|
viewMode: CallViewMode.Grid,
|
|
showParticipantsList: false,
|
|
safetyNumberChangedUuids: [],
|
|
outgoingRing: true,
|
|
pip: false,
|
|
settingsDialogOpen: false,
|
|
},
|
|
};
|
|
|
|
const incomingDirectCall: DirectCallStateType = {
|
|
callMode: CallMode.Direct,
|
|
conversationId: 'fake-direct-call-conversation-id',
|
|
callState: CallState.Ringing,
|
|
isIncoming: true,
|
|
isVideoCall: false,
|
|
hasRemoteVideo: false,
|
|
};
|
|
|
|
const stateWithIncomingDirectCall: CallingStateType = {
|
|
...getEmptyState(),
|
|
callsByConversation: {
|
|
'fake-direct-call-conversation-id': incomingDirectCall,
|
|
},
|
|
};
|
|
|
|
const incomingGroupCall: GroupCallStateType = {
|
|
callMode: CallMode.Group,
|
|
conversationId: 'fake-group-call-conversation-id',
|
|
connectionState: GroupCallConnectionState.NotConnected,
|
|
joinState: GroupCallJoinState.NotJoined,
|
|
peekInfo: {
|
|
uuids: ['c75b51da-d484-4674-9b2c-cc11de00e227'],
|
|
creatorUuid: 'c75b51da-d484-4674-9b2c-cc11de00e227',
|
|
maxDevices: Infinity,
|
|
deviceCount: 1,
|
|
},
|
|
remoteParticipants: [],
|
|
ringId: BigInt(123),
|
|
ringerUuid: 'c75b51da-d484-4674-9b2c-cc11de00e227',
|
|
};
|
|
|
|
const stateWithIncomingGroupCall: CallingStateType = {
|
|
...getEmptyState(),
|
|
callsByConversation: {
|
|
'fake-group-call-conversation-id': incomingGroupCall,
|
|
},
|
|
};
|
|
|
|
describe('getCallsByConversation', () => {
|
|
it('returns state.calling.callsByConversation', () => {
|
|
assert.deepEqual(getCallsByConversation(getEmptyRootState()), {});
|
|
|
|
assert.deepEqual(
|
|
getCallsByConversation(getCallingState(stateWithDirectCall)),
|
|
{
|
|
'fake-direct-call-conversation-id': {
|
|
callMode: CallMode.Direct,
|
|
conversationId: 'fake-direct-call-conversation-id',
|
|
callState: CallState.Accepted,
|
|
isIncoming: false,
|
|
isVideoCall: false,
|
|
hasRemoteVideo: false,
|
|
},
|
|
}
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('getCallSelector', () => {
|
|
it('returns a selector that returns undefined if selecting a conversation with no call', () => {
|
|
assert.isUndefined(
|
|
getCallSelector(getEmptyRootState())('conversation-id')
|
|
);
|
|
});
|
|
|
|
it("returns a selector that returns a conversation's call", () => {
|
|
assert.deepEqual(
|
|
getCallSelector(getCallingState(stateWithDirectCall))(
|
|
'fake-direct-call-conversation-id'
|
|
),
|
|
{
|
|
callMode: CallMode.Direct,
|
|
conversationId: 'fake-direct-call-conversation-id',
|
|
callState: CallState.Accepted,
|
|
isIncoming: false,
|
|
isVideoCall: false,
|
|
hasRemoteVideo: false,
|
|
}
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('getIncomingCall', () => {
|
|
it('returns undefined if there are no calls', () => {
|
|
assert.isUndefined(getIncomingCall(getEmptyRootState()));
|
|
});
|
|
|
|
it('returns undefined if there is no incoming call', () => {
|
|
assert.isUndefined(getIncomingCall(getCallingState(stateWithDirectCall)));
|
|
assert.isUndefined(
|
|
getIncomingCall(getCallingState(stateWithActiveDirectCall))
|
|
);
|
|
});
|
|
|
|
it('returns undefined if there is a group call with no peeked participants', () => {
|
|
const state = {
|
|
...stateWithIncomingGroupCall,
|
|
callsByConversation: {
|
|
'fake-group-call-conversation-id': {
|
|
...incomingGroupCall,
|
|
peekInfo: {
|
|
uuids: [],
|
|
maxDevices: Infinity,
|
|
deviceCount: 1,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
assert.isUndefined(getIncomingCall(getCallingState(state)));
|
|
});
|
|
|
|
it('returns an incoming direct call', () => {
|
|
assert.deepEqual(
|
|
getIncomingCall(getCallingState(stateWithIncomingDirectCall)),
|
|
incomingDirectCall
|
|
);
|
|
});
|
|
|
|
it('returns an incoming group call', () => {
|
|
assert.deepEqual(
|
|
getIncomingCall(getCallingState(stateWithIncomingGroupCall)),
|
|
incomingGroupCall
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('isInCall', () => {
|
|
it('returns should be false if we are not in a call', () => {
|
|
assert.isFalse(isInCall(getEmptyRootState()));
|
|
});
|
|
|
|
it('should be true if we are in a call', () => {
|
|
assert.isTrue(isInCall(getCallingState(stateWithActiveDirectCall)));
|
|
});
|
|
});
|
|
});
|