summaryrefslogtreecommitdiff
path: root/spec/controllers/admin/identities_controller_spec.rb
blob: 68695afdb616a64a1b689c9bbce79f65d26c718a (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
27
28
29
30
31
# frozen_string_literal: true

require 'spec_helper'

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

  before do
    sign_in(admin)
  end

  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, params: { 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, params: { user_id: user.username, id: user.ldap_identity.id }
    end
  end
end