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.



373
374
375
376
377
378
379
380
# File 'lib/gitlab/qa/component/gitlab.rb', line 373

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



382
383
384
385
386
387
388
389
390
# File 'lib/gitlab/qa/component/gitlab.rb', line 382

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

    sleep 1
  end

  false
end

#uriObject



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

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

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