gitlab-org--gitlab-foss/spec/support/stub_gitlab_calls.rb

107 lines
3.8 KiB
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
module StubGitlabCalls
def stub_gitlab_calls
stub_session
stub_user
stub_project_8
stub_project_8_hooks
stub_projects
stub_projects_owned
stub_ci_enable
end
def stub_js_gitlab_calls
2015-09-10 14:55:09 +00:00
allow_any_instance_of(Network).to receive(:projects) { project_hash_array }
2015-08-26 01:42:46 +00:00
end
def stub_ci_pipeline_to_return_yaml_file
stub_ci_pipeline_yaml_file(gitlab_ci_yaml)
2015-10-05 11:12:00 +00:00
end
def stub_ci_pipeline_yaml_file(ci_yaml)
allow_any_instance_of(Ci::Pipeline).to receive(:ci_yaml_file) { ci_yaml }
2015-10-05 11:12:00 +00:00
end
def stub_ci_builds_disabled
allow_any_instance_of(Project).to receive(:builds_enabled?).and_return(false)
end
2016-05-16 23:03:55 +00:00
def stub_container_registry_config(registry_settings)
allow(Gitlab.config.registry).to receive_messages(registry_settings)
2016-05-17 04:40:40 +00:00
allow(Auth::ContainerRegistryAuthenticationService).to receive(:full_access_token).and_return('token')
2016-05-16 23:03:55 +00:00
end
def stub_container_registry_tags(*tags)
2016-05-09 20:32:18 +00:00
allow_any_instance_of(ContainerRegistry::Client).to receive(:repository_tags).and_return(
{ "tags" => tags }
)
allow_any_instance_of(ContainerRegistry::Client).to receive(:repository_manifest).and_return(
JSON.load(File.read(Rails.root + 'spec/fixtures/container_registry/tag_manifest.json'))
)
allow_any_instance_of(ContainerRegistry::Client).to receive(:blob).and_return(
File.read(Rails.root + 'spec/fixtures/container_registry/config_blob.json')
)
end
2015-08-26 01:42:46 +00:00
private
def gitlab_url
2015-09-10 14:04:06 +00:00
Gitlab.config.gitlab.url
2015-08-26 01:42:46 +00:00
end
def stub_session
f = File.read(Rails.root.join('spec/support/gitlab_stubs/session.json'))
stub_request(:post, "#{gitlab_url}api/v3/session.json").
2015-09-14 11:37:18 +00:00
with(body: "{\"email\":\"test@test.com\",\"password\":\"123456\"}",
headers: { 'Content-Type' => 'application/json' }).
to_return(status: 201, body: f, headers: { 'Content-Type' => 'application/json' })
2015-08-26 01:42:46 +00:00
end
def stub_user
f = File.read(Rails.root.join('spec/support/gitlab_stubs/user.json'))
stub_request(:get, "#{gitlab_url}api/v3/user?private_token=Wvjy2Krpb7y8xi93owUz").
with(headers: { 'Content-Type' => 'application/json' }).
to_return(status: 200, body: f, headers: { 'Content-Type' => 'application/json' })
2015-08-26 01:42:46 +00:00
stub_request(:get, "#{gitlab_url}api/v3/user?access_token=some_token").
with(headers: { 'Content-Type' => 'application/json' }).
to_return(status: 200, body: f, headers: { 'Content-Type' => 'application/json' })
2015-08-26 01:42:46 +00:00
end
def stub_project_8
data = File.read(Rails.root.join('spec/support/gitlab_stubs/project_8.json'))
2015-09-10 14:55:09 +00:00
allow_any_instance_of(Network).to receive(:project).and_return(JSON.parse(data))
2015-08-26 01:42:46 +00:00
end
def stub_project_8_hooks
data = File.read(Rails.root.join('spec/support/gitlab_stubs/project_8_hooks.json'))
2015-09-10 14:55:09 +00:00
allow_any_instance_of(Network).to receive(:project_hooks).and_return(JSON.parse(data))
2015-08-26 01:42:46 +00:00
end
def stub_projects
f = File.read(Rails.root.join('spec/support/gitlab_stubs/projects.json'))
2015-09-10 14:04:06 +00:00
2015-08-26 01:42:46 +00:00
stub_request(:get, "#{gitlab_url}api/v3/projects.json?archived=false&ci_enabled_first=true&private_token=Wvjy2Krpb7y8xi93owUz").
with(headers: { 'Content-Type' => 'application/json' }).
to_return(status: 200, body: f, headers: { 'Content-Type' => 'application/json' })
2015-08-26 01:42:46 +00:00
end
def stub_projects_owned
stub_request(:get, "#{gitlab_url}api/v3/projects/owned.json?archived=false&ci_enabled_first=true&private_token=Wvjy2Krpb7y8xi93owUz").
with(headers: { 'Content-Type' => 'application/json' }).
2015-09-14 11:37:18 +00:00
to_return(status: 200, body: "", headers: {})
2015-08-26 01:42:46 +00:00
end
def stub_ci_enable
stub_request(:put, "#{gitlab_url}api/v3/projects/2/services/gitlab-ci.json?private_token=Wvjy2Krpb7y8xi93owUz").
with(headers: { 'Content-Type' => 'application/json' }).
2015-09-14 11:37:18 +00:00
to_return(status: 200, body: "", headers: {})
2015-08-26 01:42:46 +00:00
end
def project_hash_array
f = File.read(Rails.root.join('spec/support/gitlab_stubs/projects.json'))
2015-09-14 11:37:18 +00:00
JSON.parse f
2015-08-26 01:42:46 +00:00
end
end