Class: Serverspec::Backend::Exec

Inherits:
Base
  • Object
show all
Defined in:
lib/serverspec/backend/exec.rb

Direct Known Subclasses

Ssh

Instance Method Summary collapse

Methods inherited from Base

#check_zero, #commands, #method_missing, #set_commands, #set_example

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Serverspec::Backend::Base

Instance Method Details

#add_pre_command(cmd) ⇒ Object



33
34
35
36
37
38
39
40
# File 'lib/serverspec/backend/exec.rb', line 33

def add_pre_command(cmd)
  path = Serverspec.configuration.path || RSpec.configuration.path
  if Serverspec.configuration.pre_command
    cmd = "#{Serverspec.configuration.pre_command} && #{cmd}"
    cmd = "env PATH=#{path}:$PATH #{cmd}" if path
  end
  cmd
end

#build_command(cmd) ⇒ Object



23
24
25
26
27
28
29
30
31
# File 'lib/serverspec/backend/exec.rb', line 23

def build_command(cmd)
  path = Serverspec.configuration.path || RSpec.configuration.path
  if path
    cmd = "env PATH=#{path}:$PATH #{cmd}"
    cmd.gsub!(/(\&\&\s*!?\(?\s*)/, "\\1env PATH=#{path}:$PATH ")
    cmd.gsub!(/(\|\|\s*!?\(?\s*)/, "\\1env PATH=#{path}:$PATH ")
  end
  cmd
end

#check_executable(file, by_whom) ⇒ Object



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/serverspec/backend/exec.rb', line 93

def check_executable(file, by_whom)
  mode = sprintf('%04s',run_command(commands.get_mode(file))[:stdout].strip)
  mode = mode.split('')
  mode_octal = mode[0].to_i * 512 + mode[1].to_i * 64 + mode[2].to_i * 8 + mode[3].to_i * 1
  case by_whom
  when nil
    mode_octal & 0111 != 0
  when 'owner'
    mode_octal & 0100 != 0
  when 'group'
    mode_octal & 0010 != 0
  when 'others'
    mode_octal & 0001 != 0
  end
end

#check_monitored_by_monit(process) ⇒ Object



50
51
52
53
54
55
56
57
58
59
# File 'lib/serverspec/backend/exec.rb', line 50

def check_monitored_by_monit(process)
  ret = run_command(commands.check_monitored_by_monit(process))
  return false unless ret[:stdout] != nil && ret[:exit_status] == 0

  retlines = ret[:stdout].split(/[\r\n]+/).map(&:strip)
  proc_index = retlines.index("Process '#{process}'")
  return false unless proc_index
  
  retlines[proc_index+2].match(/\Amonitoring status\s+monitored\Z/) != nil
end

#check_mounted(path, expected_attr, only_with) ⇒ Object



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/serverspec/backend/exec.rb', line 109

def check_mounted(path, expected_attr, only_with)
  ret = run_command(commands.check_mounted(path))
  if expected_attr.nil? || ret[:exit_status] != 0
    return ret[:exit_status] == 0
  end

  mount = ret[:stdout].scan(/\S+/)
  actual_attr    = { :device => mount[0], :type => mount[4] }
  mount[5].gsub(/\(|\)/, '').split(',').each do |option|
    name, val = option.split('=')
    if val.nil?
      actual_attr[name.to_sym] = true
    else
      val = val.to_i if val.match(/^\d+$/)
      actual_attr[name.to_sym] = val
    end
  end

  if ! expected_attr[:options].nil?
    expected_attr.merge!(expected_attr[:options])
    expected_attr.delete(:options)
  end

  if only_with
    actual_attr == expected_attr
  else
    expected_attr.each do |key, val|
      return false if actual_attr[key] != val
    end
    true
  end
end

#check_osObject



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# File 'lib/serverspec/backend/exec.rb', line 160

def check_os
  return RSpec.configuration.os if RSpec.configuration.os
  if run_command('ls /etc/redhat-release')[:exit_status] == 0
    'RedHat'
  elsif run_command('ls /etc/system-release')[:exit_status] == 0
    'RedHat' # Amazon Linux
  elsif run_command('ls /etc/debian_version')[:exit_status] == 0
    'Debian'
  elsif run_command('ls /etc/gentoo-release')[:exit_status] == 0
    'Gentoo'
  elsif run_command('uname -s')[:stdout] =~ /AIX/i
     'AIX'
  elsif (os = run_command('uname -sr')[:stdout]) && os =~ /SunOS/i
    if os =~ /5.10/
      'Solaris10'
    elsif run_command('grep -q "Oracle Solaris 11" /etc/release')[:exit_status] == 0
      'Solaris11'
    elsif run_command('grep -q SmartOS /etc/release')[:exit_status] == 0
      'SmartOS'
    else
      'Solaris'
    end
  elsif run_command('uname -s')[:stdout] =~ /Darwin/i
    'Darwin'
  elsif run_command('uname -s')[:stdout] =~ /FreeBSD/i
    'FreeBSD'
  else
    'Base'
  end
end

#check_readable(file, by_whom) ⇒ Object



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/serverspec/backend/exec.rb', line 61

def check_readable(file, by_whom)
  mode = sprintf('%04s',run_command(commands.get_mode(file))[:stdout].strip)
  mode = mode.split('')
  mode_octal = mode[0].to_i * 512 + mode[1].to_i * 64 + mode[2].to_i * 8 + mode[3].to_i * 1
  case by_whom
  when nil
    mode_octal & 0444 != 0
  when 'owner'
    mode_octal & 0400 != 0
  when 'group'
    mode_octal & 0040 != 0
  when 'others'
    mode_octal & 0004 != 0
  end
end

#check_routing_table(expected_attr) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/serverspec/backend/exec.rb', line 142

def check_routing_table(expected_attr)
  return false if ! expected_attr[:destination]
  ret = run_command(commands.check_routing_table(expected_attr[:destination]))
  return false if ret[:exit_status] != 0

  ret[:stdout] =~ /^(\S+)(?: via (\S+))? dev (\S+).+\r\n(?:default via (\S+))?/
  actual_attr = {
    :destination => $1,
    :gateway     => $2 ? $2 : $4,
    :interface   => expected_attr[:interface] ? $3 : nil
  }

  expected_attr.each do |key, val|
    return false if actual_attr[key] != val
  end
  true
end

#check_running(process) ⇒ Object



42
43
44
45
46
47
48
# File 'lib/serverspec/backend/exec.rb', line 42

def check_running(process)
  ret = run_command(commands.check_running(process))
  if ret[:exit_status] == 1 || ret[:stdout] =~ /stopped/
    ret = run_command(commands.check_process(process))
  end
  ret[:exit_status] == 0
end

#check_writable(file, by_whom) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/serverspec/backend/exec.rb', line 77

def check_writable(file, by_whom)
  mode = sprintf('%04s',run_command(commands.get_mode(file))[:stdout].strip)
  mode = mode.split('')
  mode_octal = mode[0].to_i * 512 + mode[1].to_i * 64 + mode[2].to_i * 8 + mode[3].to_i * 1
  case by_whom
  when nil
    mode_octal & 0222 != 0
  when 'owner'
    mode_octal & 0200 != 0
  when 'group'
    mode_octal & 0020 != 0
  when 'others'
    mode_octal & 0002 != 0
  end
end

#run_command(cmd, opts = {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/serverspec/backend/exec.rb', line 7

def run_command(cmd, opts={})
  cmd = build_command(cmd)
  cmd = add_pre_command(cmd)
  stdout = `#{build_command(cmd)} 2>&1`
  # In ruby 1.9, it is possible to use Open3.capture3, but not in 1.8
  #stdout, stderr, status = Open3.capture3(cmd)

  if @example
    @example.[:command] = cmd
    @example.[:stdout]  = stdout
  end

  { :stdout => stdout, :stderr => nil,
    :exit_status => $?, :exit_signal => nil }
end