summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/environments/sample_metrics_controller_spec.rb
blob: 19b07a2ccc4b3b5fe1ca2ec04078f5a2dc8a29da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# frozen_string_literal: true

require 'spec_helper'

describe Projects::Environments::SampleMetricsController do
  include StubENV

  let_it_be(:project) { create(:project) }
  let_it_be(:environment) { create(:environment, project: project) }
  let_it_be(:user) { create(:user) }

  before do
    project.add_reporter(user)
    sign_in(user)
  end

  describe 'GET #query' do
    context 'when the file is not found' do
      before do
        get :query, params: environment_params
      end

      it 'returns a 404' do
        expect(response).to have_gitlab_http_status(:not_found)
      end
    end

    context 'when the sample data is found' do
      before do
        allow_next_instance_of(Metrics::SampleMetricsService) do |service|
          allow(service).to receive(:query).and_return([])
        end
        get :query, params: environment_params
      end

      it 'returns JSON with a message and a 200 status code' do
        expect(json_response.keys).to contain_exactly('status', 'data')
        expect(response).to have_gitlab_http_status(:ok)
      end
    end
  end

  private

  def environment_params(params = {})
    {
      id: environment.id.to_s,
      namespace_id: project.namespace.full_path,
      project_id: project.name,
      identifier: 'sample_metric_query_result',
      start: '2019-12-02T23:31:45.000Z',
      end: '2019-12-03T00:01:45.000Z'
    }.merge(params)
  end
end