Added API testcases for todo service#5
Open
abbas-dependable-naqvi wants to merge 2 commits intotodo_modulefrom
Open
Added API testcases for todo service#5abbas-dependable-naqvi wants to merge 2 commits intotodo_modulefrom
abbas-dependable-naqvi wants to merge 2 commits intotodo_modulefrom
Conversation
…o into api_testcase
| import { getRepositoryToken } from '@nestjs/typeorm'; | ||
| import { Todo, TodoState } from './../entities/todo.entity'; | ||
| import { User } from './../entities/user.entity'; | ||
| import { Repository } from 'typeorm'; |
| userId: 1, | ||
| }; | ||
|
|
||
| (todoRepository.findOne as jest.Mock).mockResolvedValue(mockTodo); |
There was a problem hiding this comment.
use mockResolvedValueOnce instead of this
| { | ||
| provide: getRepositoryToken(Todo), | ||
| useValue: { | ||
| findOne: jest.fn(), |
There was a problem hiding this comment.
store them in a variable at the top and assign here, so that u can directly use it later
| findOne: jest.fn(), | ||
| }, | ||
| }, | ||
| ], |
There was a problem hiding this comment.
clear all mocks before each run
| }); | ||
| expect(result).toEqual(sanitizedTodo); | ||
|
|
||
| expect(todoRepository.findOne).toHaveBeenCalledWith({ |
There was a problem hiding this comment.
we can also check how many times its been called
| (todoRepository.findOne as jest.Mock).mockResolvedValue(mockTodo); | ||
|
|
||
| await expect(service.find(todoID, userID)).rejects.toThrow( | ||
| UnauthorizedException, |
There was a problem hiding this comment.
it should return forbidden error instead of unauthorized
| (userRepository.findOne as jest.Mock).mockResolvedValue(mockUser); | ||
|
|
||
| (todoRepository.save as jest.Mock).mockRejectedValue( | ||
| new Error('Database error'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Added API testcases for todo service