104 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
require 'spec_helper'
 | 
						|
 | 
						|
describe Gitlab::Client do
 | 
						|
  it { should respond_to :repo_branches }
 | 
						|
  it { should respond_to :repo_branch }
 | 
						|
  it { should respond_to :repo_protect_branch }
 | 
						|
  it { should respond_to :repo_unprotect_branch }
 | 
						|
 | 
						|
  describe ".branches" do
 | 
						|
    before do
 | 
						|
      stub_get("/projects/3/repository/branches", "branches")
 | 
						|
      @branches = Gitlab.branches(3)
 | 
						|
    end
 | 
						|
 | 
						|
    it "should get the correct resource" do
 | 
						|
      expect(a_get("/projects/3/repository/branches")).to have_been_made
 | 
						|
    end
 | 
						|
 | 
						|
    it "should return an array of repository branches" do
 | 
						|
      expect(@branches).to be_an Array
 | 
						|
      expect(@branches.first.name).to eq("api")
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe ".branch" do
 | 
						|
    before do
 | 
						|
      stub_get("/projects/3/repository/branches/api", "branch")
 | 
						|
      @branch = Gitlab.branch(3, "api")
 | 
						|
    end
 | 
						|
 | 
						|
    it "should get the correct resource" do
 | 
						|
      expect(a_get("/projects/3/repository/branches/api")).to have_been_made
 | 
						|
    end
 | 
						|
 | 
						|
    it "should return information about a repository branch" do
 | 
						|
      expect(@branch.name).to eq("api")
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe ".protect_branch" do
 | 
						|
    before do
 | 
						|
      stub_put("/projects/3/repository/branches/api/protect", "protect_branch")
 | 
						|
      @branch = Gitlab.protect_branch(3, "api")
 | 
						|
    end
 | 
						|
 | 
						|
    it "should get the correct resource" do
 | 
						|
      expect(a_put("/projects/3/repository/branches/api/protect")).to have_been_made
 | 
						|
    end
 | 
						|
 | 
						|
    it "should return information about a protected repository branch" do
 | 
						|
      expect(@branch.name).to eq("api")
 | 
						|
      expect(@branch.protected).to eq(true)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe ".unprotect_branch" do
 | 
						|
    before do
 | 
						|
      stub_put("/projects/3/repository/branches/api/unprotect", "unprotect_branch")
 | 
						|
      @branch = Gitlab.unprotect_branch(3, "api")
 | 
						|
    end
 | 
						|
 | 
						|
    it "should get the correct resource" do
 | 
						|
      expect(a_put("/projects/3/repository/branches/api/unprotect")).to have_been_made
 | 
						|
    end
 | 
						|
 | 
						|
    it "should return information about an unprotected repository branch" do
 | 
						|
      expect(@branch.name).to eq("api")
 | 
						|
      expect(@branch.protected).to eq(false)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe ".create_branch" do
 | 
						|
    context "with branch name" do
 | 
						|
      before do
 | 
						|
        stub_post("/projects/3/repository/branches", "create_branch")
 | 
						|
        @branch = Gitlab.create_branch(3, "api","master")
 | 
						|
      end
 | 
						|
 | 
						|
      it "should get the correct resource" do
 | 
						|
        expect(a_post("/projects/3/repository/branches")).to have_been_made
 | 
						|
      end
 | 
						|
 | 
						|
      it "should return information about a new repository branch" do
 | 
						|
        expect(@branch.name).to eq("api")
 | 
						|
      end
 | 
						|
    end
 | 
						|
    context "with commit hash" do
 | 
						|
      before do
 | 
						|
        stub_post("/projects/3/repository/branches", "create_branch")
 | 
						|
        @branch = Gitlab.create_branch(3, "api","949b1df930bedace1dbd755aaa4a82e8c451a616")
 | 
						|
      end
 | 
						|
 | 
						|
      it "should get the correct resource" do
 | 
						|
        expect(a_post("/projects/3/repository/branches")).to have_been_made
 | 
						|
      end
 | 
						|
 | 
						|
      it "should return information about a new repository branch" do
 | 
						|
        expect(@branch.name).to eq("api")
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
end
 |