2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-06 13:55:51 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-01-15 10:47:25 +01:00
|
|
|
RSpec.describe 'API Markers' do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let(:scopes) { 'read:statuses write:statuses' }
|
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
|
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
2019-09-06 13:55:51 +02:00
|
|
|
|
2024-01-15 10:47:25 +01:00
|
|
|
describe 'GET /api/v1/markers' do
|
2019-09-06 13:55:51 +02:00
|
|
|
before do
|
|
|
|
Fabricate(:marker, timeline: 'home', last_read_id: 123, user: user)
|
|
|
|
Fabricate(:marker, timeline: 'notifications', last_read_id: 456, user: user)
|
|
|
|
|
2024-01-15 10:47:25 +01:00
|
|
|
get '/api/v1/markers', headers: headers, params: { timeline: %w(home notifications) }
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'returns markers', :aggregate_failures do
|
|
|
|
expect(response).to have_http_status(200)
|
2024-09-03 10:03:08 +02:00
|
|
|
expect(body_as_json)
|
|
|
|
.to include(
|
|
|
|
home: include(last_read_id: '123'),
|
|
|
|
notifications: include(last_read_id: '456')
|
|
|
|
)
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-01-15 10:47:25 +01:00
|
|
|
describe 'POST /api/v1/markers' do
|
2019-09-06 13:55:51 +02:00
|
|
|
context 'when no marker exists' do
|
|
|
|
before do
|
2024-01-15 10:47:25 +01:00
|
|
|
post '/api/v1/markers', headers: headers, params: { home: { last_read_id: '69420' } }
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'creates a marker', :aggregate_failures do
|
2019-09-06 13:55:51 +02:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(user.markers.first.timeline).to eq 'home'
|
2023-02-18 03:05:57 +01:00
|
|
|
expect(user.markers.first.last_read_id).to eq 69_420
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a marker exists' do
|
|
|
|
before do
|
2024-01-15 10:47:25 +01:00
|
|
|
post '/api/v1/markers', headers: headers, params: { home: { last_read_id: '69420' } }
|
|
|
|
post '/api/v1/markers', headers: headers, params: { home: { last_read_id: '70120' } }
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'updates a marker', :aggregate_failures do
|
2019-09-06 13:55:51 +02:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
expect(user.markers.first.timeline).to eq 'home'
|
2023-02-18 03:05:57 +01:00
|
|
|
expect(user.markers.first.last_read_id).to eq 70_120
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
end
|
2024-02-06 13:47:04 +01:00
|
|
|
|
|
|
|
context 'when database object becomes stale' do
|
|
|
|
before do
|
|
|
|
allow(Marker).to receive(:transaction).and_raise(ActiveRecord::StaleObjectError)
|
|
|
|
post '/api/v1/markers', headers: headers, params: { home: { last_read_id: '69420' } }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns error json' do
|
|
|
|
expect(response)
|
|
|
|
.to have_http_status(409)
|
|
|
|
expect(body_as_json)
|
|
|
|
.to include(error: /Conflict during update/)
|
|
|
|
end
|
|
|
|
end
|
2019-09-06 13:55:51 +02:00
|
|
|
end
|
|
|
|
end
|