Sha256: 6b6d3029be76c4ade3fec63c7eb142cbae05d7b5365e45702f1bdb84239ddf8c
Contents?: true
Size: 1.1 KB
Versions: 32
Compression:
Stored size: 1.1 KB
Contents
# encoding: UTF-8 require 'winrm/wsmv/create_pipeline' describe WinRM::WSMV::CreatePipeline do context 'default session options' do let(:shell_id) { 'D5A2622B-B842-4EB8-8A78-0225C8A993DF' } let(:command_id) { 'D5A2622B-B842-4EB8-8A78-0225C8A993DF' } let(:fragment) { WinRM::PSRP::Fragment.new(0, [1, 2, 3]) } let(:pipeline) { Base64.strict_encode64(fragment.bytes.pack('C*')) } subject do WinRM::WSMV::CreatePipeline.new( default_connection_opts, shell_id, command_id, fragment ) end let(:xml) { subject.build } it 'creates a well formed message' do expect(xml).to include('<w:OperationTimeout>PT60S</w:OperationTimeout>') expect(xml).to include( '<w:SelectorSet><w:Selector Name="ShellId">' \ "#{shell_id}</w:Selector></w:SelectorSet>") expect(xml).to include("<rsp:CommandLine CommandId=\"#{command_id}\">") expect(xml).to include('<rsp:Command>Invoke-Expression</rsp:Command>') expect(xml).to include("<rsp:Arguments>#{pipeline}</rsp:Arguments>") end end end
Version data entries
32 entries across 29 versions & 3 rubygems