Module: Windows::Exec

Includes:
Beaker::CommandFactory
Included in:
Host
Defined in:
lib/beaker/host/windows/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::CommandFactory

#execute, #fail_test

Instance Method Details

#echo(msg, abs = true) ⇒ Object



11
12
13
# File 'lib/beaker/host/windows/exec.rb', line 11

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

#get_ipObject



23
24
25
26
27
28
29
30
31
32
# File 'lib/beaker/host/windows/exec.rb', line 23

def get_ip
  ip = execute("ipconfig | grep -i 'IP Address' | cut -d: -f2 | head -1").strip
  if ip == ''
    ip = execute("ipconfig | grep -i 'IPv4 Address' | cut -d: -f2 | head -1").strip
  end
  if ip == ''
    ip = execute("ipconfig | grep -i 'IPv6 Address' | cut -d: -f2 | head -1").strip
  end
  ip
end

#pathObject



19
20
21
# File 'lib/beaker/host/windows/exec.rb', line 19

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



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/beaker/host/windows/exec.rb', line 38

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



4
5
6
# File 'lib/beaker/host/windows/exec.rb', line 4

def reboot
  exec(Beaker::Command.new('shutdown /r /t 0 /d p:4:1 /c "Beaker::Host reboot command issued"'), :expect_connection_failure => true)
end

#touch(file, abs = true) ⇒ Object



15
16
17
# File 'lib/beaker/host/windows/exec.rb', line 15

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