summaryrefslogtreecommitdiff
path: root/spec/models/forked_project_link_spec.rb
blob: e719e3bfcc831d3e5c9342157e5a23fab2b3d3a6 (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
61
62
63
64
65
66
67
# == Schema Information
#
# Table name: forked_project_links
#
#  id                     :integer          not null, primary key
#  forked_to_project_id   :integer          not null
#  forked_from_project_id :integer          not null
#  created_at             :datetime         not null
#  updated_at             :datetime         not null
#

require 'spec_helper'

describe ForkedProjectLink, "add link on fork" do
  let(:project_from) { create(:project) }
  let(:namespace) { create(:namespace) }
  let(:user) { create(:user, namespace: namespace) }

  before do
    @project_to = fork_project(project_from, user)
  end

  it "project_to should know it is forked" do
    @project_to.forked?.should be_true
  end

  it "project should know who it is forked from" do
    @project_to.forked_from_project.should == project_from
  end
end

describe :forked_from_project do
  let(:forked_project_link) { build(:forked_project_link) }
  let(:project_from) { create(:project) }
  let(:project_to) { create(:project, forked_project_link: forked_project_link) }


  before :each do
    forked_project_link.forked_from_project = project_from
    forked_project_link.forked_to_project = project_to
    forked_project_link.save!
  end


  it "project_to should know it is forked" do
    project_to.forked?.should be_true
  end

  it "project_from should not be forked" do
    project_from.forked?.should be_false
  end

  it "project_to.destroy should destroy fork_link" do
    forked_project_link.should_receive(:destroy)
    project_to.destroy
  end

end

def fork_project(from_project, user)
  context = Projects::ForkService.new(from_project, user)
  shell = double("gitlab_shell")
  shell.stub(fork_repository: true)
  context.stub(gitlab_shell: shell)
  context.execute
end