mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
62 lines
1.6 KiB
Ruby
62 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe ChatName, feature_category: :integrations do
|
|
let_it_be_with_reload(:chat_name) { create(:chat_name) }
|
|
|
|
subject { chat_name }
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
it { is_expected.to validate_presence_of(:user) }
|
|
it { is_expected.to validate_presence_of(:team_id) }
|
|
it { is_expected.to validate_presence_of(:chat_id) }
|
|
|
|
it { is_expected.to validate_uniqueness_of(:chat_id).scoped_to(:team_id) }
|
|
|
|
it_behaves_like 'encrypted attribute', :token, :db_key_base_32 do
|
|
let(:record) { chat_name }
|
|
end
|
|
|
|
describe '#update_last_used_at', :clean_gitlab_redis_shared_state do
|
|
it 'updates the last_used_at timestamp' do
|
|
expect(subject.last_used_at).to be_nil
|
|
|
|
subject.update_last_used_at
|
|
|
|
expect(subject.last_used_at).to be_present
|
|
end
|
|
|
|
it 'does not update last_used_at if it was recently updated' do
|
|
subject.update_last_used_at
|
|
|
|
time = subject.last_used_at
|
|
|
|
subject.update_last_used_at
|
|
|
|
expect(subject.last_used_at).to eq(time)
|
|
end
|
|
|
|
it 'updates last_used_at if it was not recently updated' do
|
|
allow_next_instance_of(Gitlab::ExclusiveLease) do |lease|
|
|
allow(lease).to receive(:try_obtain).and_return('successful_lease_guid')
|
|
end
|
|
|
|
subject.update_last_used_at
|
|
|
|
new_time = ChatName::LAST_USED_AT_INTERVAL.from_now + 5.minutes
|
|
|
|
travel_to(new_time) do
|
|
subject.update_last_used_at
|
|
end
|
|
|
|
expect(subject.last_used_at).to be_like_time(new_time)
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'it has loose foreign keys' do
|
|
let(:factory_name) { :chat_name }
|
|
end
|
|
end
|