summaryrefslogtreecommitdiff
path: root/neutronclient/tests/unit/qos
diff options
context:
space:
mode:
Diffstat (limited to 'neutronclient/tests/unit/qos')
-rw-r--r--neutronclient/tests/unit/qos/__init__.py0
-rw-r--r--neutronclient/tests/unit/qos/test_cli20_bandwidth_limit_rule.py137
-rw-r--r--neutronclient/tests/unit/qos/test_cli20_dscp_marking_rule.py91
-rw-r--r--neutronclient/tests/unit/qos/test_cli20_minimum_bandwidth_rule.py143
-rw-r--r--neutronclient/tests/unit/qos/test_cli20_policy.py192
-rw-r--r--neutronclient/tests/unit/qos/test_cli20_rule.py44
6 files changed, 0 insertions, 607 deletions
diff --git a/neutronclient/tests/unit/qos/__init__.py b/neutronclient/tests/unit/qos/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/neutronclient/tests/unit/qos/__init__.py
+++ /dev/null
diff --git a/neutronclient/tests/unit/qos/test_cli20_bandwidth_limit_rule.py b/neutronclient/tests/unit/qos/test_cli20_bandwidth_limit_rule.py
deleted file mode 100644
index 8d4380a..0000000
--- a/neutronclient/tests/unit/qos/test_cli20_bandwidth_limit_rule.py
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 2015 Huawei Technologies India Pvt Ltd.
-# All Rights Reserved
-#
-# 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.
-#
-
-import sys
-
-from neutronclient.neutron.v2_0.qos import bandwidth_limit_rule as bw_rule
-from neutronclient.tests.unit import test_cli20
-
-
-class CLITestV20QoSBandwidthLimitRuleJSON(test_cli20.CLITestV20Base):
-
- non_admin_status_resources = ['bandwidth_limit_rule']
-
- def setUp(self):
- super(CLITestV20QoSBandwidthLimitRuleJSON, self).setUp()
- self.res = 'bandwidth_limit_rule'
- self.cmd_res = 'qos_bandwidth_limit_rule'
- self.ress = self.res + 's'
- self.cmd_ress = self.cmd_res + 's'
-
- def test_create_bandwidth_limit_rule_with_max_kbps(self):
- cmd = bw_rule.CreateQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- max_kbps = '1337'
- policy_id = 'policy_id'
- args = ['--max-kbps', max_kbps, policy_id]
- position_names = ['max_kbps']
- position_values = [max_kbps]
- self._test_create_resource(self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_create_bandwidth_limit_rule_with_max_burst_kbps(self):
- cmd = bw_rule.CreateQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- max_burst_kbps = '1337'
- policy_id = 'policy_id'
- args = ['--max-burst-kbps', max_burst_kbps, policy_id]
- position_names = ['max_burst_kbps']
- position_values = [max_burst_kbps]
- self._test_create_resource(self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_create_bandwidth_limit_rule_with_all_params(self):
- cmd = bw_rule.CreateQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- max_kbps = '1337'
- max_burst_kbps = '1337'
- policy_id = 'policy_id'
- args = ['--max-kbps', max_kbps,
- '--max-burst-kbps', max_burst_kbps,
- policy_id]
- position_names = ['max_kbps', 'max_burst_kbps']
- position_values = [max_kbps, max_burst_kbps]
- self._test_create_resource(self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_update_bandwidth_limit_rule_with_max_kbps(self):
- cmd = bw_rule.UpdateQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- max_kbps = '1337'
- policy_id = 'policy_id'
- args = ['--max-kbps', max_kbps, my_id, policy_id]
- self._test_update_resource(self.res, cmd, my_id, args,
- {'max_kbps': max_kbps, },
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_update_bandwidth_limit_rule_with_max_burst_kbps(self):
- cmd = bw_rule.UpdateQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- max_burst_kbps = '1337'
- policy_id = 'policy_id'
- args = ['--max-burst-kbps', max_burst_kbps,
- my_id, policy_id]
- self._test_update_resource(self.res, cmd, my_id, args,
- {'max_burst_kbps': max_burst_kbps},
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_update_bandwidth_limit_rule_with_all_params(self):
- cmd = bw_rule.UpdateQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- max_kbps = '1337'
- max_burst_kbps = '1337'
- policy_id = 'policy_id'
- args = ['--max-kbps', max_kbps,
- '--max-burst-kbps', max_burst_kbps,
- my_id, policy_id]
- self._test_update_resource(self.res, cmd, my_id, args,
- {'max_kbps': max_kbps,
- 'max_burst_kbps': max_burst_kbps},
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_delete_bandwidth_limit_rule(self):
- cmd = bw_rule.DeleteQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- policy_id = 'policy_id'
- args = [my_id, policy_id]
- self._test_delete_resource(self.res, cmd, my_id, args,
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_show_bandwidth_limit_rule(self):
- cmd = bw_rule.ShowQoSBandwidthLimitRule(test_cli20.MyApp(sys.stdout),
- None)
- policy_id = 'policy_id'
- args = ['--fields', 'id', self.test_id, policy_id]
- self._test_show_resource(self.res, cmd, self.test_id, args,
- ['id'], cmd_resource=self.cmd_res,
- parent_id=policy_id)
diff --git a/neutronclient/tests/unit/qos/test_cli20_dscp_marking_rule.py b/neutronclient/tests/unit/qos/test_cli20_dscp_marking_rule.py
deleted file mode 100644
index 881b2f3..0000000
--- a/neutronclient/tests/unit/qos/test_cli20_dscp_marking_rule.py
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 2016 Comcast Inc.
-# All Rights Reserved
-#
-# 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.
-#
-
-import sys
-
-from neutronclient.common import exceptions
-from neutronclient.neutron.v2_0.qos import dscp_marking_rule as dscp_rule
-from neutronclient.tests.unit import test_cli20
-
-
-class CLITestV20QoSDscpMarkingRuleJSON(test_cli20.CLITestV20Base):
-
- non_admin_status_resources = ['dscp_marking_rule']
-
- def setUp(self):
- super(CLITestV20QoSDscpMarkingRuleJSON, self).setUp()
- self.dscp_res = 'dscp_marking_rule'
- self.dscp_cmd_res = 'qos_dscp_marking_rule'
- self.dscp_ress = self.dscp_res + 's'
- self.dscp_cmd_ress = self.dscp_cmd_res + 's'
-
- def test_create_dscp_marking_rule_with_dscp_mark(self):
- cmd = dscp_rule.CreateQoSDscpMarkingRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- policy_id = 'policy_id'
- position_names = ['dscp_mark']
- valid_dscp_marks = ['0', '56']
- invalid_dscp_marks = ['-1', '19', '42', '44', '57', '58']
- for dscp_mark in valid_dscp_marks:
- args = ['--dscp-mark', dscp_mark, policy_id]
- position_values = [dscp_mark]
- self._test_create_resource(self.dscp_res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.dscp_cmd_res,
- parent_id=policy_id)
- for dscp_mark in invalid_dscp_marks:
- args = ['--dscp-mark', dscp_mark, policy_id]
- position_values = [dscp_mark]
- self._test_create_resource(
- self.dscp_res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.dscp_cmd_res,
- parent_id=policy_id,
- no_api_call=True,
- expected_exception=exceptions.CommandError)
-
- def test_update_dscp_marking_rule_with_dscp_mark(self):
- cmd = dscp_rule.UpdateQoSDscpMarkingRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- dscp_mark = '56'
- policy_id = 'policy_id'
- args = ['--dscp-mark', dscp_mark,
- my_id, policy_id]
- self._test_update_resource(self.dscp_res, cmd, my_id, args,
- {'dscp_mark': dscp_mark},
- cmd_resource=self.dscp_cmd_res,
- parent_id=policy_id)
-
- def test_delete_dscp_marking_rule(self):
- cmd = dscp_rule.DeleteQoSDscpMarkingRule(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'my-id'
- policy_id = 'policy_id'
- args = [my_id, policy_id]
- self._test_delete_resource(self.dscp_res, cmd, my_id, args,
- cmd_resource=self.dscp_cmd_res,
- parent_id=policy_id)
-
- def test_show_dscp_marking_rule(self):
- cmd = dscp_rule.ShowQoSDscpMarkingRule(test_cli20.MyApp(sys.stdout),
- None)
- policy_id = 'policy_id'
- args = ['--fields', 'id', self.test_id, policy_id]
- self._test_show_resource(self.dscp_res, cmd, self.test_id, args,
- ['id'], cmd_resource=self.dscp_cmd_res,
- parent_id=policy_id)
diff --git a/neutronclient/tests/unit/qos/test_cli20_minimum_bandwidth_rule.py b/neutronclient/tests/unit/qos/test_cli20_minimum_bandwidth_rule.py
deleted file mode 100644
index 39dccd6..0000000
--- a/neutronclient/tests/unit/qos/test_cli20_minimum_bandwidth_rule.py
+++ /dev/null
@@ -1,143 +0,0 @@
-# Copyright (c) 2016 Intel Corporation.
-# All Rights Reserved
-#
-# 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.
-#
-
-import sys
-
-from neutronclient.neutron.v2_0.qos import minimum_bandwidth_rule as bw_rule
-from neutronclient.tests.unit import test_cli20
-
-
-class CLITestV20QoSMinimumBandwidthRuleJSON(test_cli20.CLITestV20Base):
-
- non_admin_status_resources = ['minimum_bandwidth_rule']
-
- def setUp(self):
- super(CLITestV20QoSMinimumBandwidthRuleJSON, self).setUp()
- self.res = 'minimum_bandwidth_rule'
- self.cmd_res = 'qos_minimum_bandwidth_rule'
- self.ress = self.res + 's'
- self.cmd_ress = self.cmd_res + 's'
-
- def test_create_minimum_bandwidth_rule_min_kbps_only(self):
- cmd = bw_rule.CreateQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- my_id = 'my-id'
- min_kbps = '1500'
- policy_id = 'policy_id'
- args = ['--min-kbps', min_kbps,
- policy_id]
- position_names = ['min_kbps']
- position_values = [min_kbps]
- self.assertRaises(SystemExit, self._test_create_resource,
- self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id,
- no_api_call=True)
-
- def test_create_minimum_bandwidth_rule_direction_only(self):
- cmd = bw_rule.CreateQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- my_id = 'my-id'
- direction = 'egress'
- policy_id = 'policy_id'
- args = ['--direction', direction,
- policy_id]
- position_names = ['direction']
- position_values = [direction]
- self.assertRaises(SystemExit, self._test_create_resource,
- self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id,
- no_api_call=True)
-
- def test_create_minimum_bandwidth_rule_none(self):
- cmd = bw_rule.CreateQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- my_id = 'my-id'
- policy_id = 'policy_id'
- args = [policy_id]
- position_names = []
- position_values = []
- self.assertRaises(SystemExit, self._test_create_resource,
- self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id,
- no_api_call=True)
-
- def test_create_minimum_bandwidth_rule_all(self):
- cmd = bw_rule.CreateQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- my_id = 'my-id'
- min_kbps = '1500'
- direction = 'egress'
- policy_id = 'policy_id'
- args = ['--min-kbps', min_kbps,
- '--direction', direction,
- policy_id]
- position_names = ['direction', 'min_kbps']
- position_values = [direction, min_kbps]
- self._test_create_resource(self.res, cmd, '', my_id, args,
- position_names, position_values,
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_update_minimum_bandwidth_rule(self):
- cmd = bw_rule.UpdateQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- my_id = 'my-id'
- min_kbps = '1200'
- direction = 'egress'
- policy_id = 'policy_id'
- args = ['--min-kbps', min_kbps,
- '--direction', direction,
- my_id, policy_id]
- self._test_update_resource(self.res, cmd, my_id, args,
- {'min_kbps': min_kbps,
- 'direction': direction},
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_delete_minimum_bandwidth_rule(self):
- cmd = bw_rule.DeleteQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- my_id = 'my-id'
- policy_id = 'policy_id'
- args = [my_id, policy_id]
- self._test_delete_resource(self.res, cmd, my_id, args,
- cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_show_minimum_bandwidth_rule(self):
- cmd = bw_rule.ShowQoSMinimumBandwidthRule(
- test_cli20.MyApp(sys.stdout), None)
- policy_id = 'policy_id'
- args = [self.test_id, policy_id]
- self._test_show_resource(self.res, cmd, self.test_id, args,
- [], cmd_resource=self.cmd_res,
- parent_id=policy_id)
-
- def test_list_minimum_bandwidth_rule(self):
- cmd = bw_rule.ListQoSMinimumBandwidthRules(
- test_cli20.MyApp(sys.stdout), None)
- policy_id = 'policy_id'
- args = [policy_id]
- contents = [{'name': 'rule1', 'min-kbps': 1000, 'direction': 'egress'}]
- self._test_list_resources(self.ress, cmd, parent_id=policy_id,
- cmd_resources=self.cmd_ress,
- base_args=args, response_contents=contents)
diff --git a/neutronclient/tests/unit/qos/test_cli20_policy.py b/neutronclient/tests/unit/qos/test_cli20_policy.py
deleted file mode 100644
index b1db866..0000000
--- a/neutronclient/tests/unit/qos/test_cli20_policy.py
+++ /dev/null
@@ -1,192 +0,0 @@
-# Copyright 2015 Huawei Technologies India Pvt Ltd.
-# All Rights Reserved
-#
-# 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.
-#
-
-import sys
-
-from neutronclient.neutron.v2_0.qos import policy as policy
-from neutronclient.tests.unit import test_cli20
-
-
-class CLITestV20QoSPolicyJSON(test_cli20.CLITestV20Base):
-
- non_admin_status_resources = ['policy']
-
- def setUp(self):
- super(CLITestV20QoSPolicyJSON, self).setUp()
- self.res = 'policy'
- self.cmd_res = 'qos_policy'
- self.ress = "policies"
- self.cmd_ress = 'qos_policies'
-
- def test_create_policy_with_only_keyattributes(self):
- # Create qos policy abc.
- cmd = policy.CreateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- myid = 'myid'
- name = 'abc'
- args = [name]
- position_names = ['name']
- position_values = [name]
- self._test_create_resource(self.res, cmd, name, myid, args,
- position_names, position_values,
- cmd_resource=self.cmd_res)
-
- def test_create_policy_with_description(self):
- # Create qos policy xyz --description abc.
- cmd = policy.CreateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- myid = 'myid'
- name = 'abc'
- description = 'policy_abc'
- args = [name, '--description', description]
- position_names = ['name', 'description']
- position_values = [name, description]
- self._test_create_resource(self.res, cmd, name, myid, args,
- position_names, position_values,
- cmd_resource=self.cmd_res)
-
- def test_create_policy_with_shared(self):
- # Create qos policy abc shared across tenants
- cmd = policy.CreateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- myid = 'myid'
- name = 'abc'
- description = 'policy_abc'
- args = [name, '--description', description, '--shared']
- position_names = ['name', 'description', 'shared']
- position_values = [name, description, True]
- self._test_create_resource(self.res, cmd, name, myid, args,
- position_names, position_values,
- cmd_resource=self.cmd_res)
-
- def test_create_policy_with_unicode(self):
- # Create qos policy u'\u7f51\u7edc'.
- cmd = policy.CreateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- myid = 'myid'
- name = u'\u7f51\u7edc'
- description = u'\u7f51\u7edc'
- args = [name, '--description', description]
- position_names = ['name', 'description']
- position_values = [name, description]
- self._test_create_resource(self.res, cmd, name, myid, args,
- position_names, position_values,
- cmd_resource=self.cmd_res)
-
- def test_update_policy(self):
- # policy-update myid --name newname.
- cmd = policy.UpdateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_update_resource(self.res, cmd, 'myid',
- ['myid', '--name', 'newname'],
- {'name': 'newname', },
- cmd_resource=self.cmd_res)
-
- def test_update_policy_description(self):
- # policy-update myid --name newname --description newdesc
- cmd = policy.UpdateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_update_resource(self.res, cmd, 'myid',
- ['myid', '--description', 'newdesc'],
- {'description': 'newdesc', },
- cmd_resource=self.cmd_res)
-
- def test_update_policy_to_shared(self):
- # policy-update myid --shared
- cmd = policy.UpdateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_update_resource(self.res, cmd, 'myid',
- ['myid', '--shared'],
- {'shared': True, },
- cmd_resource=self.cmd_res)
-
- def test_update_policy_to_no_shared(self):
- # policy-update myid --no-shared
- cmd = policy.UpdateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_update_resource(self.res, cmd, 'myid',
- ['myid', '--no-shared'],
- {'shared': False, },
- cmd_resource=self.cmd_res)
-
- def test_update_policy_to_shared_no_shared_together(self):
- # policy-update myid --shared --no-shared
- cmd = policy.UpdateQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self.assertRaises(
- SystemExit,
- self._test_update_resource,
- self.res, cmd, 'myid',
- ['myid', '--shared', '--no-shared'], {},
- cmd_resource=self.cmd_res
- )
-
- def test_list_policies(self):
- # qos-policy-list.
- cmd = policy.ListQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_list_resources(self.ress, cmd, True,
- cmd_resources=self.cmd_ress)
-
- def test_list_policies_pagination(self):
- # qos-policy-list for pagination.
- cmd = policy.ListQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_list_resources_with_pagination(self.ress, cmd,
- cmd_resources=self.cmd_ress)
-
- def test_list_policies_sort(self):
- # sorted list: qos-policy-list --sort-key name --sort-key id
- # --sort-key asc --sort-key desc
- cmd = policy.ListQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_list_resources(self.ress, cmd,
- sort_key=["name", "id"],
- sort_dir=["asc", "desc"],
- cmd_resources=self.cmd_ress)
-
- def test_list_policies_limit(self):
- # size (1000) limited list: qos-policy-list -P.
- cmd = policy.ListQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- self._test_list_resources(self.ress, cmd, page_size=1000,
- cmd_resources=self.cmd_ress)
-
- def test_show_policy_id(self):
- # qos-policy-show test_id.
- cmd = policy.ShowQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- args = ['--fields', 'id', self.test_id]
- self._test_show_resource(self.res, cmd, self.test_id, args,
- ['id'], cmd_resource=self.cmd_res)
-
- def test_show_policy_name(self):
- # qos-policy-show.
- cmd = policy.ShowQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- args = ['--fields', 'id', '--fields', 'name', self.test_id]
- self._test_show_resource(self.res, cmd, self.test_id,
- args, ['id', 'name'],
- cmd_resource=self.cmd_res)
-
- def test_delete_policy(self):
- # qos-policy-delete my-id.
- cmd = policy.DeleteQoSPolicy(test_cli20.MyApp(sys.stdout),
- None)
- my_id = 'myid1'
- args = [my_id]
- self._test_delete_resource(self.res, cmd, my_id, args,
- cmd_resource=self.cmd_res)
diff --git a/neutronclient/tests/unit/qos/test_cli20_rule.py b/neutronclient/tests/unit/qos/test_cli20_rule.py
deleted file mode 100644
index f77c3c4..0000000
--- a/neutronclient/tests/unit/qos/test_cli20_rule.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2015 Huawei Technologies India Pvt Ltd.
-# All Rights Reserved
-#
-# 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.
-#
-
-import sys
-
-from neutronclient.neutron.v2_0.qos import rule as qos_rule
-from neutronclient.tests.unit import test_cli20
-
-
-class CLITestV20QoSRuleJSON(test_cli20.CLITestV20Base):
-
- non_admin_status_resources = ['bandwidth_limit_rule',
- 'dscp_marking_rule',
- 'minimum_bandwidth_rule']
-
- def setUp(self):
- super(CLITestV20QoSRuleJSON, self).setUp()
-
- def test_list_qos_rule_types(self):
- # qos_rule_types.
- resources = 'rule_types'
- cmd_resources = 'qos_rule_types'
- response_contents = [{'type': 'bandwidth_limit'},
- {'type': 'dscp_marking'},
- {'type': 'minimum_bandwidth'}]
-
- cmd = qos_rule.ListQoSRuleTypes(test_cli20.MyApp(sys.stdout),
- None)
- self._test_list_resources(resources, cmd, True,
- response_contents=response_contents,
- cmd_resources=cmd_resources)