File: winrm.rb

package info (click to toggle)
ruby-specinfra 2.94.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,464 kB
  • sloc: ruby: 10,562; makefile: 4
file content (45 lines) | stat: -rw-r--r-- 1,269 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module Specinfra
  module Backend
    class Winrm < Base
      include PowerShell::ScriptHelper

      def os_info
        { :family => 'windows', :release => nil, :arch => nil }
      end

      def run_command(cmd, opts={})
        script = create_script(cmd)
        winrm = get_config(:winrm)

        stdout, stderr = ''
        exitcode = 0

        if Gem.loaded_specs['winrm'].version < Gem::Version.create('2.0')
          # Use winrm V1 API
          result = winrm.powershell(script)
          stdout, stderr = [:stdout, :stderr].map do |s|
            result[:data].select {|item| item.key? s}.map {|item| item[s]}.join
          end
          exitcode = result[:exitcode]
        else
          # Use winrm V2 API
          winrm.shell(:powershell) do |shell|
            result = shell.run(script)
            stdout = result.stdout.to_s
            stderr = result.stderr.to_s
            exitcode = result.exitcode
          end
        end

        exitcode = 1 if exitcode == 0 and !stderr.empty?

        if @example
          @example.metadata[:command] = script
          @example.metadata[:stdout]  = stdout + stderr
        end

        CommandResult.new :stdout => stdout, :stderr => stderr, :exit_status => exitcode
      end
    end
  end
end