auto pull submodule code and add more check.
This commit is contained in:
parent
1256de5a49
commit
e9c5859e41
|
@ -21,6 +21,7 @@ import subprocess
|
||||||
from shutil import which
|
from shutil import which
|
||||||
from multipledispatch import dispatch
|
from multipledispatch import dispatch
|
||||||
|
|
||||||
|
|
||||||
@dispatch(str, str)
|
@dispatch(str, str)
|
||||||
def v_print(msg: str, arg: str):
|
def v_print(msg: str, arg: str):
|
||||||
if verbose:
|
if verbose:
|
||||||
|
@ -50,28 +51,34 @@ def v_print(msg: str, arg1: int, arg2: int, arg3: int, arg4: int):
|
||||||
if verbose:
|
if verbose:
|
||||||
print(msg % (int(arg1), int(arg2), int(arg3), int(arg4)))
|
print(msg % (int(arg1), int(arg2), int(arg3), int(arg4)))
|
||||||
|
|
||||||
|
|
||||||
def isHiveMQInstalled():
|
def isHiveMQInstalled():
|
||||||
v_print("%s", "Check if HiveMQ installed")
|
v_print("%s", "Check if HiveMQ installed")
|
||||||
defaultHiveMQPath = "/opt/hivemq*"
|
defaultHiveMQPath = "/opt/hivemq*"
|
||||||
hiveMQDir = glob.glob(defaultHiveMQPath)
|
hiveMQDir = glob.glob(defaultHiveMQPath)
|
||||||
if (len(hiveMQDir) == 0):
|
if (len(hiveMQDir) == 0):
|
||||||
v_print("%s", "ERROR: hivemq not found!")
|
v_print("%s", "ERROR: HiveMQ NOT found")
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
v_print("HiveMQ installed at %s", hiveMQDir[0])
|
v_print("HiveMQ installed at %s", hiveMQDir[0])
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def isMosquittoInstalled():
|
def isMosquittoInstalled():
|
||||||
v_print("%s", "Check if mosquitto installed")
|
v_print("%s", "Check if mosquitto installed")
|
||||||
if not which('mosquitto_pub'):
|
if not which('mosquitto_pub'):
|
||||||
v_print("%s", "mosquitto is not installed")
|
v_print("%s", "ERROR: mosquitto is NOT installed")
|
||||||
return False
|
return False
|
||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def installExtension():
|
def installExtension():
|
||||||
currentDir = os.getcwd()
|
currentDir = os.getcwd()
|
||||||
os.chdir('../../src/connector/hivemq-tdengine-extension')
|
extDir = 'src/connector/hivemq-tdengine-extension'
|
||||||
|
os.chdir('../..')
|
||||||
|
os.system('git submodule update --init -- %s' % extDir)
|
||||||
|
os.chdir(extDir)
|
||||||
v_print("%s", "build extension..")
|
v_print("%s", "build extension..")
|
||||||
os.system('mvn clean package')
|
os.system('mvn clean package')
|
||||||
|
|
||||||
|
@ -92,6 +99,7 @@ def installExtension():
|
||||||
|
|
||||||
os.chdir(currentDir)
|
os.chdir(currentDir)
|
||||||
|
|
||||||
|
|
||||||
def stopProgram(prog: str):
|
def stopProgram(prog: str):
|
||||||
psCmd = "ps ax|grep -w %s| grep -v grep | awk '{print $1}'" % prog
|
psCmd = "ps ax|grep -w %s| grep -v grep | awk '{print $1}'" % prog
|
||||||
|
|
||||||
|
@ -106,9 +114,24 @@ def stopProgram(prog: str):
|
||||||
psCmd, shell=True).decode("utf-8")
|
psCmd, shell=True).decode("utf-8")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
def stopHiveMQ():
|
def stopHiveMQ():
|
||||||
stopProgram("hivemq.jar")
|
stopProgram("hivemq.jar")
|
||||||
v_print("%s", "hivemq is NOT running")
|
v_print("%s", "ERROR: HiveMQ is NOT running")
|
||||||
|
|
||||||
|
|
||||||
|
def checkProgramRunning(prog: str):
|
||||||
|
psCmd = "ps ax|grep -w %s| grep -v grep | awk '{print $1}'" % prog
|
||||||
|
|
||||||
|
processID = subprocess.check_output(
|
||||||
|
psCmd, shell=True).decode("utf-8")
|
||||||
|
|
||||||
|
if not processID:
|
||||||
|
v_print("ERROR: %s is NOT running", prog)
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
def runHiveMQ():
|
def runHiveMQ():
|
||||||
defaultHiveMQPath = "/opt/hivemq*"
|
defaultHiveMQPath = "/opt/hivemq*"
|
||||||
|
@ -116,11 +139,19 @@ def runHiveMQ():
|
||||||
runPath = hiveMQDir[0] + '/bin/run.sh > /dev/null &'
|
runPath = hiveMQDir[0] + '/bin/run.sh > /dev/null &'
|
||||||
os.system(runPath)
|
os.system(runPath)
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
v_print("%s", "hivemq is running")
|
|
||||||
|
if not checkProgramRunning("hivemq.jar"):
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
v_print("%s", "hivemq is running")
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
def getBuildPath():
|
def getBuildPath():
|
||||||
selfPath = os.path.dirname(os.path.realpath(__file__))
|
selfPath = os.path.dirname(os.path.realpath(__file__))
|
||||||
|
|
||||||
|
binPath = ''
|
||||||
|
|
||||||
if ("community" in selfPath):
|
if ("community" in selfPath):
|
||||||
projPath = selfPath[:selfPath.find("community")]
|
projPath = selfPath[:selfPath.find("community")]
|
||||||
else:
|
else:
|
||||||
|
@ -130,9 +161,10 @@ def getBuildPath():
|
||||||
if ("taosd" in files):
|
if ("taosd" in files):
|
||||||
rootRealPath = os.path.dirname(os.path.realpath(root))
|
rootRealPath = os.path.dirname(os.path.realpath(root))
|
||||||
if ("packaging" not in rootRealPath):
|
if ("packaging" not in rootRealPath):
|
||||||
buildPath = root[:len(root)-len("/build/bin")]
|
binPath = root[:len(root) - len("/build/bin")]
|
||||||
break
|
break
|
||||||
return buildPath
|
return binPath
|
||||||
|
|
||||||
|
|
||||||
def runTDengine():
|
def runTDengine():
|
||||||
stopProgram("taosd")
|
stopProgram("taosd")
|
||||||
|
@ -140,8 +172,8 @@ def runTDengine():
|
||||||
buildPath = getBuildPath()
|
buildPath = getBuildPath()
|
||||||
|
|
||||||
if (buildPath == ""):
|
if (buildPath == ""):
|
||||||
v_print("%s", "taosd NOT found!")
|
v_print("%s", "ERROR: taosd NOT found!")
|
||||||
os.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
v_print("%s", "taosd found in %s" % buildPath)
|
v_print("%s", "taosd found in %s" % buildPath)
|
||||||
|
|
||||||
|
@ -149,6 +181,13 @@ def runTDengine():
|
||||||
|
|
||||||
os.system('%s > /dev/null &' % binPath)
|
os.system('%s > /dev/null &' % binPath)
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
|
if not checkProgramRunning("taosd"):
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
v_print("%s", "TDengine is running")
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def reCreateDatabase():
|
def reCreateDatabase():
|
||||||
buildPath = getBuildPath()
|
buildPath = getBuildPath()
|
||||||
|
@ -157,16 +196,20 @@ def reCreateDatabase():
|
||||||
os.system('%s -s "DROP DATABASE IF EXISTS hivemq"' % binPath)
|
os.system('%s -s "DROP DATABASE IF EXISTS hivemq"' % binPath)
|
||||||
os.system('%s -s "CREATE DATABASE IF NOT EXISTS hivemq"' % binPath)
|
os.system('%s -s "CREATE DATABASE IF NOT EXISTS hivemq"' % binPath)
|
||||||
|
|
||||||
|
|
||||||
def sendMqttMsg(topic: str, payload: str):
|
def sendMqttMsg(topic: str, payload: str):
|
||||||
testStr = 'mosquitto_pub -t %s -m "%s"' % (topic, payload)
|
testStr = 'mosquitto_pub -t %s -m "%s"' % (topic, payload)
|
||||||
os.system(testStr)
|
os.system(testStr)
|
||||||
time.sleep(3)
|
time.sleep(3)
|
||||||
|
|
||||||
|
|
||||||
def checkTDengineData(topic: str, payload: str):
|
def checkTDengineData(topic: str, payload: str):
|
||||||
buildPath = getBuildPath()
|
buildPath = getBuildPath()
|
||||||
binPath = buildPath + "/build/bin/taos"
|
binPath = buildPath + "/build/bin/taos"
|
||||||
|
|
||||||
output = subprocess.check_output('%s -s "select * from hivemq.mqtt_payload"' % binPath, shell=True).decode('utf-8')
|
output = subprocess.check_output(
|
||||||
|
'%s -s "select * from hivemq.mqtt_payload"' %
|
||||||
|
binPath, shell=True).decode('utf-8')
|
||||||
if (topic in output) and (payload in output):
|
if (topic in output) and (payload in output):
|
||||||
v_print("%s", output)
|
v_print("%s", output)
|
||||||
return True
|
return True
|
||||||
|
@ -190,11 +233,13 @@ if __name__ == "__main__":
|
||||||
|
|
||||||
installExtension()
|
installExtension()
|
||||||
|
|
||||||
runTDengine()
|
if not runTDengine():
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
reCreateDatabase()
|
reCreateDatabase()
|
||||||
|
|
||||||
runHiveMQ()
|
if not runHiveMQ():
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
sendMqttMsg(testTopic, testPayload)
|
sendMqttMsg(testTopic, testPayload)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue