summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/gitlab_import/project_creator_spec.rb
blob: 4c0d64ed1389930388a41b9d0384bddb2422dc65 (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
require 'spec_helper'

describe Gitlab::GitlabImport::ProjectCreator do
  let(:user) { create(:user, gitlab_access_token: "asdffg") }
  let(:repo) { {
    name: 'vim',
    path: 'vim',
    visibility_level: Gitlab::VisibilityLevel::PRIVATE,
    path_with_namespace: 'asd/vim',
    http_url_to_repo: "https://gitlab.com/asd/vim.git",
    owner: {name: "john"}}.with_indifferent_access
  }
  let(:namespace){ create(:namespace) }

  it 'creates project' do
    allow_any_instance_of(Project).to receive(:add_import_job)
    
    project_creator = Gitlab::GitlabImport::ProjectCreator.new(repo, namespace, user)
    project = project_creator.execute
    
    expect(project.import_url).to eq("https://oauth2:asdffg@gitlab.com/asd/vim.git")
    expect(project.visibility_level).to eq(Gitlab::VisibilityLevel::PRIVATE)
  end
end