Fix: Nginx check simplified 85/37685/8
authorViliam Luc <vluc@cisco.com>
Tue, 22 Nov 2022 08:54:07 +0000 (09:54 +0100)
committerPeter Mikus <peter.mikus@protonmail.ch>
Wed, 23 Nov 2022 12:00:38 +0000 (12:00 +0000)
Signed-off-by: Viliam Luc <vluc@cisco.com>
Change-Id: Icd8a5e892bb2c31c01851f731482c692cea4d70a

resources/libraries/python/NGINX/NGINXTools.py
resources/libraries/robot/shared/suite_setup.robot

index 9418484..941fe73 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2021 Intel and/or its affiliates.
+# Copyright (c) 2022 Intel and/or its affiliates.
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
@@ -74,21 +74,15 @@ class NGINXTools:
         :type nginx_version: str
         :raises RuntimeError: If command returns nonzero return code.
         """
-        nginx_path = f"{pkg_dir}/nginx-{nginx_version}/sbin/nginx"
-        cmd_options = NginxUtil.get_cmd_options(path=nginx_path)
-        ret_code, _, stderr = exec_cmd(node, cmd_options, sudo=True)
-        if nginx_version in stderr and ret_code == 0:
-            logger.info(f"NGINX Version: {stderr}")
+        cmd = f"test -f {pkg_dir}/nginx-{nginx_version}/sbin/nginx"
+        ret_code, _, _ = exec_cmd(node, cmd, sudo=True)
+        if ret_code == 0:
             return
         command = f"{Constants.REMOTE_FW_DIR}/{Constants.RESOURCES_LIB_SH}" \
                   f"/entry/install_nginx.sh nginx-{nginx_version}"
         message = u"Install the NGINX failed!"
         exec_cmd_no_error(node, command, sudo=True, timeout=600,
                           message=message)
-        _, stderr = exec_cmd_no_error(node, cmd_options, sudo=True,
-                                      message=message)
-
-        logger.info(f"NGINX Version: {stderr}")
 
     @staticmethod
     def install_vsap_nginx_on_dut(node, pkg_dir):
index 4884570..0e859cc 100644 (file)
 | | ... | Additional Setup for suites which uses Nginx.
 | |
 | | Install NGINX framework on all DUTs | ${nodes} | ${packages_dir}
-| | ... |  ${nginx_version}
+| | ... | ${nginx_version}
 
 | Additional Suite Setup Action For vppecho
 | | [Documentation]