Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 27.07 주식 주문 서비스 테스트 코드 작성 #237 #245

Merged
merged 4 commits into from
Dec 3, 2024

Conversation

sieunie
Copy link
Collaborator

@sieunie sieunie commented Dec 2, 2024

✅ 주요 작업

  • 주식 매수 테스트 코드 작성
  • 주식 매도 테스트 코드 작성
  • 주문 취소 테스트 코드 작성

@sieunie sieunie added BE 백엔드 TEST 테스트 코드 작성 API API 구현 labels Dec 2, 2024
@sieunie sieunie requested review from uuuo3o and jinddings December 2, 2024 09:16
@sieunie sieunie self-assigned this Dec 2, 2024
Copy link
Collaborator

@uuuo3o uuuo3o left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다!!

{ provide: StockOrderRepository, useValue: mockStockOrderRepository },
{ provide: AssetRepository, useValue: mockAssetRepository },
{
provide: StockPriceSocketService,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟢 이런 식으로만 하면 되나요?!?!! 저 실시간 체결가 api 테스트 코드 짜는데 자꾸 이런.. 사용하지도 않을 의존성 때문에 에러 뜨고 추가하면 추가한대로 에러 뜨고 해서 진행을 못하고 있었거든요 ㅠㅠㅠㅠ 참고해서 해보겠습니다

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

마자요...... 의존성 타고타고 계속 추가해야되더라구요ㅋㅋㅋ 일단 이렇게 하니까 그 문제는 해결되긴 했어요! 대신 서비스에서 사용하는 메소드들은 mockRepository 같은거 만들때 귀찮지만 아래처럼 선언해줘야 되더라구용

    const mockStockOrderRepository = {
      findBy: jest.fn(),
      save: jest.fn(),
      create: jest.fn(),
      findOneBy: jest.fn(),
      remove: jest.fn(),
      existsBy: jest.fn(),
    };

@sieunie sieunie linked an issue Dec 2, 2024 that may be closed by this pull request
@uuuo3o uuuo3o merged commit e3e4011 into back/main Dec 3, 2024
2 checks passed
@sieunie sieunie deleted the test/order branch December 5, 2024 01:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API API 구현 BE 백엔드 TEST 테스트 코드 작성
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BE] 27.07 백엔드 테스트 코드 작성
2 participants