mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe 'Installation::Onboarding API', type: :request do
 | 
						|
  let(:super_admin) { create(:super_admin) }
 | 
						|
 | 
						|
  describe 'GET /installation/onboarding' do
 | 
						|
    context 'when CHATWOOT_INSTALLATION_ONBOARDING redis key is not set' do
 | 
						|
      it 'redirects back' do
 | 
						|
        expect(Redis::Alfred.get(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING)).to be_nil
 | 
						|
        get '/installation/onboarding'
 | 
						|
        expect(response).to have_http_status(:redirect)
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'when CHATWOOT_INSTALLATION_ONBOARDING redis key is set' do
 | 
						|
      it 'returns onboarding page' do
 | 
						|
        Redis::Alfred.set(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING, true)
 | 
						|
        get '/installation/onboarding'
 | 
						|
        expect(response).to have_http_status(:success)
 | 
						|
        Redis::Alfred.delete(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING)
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe 'POST /installation/onboarding' do
 | 
						|
    let(:account_builder) { double }
 | 
						|
 | 
						|
    before do
 | 
						|
      allow(AccountBuilder).to receive(:new).and_return(account_builder)
 | 
						|
      allow(account_builder).to receive(:perform).and_return(true)
 | 
						|
      allow(ChatwootHub).to receive(:register_instance).and_return(true)
 | 
						|
      Redis::Alfred.set(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING, true)
 | 
						|
    end
 | 
						|
 | 
						|
    after do
 | 
						|
      Redis::Alfred.delete(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING)
 | 
						|
    end
 | 
						|
 | 
						|
    context 'when onboarding successfull' do
 | 
						|
      it 'deletes the redis key' do
 | 
						|
        post '/installation/onboarding', params: { user: {} }
 | 
						|
        expect(Redis::Alfred.get(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING)).to be_nil
 | 
						|
      end
 | 
						|
 | 
						|
      it 'will not call register instance when checkboxes are unchecked' do
 | 
						|
        post '/installation/onboarding', params: { user: {} }
 | 
						|
        expect(ChatwootHub).not_to have_received(:register_instance)
 | 
						|
      end
 | 
						|
 | 
						|
      it 'will call register instance when checkboxes are checked' do
 | 
						|
        post '/installation/onboarding', params: { user: {}, subscribe_to_updates: 1 }
 | 
						|
        expect(ChatwootHub).to have_received(:register_instance)
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'when onboarding is not successfull' do
 | 
						|
      it 'does not deletes the redis key' do
 | 
						|
        allow(AccountBuilder).to receive(:new).and_raise('error')
 | 
						|
        post '/installation/onboarding', params: { user: {} }
 | 
						|
        expect(Redis::Alfred.get(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING)).not_to be_nil
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |