2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe ChatName do
|
2018-03-17 18:26:18 +05:30
|
|
|
set(:chat_name) { create(:chat_name) }
|
|
|
|
subject { chat_name }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
it { is_expected.to belong_to(:service) }
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
|
|
|
|
|
|
it { is_expected.to validate_presence_of(:user) }
|
|
|
|
it { is_expected.to validate_presence_of(:service) }
|
|
|
|
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(:user_id).scoped_to(:service_id) }
|
|
|
|
it { is_expected.to validate_uniqueness_of(:chat_id).scoped_to(:service_id, :team_id) }
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
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
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|