Merge "Add selenium test-case"

This commit is contained in:
Jenkins 2014-04-22 12:23:59 +00:00 committed by Gerrit Code Review
commit c33f8d8f89
4 changed files with 52 additions and 6 deletions

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<title>Tuskar QUnit Test Suite</title>
<link rel="stylesheet" href="{{ STATIC_URL }}horizon/lib/qunit/qunit.css" type="text/css" media="screen">
<script type="text/javascript" src="{{ STATIC_URL }}horizon/lib/jquery/jquery.min.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}horizon/lib/jquery/jquery.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}horizon/lib/qunit/qunit.js"></script>
{% include "horizon/_conf.html" %}

View File

@ -0,0 +1,32 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2012 Nebula, Inc.
#
# 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 horizon.test import helpers as test
class BrowserTests(test.SeleniumTestCase):
def test_qunit(self):
url = "%s%s" % (self.live_server_url, "/qunit_tuskar/")
self.selenium.get(url)
wait = self.ui.WebDriverWait(self.selenium, 10)
def qunit_done(driver):
text = driver.find_element_by_id("qunit-testresult").text
return "Tests completed" in text
wait.until(qunit_done)
failed = self.selenium.find_element_by_class_name("failed")
self.assertEqual(int(failed.text), 0)

View File

@ -21,12 +21,20 @@ from horizon.utils import secret_key as secret_key_utils
from tuskar_ui import exceptions
DEBUG = True
TEMPLATE_DEBUG = DEBUG
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
ROOT_PATH = os.path.abspath(os.path.join(TEST_DIR, ".."))
MEDIA_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'media'))
MEDIA_URL = '/media/'
STATIC_ROOT = os.path.abspath(os.path.join(ROOT_PATH, '..', 'static'))
STATIC_URL = '/static/'
SECRET_KEY = secret_key_utils.generate_or_read_from_file(
os.path.join(TEST_DIR, '.secret_key_store'))
ROOT_URLCONF = 'openstack_dashboard.urls'
ROOT_URLCONF = 'tuskar_ui.test.urls'
TEMPLATE_DIRS = (
os.path.join(TEST_DIR, 'templates'),
)

View File

@ -14,8 +14,14 @@
from django.conf import urls
from django.views import generic
import openstack_dashboard.urls
urlpatterns = urls.patterns('', urls.url(
r'^$',
generic.TemplateView.as_view(template_name="infrastructure/qunit.html"),
name='qunit_tests'))
urlpatterns = urls.patterns(
'',
urls.url(
r'^qunit_tuskar',
generic.TemplateView.as_view(
template_name="infrastructure/qunit.html"),
name='qunit_tests'),
urls.url(r'', urls.include(openstack_dashboard.urls))
)