debian-mirror-gitlab/spec/frontend/fixtures/runner_instructions.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
Ruby
Raw Normal View History

2023-03-04 22:38:38 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Runner Instructions (JavaScript fixtures)', feature_category: :runner do
include ApiHelpers
include JavaScriptFixturesHelpers
include GraphqlHelpers
2023-03-17 16:20:25 +05:30
query_path = 'vue_shared/components/runner_instructions/graphql'
2023-03-04 22:38:38 +05:30
describe GraphQL::Query do
describe 'get_runner_platforms.query.graphql', type: :request do
let_it_be(:query) do
get_graphql_query_as_string("#{query_path}/get_runner_platforms.query.graphql")
end
it 'graphql/runner_instructions/get_runner_platforms.query.graphql.json' do
post_graphql(query)
expect_graphql_errors_to_be_empty
end
end
describe 'get_runner_setup.query.graphql', type: :request do
let_it_be(:query) do
get_graphql_query_as_string("#{query_path}/get_runner_setup.query.graphql")
end
it 'graphql/runner_instructions/get_runner_setup.query.graphql.json' do
post_graphql(query, variables: { platform: 'linux', architecture: 'amd64' })
expect_graphql_errors_to_be_empty
end
it 'graphql/runner_instructions/get_runner_setup.query.graphql.windows.json' do
post_graphql(query, variables: { platform: 'windows', architecture: 'amd64' })
expect_graphql_errors_to_be_empty
end
end
end
end