Module: PSWindows::Exec

Includes:
Beaker::CommandFactory, Beaker::DSL::Wrappers
Included in:
Host
Defined in:
lib/beaker/host/pswindows/exec.rb

Constant Summary collapse

ABS_CMD =
'c:\\\\windows\\\\system32\\\\cmd.exe'
CMD =
'cmd.exe'

Instance Attribute Summary

Attributes included from Beaker::CommandFactory

#assertions

Instance Method Summary collapse

Methods included from Beaker::DSL::Wrappers

#cfacter, #encode_command, #facter, #hiera, #powershell, #puppet

Methods included from Beaker::CommandFactory

#execute, #fail_test

Instance Method Details

#add_env_var(key, val) ⇒ Object

Add the provided key/val to the current ssh environment

Examples:

host.add_env_var('PATH', '/usr/bin:PATH')

Parameters:

  • key (String)

    The key to add the value to

  • val (String)

    The value for the key



86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/beaker/host/pswindows/exec.rb', line 86

def add_env_var key, val
  key = key.to_s.upcase
  #see if the key/value pair already exists
  cur_val = subbed_val = get_env_var(key, true)
  subbed_val = cur_val.gsub(/#{Regexp.escape(val.gsub(/'|"/, ''))}/, '')
  if cur_val.empty?
    exec(powershell("[Environment]::SetEnvironmentVariable('#{key}', '#{val}', 'Machine')"))
    self.close #refresh the state
  elsif subbed_val == cur_val #not present, add it
    exec(powershell("[Environment]::SetEnvironmentVariable('#{key}', '#{val};#{cur_val}', 'Machine')"))
    self.close #refresh the state
  end
end

#clear_env_var(key) ⇒ Object

Delete the environment variable from the current ssh environment

Examples:

host.clear_env_var('PATH')

Parameters:

  • key (String)

    The key to delete



143
144
145
146
147
148
149
# File 'lib/beaker/host/pswindows/exec.rb', line 143

def clear_env_var key
  key = key.to_s.upcase
  exec(powershell("[Environment]::SetEnvironmentVariable('#{key}', $null, 'Machine')"))
  exec(powershell("[Environment]::SetEnvironmentVariable('#{key}', $null, 'User')"))
  exec(powershell("[Environment]::SetEnvironmentVariable('#{key}', $null, 'Process')"))
  self.close #refresh the state
end

#delete_env_var(key, val) ⇒ Object

Delete the provided key/val from the current ssh environment

Examples:

host.delete_env_var('PATH', '/usr/bin:PATH')

Parameters:

  • key (String)

    The key to delete the value from

  • val (String)

    The value to delete for the key



105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/beaker/host/pswindows/exec.rb', line 105

def delete_env_var key, val
  key = key.to_s.upcase
  #get the current value of the key
  cur_val = subbed_val = get_env_var(key, true)
  subbed_val = (cur_val.split(';') - [val.gsub(/'|"/, '')]).join(';')
  if subbed_val != cur_val
    #remove the current key value
    self.clear_env_var(key)
    #set to the truncated value
    self.add_env_var(key, subbed_val)
  end
end

#echo(msg, abs = true) ⇒ Object



14
15
16
# File 'lib/beaker/host/pswindows/exec.rb', line 14

def echo(msg, abs=true)
  (abs ? ABS_CMD : CMD) + " /c echo #{msg}"
end

#environment_string(env) ⇒ Object



151
152
153
154
155
156
157
158
159
160
# File 'lib/beaker/host/pswindows/exec.rb', line 151

def environment_string env
  return '' if env.empty?
  env_array = self.environment_variable_string_pair_array( env )

  environment_string = ''
  env_array.each_with_index do |env|
    environment_string += "set #{env} && "
  end
  environment_string
end

#get_env_var(key, clean = false) ⇒ Object

Return the value of a specific env var

Examples:

host.get_env_var('path')

Parameters:

  • key (String)

    The key to look for

  • clean (Boolean) (defaults to: false)

    Remove the ‘KEY=’ and only return the value of the env var



123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/beaker/host/pswindows/exec.rb', line 123

def get_env_var key, clean = false
  self.close #refresh the state
  key = key.to_s.upcase
  val = exec(Beaker::Command.new("set #{key}"), :accept_all_exit_codes => true).stdout.chomp
  if val.empty?
    return ''
  else
    val = val.split(/\n/)[0] # only take the first result
    if clean
      val.gsub(/#{key}=/i,'')
    else
      val
    end
  end
end

#get_ipObject



44
45
46
47
48
49
50
51
52
53
# File 'lib/beaker/host/pswindows/exec.rb', line 44

def get_ip
  ip = execute("for /f \"tokens=14\" %f in ('ipconfig ^| find \"IP Address\"') do @echo %f", :accept_all_exit_codes => true).strip
  if ip == ''
    ip = execute("for /f \"tokens=14\" %f in ('ipconfig ^| find \"IPv4 Address\"') do @echo %f", :accept_all_exit_codes => true).strip
  end
  if ip == ''
    ip = execute("for /f \"tokens=14\" %f in ('ipconfig ^| find \"IPv6 Address\"') do @echo %f").strip
  end
  ip
end

#mkdir_p(dir) ⇒ Boolean

Create the provided directory structure on the host

Parameters:

  • dir (String)

    The directory structure to create on the host

Returns:

  • (Boolean)

    True, if directory construction succeeded, otherwise False



74
75
76
77
78
79
# File 'lib/beaker/host/pswindows/exec.rb', line 74

def mkdir_p dir
  windows_dirstring = dir.gsub('/','\\')
  cmd = "if not exist #{windows_dirstring} (md #{windows_dirstring})"
  result = exec(Beaker::Command.new(cmd), :acceptable_exit_codes => [0, 1])
  result.exit_code == 0
end

#mv(orig, dest, rm = true) ⇒ Object

Move the origin to destination. The destination is removed prior to moving.

Parameters:

  • orig (String)

    The origin path

  • dest (String)

    the destination path

  • rm (Boolean) (defaults to: true)

    Remove the destination prior to move



32
33
34
35
36
37
38
# File 'lib/beaker/host/pswindows/exec.rb', line 32

def mv(orig, dest, rm=true)
  # ensure that we have the right slashes for windows
  orig = orig.gsub(/\//,'\\')
  dest = dest.gsub(/\//,'\\')
  rm_rf dest unless !rm
  execute("move /y #{orig} #{dest}")
end

#pathObject



40
41
42
# File 'lib/beaker/host/pswindows/exec.rb', line 40

def path
  'c:/windows/system32;c:/windows'
end

#ping(target, attempts = 5) ⇒ Boolean

Attempt to ping the provided target hostname

Parameters:

  • target (String)

    The hostname to ping

  • attempts (Integer) (defaults to: 5)

    Amount of times to attempt ping before giving up

Returns:

  • (Boolean)

    true of ping successful, overwise false



59
60
61
62
63
64
65
66
67
68
69
# File 'lib/beaker/host/pswindows/exec.rb', line 59

def ping target, attempts=5
  try = 0
  while try < attempts do
    result = exec(Beaker::Command.new("ping -n 1 #{target}"), :accept_all_exit_codes => true)
    if result.exit_code == 0
      return true
    end
    try+=1
  end
  result.exit_code == 0
end

#rebootObject



5
6
7
8
9
# File 'lib/beaker/host/pswindows/exec.rb', line 5

def reboot
  exec(Beaker::Command.new("shutdown /r /t 0"), :expect_connection_failure => true)
  # rebooting on windows is slooooow
  sleep(40)
end

#rm_rf(path) ⇒ Object



22
23
24
25
26
# File 'lib/beaker/host/pswindows/exec.rb', line 22

def rm_rf path
  # ensure that we have the right slashes for windows
  path = path.gsub(/\//, '\\')
  execute("del /s /q #{path}")
end

#ssh_permit_user_environmentObject

Overrides the Windows::Exec#ssh_permit_user_environment method, since no steps are needed in this setup to allow user ssh environments to work.



165
166
# File 'lib/beaker/host/pswindows/exec.rb', line 165

def ssh_permit_user_environment
end

#ssh_set_user_environment(env) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Note:

this class doesn’t manipulate an SSH environment file, it just sets

Sets the user SSH environment.

the environment variables on the system.

Parameters:

  • env (Hash{String=>String})

    Environment variables to set on the system, in the form of a hash of String variable names to their corresponding String values.

Returns:

  • nil



179
180
181
182
183
184
# File 'lib/beaker/host/pswindows/exec.rb', line 179

def ssh_set_user_environment(env)
  #add the env var set to this test host
  env.each_pair do |var, value|
    add_env_var(var, value)
  end
end

#touch(file, abs = true) ⇒ Object



18
19
20
# File 'lib/beaker/host/pswindows/exec.rb', line 18

def touch(file, abs=true)
  (abs ? ABS_CMD : CMD) + " /c echo. 2> #{file}"
end