2017-04-30 18:29:34 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-06-29 00:13:10 -04:00
|
|
|
describe 'Admin::RequestsProfilesController' do
|
2017-04-30 18:29:34 -04:00
|
|
|
before do
|
|
|
|
FileUtils.mkdir_p(Gitlab::RequestProfiler::PROFILES_DIR)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(create(:admin))
|
2017-04-30 18:29:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
Gitlab::RequestProfiler.remove_all_profiles
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET /admin/requests_profiles' do
|
|
|
|
it 'shows the current profile token' do
|
|
|
|
allow(Rails).to receive(:cache).and_return(ActiveSupport::Cache::MemoryStore.new)
|
|
|
|
|
|
|
|
visit admin_requests_profiles_path
|
|
|
|
|
|
|
|
expect(page).to have_content("X-Profile-Token: #{Gitlab::RequestProfiler.profile_token}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'lists all available profiles' do
|
|
|
|
time1 = 1.hour.ago
|
|
|
|
time2 = 2.hours.ago
|
|
|
|
time3 = 3.hours.ago
|
|
|
|
profile1 = "|gitlab-org|gitlab-ce_#{time1.to_i}.html"
|
|
|
|
profile2 = "|gitlab-org|gitlab-ce_#{time2.to_i}.html"
|
|
|
|
profile3 = "|gitlab-com|infrastructure_#{time3.to_i}.html"
|
|
|
|
|
|
|
|
FileUtils.touch("#{Gitlab::RequestProfiler::PROFILES_DIR}/#{profile1}")
|
|
|
|
FileUtils.touch("#{Gitlab::RequestProfiler::PROFILES_DIR}/#{profile2}")
|
|
|
|
FileUtils.touch("#{Gitlab::RequestProfiler::PROFILES_DIR}/#{profile3}")
|
|
|
|
|
|
|
|
visit admin_requests_profiles_path
|
|
|
|
|
2018-04-10 13:11:34 -04:00
|
|
|
within('.card', text: '/gitlab-org/gitlab-ce') do
|
2017-04-30 18:29:34 -04:00
|
|
|
expect(page).to have_selector("a[href='#{admin_requests_profile_path(profile1)}']", text: time1.to_s(:long))
|
|
|
|
expect(page).to have_selector("a[href='#{admin_requests_profile_path(profile2)}']", text: time2.to_s(:long))
|
|
|
|
end
|
|
|
|
|
2018-04-10 13:11:34 -04:00
|
|
|
within('.card', text: '/gitlab-com/infrastructure') do
|
2017-04-30 18:29:34 -04:00
|
|
|
expect(page).to have_selector("a[href='#{admin_requests_profile_path(profile3)}']", text: time3.to_s(:long))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET /admin/requests_profiles/:profile' do
|
|
|
|
context 'when a profile exists' do
|
|
|
|
it 'displays the content of the profile' do
|
|
|
|
content = 'This is a request profile'
|
|
|
|
profile = "|gitlab-org|gitlab-ce_#{Time.now.to_i}.html"
|
|
|
|
|
|
|
|
File.write("#{Gitlab::RequestProfiler::PROFILES_DIR}/#{profile}", content)
|
|
|
|
|
|
|
|
visit admin_requests_profile_path(profile)
|
|
|
|
|
|
|
|
expect(page).to have_content(content)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a profile does not exist' do
|
|
|
|
it 'shows an error message' do
|
|
|
|
visit admin_requests_profile_path('|non|existent_12345.html')
|
|
|
|
|
|
|
|
expect(page).to have_content('Profile not found')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|