Add KW to build QEMU 2.2.1 on node 02/502/6
authorMatus Fabian <matfabia@cisco.com>
Tue, 8 Mar 2016 13:01:32 +0000 (14:01 +0100)
committerGerrit Code Review <gerrit@fd.io>
Fri, 11 Mar 2016 12:23:01 +0000 (12:23 +0000)
Change-Id: I58271aff1ef558752f00593bbad5c3317d08288d
Signed-off-by: Matus Fabian <matfabia@cisco.com>
resources/libraries/bash/qemu_build.sh [new file with mode: 0644]
resources/libraries/python/QemuUtils.py [new file with mode: 0644]
resources/libraries/robot/qemu.robot [new file with mode: 0644]

diff --git a/resources/libraries/bash/qemu_build.sh b/resources/libraries/bash/qemu_build.sh
new file mode 100644 (file)
index 0000000..449cce6
--- /dev/null
@@ -0,0 +1,39 @@
+#!/bin/bash
+# Copyright (c) 2016 Cisco 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:
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+echo
+echo Downloading QEMU source
+echo
+sudo rm -rf /tmp/qemu-2.2.1
+cd /tmp
+wget -q http://wiki.qemu-project.org/download/qemu-2.2.1.tar.bz2 || exit
+
+echo
+echo Extracting QEMU
+echo
+tar xjf qemu-2.2.1.tar.bz2 || exit
+rm qemu-2.2.1.tar.bz2
+
+echo
+echo Building QEMU
+echo
+cd qemu-2.2.1
+mkdir build
+cd build
+../configure --target-list=x86_64-softmmu || exit
+make -j`nproc` || exit
+
+echo
+echo QEMU ready
+echo
diff --git a/resources/libraries/python/QemuUtils.py b/resources/libraries/python/QemuUtils.py
new file mode 100644 (file)
index 0000000..c723878
--- /dev/null
@@ -0,0 +1,40 @@
+# Copyright (c) 2016 Cisco 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:
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""QEMU utilities library."""
+
+from robot.api import logger
+from ssh import SSH
+from constants import Constants
+
+
+class QemuUtils(object):
+    """QEMU utilities."""
+
+    @staticmethod
+    def build_qemu(node):
+        """Build QEMU from sources.
+
+        :param node: Node to build QEMU on.
+        :type node: dict
+        """
+        ssh = SSH()
+        ssh.connect(node)
+
+        (ret_code, stdout, stderr) = \
+            ssh.exec_command('sudo -Sn bash {0}/{1}/qemu_build.sh'.format(
+                Constants.REMOTE_FW_DIR, Constants.RESOURCES_LIB_SH), 1000)
+        logger.trace(stdout)
+        if 0 != int(ret_code):
+            logger.debug('QEMU build failed {0}'.format(stderr))
+            raise RuntimeError('QEMU build failed on {0}'.format(node['host']))
diff --git a/resources/libraries/robot/qemu.robot b/resources/libraries/robot/qemu.robot
new file mode 100644 (file)
index 0000000..e26f9aa
--- /dev/null
@@ -0,0 +1,52 @@
+# Copyright (c) 2016 Cisco 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:
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+*** Settings ***
+| Library | resources.libraries.python.QemuUtils
+| Library | Collections
+
+*** Keywords ***
+
+| Exist QEMU Build List
+| | [Documentation] | Return TRUE if variable QEMU_BUILD exist, otherwise FALSE
+| | ${ret} | ${tmp}=  | Run Keyword And Ignore Error
+| | ... | Variable Should Exist | @{QEMU_BUILD}
+| | Return From Keyword If | "${ret}" == "PASS" | ${TRUE}
+| | Return From Keyword | ${FALSE}
+
+| Is QEMU Ready on Node
+| | [Documentation] | Check if QEMU was built on the node before
+| | [Arguments] | ${node}
+| | ${ret}= | Exist QEMU Build List
+| | Return From Keyword If | ${ret} == ${FALSE} | ${FALSE}
+| | ${ret} | ${tmp}=  | Run Keyword And Ignore Error
+| | ... | Should Contain | ${QEMU_BUILD} | ${node['host']}
+| | Return From Keyword If | "${ret}" == "PASS" | ${TRUE}
+| | Return From Keyword | ${FALSE}
+
+| Add Node to QEMU Build List
+| | [Documentation] | Add node to the list of nodes with builded QEMU (global
+| | ...             | variable QEMU_BUILD)
+| | [Arguments] | ${node}
+| | ${ret}= | Exist QEMU Build List
+| | Run Keyword If | ${ret} == ${TRUE}
+| | ... | Append To List | ${QEMU_BUILD} | ${node['host']}
+| | ... | ELSE | Set Global Variable | @{QEMU_BUILD} | ${node['host']}
+
+| Build QEMU on Node
+| | [Documentation] | Build QEMU from sources on the Node. Nodes with successful
+| | ...             | QEMU build are stored in global variable list QEMU_BUILD
+| | [Arguments] | ${node}
+| | ${ready}= | Is QEMU Ready on Node | ${node}
+| | Return From Keyword If | ${ready} == ${TRUE}
+| | Build QEMU | ${node}
+| | Add Node to QEMU Build List | ${node}