Skip to content

Commit

Permalink
Merge "Added integration tests for Admin > System > Defaults Panel"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed May 24, 2016
2 parents 6665848 + 27938b1 commit 91443df
Show file tree
Hide file tree
Showing 2 changed files with 158 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# 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 openstack_dashboard.test.integration_tests.pages import basepage
from openstack_dashboard.test.integration_tests.regions import forms
from openstack_dashboard.test.integration_tests.regions import tables


class DefaultQuotasTable(tables.TableRegion):
name = "quotas"

UPDATE_DEFAULTS_FORM_FIELDS = (
"injected_file_content_bytes",
"metadata_items",
"ram",
"key_pairs",
"injected_file_path_bytes",
"instances",
"injected_files",
"cores",
"gigabytes",
"snapshots",
"volumes"
)

@tables.bind_table_action('update_defaults')
def update(self, update_button):
update_button.click()
return forms.FormRegion(
self.driver,
self.conf,
None,
field_mappings=self.UPDATE_DEFAULTS_FORM_FIELDS
)


class DefaultsPage(basepage.BaseNavigationPage):

QUOTAS_TABLE_NAME_COLUMN = 'name'
QUOTAS_TABLE_LIMIT_COLUMN = 'limit'
DEFAULT_QUOTA_NAMES = [
'Injected File Content Bytes',
'Metadata Items',
'RAM (MB)',
'Key Pairs',
'Length of Injected File Path',
'Instances',
'Injected Files',
'VCPUs',
'Total Size of Volumes and Snapshots (GiB)',
'Volume Snapshots',
'Volumes'
]

def __init__(self, driver, conf):
super(DefaultsPage, self).__init__(driver, conf)
self._page_title = "Defaults"

def _get_quota_row(self, name):
return self.default_quotas_table.get_row(
self.QUOTAS_TABLE_NAME_COLUMN, name)

@property
def default_quotas_table(self):
return DefaultQuotasTable(self.driver, self.conf)

@property
def quota_values(self):
quota_dict = {}
for row in self.default_quotas_table.rows:
if row.cells[self.QUOTAS_TABLE_NAME_COLUMN].text in \
self.DEFAULT_QUOTA_NAMES:
quota_dict[row.cells[self.QUOTAS_TABLE_NAME_COLUMN].text] =\
int(row.cells[self.QUOTAS_TABLE_LIMIT_COLUMN].text)
return quota_dict

def update_defaults(self, add_up):
update_form = self.default_quotas_table.update()
update_form.injected_file_content_bytes.value = \
int(update_form.injected_file_content_bytes.value) + add_up

update_form.metadata_items.value = \
int(update_form.metadata_items.value) + add_up

update_form.ram.value = int(update_form.ram.value) + add_up
update_form.key_pairs.value = int(update_form.key_pairs.value) + add_up
update_form.injected_file_path_bytes.value = \
int(update_form.injected_file_path_bytes.value) + add_up
update_form.instances.value = int(update_form.instances.value) + add_up
update_form.injected_files.value = int(
update_form.injected_files.value) + add_up
update_form.cores.value = int(update_form.cores.value) + add_up
update_form.gigabytes.value = int(update_form.gigabytes.value) + add_up
update_form.snapshots.value = int(update_form.snapshots.value) + add_up
update_form.volumes.value = int(update_form.volumes.value) + add_up

update_form.submit()

def is_quota_a_match(self, quota_name, limit):
row = self._get_quota_row(quota_name)
return row.cells[self.QUOTAS_TABLE_LIMIT_COLUMN].text == str(limit)
48 changes: 48 additions & 0 deletions openstack_dashboard/test/integration_tests/tests/test_defaults.py
Original file line number Diff line number Diff line change
@@ -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.

import random

from openstack_dashboard.test.integration_tests import helpers
from openstack_dashboard.test.integration_tests.regions import messages


class TestDefaults(helpers.AdminTestCase):

def setUp(self):
super(TestDefaults, self).setUp()
self.defaults_page = self.home_pg.go_to_system_defaultspage()
self.add_up = random.randint(1, 10)

def test_update_defaults(self):
"""Tests the Update Default Quotas functionality:
1) Login as Admin and go to Admin > System > Defaults
2) Updates default Quotas by adding a random number between 1 and 10
3) Verifies that the updated values are present in the
Quota Defaults table
"""
default_quota_values = self.defaults_page.quota_values
self.defaults_page.update_defaults(self.add_up)

self.assertTrue(
self.defaults_page.find_message_and_dismiss(messages.SUCCESS))
self.assertFalse(
self.defaults_page.find_message_and_dismiss(messages.ERROR))

self.assertTrue(len(default_quota_values) > 0)

for quota_name in default_quota_values:
self.assertTrue(
self.defaults_page.is_quota_a_match(
quota_name,
default_quota_values[quota_name] + self.add_up
))

0 comments on commit 91443df

Please sign in to comment.