blob: b2cf64beaaa9b4d7c74365da0d2ffb3aebbfcf96 [file] [log] [blame]
# get.rb
require 'test/unit'
require 'rexml/document'
require File.join(File.dirname(__FILE__),'_loadpath')
require 'openwsman'
require '_client'
class WsmanTest < Test::Unit::TestCase
def test_client
client = Client.open
assert client
options = Openwsman::ClientOptions.new
assert options
# uri = "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem"
uri = "http://schema.openwbem.org/wbem/wscim/1/cim-schema/2/OpenWBEM_UnitaryComputerSystem"
# uri = "http://schema.openwbem.org/wbem/wscim/1/cim-schema/2/OMC_UnitaryComputerSystem"
options.add_selector( "Name", "heron.suse.de" );
options.add_selector( "CreationClassName", "OpenWBEM_UnitaryComputerSystem" );
result = client.get( options, uri )
assert result
puts result.to_xml
end
end