adding testing for find ad by uuid

This commit is contained in:
Grégoire Chevalier 2023-05-04 15:13:01 +02:00
parent 017800b90a
commit d17a3b9867
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ describe('FindAdByUuidUseCase', () => {
expect(findAdByUuidUseCase).toBeDefined();
});
describe('execute', () => {
it('should return a user', async () => {
it('should return an ad', async () => {
const findAdByUuidRequest: FindAdByUuidRequest =
new FindAdByUuidRequest();
findAdByUuidRequest.uuid = 'bb281075-1b98-4456-89d6-c643d3044a91';
@ -59,7 +59,7 @@ describe('FindAdByUuidUseCase', () => {
);
expect(user).toBe(mockAd);
});
it('should throw an error if user does not exist', async () => {
it('should throw an error if ad does not exist', async () => {
const findAdByUuidRequest: FindAdByUuidRequest =
new FindAdByUuidRequest();
findAdByUuidRequest.uuid = 'bb281075-1b98-4456-89d6-c643d3044a90';

View File

@ -41,7 +41,7 @@ describe('Messager', () => {
it('should publish a message', async () => {
jest.spyOn(mockAmqpConnection, 'publish');
messager.publish('user.create.info', 'my-test');
messager.publish('ad.create.info', 'my-test');
expect(mockAmqpConnection.publish).toHaveBeenCalledTimes(1);
});
});