fork_context_spec.rb
1.78 KB
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
require 'spec_helper'
describe Projects::ForkContext do
  describe :fork_by_user do
    before do
      @from_namespace = create(:namespace)
      @from_user = create(:user, namespace: @from_namespace )
      @from_project = create(:project, creator_id: @from_user.id, namespace: @from_namespace)
      @to_namespace = create(:namespace)
      @to_user = create(:user, namespace: @to_namespace)
    end
    context 'fork project' do
      it "successfully creates project in the user namespace" do
        @to_project = fork_project(@from_project, @to_user)
        @to_project.owner.should == @to_user
        @to_project.namespace.should == @to_user.namespace
      end
    end
    context 'fork project failure' do
      it "fails due to transaction failure" do
        # make the mock gitlab-shell fail
        @to_project = fork_project(@from_project, @to_user, false)
        @to_project.errors.should_not be_empty
        @to_project.errors[:base].should include("Fork transaction failed.")
      end
    end
    context 'project already exists' do
      it "should fail due to validation, not transaction failure" do
        @existing_project = create(:project, creator_id: @to_user.id, name: @from_project.name, namespace: @to_namespace)
        @to_project = fork_project(@from_project, @to_user)
        @existing_project.persisted?.should be_true
        @to_project.errors[:base].should include("Invalid fork destination")
        @to_project.errors[:base].should_not include("Fork transaction failed.")
      end
    end
  end
  def fork_project(from_project, user, fork_success = true)
    context = Projects::ForkContext.new(from_project, user)
    shell = mock("gitlab_shell")
    shell.stub(fork_repository: fork_success)
    context.stub(gitlab_shell: shell)
    context.execute
  end
end