930 lines
34 KiB
TypeScript
930 lines
34 KiB
TypeScript
import { StatusEnum, WebSocketConnectReason } from 'types';
|
|
|
|
import { SessionCommands } from './SessionCommands';
|
|
|
|
import { RoomPersistence, SessionPersistence } from '../persistence';
|
|
import webClient from '../WebClient';
|
|
import { AccountActivationParams, ServerRegisterParams } from '../../store';
|
|
|
|
describe('SessionCommands', () => {
|
|
const roomId = 1;
|
|
let sendModeratorCommandSpy;
|
|
let sendSessionCommandSpy;
|
|
let MockSessionCommands;
|
|
|
|
beforeEach(() => {
|
|
jest.spyOn(SessionCommands, 'updateStatus');
|
|
jest.spyOn(webClient, 'updateStatus').mockImplementation(() => {});
|
|
jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
sendModeratorCommandSpy = jest.spyOn(webClient.protobuf, 'sendModeratorCommand').mockImplementation(() => {});
|
|
sendSessionCommandSpy = jest.spyOn(webClient.protobuf, 'sendSessionCommand').mockImplementation(() => {});
|
|
webClient.protobuf.controller.ModeratorCommand = { create: args => args };
|
|
webClient.protobuf.controller.SessionCommand = { create: args => args };
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.restoreAllMocks();
|
|
});
|
|
|
|
describe('connect', () => {
|
|
let options;
|
|
|
|
beforeEach(() => {
|
|
jest.spyOn(webClient, 'connect').mockImplementation(() => {});
|
|
options = {
|
|
host: 'host',
|
|
port: 'port',
|
|
user: 'user',
|
|
pass: 'pass',
|
|
};
|
|
});
|
|
|
|
it('should call SessionCommands.updateStatus and webClient.connect when logging in', () => {
|
|
SessionCommands.connect(options, WebSocketConnectReason.LOGIN);
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalled();
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.CONNECTING, expect.any(String));
|
|
|
|
expect(webClient.connect).toHaveBeenCalled();
|
|
expect(webClient.connect).toHaveBeenCalledWith({ ...options, reason: WebSocketConnectReason.LOGIN });
|
|
});
|
|
|
|
it('should call SessionCommands.updateStatus and webClient.connect when registering', () => {
|
|
SessionCommands.connect(options, WebSocketConnectReason.REGISTER);
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalled();
|
|
|
|
expect(webClient.connect).toHaveBeenCalled();
|
|
expect(webClient.connect).toHaveBeenCalledWith({ ...options, reason: WebSocketConnectReason.REGISTER });
|
|
});
|
|
|
|
|
|
it('should call SessionCommands.updateStatus and webClient.connect when activating account', () => {
|
|
SessionCommands.connect(options, WebSocketConnectReason.ACTIVATE_ACCOUNT);
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalled();
|
|
|
|
expect(webClient.connect).toHaveBeenCalled();
|
|
expect(webClient.connect).toHaveBeenCalledWith({ ...options, reason: WebSocketConnectReason.ACTIVATE_ACCOUNT });
|
|
});
|
|
});
|
|
|
|
describe('disconnect', () => {
|
|
it('should call SessionCommands.updateStatus and webClient.disconnect', () => {
|
|
jest.spyOn(webClient, 'disconnect');
|
|
|
|
SessionCommands.disconnect();
|
|
|
|
expect(webClient.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('login', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_Login = { create: args => args };
|
|
webClient.options.userName = 'user';
|
|
webClient.options.password = 'pass';
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.login();
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_Login.ext': {
|
|
...webClient.clientConfig,
|
|
userName: webClient.options.userName,
|
|
password: webClient.options.password,
|
|
clientid: expect.any(String)
|
|
}
|
|
}, expect.any(Function));
|
|
});
|
|
|
|
describe('response', () => {
|
|
const RespOk = 'RespOk';
|
|
const respKey = '.Response_Login.ext';
|
|
let response;
|
|
|
|
beforeEach(() => {
|
|
response = {
|
|
responseCode: RespOk,
|
|
[respKey]: {
|
|
buddyList: [],
|
|
ignoreList: [],
|
|
userInfo: {}
|
|
}
|
|
};
|
|
|
|
webClient.protobuf.controller.Response = { ResponseCode: { RespOk } };
|
|
|
|
sendSessionCommandSpy.mockImplementation((_, callback) => callback(response));
|
|
});
|
|
|
|
it('RespOk should update user/state and list users/games', () => {
|
|
jest.spyOn(SessionPersistence, 'updateBuddyList').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'updateIgnoreList').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'updateUser').mockImplementation(() => {});
|
|
jest.spyOn(SessionCommands, 'listUsers').mockImplementation(() => {});
|
|
jest.spyOn(SessionCommands, 'listRooms').mockImplementation(() => {});
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionPersistence.updateBuddyList).toHaveBeenCalledWith(response[respKey].buddyList);
|
|
expect(SessionPersistence.updateIgnoreList).toHaveBeenCalledWith(response[respKey].ignoreList);
|
|
expect(SessionPersistence.updateUser).toHaveBeenCalledWith(response[respKey].userInfo);
|
|
|
|
expect(SessionCommands.listUsers).toHaveBeenCalled();
|
|
expect(SessionCommands.listRooms).toHaveBeenCalled();
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.LOGGED_IN, 'Logged in.');
|
|
});
|
|
|
|
it('RespClientUpdateRequired should update status', () => {
|
|
const RespClientUpdateRequired = 'RespClientUpdateRequired';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespClientUpdateRequired = RespClientUpdateRequired;
|
|
response.responseCode = RespClientUpdateRequired;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: missing features');
|
|
});
|
|
|
|
it('RespWrongPassword should update status', () => {
|
|
const RespWrongPassword = 'RespWrongPassword';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespWrongPassword = RespWrongPassword;
|
|
response.responseCode = RespWrongPassword;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: incorrect username or password');
|
|
});
|
|
|
|
it('RespUsernameInvalid should update status', () => {
|
|
const RespUsernameInvalid = 'RespUsernameInvalid';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespUsernameInvalid = RespUsernameInvalid;
|
|
response.responseCode = RespUsernameInvalid;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: incorrect username or password');
|
|
});
|
|
|
|
it('RespWouldOverwriteOldSession should update status', () => {
|
|
const RespWouldOverwriteOldSession = 'RespWouldOverwriteOldSession';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespWouldOverwriteOldSession = RespWouldOverwriteOldSession;
|
|
response.responseCode = RespWouldOverwriteOldSession;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: duplicated user session');
|
|
});
|
|
|
|
it('RespUserIsBanned should update status', () => {
|
|
const RespUserIsBanned = 'RespUserIsBanned';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespUserIsBanned = RespUserIsBanned;
|
|
response.responseCode = RespUserIsBanned;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: banned user');
|
|
});
|
|
|
|
it('RespRegistrationRequired should update status', () => {
|
|
const RespRegistrationRequired = 'RespRegistrationRequired';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespRegistrationRequired = RespRegistrationRequired;
|
|
response.responseCode = RespRegistrationRequired;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: registration required');
|
|
});
|
|
|
|
it('RespClientIdRequired should update status', () => {
|
|
const RespClientIdRequired = 'RespClientIdRequired';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespClientIdRequired = RespClientIdRequired;
|
|
response.responseCode = RespClientIdRequired;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: missing client ID');
|
|
});
|
|
|
|
it('RespContextError should update status', () => {
|
|
const RespContextError = 'RespContextError';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespContextError = RespContextError;
|
|
response.responseCode = RespContextError;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(StatusEnum.DISCONNECTED, 'Login failed: server error');
|
|
});
|
|
|
|
it('RespAccountNotActivated should update status', () => {
|
|
const RespAccountNotActivated = 'RespAccountNotActivated';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespAccountNotActivated = RespAccountNotActivated;
|
|
response.responseCode = RespAccountNotActivated;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(
|
|
StatusEnum.DISCONNECTED,
|
|
'Login failed: account not activated'
|
|
);
|
|
});
|
|
|
|
it('all other responseCodes should update status', () => {
|
|
const UnknownCode = 'UnknownCode';
|
|
webClient.protobuf.controller.Response.ResponseCode.UnknownCode = UnknownCode;
|
|
response.responseCode = UnknownCode;
|
|
|
|
SessionCommands.login();
|
|
|
|
expect(SessionCommands.updateStatus).toHaveBeenCalledWith(
|
|
StatusEnum.DISCONNECTED,
|
|
`Login failed: unknown error: ${response.responseCode}`
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('register', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_Register = { create: args => args };
|
|
webClient.options = {
|
|
...webClient.options,
|
|
user: 'user',
|
|
pass: 'pass',
|
|
email: 'email@example.com',
|
|
country: 'us',
|
|
realName: 'realName',
|
|
clientid: 'abcdefg'
|
|
} as any;
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.register();
|
|
|
|
const options = webClient.options as unknown as ServerRegisterParams;
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_Register.ext': {
|
|
...webClient.clientConfig,
|
|
userName: options.userName,
|
|
password: options.password,
|
|
email: options.email,
|
|
country: options.country,
|
|
realName: options.realName,
|
|
clientid: expect.any(String)
|
|
}
|
|
}, expect.any(Function));
|
|
});
|
|
|
|
describe('response', () => {
|
|
const RespRegistrationAccepted = 'RespRegistrationAccepted';
|
|
const respKey = '.Response_Register.ext';
|
|
let response;
|
|
|
|
beforeEach(() => {
|
|
response = {
|
|
responseCode: RespRegistrationAccepted,
|
|
[respKey]: {
|
|
reasonStr: '',
|
|
endTime: 10000000
|
|
}
|
|
};
|
|
|
|
webClient.protobuf.controller.Response = { ResponseCode: { RespRegistrationAccepted } };
|
|
|
|
sendSessionCommandSpy.mockImplementation((_, callback) => callback(response));
|
|
})
|
|
|
|
describe('RespRegistrationAccepted', () => {
|
|
it('should call SessionCommands.login()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).toHaveBeenCalled();
|
|
|
|
})
|
|
});
|
|
|
|
describe('RespRegistrationAcceptedNeedsActivation', () => {
|
|
const RespRegistrationAcceptedNeedsActivation = 'RespRegistrationAcceptedNeedsActivation';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespRegistrationAcceptedNeedsActivation;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespRegistrationAcceptedNeedsActivation =
|
|
RespRegistrationAcceptedNeedsActivation;
|
|
});
|
|
|
|
it('should call SessionPersistence.accountAwaitingActivation()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'accountAwaitingActivation').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.accountAwaitingActivation).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespUserAlreadyExists', () => {
|
|
const RespUserAlreadyExists = 'RespUserAlreadyExists';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespUserAlreadyExists;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespUserAlreadyExists =
|
|
RespUserAlreadyExists;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationUserNameError()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationUserNameError').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationUserNameError).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespUsernameInvalid', () => {
|
|
const RespUsernameInvalid = 'RespUsernameInvalid';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespUsernameInvalid;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespUsernameInvalid =
|
|
RespUsernameInvalid;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationUserNameError()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationUserNameError').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationUserNameError).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespPasswordTooShort', () => {
|
|
const RespPasswordTooShort = 'RespPasswordTooShort';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespPasswordTooShort;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespPasswordTooShort =
|
|
RespPasswordTooShort;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationPasswordError()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationPasswordError').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationPasswordError).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespEmailRequiredToRegister', () => {
|
|
const RespEmailRequiredToRegister = 'RespEmailRequiredToRegister';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespEmailRequiredToRegister;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespEmailRequiredToRegister =
|
|
RespEmailRequiredToRegister;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationRequiresEmail()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationRequiresEmail').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationRequiresEmail).toHaveBeenCalled();
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespEmailBlackListed', () => {
|
|
const RespEmailBlackListed = 'RespEmailBlackListed';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespEmailBlackListed;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespEmailBlackListed =
|
|
RespEmailBlackListed;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationEmailError()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationEmailError').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationEmailError).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespTooManyRequests', () => {
|
|
const RespTooManyRequests = 'RespTooManyRequests';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespTooManyRequests;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespTooManyRequests =
|
|
RespTooManyRequests;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationEmailError()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationEmailError').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationEmailError).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespRegistrationDisabled', () => {
|
|
const RespRegistrationDisabled = 'RespRegistrationDisabled';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespRegistrationDisabled;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespRegistrationDisabled =
|
|
RespRegistrationDisabled;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationFailed()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationFailed').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationFailed).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespUserIsBanned', () => {
|
|
const RespUserIsBanned = 'RespUserIsBanned';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespUserIsBanned;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespUserIsBanned =
|
|
RespUserIsBanned;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationFailed()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationFailed').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationFailed).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('RespRegistrationFailed', () => {
|
|
const RespRegistrationFailed = 'RespRegistrationFailed';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = RespRegistrationFailed;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespRegistrationFailed =
|
|
RespRegistrationFailed;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationFailed()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationFailed').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationFailed).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('UnknownFailureReason', () => {
|
|
const UnknownFailureReason = 'UnknownFailureReason';
|
|
|
|
beforeEach(() => {
|
|
response.responseCode = UnknownFailureReason;
|
|
webClient.protobuf.controller.Response.ResponseCode.UnknownFailureReason =
|
|
UnknownFailureReason;
|
|
});
|
|
|
|
it('should call SessionPersistence.registrationFailed()', () => {
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'registrationFailed').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.registrationFailed).toHaveBeenCalledWith(expect.any(String));
|
|
});
|
|
|
|
it('should disconnect', () => {
|
|
jest.spyOn(SessionCommands, 'disconnect').mockImplementation(() => {});
|
|
SessionCommands.register();
|
|
|
|
expect(SessionCommands.disconnect).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('activateAccount', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_Activate = { create: args => args };
|
|
webClient.options = {
|
|
...webClient.options,
|
|
user: 'user',
|
|
activationCode: 'token',
|
|
clientid: 'abcdefg'
|
|
} as any;
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.activateAccount();
|
|
|
|
const options = webClient.options as unknown as AccountActivationParams;
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_Activate.ext': {
|
|
...webClient.clientConfig,
|
|
userName: options.userName,
|
|
token: options.token,
|
|
clientid: expect.any(String)
|
|
}
|
|
}, expect.any(Function));
|
|
});
|
|
|
|
describe('response', () => {
|
|
const RespActivationAccepted = 'RespActivationAccepted';
|
|
const respKey = '.Response_Activate.ext';
|
|
let response;
|
|
|
|
beforeEach(() => {
|
|
response = {
|
|
responseCode: RespActivationAccepted,
|
|
[respKey]: {
|
|
|
|
}
|
|
};
|
|
|
|
webClient.protobuf.controller.Response = { ResponseCode: { RespActivationAccepted } };
|
|
|
|
sendSessionCommandSpy.mockImplementation((_, callback) => callback(response));
|
|
jest.spyOn(SessionCommands, 'login').mockImplementation(() => {});
|
|
jest.spyOn(SessionPersistence, 'accountActivationFailed').mockImplementation(() => {});
|
|
});
|
|
|
|
it('should activate user and login if correct activation token used', () => {
|
|
SessionCommands.activateAccount();
|
|
|
|
expect(SessionCommands.login).toHaveBeenCalled();
|
|
expect(SessionPersistence.accountActivationFailed).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('should disconnect user if activation failed for any reason', () => {
|
|
const RespActivationFailed = 'RespActivationFailed';
|
|
response.responseCode = RespActivationFailed;
|
|
webClient.protobuf.controller.Response.ResponseCode.RespActivationFailed = RespActivationFailed;
|
|
|
|
SessionCommands.activateAccount();
|
|
|
|
expect(SessionCommands.login).not.toHaveBeenCalled();
|
|
expect(SessionPersistence.accountActivationFailed).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('listUsers', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_ListUsers = { create: () => ({}) };
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.listUsers();
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_ListUsers.ext': {}
|
|
}, expect.any(Function));
|
|
});
|
|
|
|
it('should call SessionPersistence.updateUsers if RespOk', () => {
|
|
const RespOk = 'ok';
|
|
const respKey = '.Response_ListUsers.ext';
|
|
const response = {
|
|
responseCode: RespOk,
|
|
[respKey]: { userList: [] }
|
|
};
|
|
|
|
webClient.protobuf.controller.Response = { ResponseCode: { RespOk } };
|
|
sendSessionCommandSpy.mockImplementation((_, callback) => callback(response));
|
|
jest.spyOn(SessionPersistence, 'updateUsers').mockImplementation(() => {});
|
|
|
|
SessionCommands.listUsers();
|
|
|
|
expect(SessionPersistence.updateUsers).toHaveBeenCalledWith(response[respKey].userList);
|
|
});
|
|
});
|
|
|
|
describe('listRooms', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_ListRooms = { create: () => ({}) };
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.listRooms();
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_ListRooms.ext': {}
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('joinRoom', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_JoinRoom = { create: args => args };
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.joinRoom(roomId);
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_JoinRoom.ext': { roomId }
|
|
}, expect.any(Function));
|
|
});
|
|
|
|
describe('response', () => {
|
|
const RespOk = 'RespOk';
|
|
const respKey = '.Response_JoinRoom.ext';
|
|
let response;
|
|
|
|
beforeEach(() => {
|
|
response = {
|
|
responseCode: RespOk,
|
|
[respKey]: { roomInfo: {} }
|
|
};
|
|
|
|
webClient.protobuf.controller.Response = { ResponseCode: { RespOk } };
|
|
|
|
sendSessionCommandSpy.mockImplementation((_, callback) => callback(response));
|
|
});
|
|
|
|
it('RespOk should call RoomPersistence.joinRoom', () => {
|
|
jest.spyOn(RoomPersistence, 'joinRoom').mockImplementation(() => {});
|
|
|
|
SessionCommands.joinRoom(roomId);
|
|
|
|
expect(RoomPersistence.joinRoom).toHaveBeenCalledWith(response[respKey].roomInfo);
|
|
});
|
|
|
|
it('RespNameNotFound should console error', () => {
|
|
const RespNameNotFound = 'RespNameNotFound';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespNameNotFound = RespNameNotFound;
|
|
response.responseCode = RespNameNotFound;
|
|
|
|
SessionCommands.joinRoom(roomId);
|
|
|
|
expect(console.error).toHaveBeenCalledWith(RespNameNotFound, 'Failed to join the room: it doesn\'t exist on the server.');
|
|
});
|
|
|
|
it('RespContextError should console error', () => {
|
|
const RespContextError = 'RespContextError';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespContextError = RespContextError;
|
|
response.responseCode = RespContextError;
|
|
|
|
SessionCommands.joinRoom(roomId);
|
|
|
|
expect(console.error).toHaveBeenCalledWith(
|
|
RespContextError,
|
|
'The server thinks you are in the room but Cockatrice is unable to display it. Try restarting Cockatrice.'
|
|
);
|
|
});
|
|
|
|
it('RespUserLevelTooLow should console error', () => {
|
|
const RespUserLevelTooLow = 'RespUserLevelTooLow';
|
|
webClient.protobuf.controller.Response.ResponseCode.RespUserLevelTooLow = RespUserLevelTooLow;
|
|
response.responseCode = RespUserLevelTooLow;
|
|
|
|
SessionCommands.joinRoom(roomId);
|
|
|
|
expect(console.error).toHaveBeenCalledWith(RespUserLevelTooLow, 'You do not have the required permission to join this room.');
|
|
});
|
|
|
|
it('all other responseCodes should update status', () => {
|
|
const UnknownCode = 'UnknownCode';
|
|
webClient.protobuf.controller.Response.ResponseCode.UnknownCode = UnknownCode;
|
|
response.responseCode = UnknownCode;
|
|
|
|
SessionCommands.joinRoom(roomId);
|
|
|
|
expect(console.error).toHaveBeenCalledWith(UnknownCode, 'Failed to join the room due to an unknown error.');
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('addToBuddyList', () => {
|
|
it('should call SessionCommands.addToList', () => {
|
|
jest.spyOn(SessionCommands, 'addToList').mockImplementation(() => {});
|
|
const userName = 'userName';
|
|
|
|
SessionCommands.addToBuddyList(userName);
|
|
|
|
expect(SessionCommands.addToList).toHaveBeenCalledWith('buddy', userName);
|
|
});
|
|
});
|
|
|
|
describe('removeFromBuddyList', () => {
|
|
it('should call SessionCommands.removeFromList', () => {
|
|
jest.spyOn(SessionCommands, 'removeFromList').mockImplementation(() => {});
|
|
const userName = 'userName';
|
|
|
|
SessionCommands.removeFromBuddyList(userName);
|
|
|
|
expect(SessionCommands.removeFromList).toHaveBeenCalledWith('buddy', userName);
|
|
});
|
|
});
|
|
|
|
describe('addToIgnoreList', () => {
|
|
it('should call SessionCommands.addToList', () => {
|
|
jest.spyOn(SessionCommands, 'addToList').mockImplementation(() => {});
|
|
const userName = 'userName';
|
|
|
|
SessionCommands.addToIgnoreList(userName);
|
|
|
|
expect(SessionCommands.addToList).toHaveBeenCalledWith('ignore', userName);
|
|
});
|
|
});
|
|
|
|
describe('removeFromIgnoreList', () => {
|
|
it('should call SessionCommands.removeFromList', () => {
|
|
jest.spyOn(SessionCommands, 'removeFromList').mockImplementation(() => {});
|
|
const userName = 'userName';
|
|
|
|
SessionCommands.removeFromIgnoreList(userName);
|
|
|
|
expect(SessionCommands.removeFromList).toHaveBeenCalledWith('ignore', userName);
|
|
});
|
|
});
|
|
|
|
describe('addToList', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_AddToList = { create: args => args };
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
const addToList = { list: 'list', userName: 'userName' };
|
|
SessionCommands.addToList(addToList.list, addToList.userName);
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_AddToList.ext': addToList
|
|
}, expect.any(Function));
|
|
});
|
|
});
|
|
|
|
describe('removeFromList', () => {
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_RemoveFromList = { create: args => args };
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
const removeFromList = { list: 'list', userName: 'userName' };
|
|
SessionCommands.removeFromList(removeFromList.list, removeFromList.userName);
|
|
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendSessionCommand).toHaveBeenCalledWith({
|
|
'.Command_RemoveFromList.ext': removeFromList
|
|
}, expect.any(Function));
|
|
});
|
|
});
|
|
|
|
describe('viewLogHistory', () => {
|
|
const filters = {};
|
|
|
|
beforeEach(() => {
|
|
webClient.protobuf.controller.Command_ViewLogHistory = { create: args => args };
|
|
});
|
|
|
|
it('should call protobuf controller methods and sendCommand', () => {
|
|
SessionCommands.viewLogHistory(filters);
|
|
|
|
expect(webClient.protobuf.sendModeratorCommand).toHaveBeenCalled();
|
|
expect(webClient.protobuf.sendModeratorCommand).toHaveBeenCalledWith({
|
|
'.Command_ViewLogHistory.ext': filters
|
|
}, expect.any(Function));
|
|
});
|
|
|
|
describe('response', () => {
|
|
const RespOk = 'RespOk';
|
|
const respKey = '.Response_ViewLogHistory.ext';
|
|
let response;
|
|
|
|
beforeEach(() => {
|
|
response = {
|
|
responseCode: RespOk,
|
|
[respKey]: { logMessage: {} }
|
|
};
|
|
|
|
webClient.protobuf.controller.Response = { ResponseCode: { RespOk } };
|
|
|
|
sendModeratorCommandSpy.mockImplementation((_, callback) => callback(response));
|
|
});
|
|
|
|
it('RespOk should call SessionPersistence.viewLogs', () => {
|
|
jest.spyOn(SessionPersistence, 'viewLogs').mockImplementation(() => {});
|
|
|
|
SessionCommands.viewLogHistory(filters);
|
|
|
|
expect(SessionPersistence.viewLogs).toHaveBeenCalledWith(response[respKey].logMessage);
|
|
});
|
|
|
|
it('all other responseCodes should console error', () => {
|
|
const UnknownCode = 'UnknownCode';
|
|
webClient.protobuf.controller.Response.ResponseCode.UnknownCode = UnknownCode;
|
|
response.responseCode = UnknownCode;
|
|
|
|
SessionCommands.viewLogHistory(filters);
|
|
|
|
expect(console.error).toHaveBeenCalledWith(UnknownCode, 'Failed to retrieve log history.');
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('updateStatus', () => {
|
|
it('should call webClient.updateStatus', () => {
|
|
SessionCommands.updateStatus(StatusEnum.CONNECTING, 'description');
|
|
expect(webClient.updateStatus).toHaveBeenCalledWith(StatusEnum.CONNECTING, 'description');
|
|
});
|
|
});
|
|
});
|