2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Projects::PipelinesController, '(JavaScript fixtures)', type: :controller do
|
2017-09-10 17:25:29 +05:30
|
|
|
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 }
|
2019-09-04 21:01:54 +05:30
|
|
|
let!(:user) { create(:user, developer_projects: [project], email: commit.author_email) }
|
2017-09-10 17:25:29 +05:30
|
|
|
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
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
before do
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'pipelines/pipelines.json' do
|
2019-02-15 15:39:39 +05:30
|
|
|
get :index, params: {
|
2017-09-10 17:25:29 +05:30
|
|
|
namespace_id: namespace,
|
2019-02-15 15:39:39 +05:30
|
|
|
project_id: project
|
|
|
|
}, format: :json
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
expect(response).to be_successful
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|