diff options
author | Sean McGivern <sean@gitlab.com> | 2018-03-21 16:22:56 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2018-03-21 17:18:33 +0000 |
commit | e236180618c785ccf210fcf4847242ca814731d3 (patch) | |
tree | 64d948d34b5855459ab1c26d104ba8e341586138 /spec | |
parent | a9a31ce31d47510ef2133f3389b8a1c0bbee3c35 (diff) | |
download | gitlab-ce-e236180618c785ccf210fcf4847242ca814731d3.tar.gz |
Add query counts by model to profiler outputadd-query-counts-to-profiler-output
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/gitlab/profiler_spec.rb | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/spec/lib/gitlab/profiler_spec.rb b/spec/lib/gitlab/profiler_spec.rb index 3d5b56cd5b8..548eb28fe4d 100644 --- a/spec/lib/gitlab/profiler_spec.rb +++ b/spec/lib/gitlab/profiler_spec.rb @@ -110,8 +110,8 @@ describe Gitlab::Profiler do custom_logger.debug('User Load (1.3ms)') custom_logger.debug('Project Load (10.4ms)') - expect(custom_logger.load_times_by_model).to eq('User' => 2.5, - 'Project' => 10.4) + expect(custom_logger.load_times_by_model).to eq('User' => [1.2, 1.3], + 'Project' => [10.4]) end it 'logs the backtrace, ignoring lines as appropriate' do @@ -164,4 +164,24 @@ describe Gitlab::Profiler do end end end + + describe '.log_load_times_by_model' do + it 'logs the model, query count, and time by slowest first' do + expect(null_logger).to receive(:load_times_by_model).and_return( + 'User' => [1.2, 1.3], + 'Project' => [10.4] + ) + + expect(null_logger).to receive(:info).with('Project total (1): 10.4ms') + expect(null_logger).to receive(:info).with('User total (2): 2.5ms') + + described_class.log_load_times_by_model(null_logger) + end + + it 'does nothing when called with a logger that does not have load times' do + expect(null_logger).not_to receive(:info) + + expect(described_class.log_load_times_by_model(null_logger)).to be_nil + end + end end |