Source code for robot.model.control

#  Copyright 2008-2015 Nokia Networks
#  Copyright 2016-     Robot Framework Foundation
#
#  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.

from robot.utils import setter, py3to2

from .body import Body, BodyItem, IfBranches
from .keyword import Keywords


[docs]@py3to2 @Body.register class For(BodyItem): type = BodyItem.FOR body_class = Body repr_args = ('variables', 'flavor', 'values') __slots__ = ['variables', 'flavor', 'values'] def __init__(self, variables=(), flavor='IN', values=(), parent=None): self.variables = variables self.flavor = flavor self.values = values self.parent = parent self.body = None @setter def body(self, body): return self.body_class(self, body) @property def keywords(self): """Deprecated since Robot Framework 4.0. Use :attr:`body` instead.""" return Keywords(self, self.body) @keywords.setter def keywords(self, keywords): Keywords.raise_deprecation_error()
[docs] def visit(self, visitor): visitor.visit_for(self)
def __str__(self): variables = ' '.join(self.variables) values = ' '.join(self.values) return u'FOR %s %s %s' % (variables, self.flavor, values)
[docs]@Body.register class If(BodyItem): """IF/ELSE structure root. Branches are stored in :attr:`body`.""" type = BodyItem.IF_ELSE_ROOT body_class = IfBranches __slots__ = ['parent'] def __init__(self, parent=None): self.parent = parent self.body = None @setter def body(self, body): return self.body_class(self, body) @property def id(self): """Root IF/ELSE id is always ``None``.""" return None
[docs] def visit(self, visitor): visitor.visit_if(self)
[docs]@py3to2 @IfBranches.register class IfBranch(BodyItem): body_class = Body repr_args = ('type', 'condition') __slots__ = ['type', 'condition'] def __init__(self, type=BodyItem.IF, condition=None, parent=None): self.type = type self.condition = condition self.parent = parent self.body = None @setter def body(self, body): return self.body_class(self, body) @property def id(self): """Branch id omits the root IF/ELSE object from the parent id part.""" if not self.parent: return 'k1' index = self.parent.body.index(self) + 1 if not self.parent.parent: return 'k%d' % index return '%s-k%d' % (self.parent.parent.id, index) def __str__(self): if self.type == self.IF: return u'IF %s' % self.condition if self.type == self.ELSE_IF: return u'ELSE IF %s' % self.condition return u'ELSE'
[docs] def visit(self, visitor): visitor.visit_if_branch(self)