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

Enhance/#101 implement memo search test #109

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

shoutarou123
Copy link
Collaborator

対応するissue

対応内容

  • 検索機能のテストを追加しました。ご確認お願いします

@@ -58,6 +58,63 @@
expect(response).to have_http_status(:unauthorized)
end
end

context 'あいまい検索する場合' do
Copy link
Collaborator

Choose a reason for hiding this comment

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

contextは前提条件や状況を記載するので「あいまい検索する場合」だと少し抽象的かなと思いました!
条件や状況をとしては
クエリパラメータでタイトルが指定された時、コンテンツが指定された時、並び順が指定された時とあるので
contextブロックもその条件ごとに区切る方が意味がわかりやすいかなと思いました(仕様書としての機能もあるため)

たとえばここでいうと
context 'ログイン中かつ、タイトルが指定された場合'
のような形です!

let!(:first_memo) { create(:memo, title: 'メモタイトル1', content: 'メモコンテンツ1') }
let!(:second_memo) { create(:memo, title: 'メモタイトル2', content: 'メモコンテンツ2') }

before { sign_in(user) }
Copy link
Collaborator

Choose a reason for hiding this comment

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

上記2件のデータだけだと、部分一致検索ができている、いないにも関わらず2件ヒットすると思うので

      let!(:first_memo) { create(:memo, title: 'メモタイトル1', content: 'メモコンテンツ1') }
      let!(:second_memo) { create(:memo, title: 'メモタイトル2', content: 'メモコンテンツ2') }
      let!(:third_memo) { create(:memo, title: 'その他タイトル', content: 'その他コンテンツ') }

と合致しないデータも含めた方が良いかなと思いました!

Comment on lines 79 to 88
it 'コンテンツで部分一致するメモが返る' do
aggregate_failures do
get '/memos', params: { content: 'メモ' }
assert_request_schema_confirm
assert_response_schema_confirm(200)
expect(response.parsed_body['memos'].length).to eq(2)
result_memo_ids = response.parsed_body['memos'].pluck('id')
expect(result_memo_ids).to contain_exactly(first_memo.id, second_memo.id)
end
end
Copy link
Collaborator

Choose a reason for hiding this comment

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

ここも
context 'ログイン中かつ、コンテンツが指定された場合
のように条件ごとに切り分けましょう!

result_memo_ids = response.parsed_body['memos'].pluck('id')
expect(result_memo_ids).to eq([memo_c.id, memo_b.id, memo_a.id])
end
end
Copy link
Collaborator

Choose a reason for hiding this comment

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

ここも同様に昇順の場合、降順の場合でcontextをわけましょう!
context 'ログイン中かつ、並び順にdescが指定された場合'

describe GET /memosの記述が2つあることによりrubocopの警告を避けるためrubocop:disable RSpec/RepeatedExampleGroupDescription等の記述も追加。
@@ -60,6 +61,71 @@
end
end

describe 'GET /memos' do
Copy link
Collaborator

Choose a reason for hiding this comment

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

こちら新たに describeを追加する必要はないかなと思いました!
同様のPATHなので、今ある describe 'GET /memos' ブロックの中にテストを追加していくだけで良いと思いました。
よってExampleの重複の警告を除外するrubocopの記述も不要となるかと思います!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

検索機能のコントローラーのtestを書く
2 participants