d745ff0431
This new attribute is optional and used when set instead of the default format `gitlab+deploy-token-#{id}`. Empty usernames will be saved as null in the database. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/50228.
212 lines
6 KiB
Ruby
212 lines
6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe DeployToken do
|
|
subject(:deploy_token) { create(:deploy_token) }
|
|
|
|
it { is_expected.to have_many :project_deploy_tokens }
|
|
it { is_expected.to have_many(:projects).through(:project_deploy_tokens) }
|
|
|
|
describe 'validations' do
|
|
let(:username_format_message) { "can contain only letters, digits, '_', '-', '+', and '.'" }
|
|
|
|
it { is_expected.to validate_length_of(:username).is_at_most(255) }
|
|
it { is_expected.to allow_value('GitLab+deploy_token-3.14').for(:username) }
|
|
it { is_expected.not_to allow_value('<script>').for(:username).with_message(username_format_message) }
|
|
it { is_expected.not_to allow_value('').for(:username).with_message(username_format_message) }
|
|
end
|
|
|
|
describe '#ensure_token' do
|
|
it 'ensures a token' do
|
|
deploy_token.token = nil
|
|
deploy_token.save
|
|
|
|
expect(deploy_token.token).not_to be_empty
|
|
end
|
|
end
|
|
|
|
describe '#ensure_at_least_one_scope' do
|
|
context 'with at least one scope' do
|
|
it 'is valid' do
|
|
is_expected.to be_valid
|
|
end
|
|
end
|
|
|
|
context 'with no scopes' do
|
|
it 'is invalid' do
|
|
deploy_token = build(:deploy_token, read_repository: false, read_registry: false)
|
|
|
|
expect(deploy_token).not_to be_valid
|
|
expect(deploy_token.errors[:base].first).to eq("Scopes can't be blank")
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#scopes' do
|
|
context 'with all the scopes' do
|
|
it 'returns scopes assigned to DeployToken' do
|
|
expect(deploy_token.scopes).to eq([:read_repository, :read_registry])
|
|
end
|
|
end
|
|
|
|
context 'with only one scope' do
|
|
it 'returns scopes assigned to DeployToken' do
|
|
deploy_token = create(:deploy_token, read_registry: false)
|
|
expect(deploy_token.scopes).to eq([:read_repository])
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#revoke!' do
|
|
it 'updates revoke attribute' do
|
|
deploy_token.revoke!
|
|
expect(deploy_token.revoked?).to be_truthy
|
|
end
|
|
end
|
|
|
|
describe "#active?" do
|
|
context "when it has been revoked" do
|
|
it 'returns false' do
|
|
deploy_token.revoke!
|
|
expect(deploy_token.active?).to be_falsy
|
|
end
|
|
end
|
|
|
|
context "when it hasn't been revoked and is not expired" do
|
|
it 'returns true' do
|
|
expect(deploy_token.active?).to be_truthy
|
|
end
|
|
end
|
|
|
|
context "when it hasn't been revoked and is expired" do
|
|
it 'returns true' do
|
|
deploy_token.update_attribute(:expires_at, Date.today - 5.days)
|
|
expect(deploy_token.active?).to be_falsy
|
|
end
|
|
end
|
|
|
|
context "when it hasn't been revoked and has no expiry" do
|
|
let(:deploy_token) { create(:deploy_token, expires_at: nil) }
|
|
|
|
it 'returns true' do
|
|
expect(deploy_token.active?).to be_truthy
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#username' do
|
|
context 'persisted records' do
|
|
it 'returns a default username if none is set' do
|
|
expect(deploy_token.username).to eq("gitlab+deploy-token-#{deploy_token.id}")
|
|
end
|
|
|
|
it 'returns the username provided if one is set' do
|
|
deploy_token = create(:deploy_token, username: 'deployer')
|
|
|
|
expect(deploy_token.username).to eq('deployer')
|
|
end
|
|
end
|
|
|
|
context 'new records' do
|
|
it 'returns nil if no username is set' do
|
|
deploy_token = build(:deploy_token)
|
|
|
|
expect(deploy_token.username).to be_nil
|
|
end
|
|
|
|
it 'returns the username provided if one is set' do
|
|
deploy_token = build(:deploy_token, username: 'deployer')
|
|
|
|
expect(deploy_token.username).to eq('deployer')
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#has_access_to?' do
|
|
let(:project) { create(:project) }
|
|
|
|
subject { deploy_token.has_access_to?(project) }
|
|
|
|
context 'when deploy token is active and related to project' do
|
|
let(:deploy_token) { create(:deploy_token, projects: [project]) }
|
|
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'when deploy token is active but not related to project' do
|
|
let(:deploy_token) { create(:deploy_token) }
|
|
|
|
it { is_expected.to be_falsy }
|
|
end
|
|
|
|
context 'when deploy token is revoked and related to project' do
|
|
let(:deploy_token) { create(:deploy_token, :revoked, projects: [project]) }
|
|
|
|
it { is_expected.to be_falsy }
|
|
end
|
|
|
|
context 'when deploy token is revoked and not related to the project' do
|
|
let(:deploy_token) { create(:deploy_token, :revoked) }
|
|
|
|
it { is_expected.to be_falsy }
|
|
end
|
|
end
|
|
|
|
describe '#expires_at' do
|
|
context 'when using Forever.date' do
|
|
let(:deploy_token) { create(:deploy_token, expires_at: nil) }
|
|
|
|
it 'returns nil' do
|
|
expect(deploy_token.expires_at).to be_nil
|
|
end
|
|
end
|
|
|
|
context 'when using a personalized date' do
|
|
let(:expires_at) { Date.today + 5.months }
|
|
let(:deploy_token) { create(:deploy_token, expires_at: expires_at) }
|
|
|
|
it 'returns the personalized date' do
|
|
expect(deploy_token.expires_at).to eq(expires_at)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#expires_at=' do
|
|
context 'when passing nil' do
|
|
let(:deploy_token) { create(:deploy_token, expires_at: nil) }
|
|
|
|
it 'assigns Forever.date' do
|
|
expect(deploy_token.read_attribute(:expires_at)).to eq(Forever.date)
|
|
end
|
|
end
|
|
|
|
context 'when passign a value' do
|
|
let(:expires_at) { Date.today + 5.months }
|
|
let(:deploy_token) { create(:deploy_token, expires_at: expires_at) }
|
|
|
|
it 'respects the value' do
|
|
expect(deploy_token.read_attribute(:expires_at)).to eq(expires_at)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '.gitlab_deploy_token' do
|
|
let(:project) { create(:project ) }
|
|
|
|
subject { project.deploy_tokens.gitlab_deploy_token }
|
|
|
|
context 'with a gitlab deploy token associated' do
|
|
it 'returns the gitlab deploy token' do
|
|
deploy_token = create(:deploy_token, :gitlab_deploy_token, projects: [project])
|
|
is_expected.to eq(deploy_token)
|
|
end
|
|
end
|
|
|
|
context 'with no gitlab deploy token associated' do
|
|
it 'returns nil' do
|
|
is_expected.to be_nil
|
|
end
|
|
end
|
|
end
|
|
end
|