about summary refs log tree commit diff
path: root/spec/controllers/api/v1/devices_controller_spec.rb
blob: 745a462e3f0551f7ead7b47deba138cb3ca2c871 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'rails_helper'

RSpec.describe Api::V1::DevicesController, type: :controller do
  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:token) { double acceptable?: true, resource_owner_id: user.id }

  before do
    allow(controller).to receive(:doorkeeper_token) { token }
  end

  describe 'POST #register' do
    before do
      post :register, params: { registration_id: 'foo123' }
    end

    it 'returns http success' do
      expect(response).to have_http_status(:success)
    end

    it 'registers device' do
      expect(Device.where(account: user.account, registration_id: 'foo123').first).to_not be_nil
    end
  end

  describe 'POST #unregister' do
    before do
      post :unregister, params: { registration_id: 'foo123' }
    end

    it 'returns http success' do
      expect(response).to have_http_status(:success)
    end

    it 'removes device' do
      expect(Device.where(account: user.account, registration_id: 'foo123').first).to be_nil
    end
  end
end