From d0486fa7610aa56ec17e7d5d0a7c1e98e5e0beef Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Thu, 13 Mar 2025 09:14:57 +0800 Subject: [PATCH] move check password no 1 --- .../taosdump/native/taosdumpCommandline.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/tests/army/tools/taosdump/native/taosdumpCommandline.py b/tests/army/tools/taosdump/native/taosdumpCommandline.py index a3ee8e55ed..5680bc3483 100644 --- a/tests/army/tools/taosdump/native/taosdumpCommandline.py +++ b/tests/army/tools/taosdump/native/taosdumpCommandline.py @@ -245,20 +245,26 @@ class TDTestCase(TBase): # insert data with taosBenchmark db, stb, childCount, insertRows = self.insertData(json) + # + # long password + # + self.checkPassword(tmpdir) + tdLog.info("1. check long password ................................. [Passed]") + # dumpInOut modes = ["", "-R" , "--cloud=http://localhost:6041"] for mode in modes: self.dumpInOutMode(mode, db , json, tmpdir) - tdLog.info("1. native rest ws dumpIn Out .......................... [Passed]") + tdLog.info("2. native rest ws dumpIn Out .......................... [Passed]") # basic commandline self.basicCommandLine(tmpdir) - tdLog.info("2. basic command line .................................. [Passed]") + tdLog.info("3. basic command line .................................. [Passed]") # except commandline self.exceptCommandLine(taosdump, db, stb, tmpdir) - tdLog.info("3. except command line ................................. [Passed]") + tdLog.info("4. except command line ................................. [Passed]") # # varbinary and geometry for native @@ -268,13 +274,8 @@ class TDTestCase(TBase): db, stb, childCount, insertRows = self.insertData(json) # dump in/out self.dumpInOutMode("", db , json, tmpdir) - tdLog.info("4. native varbinary geometry ........................... [Passed]") + tdLog.info("5. native varbinary geometry ........................... [Passed]") - # - # long password - # - self.checkPassword(tmpdir) - tdLog.info("5. check long password ................................. [Passed]") def stop(self):