X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Fqemu.robot;fp=resources%2Flibraries%2Frobot%2Fqemu.robot;h=e26f9aa6bfb283ef87c2961253430fb8ae377ff0;hp=0000000000000000000000000000000000000000;hb=5d5db63262e5c141e5eb435c65154cee214887af;hpb=05eba892c7d2a778e78a950966fb1a6e0d68aa60 diff --git a/resources/libraries/robot/qemu.robot b/resources/libraries/robot/qemu.robot new file mode 100644 index 0000000000..e26f9aa6bf --- /dev/null +++ b/resources/libraries/robot/qemu.robot @@ -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}