debian-mirror-gitlab/spec/tasks/gitlab/usage_data_rake_spec.rb

26 lines
742 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
require 'rake_helper'
RSpec.describe 'gitlab:usage data take tasks' do
2021-04-29 21:17:54 +05:30
include UsageDataHelpers
2020-11-24 15:15:51 +05:30
before do
Rake.application.rake_require 'tasks/gitlab/usage_data'
# stub prometheus external http calls https://gitlab.com/gitlab-org/gitlab/-/issues/245277
2021-04-29 21:17:54 +05:30
stub_prometheus_queries
2020-11-24 15:15:51 +05:30
end
describe 'dump_sql_in_yaml' do
it 'dumps SQL queries in yaml format' do
expect { run_rake_task('gitlab:usage_data:dump_sql_in_yaml') }.to output(/.*recorded_at:.*/).to_stdout
end
end
describe 'dump_sql_in_json' do
it 'dumps SQL queries in json format' do
expect { run_rake_task('gitlab:usage_data:dump_sql_in_json') }.to output(/.*"recorded_at":.*/).to_stdout
end
end
end