|
| 1 | +import Interface from 'forest-express'; |
| 2 | +import Sequelize from 'sequelize'; |
| 3 | +import associationRecord from '../../src/utils/association-record'; |
| 4 | +import ResourceCreator from '../../src/services/resource-creator'; |
| 5 | + |
| 6 | +describe('services > resource-creator', () => { |
| 7 | + const user = { renderingId: 1 }; |
| 8 | + const params = { timezone: 'Europe/Paris' }; |
| 9 | + |
| 10 | + const buildModelMock = () => { |
| 11 | + // Sequelize is created here without connection to a database |
| 12 | + const sequelize = new Sequelize({ dialect: 'postgres' }); |
| 13 | + |
| 14 | + const Actor = sequelize.define('actor', { |
| 15 | + Id: { |
| 16 | + type: Sequelize.DataTypes.INTEGER, |
| 17 | + primaryKey: true, |
| 18 | + }, |
| 19 | + }); |
| 20 | + const Author = sequelize.define('author', { |
| 21 | + id: { |
| 22 | + type: Sequelize.DataTypes.INTEGER, |
| 23 | + primaryKey: true, |
| 24 | + }, |
| 25 | + name: { |
| 26 | + type: Sequelize.DataTypes.STRING, |
| 27 | + unique: true, |
| 28 | + }, |
| 29 | + }); |
| 30 | + const Film = sequelize.define('film', {}); |
| 31 | + |
| 32 | + Film.belongsTo(Actor); |
| 33 | + Film.belongsTo(Author, { |
| 34 | + targetKey: 'name', |
| 35 | + }); |
| 36 | + |
| 37 | + Interface.Schemas.schemas[Actor.name] = {}; |
| 38 | + Interface.Schemas.schemas[Film.name] = {}; |
| 39 | + |
| 40 | + return { Actor, Author, Film }; |
| 41 | + }; |
| 42 | + |
| 43 | + describe('_getTargetKey', () => { |
| 44 | + describe('when association does not have entry in body', () => { |
| 45 | + it('should return null', async () => { |
| 46 | + expect.assertions(2); |
| 47 | + |
| 48 | + const { Film, Actor } = buildModelMock(); |
| 49 | + |
| 50 | + const body = {}; |
| 51 | + |
| 52 | + const spy = jest.spyOn(associationRecord, 'get'); |
| 53 | + |
| 54 | + const resourceCreator = new ResourceCreator(Film, params, body, user); |
| 55 | + const targetKey = await resourceCreator._getTargetKey( |
| 56 | + Actor.name, |
| 57 | + Film.associations[Actor.name], |
| 58 | + ); |
| 59 | + |
| 60 | + expect(spy).not.toHaveBeenCalled(); |
| 61 | + expect(targetKey).toBeNil(); |
| 62 | + }); |
| 63 | + }); |
| 64 | + |
| 65 | + describe('when association does not have value in body', () => { |
| 66 | + it('should return null', async () => { |
| 67 | + expect.assertions(2); |
| 68 | + |
| 69 | + const { Film, Actor } = buildModelMock(); |
| 70 | + |
| 71 | + const body = { [Actor.name]: null }; |
| 72 | + |
| 73 | + const spy = jest.spyOn(associationRecord, 'get'); |
| 74 | + |
| 75 | + const resourceCreator = new ResourceCreator(Film, params, body, user); |
| 76 | + const targetKey = await resourceCreator._getTargetKey( |
| 77 | + Actor.name, |
| 78 | + Film.associations[Actor.name], |
| 79 | + ); |
| 80 | + |
| 81 | + expect(spy).not.toHaveBeenCalled(); |
| 82 | + expect(targetKey).toBeNil(); |
| 83 | + }); |
| 84 | + }); |
| 85 | + |
| 86 | + describe('when association target key is the primary key', () => { |
| 87 | + it('should return the body value', async () => { |
| 88 | + expect.assertions(2); |
| 89 | + |
| 90 | + const { Film, Actor } = buildModelMock(); |
| 91 | + |
| 92 | + const body = { [Actor.name]: 2 }; |
| 93 | + |
| 94 | + const spy = jest.spyOn(associationRecord, 'get'); |
| 95 | + |
| 96 | + const resourceCreator = new ResourceCreator(Film, params, body, user); |
| 97 | + const targetKey = await resourceCreator._getTargetKey( |
| 98 | + Actor.name, |
| 99 | + Film.associations[Actor.name], |
| 100 | + ); |
| 101 | + |
| 102 | + expect(spy).not.toHaveBeenCalled(); |
| 103 | + expect(targetKey).toStrictEqual(2); |
| 104 | + }); |
| 105 | + }); |
| 106 | + |
| 107 | + describe('when association target key is not the primary key', () => { |
| 108 | + it('should return the right value', async () => { |
| 109 | + expect.assertions(2); |
| 110 | + |
| 111 | + const { Film, Author } = buildModelMock(); |
| 112 | + |
| 113 | + const body = { [Author.name]: 2 }; |
| 114 | + |
| 115 | + const spy = jest.spyOn(associationRecord, 'get').mockResolvedValue({ id: 2, name: 'Scorsese' }); |
| 116 | + |
| 117 | + const resourceCreator = new ResourceCreator(Film, params, body, user); |
| 118 | + const targetKey = await resourceCreator._getTargetKey( |
| 119 | + Author.name, |
| 120 | + Film.associations[Author.name], |
| 121 | + ); |
| 122 | + |
| 123 | + expect(spy).toHaveBeenCalledWith(Author, 2); |
| 124 | + expect(targetKey).toStrictEqual('Scorsese'); |
| 125 | + }); |
| 126 | + }); |
| 127 | + }); |
| 128 | +}); |
0 commit comments