Class: Gitlab::QA::Component::Gitlab::Availability

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab/qa/component/gitlab.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, relative_path: '', scheme: 'http', protocol_port: 80) ⇒ Availability

Returns a new instance of Availability.



380
381
382
383
384
385
386
387
# File 'lib/gitlab/qa/component/gitlab.rb', line 380

def initialize(name, relative_path: '', scheme: 'http', protocol_port: 80)
  @docker = Docker::Engine.new

  @name = name
  @scheme = scheme
  @relative_path = relative_path
  @protocol_port = protocol_port
end

Instance Method Details

#check(retries) ⇒ Object



389
390
391
392
393
394
395
396
397
# File 'lib/gitlab/qa/component/gitlab.rb', line 389

def check(retries)
  retries.times do
    return true if service_available?

    sleep 1
  end

  false
end

#uriObject



399
400
401
402
403
404
405
# File 'lib/gitlab/qa/component/gitlab.rb', line 399

def uri
  @uri ||= begin
    port = docker.port(name, protocol_port).split(':').last

    URI.join("#{scheme}://#{docker.hostname}:#{port}", relative_path)
  end
end