blob: 3a3264e9cf16d9fbd50241a0a7f875a14beca5af [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.
package com.cloud.test.ui;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import org.junit.Test;
import com.thoughtworks.selenium.SeleniumException;
public class AddAndDeleteATemplate extends AbstractSeleniumTestCase {
@Test
public void testAddAndDeleteTemplate() throws Exception {
try {
selenium.open("/client/");
selenium.type("account_username", "admin");
selenium.type("account_password", "password");
selenium.click("loginbutton");
Thread.sleep(3000);
assertTrue(selenium.isTextPresent("admin"));
selenium.click("//div[@id='leftmenu_templates']/div");
selenium.click("//div[@id='leftmenu_submenu_my_template']/div/div[2]");
Thread.sleep(3000);
selenium.click("label");
selenium.type("add_template_name", "abc");
selenium.type("add_template_display_text", "abc");
String template_url =
System.getProperty("add_template_url", "http://10.91.28.6/templates/centos53-x86_64/latest/f59f18fb-ae94-4f97-afd2-f84755767aca.vhd.bz2");
selenium.type("add_template_url", template_url);
String template_zone = System.getProperty("add_template_zone", "All Zones");
selenium.select("add_template_zone", "label=" + template_zone);
String template_os_type = System.getProperty("add_template_os_type", "CentOS 5.3 (32-bit)");
selenium.select("add_template_os_type", "label=" + template_os_type);
selenium.click("//div[28]/div[11]/button[1]");
Thread.sleep(3000);
int i = 1;
try {
for (;; i++) {
System.out.println("i= " + i);
selenium.click("//div[" + i + "]/div/div[2]/span/span");
}
} catch (Exception ex) {
s_logger.info("[ignored]"
+ "error during clicking test on template: " + ex.getLocalizedMessage());
}
for (int second = 0;; second++) {
if (second >= 60)
fail("timeout");
try {
if (selenium.isVisible("//div[@id='after_action_info_container_on_top']"))
break;
} catch (Exception e) {
s_logger.info("[ignored]"
+ "error during visibility test of template: " + e.getLocalizedMessage());
}
Thread.sleep(10000);
}
assertTrue(selenium.isTextPresent("Adding succeeded"));
Thread.sleep(3000);
int status = 1;
while (!selenium.isTextPresent("Ready")) {
for (int j = 1; j <= i; j++)
{
if (selenium.isTextPresent("Ready")) {
status = 0;
break;
}
selenium.click("//div[" + j + "]/div/div[2]/span/span");
}
if (status == 0) {
break;
} else {
selenium.click("//div[@id='leftmenu_submenu_featured_template']/div/div[2]");
Thread.sleep(3000);
selenium.click("//div[@id='leftmenu_submenu_my_template']/div/div[2]");
Thread.sleep(3000);
}
}
selenium.click("link=Delete Template");
selenium.click("//div[28]/div[11]/button[1]");
for (int second = 0;; second++) {
if (second >= 60)
fail("timeout");
try {
if (selenium.isVisible("after_action_info_container_on_top"))
break;
} catch (Exception e) {
s_logger.info("[ignored]"
+ "error checking visibility after test completion for template: " + e.getLocalizedMessage());
}
Thread.sleep(1000);
}
assertTrue(selenium.isTextPresent("Delete Template action succeeded"));
selenium.click("main_logout");
selenium.waitForPageToLoad("30000");
assertTrue(selenium.isTextPresent("Welcome to Management Console"));
} catch (SeleniumException ex) {
System.err.println(ex.getMessage());
fail(ex.getMessage());
throw ex;
}
}
}