import React from 'react'; import ConnectionManager, {ERROR_TYPE} from "../../managers/ConnectionManager"; import * as SecureStore from 'expo-secure-store'; let fetch = require('isomorphic-fetch'); // fetch is not implemented in nodeJS but in react-native const c = ConnectionManager.getInstance(); afterEach(() => { jest.restoreAllMocks(); }); test('isLoggedIn yes', () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return 'token'; }); return expect(c.isLoggedIn()).toBe(true); }); test('isLoggedIn no', () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return null; }); return expect(c.isLoggedIn()).toBe(false); }); test('recoverLogin error crypto', () => { jest.spyOn(SecureStore, 'getItemAsync').mockImplementationOnce(() => { return Promise.reject(); }); return expect(c.recoverLogin()).rejects.toBe(false); }); test('recoverLogin success crypto', () => { jest.spyOn(SecureStore, 'getItemAsync').mockImplementationOnce(() => { return Promise.resolve('token1'); }); return expect(c.recoverLogin()).resolves.toBe('token1'); }); test('saveLogin success', () => { jest.spyOn(SecureStore, 'setItemAsync').mockImplementationOnce(() => { return Promise.resolve(); }); return expect(c.saveLogin('email', 'token2')).resolves.toBeTruthy(); }); test('saveLogin error', () => { jest.spyOn(SecureStore, 'setItemAsync').mockImplementationOnce(() => { return Promise.reject(); }); return expect(c.saveLogin('email', 'token3')).rejects.toBeFalsy(); }); test('recoverLogin error crypto with saved token', () => { jest.spyOn(SecureStore, 'getItemAsync').mockImplementationOnce(() => { return Promise.reject(); }); return expect(c.recoverLogin()).resolves.toBe('token2'); }); test('recoverLogin success saved', () => { return expect(c.recoverLogin()).resolves.toBe('token2'); }); test('isRequestResponseValid', () => { let json = { state: true, data: {} }; expect(c.isRequestResponseValid(json)).toBeTrue(); json = { state: false, data: {} }; expect(c.isRequestResponseValid(json)).toBeTrue(); json = { state: false, message: 'coucou', data: {truc: 'machin'} }; expect(c.isRequestResponseValid(json)).toBeTrue(); json = { message: 'coucou' }; expect(c.isRequestResponseValid(json)).toBeFalse(); json = { state: 'coucou' }; expect(c.isRequestResponseValid(json)).toBeFalse(); json = { state: true, }; expect(c.isRequestResponseValid(json)).toBeFalse(); }); test("isConnectionResponseValid", () => { let json = { state: true, message: 'Connexion confirmée', token: 'token' }; expect(c.isConnectionResponseValid(json)).toBeTrue(); json = { state: true, token: 'token' }; expect(c.isConnectionResponseValid(json)).toBeTrue(); json = { state: false, }; expect(c.isConnectionResponseValid(json)).toBeTrue(); json = { state: false, message: 'Adresse mail ou mot de passe incorrect', token: '' }; expect(c.isConnectionResponseValid(json)).toBeTrue(); json = { state: true, message: 'Connexion confirmée', token: '' }; expect(c.isConnectionResponseValid(json)).toBeFalse(); json = { state: true, message: 'Connexion confirmée', }; expect(c.isConnectionResponseValid(json)).toBeFalse(); json = { state: 'coucou', message: 'Connexion confirmée', token: 'token' }; expect(c.isConnectionResponseValid(json)).toBeFalse(); json = { state: true, message: 'Connexion confirmée', token: 2 }; expect(c.isConnectionResponseValid(json)).toBeFalse(); json = { coucou: 'coucou', message: 'Connexion confirmée', token: 'token' }; expect(c.isConnectionResponseValid(json)).toBeFalse(); }); test("connect bad credentials", () => { jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return { state: false, message: 'Adresse mail ou mot de passe incorrect', token: '' } }, }) }); return expect(c.connect('email', 'password')) .rejects.toBe(ERROR_TYPE.BAD_CREDENTIALS); }); test("connect good credentials", () => { jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return { state: true, message: 'Connexion confirmée', token: 'token' } }, }) }); jest.spyOn(ConnectionManager.prototype, 'saveLogin').mockImplementationOnce(() => { return Promise.resolve(true); }); return expect(c.connect('email', 'password')).resolves.toBeTruthy(); }); test("connect good credentials no consent", () => { jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return { state: false, message: 'pas de consent', token: '', data: { consent: false, } } }, }) }); return expect(c.connect('email', 'password')) .rejects.toBe(ERROR_TYPE.NO_CONSENT); }); test("connect good credentials, fail save token", () => { jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return { state: true, message: 'Connexion confirmée', token: 'token' } }, }) }); jest.spyOn(ConnectionManager.prototype, 'saveLogin').mockImplementationOnce(() => { return Promise.reject(false); }); return expect(c.connect('email', 'password')).rejects.toBe(ERROR_TYPE.SAVE_TOKEN); }); test("connect connection error", () => { jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.reject(); }); return expect(c.connect('email', 'password')) .rejects.toBe(ERROR_TYPE.CONNECTION_ERROR); }); test("connect bogus response 1", () => { jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return { thing: true, wrong: '', } }, }) }); return expect(c.connect('email', 'password')) .rejects.toBe(ERROR_TYPE.CONNECTION_ERROR); }); test("authenticatedRequest success", () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return 'token'; }); jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return {state: true, message: 'Connexion vérifiée', data: {coucou: 'toi'}} }, }) }); return expect(c.authenticatedRequest('https://www.amicale-insat.fr/api/token/check')) .resolves.toStrictEqual({coucou: 'toi'}); }); test("authenticatedRequest error wrong token", () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return 'token'; }); jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return {state: false, message: 'Le champ token sélectionné est invalide.'} }, }) }); return expect(c.authenticatedRequest('https://www.amicale-insat.fr/api/token/check')) .rejects.toBe(ERROR_TYPE.BAD_CREDENTIALS); }); test("authenticatedRequest error bogus response", () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return 'token'; }); jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return {state: true, message: 'Connexion vérifiée'} }, }) }); return expect(c.authenticatedRequest('https://www.amicale-insat.fr/api/token/check')) .rejects.toBe(ERROR_TYPE.CONNECTION_ERROR); }); test("authenticatedRequest connection error", () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return 'token'; }); jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.reject() }); return expect(c.authenticatedRequest('https://www.amicale-insat.fr/api/token/check')) .rejects.toBe(ERROR_TYPE.CONNECTION_ERROR); }); test("authenticatedRequest error no token", () => { jest.spyOn(ConnectionManager.prototype, 'getToken').mockImplementationOnce(() => { return null; }); jest.spyOn(global, 'fetch').mockImplementationOnce(() => { return Promise.resolve({ json: () => { return {state: false, message: 'Le champ token sélectionné est invalide.'} }, }) }); return expect(c.authenticatedRequest('https://www.amicale-insat.fr/api/token/check')) .rejects.toBe(ERROR_TYPE.NO_TOKEN); });