Sha256: 8e9984448e4d1a334cdd214673a80d19f1bbdd6e585a0af7987a9316d08fbc97

Contents?: true

Size: 924 Bytes

Versions: 1

Compression:

Stored size: 924 Bytes

Contents

# encoding: UTF-8

require 'winrm/psrp/message_data/base'
require 'winrm/psrp/message_data/pipeline_host_call'

describe WinRM::PSRP::MessageData::PipelineHostCall do
  let(:raw_data) do
    "\xEF\xBB\xBF<Obj RefId=\"0\"><MS><I64 N=\"ci\">-100</I64><Obj N=\"mi\" RefId=\"1\">"\
    '<TN RefId="0"><T>System.Management.Automation.Remoting.RemoteHostMethodId</T>'\
    '<T>System.Enum</T><T>System.ValueType</T><T>System.Object</T></TN>'\
    '<ToString>WriteLine3</ToString><I32>17</I32></Obj><Obj N="mp" RefId="2">'\
    '<TN RefId="1"><T>System.Collections.ArrayList</T><T>System.Object</T></TN><LST>'\
    '<I32>7</I32><I32>0</I32><S>hello</S></LST></Obj></MS></Obj>'
  end

  subject { described_class.new(raw_data) }

  it 'parses method identifier' do
    expect(subject.method_identifier).to eq('WriteLine3')
  end

  it 'parses method parameters' do
    expect(subject.method_parameters[:s]).to eq('hello')
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
winrm-2.1.0 tests/spec/psrp/message_data/pipeline_host_call_spec.rb