# 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 django.core.urlresolvers import reverse from openstack_dashboard.test import helpers as test INDEX_URL = reverse( 'horizon:project:data_processing.wizard:index') CLUSTER_GUIDE_URL = reverse( 'horizon:project:data_processing.wizard:cluster_guide') CLUSTER_GUIDE_RESET_URL = reverse( 'horizon:project:data_processing.wizard:reset_cluster_guide', kwargs={"reset_cluster_guide": "true"}) JOB_GUIDE_URL = reverse( 'horizon:project:data_processing.wizard:jobex_guide') JOB_GUIDE_RESET_URL = reverse( 'horizon:project:data_processing.wizard:reset_jobex_guide', kwargs={"reset_jobex_guide": "true"}) class DataProcessingClusterGuideTests(test.TestCase): def test_index(self): res = self.client.get(INDEX_URL) self.assertTemplateUsed( res, 'project/data_processing.wizard/wizard.html') self.assertContains(res, 'Data Processing Guides') self.assertContains(res, 'Cluster Creation Guide') def test_cluster_guide(self): res = self.client.get(CLUSTER_GUIDE_URL) self.assertTemplateUsed( res, 'project/data_processing.wizard/cluster_guide.html') self.assertContains(res, 'Guided Cluster Creation') self.assertContains(res, 'Current choice') def test_cluster_guide_reset(self): res = self.client.get(CLUSTER_GUIDE_RESET_URL) self.assertRedirectsNoFollow(res, CLUSTER_GUIDE_URL) def test_jobex_guide(self): res = self.client.get(JOB_GUIDE_URL) self.assertTemplateUsed( res, 'project/data_processing.wizard/jobex_guide.html') self.assertContains(res, 'Guided Job Execution') def test_jobex_guide_reset(self): res = self.client.get(JOB_GUIDE_RESET_URL) self.assertRedirectsNoFollow(res, JOB_GUIDE_URL)