Welcome to mirror list, hosted at ThFree Co, Russian Federation.

forks_spec.rb « api « ci « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f5dc0bc1d98f7884493248c9a6300141f7c7731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
require 'spec_helper'

describe Ci::API::API do
  include ApiHelpers

  let(:project) { FactoryGirl.create(:ci_project) }
  let(:gitlab_url) { GitlabCi.config.gitlab_server.url }
  let(:private_token) { Network.new.authenticate(access_token: "some_token")["private_token"] }

  let(:options) do
    {
      private_token: private_token,
      url: gitlab_url
    }
  end

  before do
    stub_gitlab_calls
  end


  describe "POST /forks" do
    let(:project_info) do
      {
        project_id: project.gitlab_id,
        project_token: project.token,
        data: {
          id:                  2,
          name_with_namespace: "Gitlab.org / Underscore",
          path_with_namespace: "gitlab-org/underscore",
          default_branch:      "master",
          ssh_url_to_repo:     "git@example.com:gitlab-org/underscore"
        }
      }
    end

    context "with valid info" do
      before do
        options.merge!(project_info)
      end

      it "should create a project with valid data" do
        post api("/forks"), options
        expect(response.status).to eq(201)
        expect(json_response['name']).to eq("Gitlab.org / Underscore")
      end
    end

    context "with invalid project info" do
      before do
        options.merge!({})
      end

      it "should error with invalid data" do
        post api("/forks"), options
        expect(response.status).to eq(400)
      end
    end
  end
end