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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Client do
it { is_expected.to respond_to :repo_branches }
it { is_expected.to respond_to :repo_branch }
it { is_expected.to respond_to :repo_protect_branch }
it { is_expected.to respond_to :repo_unprotect_branch }
it { is_expected.to respond_to :repo_create_branch }
it { is_expected.to respond_to :repo_delete_branch }
it { is_expected.to respond_to :repo_delete_merged_branches }
it { is_expected.to respond_to :repo_protected_branches }
it { is_expected.to respond_to :repo_protected_branch }
describe '.branches' do
before do
stub_get('/projects/3/repository/branches', 'branches')
@branches = Gitlab.branches(3)
end
it 'gets the correct resource' do
expect(a_get('/projects/3/repository/branches')).to have_been_made
end
it 'returns a paginated response of repository branches' do
expect(@branches).to be_a Gitlab::PaginatedResponse
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 'gets the correct resource' do
expect(a_get('/projects/3/repository/branches/api')).to have_been_made
end
it 'returns information about a repository branch' do
expect(@branch.name).to eq('api')
end
end
describe '.protect_branch' do
before do
stub_post('/projects/3/protected_branches', 'branch')
end
context 'without options' do
before do
@branch = Gitlab.protect_branch(3, 'api')
end
it 'updates the correct resource' do
expect(a_post('/projects/3/protected_branches')).to have_been_made
end
it 'returns information about a protected repository branch' do
expect(@branch.name).to eq('api')
end
end
context 'with options' do
before do
@branch = Gitlab.protect_branch(3, 'api', developers_can_push: true)
end
it 'updates the correct resource with the correct options' do
expect(
a_post('/projects/3/protected_branches').with(body: { name: 'api', developers_can_push: 'true' })
).to have_been_made
end
end
end
describe '.unprotect_branch' do
before do
stub_delete('/projects/3/protected_branches/api', 'branch')
@branch = Gitlab.unprotect_branch(3, 'api')
end
it 'gets the correct resource' do
expect(a_delete('/projects/3/protected_branches/api')).to have_been_made
end
it 'returns information about an unprotected repository branch' do
expect(@branch.name).to eq('api')
end
end
describe '.create_branch' do
before do
stub_post('/projects/3/repository/branches', 'branch').with(query: { branch: 'api', ref: 'master' })
@branch = Gitlab.create_branch(3, 'api', 'master')
end
it 'gets the correct resource' do
expect(
a_post('/projects/3/repository/branches').with(query: { branch: 'api', ref: 'master' })
).to have_been_made
end
it 'returns information about a new repository branch' do
expect(@branch.name).to eq('api')
end
end
describe '.delete_branch' do
before do
stub_delete('/projects/3/repository/branches/api', 'branch_delete')
@branch = Gitlab.delete_branch(3, 'api')
end
it 'gets the correct resource' do
expect(a_delete('/projects/3/repository/branches/api')).to have_been_made
end
it 'returns information about the deleted repository branch' do
expect(@branch.branch_name).to eq('api')
end
end
describe '.delete_merged_branches' do
before do
stub_delete('/projects/3/repository/merged_branches', 'empty')
@branch = Gitlab.delete_merged_branches(3)
end
it 'gets the correct resource' do
expect(a_delete('/projects/3/repository/merged_branches')).to have_been_made
end
end
describe '.protected_branches' do
before do
stub_get('/projects/3/protected_branches', 'protected_branches')
@branches = Gitlab.protected_branches(3)
end
it 'gets the correct resource' do
expect(a_get('/projects/3/protected_branches')).to have_been_made
end
it 'returns information about the protected_branches' do
expect(@branches).to be_a Gitlab::PaginatedResponse
expect(@branches.first.merge_access_levels).to be_a Array
expect(@branches.first.push_access_levels).to be_a Array
end
end
describe '.protected_branch' do
before do
stub_get('/projects/3/protected_branches/master', 'protected_branch')
@branch = Gitlab.protected_branch(3, 'master')
end
it 'gets the correct resource' do
expect(a_get('/projects/3/protected_branches/master')).to have_been_made
end
it 'returns correct information about the protected_branch' do
expect(@branch.name).to eq 'master'
expect(@branch.merge_access_levels).to be_a Array
expect(@branch.push_access_levels).to be_a Array
end
end
end
|