2019-10-17 02:07:30 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-26 01:25:26 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe Projects::PipelineSchedulesController, '(JavaScript fixtures)', type: :controller do
|
2018-01-26 01:25:26 -05:00
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
|
|
|
let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
|
|
|
|
let(:project) { create(:project, :public, :repository) }
|
2020-12-07 07:10:00 -05:00
|
|
|
let(:user) { project.owner }
|
|
|
|
let!(:pipeline_schedule) { create(:ci_pipeline_schedule, project: project, owner: user) }
|
|
|
|
let!(:pipeline_schedule_populated) { create(:ci_pipeline_schedule, project: project, owner: user) }
|
2018-01-26 01:25:26 -05:00
|
|
|
let!(:pipeline_schedule_variable1) { create(:ci_pipeline_schedule_variable, key: 'foo', value: 'foovalue', pipeline_schedule: pipeline_schedule_populated) }
|
|
|
|
let!(:pipeline_schedule_variable2) { create(:ci_pipeline_schedule_variable, key: 'bar', value: 'barvalue', pipeline_schedule: pipeline_schedule_populated) }
|
|
|
|
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before(:all) do
|
|
|
|
clean_frontend_fixtures('pipeline_schedules/')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2020-12-07 07:10:00 -05:00
|
|
|
sign_in(user)
|
2018-01-26 01:25:26 -05:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'pipeline_schedules/edit.html' do
|
2018-12-19 14:50:20 -05:00
|
|
|
get :edit, params: {
|
2018-01-26 01:25:26 -05:00
|
|
|
namespace_id: project.namespace.to_param,
|
|
|
|
project_id: project,
|
|
|
|
id: pipeline_schedule.id
|
2018-12-19 14:50:20 -05:00
|
|
|
}
|
2018-01-26 01:25:26 -05:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2018-01-26 01:25:26 -05:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'pipeline_schedules/edit_with_variables.html' do
|
2018-12-19 14:50:20 -05:00
|
|
|
get :edit, params: {
|
2018-01-26 01:25:26 -05:00
|
|
|
namespace_id: project.namespace.to_param,
|
|
|
|
project_id: project,
|
|
|
|
id: pipeline_schedule_populated.id
|
2018-12-19 14:50:20 -05:00
|
|
|
}
|
2018-01-26 01:25:26 -05:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2018-01-26 01:25:26 -05:00
|
|
|
end
|
|
|
|
end
|