You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.4 KiB

  1. require 'rails_helper'
  2. RSpec.describe Api::V1::BookmarksController, type: :controller do
  3. render_views
  4. let(:user) { Fabricate(:user) }
  5. let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:bookmarks') }
  6. describe 'GET #index' do
  7. context 'without token' do
  8. it 'returns http unauthorized' do
  9. get :index
  10. expect(response).to have_http_status :unauthorized
  11. end
  12. end
  13. context 'with token' do
  14. context 'without read scope' do
  15. before do
  16. allow(controller).to receive(:doorkeeper_token) do
  17. Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: '')
  18. end
  19. end
  20. it 'returns http forbidden' do
  21. get :index
  22. expect(response).to have_http_status :forbidden
  23. end
  24. end
  25. context 'without valid resource owner' do
  26. before do
  27. token = Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read')
  28. user.destroy!
  29. allow(controller).to receive(:doorkeeper_token) { token }
  30. end
  31. it 'returns http unprocessable entity' do
  32. get :index
  33. expect(response).to have_http_status :unprocessable_entity
  34. end
  35. end
  36. context 'with read scope and valid resource owner' do
  37. before do
  38. allow(controller).to receive(:doorkeeper_token) do
  39. Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read')
  40. end
  41. end
  42. it 'shows bookmarks owned by the user' do
  43. bookmarked_by_user = Fabricate(:bookmark, account: user.account)
  44. bookmarked_by_others = Fabricate(:bookmark)
  45. get :index
  46. expect(assigns(:statuses)).to match_array [bookmarked_by_user.status]
  47. end
  48. it 'adds pagination headers if necessary' do
  49. bookmark = Fabricate(:bookmark, account: user.account)
  50. get :index, params: { limit: 1 }
  51. expect(response.headers['Link'].find_link(['rel', 'next']).href).to eq "http://test.host/api/v1/bookmarks?limit=1&max_id=#{bookmark.id}"
  52. expect(response.headers['Link'].find_link(['rel', 'prev']).href).to eq "http://test.host/api/v1/bookmarks?limit=1&since_id=#{bookmark.id}"
  53. end
  54. it 'does not add pagination headers if not necessary' do
  55. get :index
  56. expect(response.headers['Link']).to eq nil
  57. end
  58. end
  59. end
  60. end
  61. end