debian-mirror-gitlab/spec/routing/environments_spec.rb

51 lines
1.3 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'environments routing' do
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
2017-08-17 22:00:37 +05:30
let(:environment) do
create(:environment, project: project,
name: 'staging-1.0/review')
end
let(:environments_route) do
2020-01-01 13:55:28 +05:30
"#{project.full_path}/-/environments/"
2017-08-17 22:00:37 +05:30
end
describe 'routing environment folders' do
context 'when using JSON format' do
it 'correctly matches environment name and JSON format' do
expect(get_folder('staging-1.0.json'))
.to route_to(*folder_action(id: 'staging-1.0', format: 'json'))
end
end
context 'when using HTML format' do
it 'correctly matches environment name and HTML format' do
expect(get_folder('staging-1.0.html'))
.to route_to(*folder_action(id: 'staging-1.0', format: 'html'))
end
end
context 'when using implicit format' do
it 'correctly matches environment name' do
expect(get_folder('staging-1.0'))
.to route_to(*folder_action(id: 'staging-1.0'))
end
end
end
def get_folder(folder)
2020-01-01 13:55:28 +05:30
get("#{project.full_path}/-/environments/folders/#{folder}")
2017-08-17 22:00:37 +05:30
end
def folder_action(**opts)
2019-09-30 21:07:59 +05:30
options = { namespace_id: project.namespace.path,
project_id: project.path }
2017-08-17 22:00:37 +05:30
['projects/environments#folder', options.merge(opts)]
end
end