Compare commits
17 Commits
Author | SHA1 | Date |
---|---|---|
|
dfc3b9b848 | 1 year ago |
|
3ff45314bc | 1 year ago |
|
a7ace455b0 | 1 year ago |
|
8acd086038 | 1 year ago |
|
895ff757d4 | 1 year ago |
|
62d79c5d64 | 1 year ago |
|
07600429e4 | 1 year ago |
|
18232207bd | 1 year ago |
|
31e7ed6bda | 1 year ago |
|
75ee79b7c8 | 1 year ago |
|
d34336ed25 | 1 year ago |
|
d4cd47e9b2 | 1 year ago |
|
4b4a113ba9 | 1 year ago |
|
cb483782cd | 1 year ago |
|
f124ea3d3e | 1 year ago |
|
a761314e58 | 1 year ago |
|
1b9746a0b5 | 1 year ago |
@ -0,0 +1,9 @@
|
|||||||
|
export enum IngredientClass {
|
||||||
|
DairyFree = 'DAIRY_FREE',
|
||||||
|
GlutenFree = 'GLUTEN_FREE',
|
||||||
|
Porcless = 'PORCLESS',
|
||||||
|
Vegan = 'VEGAN',
|
||||||
|
Vegetarian = 'VEGETARIAN',
|
||||||
|
Pescatarian = 'PESCATARIAN',
|
||||||
|
None = 'NONE'
|
||||||
|
}
|
@ -1,30 +0,0 @@
|
|||||||
export default class Profil {
|
|
||||||
private _name: string;
|
|
||||||
private _avatar: string;
|
|
||||||
private _allergy: string[];
|
|
||||||
private _diets: string[];
|
|
||||||
|
|
||||||
constructor( name: string, avatar: string, allergy: string[], diets: string[]) {
|
|
||||||
this._name = name;
|
|
||||||
this._avatar = avatar;
|
|
||||||
this._allergy = allergy;
|
|
||||||
this._diets = diets;
|
|
||||||
}
|
|
||||||
|
|
||||||
get name(): string {
|
|
||||||
return this._name;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
get avatar(): string{
|
|
||||||
return this._avatar;
|
|
||||||
}
|
|
||||||
|
|
||||||
get allergy(): string[]{
|
|
||||||
return this._allergy;
|
|
||||||
}
|
|
||||||
|
|
||||||
get diets(): string[]{
|
|
||||||
return this._diets;
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,38 @@
|
|||||||
|
import IngredientService from '../Services/Ingredients/IngredientsServices';
|
||||||
|
|
||||||
|
describe('IngredientService', () => {
|
||||||
|
const ingredient_service = new IngredientService();
|
||||||
|
|
||||||
|
it('should get one ingredient', async () => {
|
||||||
|
const result = await ingredient_service.getIngredientById(1)
|
||||||
|
expect(result.id).toBe(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should get all ingredients', async () => {
|
||||||
|
const result = await ingredient_service.getAllIngredient()
|
||||||
|
const test = result.length >= 1
|
||||||
|
expect(test).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return several ingredients starting by letter a', async () => {
|
||||||
|
const result = await ingredient_service.getIngredientByLetter('a')
|
||||||
|
let test = true
|
||||||
|
for (let ingredient of result) {
|
||||||
|
if (ingredient.name[0] !== 'a') {
|
||||||
|
test = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expect(test).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return several ingredients with car in the name', async () => {
|
||||||
|
const result = await ingredient_service.getfilteredIngredient('car')
|
||||||
|
let test = true
|
||||||
|
for (let ingredient of result) {
|
||||||
|
if (!ingredient.name.includes('car')) {
|
||||||
|
test = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expect(test).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,124 @@
|
|||||||
|
import AsyncStorage from '@react-native-async-storage/async-storage';
|
||||||
|
import ProfileService from '../Services/Profiles/ProfileService';
|
||||||
|
import Profile from '../Models/Profile';
|
||||||
|
|
||||||
|
type AsyncStorageMock = {
|
||||||
|
getItem: jest.Mock<Promise<string | null>, [string]>,
|
||||||
|
setItem: jest.Mock<Promise<void>, [string, string]>,
|
||||||
|
clear: jest.Mock<Promise<void>>,
|
||||||
|
};
|
||||||
|
|
||||||
|
jest.mock('@react-native-async-storage/async-storage', () => {
|
||||||
|
const asyncStorageMock: AsyncStorageMock = {
|
||||||
|
getItem: jest.fn(),
|
||||||
|
setItem: jest.fn(),
|
||||||
|
clear: jest.fn(),
|
||||||
|
};
|
||||||
|
return asyncStorageMock;
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('ProfileService', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockReset();
|
||||||
|
(AsyncStorage.setItem as jest.Mock).mockReset();
|
||||||
|
(AsyncStorage.clear as jest.Mock).mockReset();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('getProfiles', () => {
|
||||||
|
it('should return an empty array if no profiles are stored', async () => {
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockResolvedValueOnce(null);
|
||||||
|
|
||||||
|
const profileService = new ProfileService();
|
||||||
|
const profiles = await profileService.getProfiles();
|
||||||
|
|
||||||
|
expect(profiles).toEqual([]);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return an array of profiles if profiles are stored', async () => {
|
||||||
|
const storedProfiles = [
|
||||||
|
{ _name: 'John', _avatar: 'avatar1', _allergy: ['none'], _diets: [] },
|
||||||
|
{ _name: 'Jane', _avatar: 'avatar2', _allergy: ['peanuts'], _diets: ['vegan'] },
|
||||||
|
];
|
||||||
|
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockResolvedValueOnce(JSON.stringify(storedProfiles));
|
||||||
|
|
||||||
|
const profileService = new ProfileService();
|
||||||
|
const profiles = await profileService.getProfiles();
|
||||||
|
|
||||||
|
expect(profiles.length).toBe(2);
|
||||||
|
expect(profiles[0]).toBeInstanceOf(Profile);
|
||||||
|
expect(profiles[0].name).toEqual('John');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('addProfile', () => {
|
||||||
|
it('should add a new profile to the stored profiles', async () => {
|
||||||
|
const existingProfiles = [
|
||||||
|
{ _name: 'John', _avatar: 'avatar1', _allergy: ['none'], _diets: [] },
|
||||||
|
];
|
||||||
|
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockResolvedValueOnce(JSON.stringify(existingProfiles));
|
||||||
|
(AsyncStorage.setItem as jest.Mock).mockResolvedValueOnce(null);
|
||||||
|
|
||||||
|
const newProfile = new Profile('Jane', 'avatar2', ['peanuts'], ['vegan']);
|
||||||
|
|
||||||
|
const profileService = new ProfileService();
|
||||||
|
const result = await profileService.addProfile(newProfile);
|
||||||
|
|
||||||
|
expect(result).toBe(true);
|
||||||
|
|
||||||
|
expect(AsyncStorage.setItem).toHaveBeenCalledWith('profiles', expect.any(String));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not add a profile if it already exists', async () => {
|
||||||
|
const existingProfiles = [
|
||||||
|
{ _name: 'John', _avatar: 'avatar1', _allergy: ['none'], _diets: [] },
|
||||||
|
];
|
||||||
|
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockResolvedValueOnce(JSON.stringify(existingProfiles));
|
||||||
|
|
||||||
|
const existingProfile = new Profile('John', 'avatar1', ['none'], []);
|
||||||
|
|
||||||
|
const profileService = new ProfileService();
|
||||||
|
const result = await profileService.addProfile(existingProfile);
|
||||||
|
|
||||||
|
expect(result).toBe(false);
|
||||||
|
|
||||||
|
expect(AsyncStorage.setItem).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('delProfile', () => {
|
||||||
|
it('should delete a profile by name', async () => {
|
||||||
|
const existingProfiles = [
|
||||||
|
{ _name: 'John', _avatar: 'avatar1', _allergy: ['none'], _diets: [] },
|
||||||
|
{ _name: 'Jane', _avatar: 'avatar2', _allergy: ['peanuts'], _diets: ['vegan'] },
|
||||||
|
];
|
||||||
|
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockResolvedValueOnce(JSON.stringify(existingProfiles));
|
||||||
|
(AsyncStorage.setItem as jest.Mock).mockResolvedValueOnce(null);
|
||||||
|
|
||||||
|
const profileService = new ProfileService();
|
||||||
|
const result = await profileService.delProfile('John');
|
||||||
|
|
||||||
|
expect(result).toBe(true);
|
||||||
|
|
||||||
|
expect(AsyncStorage.setItem).toHaveBeenCalledWith('profiles', expect.any(String));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return false if the profile does not exist', async () => {
|
||||||
|
const existingProfiles = [
|
||||||
|
{ _name: 'John', _avatar: 'avatar1', _allergy: ['none'], _diets: [] },
|
||||||
|
];
|
||||||
|
|
||||||
|
(AsyncStorage.getItem as jest.Mock).mockResolvedValueOnce(JSON.stringify(existingProfiles));
|
||||||
|
|
||||||
|
const profileService = new ProfileService();
|
||||||
|
const result = await profileService.delProfile('Jane');
|
||||||
|
|
||||||
|
expect(result).toBe(false);
|
||||||
|
|
||||||
|
expect(AsyncStorage.setItem).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,22 @@
|
|||||||
|
import RecipesService from '../Services/Recipes/RecipesServices';
|
||||||
|
|
||||||
|
describe('RecipesService', () => {
|
||||||
|
const recipe_service = new RecipesService();
|
||||||
|
|
||||||
|
it('should get one recipe', async () => {
|
||||||
|
const result = await recipe_service.getRecipeById(4444)
|
||||||
|
expect(result.id).toBe(4444);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should get all recipes', async () => {
|
||||||
|
const result = await recipe_service.getAllRecipes()
|
||||||
|
const test = result.length >= 1
|
||||||
|
expect(test).toBe(true);
|
||||||
|
}, 120000);
|
||||||
|
|
||||||
|
it('should get one recipe', async () => {
|
||||||
|
const result = await recipe_service.getRecipeWithIngredients(['1928:2148:2809:2853:3723:6261:6335:7076'])
|
||||||
|
const test = result.length >= 1
|
||||||
|
expect(test).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue