debian-mirror-gitlab/spec/models/ci/runner_namespace_spec.rb

39 lines
1 KiB
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Ci::RunnerNamespace do
it_behaves_like 'includes Limitable concern' do
subject { build(:ci_runner_namespace, group: create(:group, :nested), runner: create(:ci_runner, :group)) }
end
2022-03-02 08:16:31 +05:30
it_behaves_like 'cleanup by a loose foreign key' do
let!(:model) { create(:ci_runner_namespace) }
let!(:parent) { model.namespace }
end
2023-03-04 22:38:38 +05:30
describe '.for_runner' do
subject(:for_runner) { described_class.for_runner(runner_ids) }
let_it_be(:group) { create(:group) }
let_it_be(:runners) { create_list(:ci_runner, 3, :group, groups: [group]) }
context 'with runner ids' do
let(:runner_ids) { runners[1..2].map(&:id) }
it 'returns requested runner namespaces' do
is_expected.to eq(runners[1..2].flat_map(&:runner_namespaces))
end
end
context 'with runners' do
let(:runner_ids) { runners.first }
it 'returns requested runner namespaces' do
is_expected.to eq(runners.first.runner_namespaces)
end
end
end
2021-06-08 01:23:25 +05:30
end