summaryrefslogtreecommitdiff
path: root/spec/controllers/admin/identities_controller_spec.rb
blob: c131d22a30a6078e02ddf359b5c5705daf90633f (plain)
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
require 'spec_helper'

describe Admin::IdentitiesController do
  let(:admin) { create(:admin) }
  before { sign_in(admin) }

  describe 'UPDATE identity' do
    let(:user) { create(:omniauth_user, provider: 'ldapmain', extern_uid: 'uid=myuser,ou=people,dc=example,dc=com') }

    it 'repairs ldap blocks' do
      expect_any_instance_of(RepairLdapBlockedUserService).to receive(:execute)

      put :update, user_id: user.username, id: user.ldap_identity.id, identity: { provider: 'twitter' }
    end
  end

  describe 'DELETE identity' do
    let(:user) { create(:omniauth_user, provider: 'ldapmain', extern_uid: 'uid=myuser,ou=people,dc=example,dc=com') }

    it 'repairs ldap blocks' do
      expect_any_instance_of(RepairLdapBlockedUserService).to receive(:execute)

      delete :destroy, user_id: user.username, id: user.ldap_identity.id
    end
  end
end