如何从期望测试mySQL响应中解析整数?

时间:2019-05-06 16:19:48

标签: expect

有人知道如何在期望测试中从以下控制台输出中解析出整数吗?

  +-----------------+
  | static_route_id |
  +-----------------+
  |             314 |
  +-----------------+

我想做的是

    proc testRouteId { identity_regex } {

          #sign into database (got it)

          #fetch routes with matching identity_regex (a column in the database)
          send { select static_route_id from static_routes where identity_regex="$identity_regex"; }
          send "\r"

          #parse the routeId out of the console output somehow
          expect {
            timeout { send_user "fetchStaticRouteId timed out\n"; return 0 }
            eof { send_user "fetchStaticRouteId failed\n"; return 0 }

          =========Stuck on the regex =========
            -re "REGEX?" { send_user "fetchStaticRouteId $expect_out(1, string)\n" }
          }
          return routeId; # (an int)
        }

2 个答案:

答案 0 :(得分:0)

使用expect命令匹配正则表达式模式,捕获由管道和空格包围的数字序列,并从expect_out数组中提取数字。

在这里,我正在使用Tcl format命令(如sprintf)使发送字符串更易于使用。您发送命令将使该变量占位,因为您使用了大括号-参见https://tcl.tk/man/tcl8.6/TclCmd/Tcl.htm规则编号6。

send [format {select static_route_id from static_routes where identity_regex="%s";\r} $identity_regex]
expect -re {\|\s+(\d+)\s+\|.*}
return $expect_out(1,string)

答案 1 :(得分:0)

这是解决方案

Seq.Indexed