summaryrefslogtreecommitdiff
path: root/spec/javascripts/fixtures/pipelines.rb
blob: 6b6b0eefab9eed6c5b8c3217e469c7495e44da24 (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
require 'spec_helper'

describe Projects::PipelinesController, '(JavaScript fixtures)', type: :controller do
  include JavaScriptFixturesHelpers

  let(:admin) { create(:admin) }
  let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
  let(:project) { create(:project, :repository, namespace: namespace, path: 'pipelines-project') }
  let(:commit) { create(:commit, project: project) }
  let(:commit_without_author) { RepoHelpers.another_sample_commit }
  let!(:user) { create(:user, developer_projects: [project], email: commit.author_email) }
  let!(:pipeline) { create(:ci_pipeline, project: project, sha: commit.id, user: user) }
  let!(:pipeline_without_author) { create(:ci_pipeline, project: project, sha: commit_without_author.id) }
  let!(:pipeline_without_commit) { create(:ci_pipeline, project: project, sha: '0000') }

  render_views

  before(:all) do
    clean_frontend_fixtures('pipelines/')
  end

  before do
    sign_in(admin)
  end

  it 'pipelines/pipelines.json' do
    get :index, params: {
      namespace_id: namespace,
      project_id: project
    }, format: :json

    expect(response).to be_success
  end
end