Commit d66d1097 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #6594 from tsigo/rs-small-changes

Small changes
parents 92c811e8 760f827b
module Gitlab module Gitlab
class SatelliteNotExistError < StandardError; end class SatelliteNotExistError < StandardError
def initialize(msg = "Satellite doesn't exist")
super
end
end
module Satellite module Satellite
class Satellite class Satellite
...@@ -17,14 +21,9 @@ module Gitlab ...@@ -17,14 +21,9 @@ module Gitlab
Gitlab::Satellite::Logger.error(message) Gitlab::Satellite::Logger.error(message)
end end
def raise_no_satellite
raise SatelliteNotExistError.new("Satellite doesn't exist")
end
def clear_and_update! def clear_and_update!
raise_no_satellite unless exists? raise SatelliteNotExistError unless exists?
File.exists? path
@repo = nil @repo = nil
clear_working_dir! clear_working_dir!
delete_heads! delete_heads!
...@@ -55,7 +54,7 @@ module Gitlab ...@@ -55,7 +54,7 @@ module Gitlab
# * Changes the current directory to the satellite's working dir # * Changes the current directory to the satellite's working dir
# * Yields # * Yields
def lock def lock
raise_no_satellite unless exists? raise SatelliteNotExistError unless exists?
File.open(lock_file, "w+") do |f| File.open(lock_file, "w+") do |f|
begin begin
...@@ -77,7 +76,7 @@ module Gitlab ...@@ -77,7 +76,7 @@ module Gitlab
end end
def repo def repo
raise_no_satellite unless exists? raise SatelliteNotExistError unless exists?
@repo ||= Grit::Repo.new(path) @repo ||= Grit::Repo.new(path)
end end
......
...@@ -29,7 +29,6 @@ module TestEnv ...@@ -29,7 +29,6 @@ module TestEnv
disable_mailer if opts[:mailer] == false disable_mailer if opts[:mailer] == false
setup_stubs setup_stubs
clear_test_repo_dir if opts[:init_repos] == true clear_test_repo_dir if opts[:init_repos] == true
setup_test_repos(opts) if opts[:repos] == true setup_test_repos(opts) if opts[:repos] == true
end end
...@@ -165,8 +164,7 @@ module TestEnv ...@@ -165,8 +164,7 @@ module TestEnv
def clear_test_repo_dir def clear_test_repo_dir
setup_stubs setup_stubs
# Use tmp dir for FS manipulations
repos_path = testing_path()
# Remove tmp/test-git-base-path # Remove tmp/test-git-base-path
FileUtils.rm_rf Gitlab.config.gitlab_shell.repos_path FileUtils.rm_rf Gitlab.config.gitlab_shell.repos_path
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment