Use similar interface to access gitolite
Simplified gitolite handle logic Stubn over monkeypatch Stub only specific methods in Gitlab:Gitolite Moved grach auth to lib added specs for keys observer removes SshKey role
This commit is contained in:
parent
aded7056fd
commit
7cdc5b9e04
20 changed files with 155 additions and 88 deletions
35
spec/support/gitolite_stub.rb
Normal file
35
spec/support/gitolite_stub.rb
Normal file
|
@ -0,0 +1,35 @@
|
|||
module GitoliteStub
|
||||
def stub_gitolite!
|
||||
stub_gitlab_gitolite
|
||||
stub_gitolite_admin
|
||||
end
|
||||
|
||||
def stub_gitolite_admin
|
||||
gitolite_repo = mock(
|
||||
clean_permissions: true,
|
||||
add_permission: true
|
||||
)
|
||||
|
||||
gitolite_config = mock(
|
||||
add_repo: true,
|
||||
get_repo: gitolite_repo,
|
||||
has_repo?: true
|
||||
)
|
||||
|
||||
gitolite_admin = double(
|
||||
'Gitolite::GitoliteAdmin',
|
||||
config: gitolite_config,
|
||||
save: true,
|
||||
)
|
||||
|
||||
Gitolite::GitoliteAdmin.stub(new: gitolite_admin)
|
||||
|
||||
end
|
||||
|
||||
def stub_gitlab_gitolite
|
||||
gitlab_gitolite = Gitlab::Gitolite.new
|
||||
Gitlab::Gitolite.stub(new: gitlab_gitolite)
|
||||
gitlab_gitolite.stub(configure: ->() { yield(self) })
|
||||
gitlab_gitolite.stub(update_keys: true)
|
||||
end
|
||||
end
|
|
@ -1,14 +1,6 @@
|
|||
# Stubbing Project <-> git host path
|
||||
# create project using Factory only
|
||||
class Project
|
||||
def update_repository
|
||||
true
|
||||
end
|
||||
|
||||
def destroy_repository
|
||||
true
|
||||
end
|
||||
|
||||
def path_to_repo
|
||||
File.join(Rails.root, "tmp", "tests", path)
|
||||
end
|
||||
|
@ -18,22 +10,6 @@ class Project
|
|||
end
|
||||
end
|
||||
|
||||
class Key
|
||||
def update_repository
|
||||
true
|
||||
end
|
||||
|
||||
def repository_delete_key
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
class UsersProject
|
||||
def update_repository
|
||||
true
|
||||
end
|
||||
end
|
||||
|
||||
class FakeSatellite
|
||||
def exists?
|
||||
true
|
||||
|
@ -43,9 +19,3 @@ class FakeSatellite
|
|||
true
|
||||
end
|
||||
end
|
||||
|
||||
class ProtectedBranch
|
||||
def update_repository
|
||||
true
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue