2019-10-17 02:07:30 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-30 17:42:02 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Projects (JavaScript fixtures)', type: :controller do
|
2021-03-03 16:11:13 -05:00
|
|
|
include ApiHelpers
|
2017-01-30 17:42:02 -05:00
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
2019-02-21 11:55:14 -05:00
|
|
|
runners_token = 'runnerstoken:intabulasreferre'
|
|
|
|
|
2022-10-28 11:10:51 -04:00
|
|
|
let(:namespace) { create(:namespace, name: 'frontend-fixtures') }
|
2021-03-03 16:11:13 -05:00
|
|
|
let(:project) { create(:project, namespace: namespace, path: 'builds-project', runners_token: runners_token, avatar: fixture_file_upload('spec/fixtures/dk.png', 'image/png')) }
|
|
|
|
let(:project_with_repo) { create(:project, :repository, description: 'Code and stuff', avatar: fixture_file_upload('spec/fixtures/dk.png', 'image/png')) }
|
2019-02-21 11:55:14 -05:00
|
|
|
let(:project_variable_populated) { create(:project, namespace: namespace, path: 'builds-project2', runners_token: runners_token) }
|
2022-01-21 16:16:35 -05:00
|
|
|
let(:user) { project.first_owner }
|
2017-01-30 17:42:02 -05:00
|
|
|
|
|
|
|
render_views
|
|
|
|
|
2017-08-10 18:31:42 -04:00
|
|
|
before do
|
2020-12-07 07:10:00 -05:00
|
|
|
project_with_repo.add_maintainer(user)
|
|
|
|
sign_in(user)
|
2017-01-30 17:42:02 -05:00
|
|
|
end
|
|
|
|
|
2017-08-22 19:19:35 -04:00
|
|
|
after do
|
|
|
|
remove_repository(project)
|
|
|
|
end
|
|
|
|
|
2018-01-16 16:13:14 -05:00
|
|
|
describe ProjectsController, '(JavaScript fixtures)', type: :controller do
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'projects/overview.html' do
|
2018-12-19 14:50:20 -05:00
|
|
|
get :show, params: {
|
2018-09-06 03:27:39 -04:00
|
|
|
namespace_id: project_with_repo.namespace.to_param,
|
|
|
|
id: project_with_repo
|
2018-12-19 14:50:20 -05:00
|
|
|
}
|
2018-09-06 03:27:39 -04:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2018-09-06 03:27:39 -04:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'projects/edit.html' do
|
2018-12-19 14:50:20 -05:00
|
|
|
get :edit, params: {
|
2018-01-16 16:13:14 -05:00
|
|
|
namespace_id: project.namespace.to_param,
|
|
|
|
id: project
|
2018-12-19 14:50:20 -05:00
|
|
|
}
|
2018-01-16 16:13:14 -05:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2018-01-16 16:13:14 -05:00
|
|
|
end
|
|
|
|
end
|
2021-03-03 16:11:13 -05:00
|
|
|
|
|
|
|
describe GraphQL::Query, type: :request do
|
|
|
|
include GraphqlHelpers
|
|
|
|
|
|
|
|
context 'access token projects query' do
|
|
|
|
before do
|
|
|
|
project_variable_populated.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
base_input_path = 'access_tokens/graphql/queries/'
|
|
|
|
base_output_path = 'graphql/projects/access_tokens/'
|
|
|
|
query_name = 'get_projects.query.graphql'
|
|
|
|
|
|
|
|
it "#{base_output_path}#{query_name}.json" do
|
2021-07-01 14:07:29 -04:00
|
|
|
query = get_graphql_query_as_string("#{base_input_path}#{query_name}")
|
2021-03-03 16:11:13 -05:00
|
|
|
|
|
|
|
post_graphql(query, current_user: user, variables: { search: '', first: 2 })
|
|
|
|
|
|
|
|
expect_graphql_errors_to_be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-01-30 17:42:02 -05:00
|
|
|
end
|