Class: Dopi::Command::Winrm::FileExists

Inherits:
Dopi::Command show all
Includes:
Dopi::CommandParser::ExitCode, Dopi::Connector::Winrm
Defined in:
lib/dopi/command/winrm/file_exists.rb

Instance Attribute Summary

Attributes inherited from Dopi::Command

#hash, #is_verify_command, #node

Instance Method Summary collapse

Methods included from Dopi::CommandParser::ExitCode

#check_exit_code, #expect_exit_codes, #validate_exit_code

Methods included from Dopi::Connector::Winrm

#basic_auth_only, #ca_trust_path, #disable_sspi, #endpoint, #operation_timeout, #port, #ssl, #supported_credential_types, #validate_winrm, #winrm, #winrm_command, #winrm_powershell_command

Methods included from Dopi::CommandParser::Credentials

#credentials, #validate_credentials

Methods inherited from Dopi::Command

create_plugin_instance, delete_plugin_default, delete_plugin_defaults, inherited, #initialize, #load_state, #merged_hash, #meta_run, #meta_valid?, plugin_defaults, set_plugin_defaults, #state_hash, wipe_plugin_defaults

Methods included from State

#delete_on_signal, #on_signal, #reset_signals, #send_signal, #signal_procs, #signals, #state, #state_add_child, #state_auto_evaluate_children, #state_auto_evaluate_children=, #state_changed, #state_children, #state_children_done?, #state_children_failed?, #state_children_partial?, #state_children_ready?, #state_children_running?, #state_children_running_noop?, #state_children_starting?, #state_done?, #state_fail, #state_failed?, #state_finish, #state_partial?, #state_ready, #state_ready?, #state_reset, #state_reset_with_children, #state_run, #state_run_noop, #state_running?, #state_running_noop?, #state_start, #state_starting?, #to_yaml_properties, #update, #update_mutex

Constructor Details

This class inherits a constructor from Dopi::Command

Instance Method Details

#command_stringObject



28
29
30
# File 'lib/dopi/command/winrm/file_exists.rb', line 28

def command_string
  "if(-not(Test-Path '#{file}')) { exit 1 }"
end

#fileObject



32
33
34
35
# File 'lib/dopi/command/winrm/file_exists.rb', line 32

def file
  @file ||= file_valid? ?
    hash[:file] : nil
end

#file_valid?Boolean

Returns:

  • (Boolean)


37
38
39
40
41
42
43
44
45
46
# File 'lib/dopi/command/winrm/file_exists.rb', line 37

def file_valid?
  hash[:file] or
    raise CommandParsingError, "Plugin #{name}: The key 'file' needs to be specified"
  begin
    hash[:file][/[a-zA-Z]+:\\/] or hash[:file][/\\\\\w+/] or
      raise CommandParsingError, "Plugin #{name}: The path for 'file' has to be absolute"
  rescue ArgumentError => e
    raise CommandParsingError, "Plugin #{name}: The value in 'file' is not a valid file path: #{e.message}"
  end
end

#runObject



19
20
21
22
# File 'lib/dopi/command/winrm/file_exists.rb', line 19

def run
  cmd_stdout, cmd_stderr, cmd_exit_code = winrm_powershell_command(command_string)
  check_exit_code(cmd_exit_code)
end

#run_noopObject



24
25
26
# File 'lib/dopi/command/winrm/file_exists.rb', line 24

def run_noop
  log(:info, "(NOOP) Executing '#{command_string}' for command #{name}")
end

#validateObject



13
14
15
16
17
# File 'lib/dopi/command/winrm/file_exists.rb', line 13

def validate
  validate_winrm
  validate_exit_code
  log_validation_method(:file_valid?, CommandParsingError)
end