-
Notifications
You must be signed in to change notification settings - Fork 3
Usecase: getDonFromIdUseCase を実装 #212
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
Open
woodnx
wants to merge
3
commits into
main
Choose a base branch
from
usecase_getDonFromIdUseCase
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
184 changes: 184 additions & 0 deletions
184
packages/backend/src/usecases/__tests__/getDonFromIdUsecase.test.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,184 @@ | ||
| import { describe, it, expect, vi, beforeEach } from 'vitest'; | ||
| import { getDonFromIdUseCase } from '../getDonFromIdUsecase'; | ||
| import { donStatus } from '../../utils/status'; | ||
| import { ApiError } from '../../utils/ApiError'; | ||
| import { randomUUID } from 'crypto'; | ||
| import prisma from '../../lib/prismaClient'; | ||
|
|
||
| vi.mock('../../utils/status'); | ||
| vi.mock('../../lib/prismaClient', () => ({ | ||
| default: { | ||
| dons: { | ||
| findUnique: vi.fn(), | ||
| }, | ||
| }, | ||
| })); | ||
|
|
||
| const mockPrisma = vi.mocked(prisma) as unknown as { | ||
| dons: { | ||
| findUnique: ReturnType<typeof vi.fn>; | ||
| }; | ||
| }; | ||
|
|
||
| describe('getDonFromIdUseCase', () => { | ||
| beforeEach(() => { | ||
| vi.clearAllMocks(); | ||
| }); | ||
|
|
||
| it('指定されたIDのDonを正常に取得する場合', async () => { | ||
| const donId = randomUUID(); | ||
| const orderId = randomUUID(); | ||
| const mockDon = { | ||
| id: donId, | ||
| order_id: orderId, | ||
| create_datetime: new Date('2023-01-01'), | ||
| update_datetime: new Date('2023-01-02'), | ||
| status: 1, | ||
| order: { id: orderId }, | ||
| customizes: [ | ||
| { | ||
| is_discount: true, | ||
| customize: { | ||
| id: randomUUID(), | ||
| label: 'Extra sauce', | ||
| available: true, | ||
| price: 100, | ||
| }, | ||
| }, | ||
| { | ||
| is_discount: false, | ||
| customize: { | ||
| id: randomUUID(), | ||
| label: 'Extra cheese', | ||
| available: true, | ||
| price: 200, | ||
| }, | ||
| }, | ||
| ], | ||
| }; | ||
|
|
||
| mockPrisma.dons.findUnique.mockResolvedValue(mockDon); | ||
| vi.mocked(donStatus).mockReturnValue('ordered'); | ||
|
|
||
| const result = await getDonFromIdUseCase(donId); | ||
|
|
||
| expect(mockPrisma.dons.findUnique).toHaveBeenCalledWith({ | ||
| where: { | ||
| id: donId, | ||
| }, | ||
| include: { | ||
| order: true, | ||
| customizes: { | ||
| include: { | ||
| customize: true, | ||
| }, | ||
| }, | ||
| }, | ||
| }); | ||
|
|
||
| expect(result).toEqual({ | ||
| id: mockDon.id, | ||
| orderId: mockDon.order_id, | ||
| createDatetime: mockDon.create_datetime, | ||
| updateDatetime: mockDon.update_datetime, | ||
| status: 'ordered', | ||
| customizes: mockDon.customizes.map((c) => ({ | ||
| id: c.customize.id, | ||
| label: c.customize.label, | ||
| available: c.customize.available, | ||
| isDiscount: c.is_discount, | ||
| })), | ||
| }); | ||
|
|
||
| expect(donStatus).toHaveBeenCalledWith(1); | ||
| }); | ||
|
|
||
| it('カスタマイズがないDonを正常に取得する場合', async () => { | ||
| const donId = randomUUID(); | ||
| const orderId = randomUUID(); | ||
| const mockDon = { | ||
| id: donId, | ||
| order_id: orderId, | ||
| create_datetime: new Date('2023-01-03'), | ||
| update_datetime: new Date('2023-01-04'), | ||
| status: 2, | ||
| order: { id: orderId }, | ||
| customizes: [], | ||
| }; | ||
|
|
||
| mockPrisma.dons.findUnique.mockResolvedValue(mockDon); | ||
| vi.mocked(donStatus).mockReturnValue('cooking'); | ||
|
|
||
| const result = await getDonFromIdUseCase(donId); | ||
|
|
||
| expect(mockPrisma.dons.findUnique).toHaveBeenCalledWith({ | ||
| where: { | ||
| id: donId, | ||
| }, | ||
| include: { | ||
| order: true, | ||
| customizes: { | ||
| include: { | ||
| customize: true, | ||
| }, | ||
| }, | ||
| }, | ||
| }); | ||
|
|
||
| expect(result).toEqual({ | ||
| id: mockDon.id, | ||
| orderId: mockDon.order_id, | ||
| createDatetime: mockDon.create_datetime, | ||
| updateDatetime: mockDon.update_datetime, | ||
| status: 'cooking', | ||
| customizes: [], | ||
| }); | ||
|
|
||
| expect(donStatus).toHaveBeenCalledWith(2); | ||
| }); | ||
|
|
||
| it('指定されたIDのDonが見つからない場合にApiErrorを投げる', async () => { | ||
| const donId = randomUUID(); | ||
|
|
||
| mockPrisma.dons.findUnique.mockResolvedValue(null); | ||
|
|
||
| await expect(getDonFromIdUseCase(donId)).rejects.toThrow(ApiError); | ||
| await expect(getDonFromIdUseCase(donId)).rejects.toThrow('INTERNAL_PROBLEMS'); | ||
|
|
||
| expect(mockPrisma.dons.findUnique).toHaveBeenCalledWith({ | ||
| where: { | ||
| id: donId, | ||
| }, | ||
| include: { | ||
| order: true, | ||
| customizes: { | ||
| include: { | ||
| customize: true, | ||
| }, | ||
| }, | ||
| }, | ||
| }); | ||
| }); | ||
|
|
||
| it('donStatusがundefinedを返した時にApiErrorを投げる', async () => { | ||
| const donId = randomUUID(); | ||
| const orderId = randomUUID(); | ||
| const mockDon = { | ||
| id: donId, | ||
| order_id: orderId, | ||
| create_datetime: new Date('2023-01-01'), | ||
| update_datetime: new Date('2023-01-02'), | ||
| status: 999, // 無効なステータス | ||
| order: { id: orderId }, | ||
| customizes: [], | ||
| }; | ||
|
|
||
| mockPrisma.dons.findUnique.mockResolvedValue(mockDon); | ||
| vi.mocked(donStatus).mockReturnValue(undefined); | ||
|
|
||
| await expect(getDonFromIdUseCase(donId)).rejects.toThrow(ApiError); | ||
| await expect(getDonFromIdUseCase(donId)).rejects.toThrow('INTERNAL_PROBLEMS'); | ||
|
|
||
| expect(donStatus).toHaveBeenCalledWith(999); | ||
| }); | ||
| }); |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| import { components } from 'api/schema'; | ||
| import { ApiError } from '@/utils/ApiError'; | ||
| import { donStatus } from '@/utils/status'; | ||
| import prisma from '@/lib/prismaClient'; | ||
|
|
||
| type Don = components['schemas']['Don']; | ||
|
|
||
| export const getDonFromIdUseCase = async (id: string): Promise<Don> => { | ||
| // そのIDのDonを取得する | ||
| const don = await prisma.dons.findUnique({ | ||
| where: { | ||
| id: id, | ||
| }, | ||
| include: { | ||
| order: true, | ||
| customizes: { | ||
| include: { | ||
| customize: true, | ||
| }, | ||
| }, | ||
| }, | ||
| }); | ||
|
|
||
| // そのIDのDonがない場合,エラーを返す. | ||
| if (!don) { | ||
| throw ApiError.internalProblems(); | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. サーバー側のエラーではないのでinvalidParamsとかで良さそうです |
||
| } | ||
|
|
||
| const status = donStatus(don.status); | ||
| if (!status) throw ApiError.internalProblems(); | ||
|
|
||
| return { | ||
| id: don.id, | ||
| orderId: don.order_id, | ||
| createDatetime: don.create_datetime, | ||
| updateDatetime: don.update_datetime, | ||
| status, | ||
| customizes: don.customizes.map((c) => ({ | ||
| id: c.customize.id, | ||
| label: c.customize.label, | ||
| available: c.customize.available, | ||
| isDiscount: c.is_discount, | ||
| })), | ||
| }; | ||
| }; | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitsですがこういう時ってfromよりもby使ってるイメージあります