53 lines
1.7 KiB
Python
Executable File
53 lines
1.7 KiB
Python
Executable File
#!@PYTHON@
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# This source code is provided for testing/debuging purpose ;)
|
|
|
|
import PyNUT
|
|
import sys
|
|
import os
|
|
|
|
if __name__ == "__main__" :
|
|
NUT_PORT = int(os.getenv('NUT_PORT', '3493'))
|
|
NUT_USER = os.getenv('NUT_USER', None)
|
|
NUT_PASS = os.getenv('NUT_PASS', None)
|
|
|
|
print( "PyNUTClient test..." )
|
|
#nut = PyNUT.PyNUTClient( debug=True, port=NUT_PORT )
|
|
nut = PyNUT.PyNUTClient( login=NUT_USER, password=NUT_PASS, debug=True, port=NUT_PORT )
|
|
#nut = PyNUT.PyNUTClient( login="upsadmin", password="upsadmin", debug=True, port=NUT_PORT )
|
|
|
|
print( 80*"-" + "\nTesting 'GetUPSList' :")
|
|
result = nut.GetUPSList( )
|
|
print( "\033[01;33m%s\033[0m\n" % result )
|
|
|
|
# [dummy]
|
|
# driver = dummy-ups
|
|
# desc = "Test device"
|
|
# port = /src/nut/data/evolution500.seq
|
|
print( 80*"-" + "\nTesting 'GetUPSVars' for 'dummy' (should be registered in upsd.conf) :")
|
|
result = nut.GetUPSVars( "dummy" )
|
|
print( "\033[01;33m%s\033[0m\n" % result )
|
|
|
|
print( 80*"-" + "\nTesting 'GetUPSCommands' :")
|
|
result = nut.GetUPSCommands( "dummy" )
|
|
print( "\033[01;33m%s\033[0m\n" % result )
|
|
|
|
print( 80*"-" + "\nTesting 'GetRWVars' :")
|
|
result = nut.GetRWVars( "dummy" )
|
|
print( "\033[01;33m%s\033[0m\n" % result )
|
|
|
|
print( 80*"-" + "\nTesting 'RunUPSCommand' (Test front panel) :")
|
|
try :
|
|
result = nut.RunUPSCommand( "UPS1", "test.panel.start" )
|
|
except :
|
|
result = sys.exc_info()[1]
|
|
print( "\033[01;33m%s\033[0m\n" % result )
|
|
|
|
print( 80*"-" + "\nTesting 'SetUPSVar' (set ups.id to test):")
|
|
try :
|
|
result = nut.SetRWVar( "UPS1", "ups.id", "test" )
|
|
except :
|
|
result = sys.exc_info()[1]
|
|
print( "\033[01;33m%s\033[0m\n" % result )
|