Class: Gitlab::QA::Component::Base

Inherits:
Object
  • Object
show all
Includes:
Scenario::Actable
Defined in:
lib/gitlab/qa/component/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Scenario::Actable

#act, included

Constructor Details

#initializeBase

Returns a new instance of Base.



11
12
13
14
15
16
17
18
# File 'lib/gitlab/qa/component/base.rb', line 11

def initialize
  @docker = Docker::Engine.new
  @environment = {}
  @volumes = {}
  @network_aliases = []

  self.exec_commands = []
end

Instance Attribute Details

#dockerObject (readonly)

Returns the value of attribute docker.



7
8
9
# File 'lib/gitlab/qa/component/base.rb', line 7

def docker
  @docker
end

#environmentObject

Returns the value of attribute environment.



8
9
10
# File 'lib/gitlab/qa/component/base.rb', line 8

def environment
  @environment
end

#exec_commands=(value) ⇒ Object

Sets the attribute exec_commands

Parameters:

  • value

    the value to set the attribute exec_commands to.



9
10
11
# File 'lib/gitlab/qa/component/base.rb', line 9

def exec_commands=(value)
  @exec_commands = value
end

#nameObject

Raises:

  • (NotImplementedError)


24
25
26
# File 'lib/gitlab/qa/component/base.rb', line 24

def name
  raise NotImplementedError, "#{self.class.name} must specify a default name"
end

#networkObject

Returns the value of attribute network.



8
9
10
# File 'lib/gitlab/qa/component/base.rb', line 8

def network
  @network
end

#volumesObject

Returns the value of attribute volumes.



8
9
10
# File 'lib/gitlab/qa/component/base.rb', line 8

def volumes
  @volumes
end

Instance Method Details

#add_network_alias(name) ⇒ Object



20
21
22
# File 'lib/gitlab/qa/component/base.rb', line 20

def add_network_alias(name)
  @network_aliases.push(name)
end

#hostnameObject



28
29
30
# File 'lib/gitlab/qa/component/base.rb', line 28

def hostname
  "#{name}.#{network}"
end

#imageObject

Raises:

  • (NotImplementedError)


32
33
34
35
36
# File 'lib/gitlab/qa/component/base.rb', line 32

def image
  return self.class.const_get('DOCKER_IMAGE') if self.class.const_defined?('DOCKER_IMAGE')

  raise NotImplementedError, "#{self.class.name} must specify a docker image as DOCKER_IMAGE"
end

#instanceObject Also known as: launch_and_teardown_instance



44
45
46
47
48
49
50
51
52
53
54
# File 'lib/gitlab/qa/component/base.rb', line 44

def instance
  prepare
  start
  reconfigure
  wait_until_ready
  process_exec_commands

  yield self if block_given?
ensure
  teardown
end

#prepareObject



58
59
60
61
# File 'lib/gitlab/qa/component/base.rb', line 58

def prepare
  prepare_docker_image
  prepare_network
end

#prepare_docker_imageObject



63
64
65
66
67
# File 'lib/gitlab/qa/component/base.rb', line 63

def prepare_docker_image
  return if Runtime::Env.skip_pull?

  pull
end

#prepare_networkObject



69
70
71
72
73
# File 'lib/gitlab/qa/component/base.rb', line 69

def prepare_network
  return if docker.network_exists?(network)

  docker.network_create(network)
end

#process_exec_commandsObject



117
118
119
# File 'lib/gitlab/qa/component/base.rb', line 117

def process_exec_commands
  exec_commands.each { |command| docker.exec(name, command) }
end

#pullObject



113
114
115
# File 'lib/gitlab/qa/component/base.rb', line 113

def pull
  docker.pull(image, tag)
end

#restartObject



98
99
100
101
102
# File 'lib/gitlab/qa/component/base.rb', line 98

def restart
  assert_name!

  docker.restart(name)
end

#startObject

rubocop:disable Metrics/AbcSize



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/gitlab/qa/component/base.rb', line 75

def start # rubocop:disable Metrics/AbcSize
  docker.run(image, tag) do |command|
    command << "-d"
    command << "--name #{name}"
    command << "--net #{network}"
    command << "--hostname #{hostname}"

    @volumes.to_h.each do |to, from|
      command.volume(to, from, 'Z')
    end

    command.volume(File.join(Runtime::Env.host_artifacts_dir, name, 'logs'), '/var/log/gitlab', 'Z')

    @environment.to_h.each do |key, value|
      command.env(key, value)
    end

    @network_aliases.to_a.each do |network_alias|
      command << "--network-alias #{network_alias}"
    end
  end
end

#tagObject

Raises:

  • (NotImplementedError)


38
39
40
41
42
# File 'lib/gitlab/qa/component/base.rb', line 38

def tag
  return self.class.const_get('DOCKER_IMAGE_TAG') if self.class.const_defined?('DOCKER_IMAGE_TAG')

  raise NotImplementedError, "#{self.class.name} must specify a docker image tag as DOCKER_IMAGE_TAG"
end

#teardownObject



104
105
106
107
108
109
110
111
# File 'lib/gitlab/qa/component/base.rb', line 104

def teardown
  assert_name!

  return unless docker.running?(name)

  docker.stop(name)
  docker.remove(name)
end