projects_spec.rb 4.0 KB
Newer Older
G
gitlabhq 已提交
1 2 3 4 5 6
require 'spec_helper'

describe "Projects" do
  before { login_as :user }

  describe "GET /projects" do
N
Nihad Abbasov 已提交
7
    before do
G
gitlabhq 已提交
8 9
      @project = Factory :project
      @project.add_access(@user, :read)
G
gitlabhq 已提交
10 11 12 13
      visit projects_path
    end

    it "should be on projects page" do
N
Nihad Abbasov 已提交
14
      current_path.should == projects_path
G
gitlabhq 已提交
15 16 17
    end

    it "should have link to new project" do
G
fixes  
gitlabhq 已提交
18
      page.should have_content("Create new project")
G
gitlabhq 已提交
19
    end
G
gitlabhq 已提交
20 21 22 23

    it "should have project" do 
      page.should have_content(@project.name)
    end
G
gitlabhq 已提交
24 25 26
  end

  describe "GET /projects/new" do
N
Nihad Abbasov 已提交
27
    before do
G
gitlabhq 已提交
28
      visit projects_path
G
fixes  
gitlabhq 已提交
29
      click_link "Create new project"
G
gitlabhq 已提交
30 31 32
    end

    it "should be correct path" do
N
Nihad Abbasov 已提交
33
      current_path.should == new_project_path
G
gitlabhq 已提交
34 35 36
    end

    it "should have labels for new project" do
N
Nihad Abbasov 已提交
37 38 39
      page.should have_content("Name")
      page.should have_content("Path")
      page.should have_content("Description")
G
gitlabhq 已提交
40 41 42 43
    end
  end

  describe "POST /projects" do
N
Nihad Abbasov 已提交
44
    before do
G
gitlabhq 已提交
45 46 47
      visit new_project_path
      fill_in 'Name', :with => 'NewProject'
      fill_in 'Code', :with => 'NPR'
G
gitlabhq 已提交
48
      fill_in 'Path', :with => 'newproject'
D
Dmitriy Zaporozhets 已提交
49
      expect { click_button "Save" }.to change { Project.count }.by(1)
G
gitlabhq 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
      @project = Project.last
    end

    it "should be correct path" do
      current_path.should == project_path(@project)
    end

    it "should show project" do
      page.should have_content(@project.name)
      page.should have_content(@project.path)
      page.should have_content(@project.description)
    end

    it "should init repo instructions" do
      page.should have_content("git remote")
      page.should have_content(@project.url_to_repo)
    end
  end

  describe "GET /projects/show" do
N
Nihad Abbasov 已提交
70
    before do
G
gitlabhq 已提交
71 72 73 74 75 76 77 78 79 80
      @project = Factory :project
      @project.add_access(@user, :read)

      visit project_path(@project)
    end

    it "should be correct path" do
      current_path.should == project_path(@project)
    end

81 82 83 84 85 86 87 88
    # TODO: replace with real one
    #it "should beahave like activities page" do
      #within ".project-update"  do
        #page.should have_content("master")
        #page.should have_content(@project.commit.author.name)
        #page.should have_content(@project.commit.safe_message)
      #end
    #end
G
gitlabhq 已提交
89 90 91
  end

  describe "GET /projects/team" do
N
Nihad Abbasov 已提交
92
    before do
G
gitlabhq 已提交
93 94 95 96 97 98 99 100 101 102 103 104
      @project = Factory :project
      @project.add_access(@user, :read)

      visit team_project_path(@project,
                              :path => ValidCommit::BLOB_FILE_PATH,
                              :commit_id => ValidCommit::ID)
    end

    it "should be correct path" do
      current_path.should == team_project_path(@project)
    end

N
Nihad Abbasov 已提交
105
    it "should have as as team member" do
G
gitlabhq 已提交
106 107 108 109 110
      page.should have_content(@user.name)
    end
  end

  describe "GET /projects/:id/edit" do
N
Nihad Abbasov 已提交
111
    before do
G
gitlabhq 已提交
112 113 114 115 116 117 118 119 120 121 122
      @project = Factory :project
      @project.add_access(@user, :admin, :read)

      visit edit_project_path(@project)
    end

    it "should be correct path" do
      current_path.should == edit_project_path(@project)
    end

    it "should have labels for new project" do
N
Nihad Abbasov 已提交
123 124 125
      page.should have_content("Name")
      page.should have_content("Path")
      page.should have_content("Description")
G
gitlabhq 已提交
126 127 128 129
    end
  end

  describe "PUT /projects/:id" do
N
Nihad Abbasov 已提交
130
    before do
G
gitlabhq 已提交
131 132 133 134 135 136 137 138
      @project = Factory :project
      @project.add_access(@user, :admin, :read)

      visit edit_project_path(@project)

      fill_in 'Name', :with => 'Awesome'
      fill_in 'Path', :with => 'legit'
      fill_in 'Description', :with => 'Awesome project'
D
Dmitriy Zaporozhets 已提交
139
      click_button "Save"
G
gitlabhq 已提交
140 141 142 143
      @project = @project.reload
    end

    it "should be correct path" do
D
Dmitriy Zaporozhets 已提交
144
      current_path.should == info_project_path(@project)
G
gitlabhq 已提交
145 146 147 148 149 150 151 152
    end

    it "should show project" do
      page.should have_content("Awesome")
    end
  end

  #describe "DELETE /projects/:id", :js => true do
N
Nihad Abbasov 已提交
153
    #before do
G
gitlabhq 已提交
154 155 156 157 158 159
      #@project = Factory :project
      #@project.add_access(@user, :read, :admin)
      #visit projects_path
    #end

    #it "should be correct path" do
N
Nihad Abbasov 已提交
160
      #expect { click_link "Destroy" }.to change {Project.count}.by(1)
G
gitlabhq 已提交
161 162 163
    #end
  #end
end