Call super() in validate() of QosPolicyRule

Calling parent method needed to run framework validation code.

Change-Id: I2ef2cbf067566fea48862aee0e2a20d77d70e657
This commit is contained in:
Dima Kuznetsov 2017-07-18 11:28:10 +03:00
parent 464c97c6ff
commit 4d12f4c792
2 changed files with 54 additions and 4 deletions

View File

@ -37,14 +37,16 @@ class QosPolicyRule(mf.ModelBase, mixins.BasicEvents):
Validate the rule. That is, verify dscp_mark is set if type is
dscp_marking, and that max_burst_kbps is set if type is bandwidth_limit
"""
super(QosPolicyRule, self).validate()
if self.type == RULE_TYPE_DSCP_MARKING:
if self.dscp_mark is None:
errors.ValidationError("dscp_mark is required if "
"type is dscp_marking")
raise errors.ValidationError("dscp_mark is required if "
"type is dscp_marking")
elif self.type == RULE_TYPE_BANDWIDTH_LIMIT:
if self.max_burst_kbps is None:
errors.ValidationError("max_burst_kbps is required if "
"type is bandwidth_limit")
raise errors.ValidationError("max_burst_kbps is required if "
"type is bandwidth_limit")
@mf.register_model

View File

@ -0,0 +1,48 @@
# 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 jsonmodels import errors
import testtools
from dragonflow.db.models import qos
from dragonflow.tests import base as tests_base
class TestSync(tests_base.BaseTestCase):
def test_qos_rule_dscp_missing_mark(self):
with testtools.ExpectedException(errors.ValidationError):
qos.QosPolicyRule(
id='qosrule1',
type=qos.RULE_TYPE_DSCP_MARKING,
).validate()
def test_qos_rule_dscp_hax_mark(self):
# Check no exception raised
qos.QosPolicyRule(
id='qosrule1',
type=qos.RULE_TYPE_DSCP_MARKING,
dscp_mark=1,
).validate()
def test_qos_rule_max_bandwidth_missing_rate(self):
with testtools.ExpectedException(errors.ValidationError):
qos.QosPolicyRule(
id='qosrule1',
type=qos.RULE_TYPE_BANDWIDTH_LIMIT,
).validate()
def test_qos_rule_max_bandwidth_has_rate(self):
# Check no exception raised
qos.QosPolicyRule(
id='qosrule1',
type=qos.RULE_TYPE_BANDWIDTH_LIMIT,
max_burst_kbps=1,
).validate()