changeset 75:76a23f5176f2

modifying path to scripts in javadoc
author Jana Fabrikova <jfabriko@redhat.com>
date Fri, 14 Jun 2013 10:56:14 +0200
parents 768acb232957
children 0d56ad371e7d
files ChangeLog Makefile src/org/thermostat/qa/testsuites/AgentTest.java src/org/thermostat/qa/testsuites/CliClientDBModificationsSmokeTest.java src/org/thermostat/qa/testsuites/CliClientSmokeTest.java src/org/thermostat/qa/testsuites/GuiClientDBModificationsSmokeTest.java src/org/thermostat/qa/testsuites/ServiceSmokeTests.java src/org/thermostat/qa/testsuites/StorageSmokeTest.java
diffstat 8 files changed, 40 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Jun 14 10:19:36 2013 +0200
+++ b/ChangeLog	Fri Jun 14 10:56:14 2013 +0200
@@ -1,3 +1,16 @@
+2013-06-14  Jana Fabrikova  <jfabriko@redhat.com>
+
+	* Makefile:
+	added one line copying the scripts to javadoc
+	* src/org/thermostat/qa/testsuites/AgentTest.java:
+	* src/org/thermostat/qa/testsuites/CliClientDBModificationsSmokeTest.java:
+	* src/org/thermostat/qa/testsuites/CliClientSmokeTest.java:
+	* src/org/thermostat/qa/testsuites/GuiClientDBModificationsSmokeTest.java:
+	* src/org/thermostat/qa/testsuites/ServiceSmokeTests.java:
+	* src/org/thermostat/qa/testsuites/StorageSmokeTest.java:
+	updating javadoc, fixing the path to scripts in javadoc
+	
+
 2013-06-14  Jana Fabrikova  <jfabriko@redhat.com>
 
 	* src/org/thermostat/qa/testsuites/ServiceSmokeTests.java:
--- a/Makefile	Fri Jun 14 10:19:36 2013 +0200
+++ b/Makefile	Fri Jun 14 10:56:14 2013 +0200
@@ -148,6 +148,7 @@
 	mkdir -p $(JAVADOC_DIR)
 	javadoc -d $(JAVADOC_DIR) -classpath src org.thermostat.qa.testsuites
 	cp -r patterns $(JAVADOC_DIR)/org/thermostat/qa/testsuites/
+	cp -r scripts $(JAVADOC_DIR)/org/thermostat/qa/testsuites/
 
 clean:
 	rm -rf $(BUILD_DIR)/org
--- a/src/org/thermostat/qa/testsuites/AgentTest.java	Fri Jun 14 10:19:36 2013 +0200
+++ b/src/org/thermostat/qa/testsuites/AgentTest.java	Fri Jun 14 10:56:14 2013 +0200
@@ -75,8 +75,8 @@
      * 
      * This test uses the following scripts:
      * <ul>
-     * <li><a href="../../../../../../scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a>,
-     * <li><a href="../../../../../../scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a>.
+     * <li><a href="scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a>,
+     * <li><a href="scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a>.
      * <ul>
      * 
      * @throws IOException
@@ -107,8 +107,8 @@
      * 
      * This test uses the following scripts:
      * <ul>
-     * <li><a href="../../../../../../scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a>,
-     * <li><a href="../../../../../../scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a>.
+     * <li><a href="scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a>,
+     * <li><a href="scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a>.
      * <ul>
      * 
      * @throws IOException
--- a/src/org/thermostat/qa/testsuites/CliClientDBModificationsSmokeTest.java	Fri Jun 14 10:19:36 2013 +0200
+++ b/src/org/thermostat/qa/testsuites/CliClientDBModificationsSmokeTest.java	Fri Jun 14 10:56:14 2013 +0200
@@ -79,17 +79,17 @@
      *  
      * This method uses scripts and files 
      * <ul>
-     * <li><a href="../../../../../../scripts/find_mongo_port.sh">find_mongo_port.sh</a>,
-     * <li><a href="../../../../../../scripts/add_vm.sh">add_vm.sh</a>,
-     * <li><a href="../../../../../../scripts/add_vm_db_commands.txt">add_vm_db_commands.txt</a>, 
-     * <li><a href="../../../../../../scripts/list-vms_therm_shell.txt">list-vms_therm_shell.txt</a>,
-     * <li><a href="../../../../../../scripts/delete_added_vm.sh">delete_added_vm.sh</a>,
-     * <li><a href="../../../../../../scripts/remove_vm_db_commands.txt">remove_vm_db_commands.txt</a>
+     * <li><a href="scripts/find_mongo_port.sh">find_mongo_port.sh</a>,
+     * <li><a href="scripts/add_vm.sh">add_vm.sh</a>,
+     * <li><a href="scripts/add_vm_db_commands.txt">add_vm_db_commands.txt</a>, 
+     * <li><a href="scripts/list-vms_therm_shell.txt">list-vms_therm_shell.txt</a>,
+     * <li><a href="scripts/delete_added_vm.sh">delete_added_vm.sh</a>,
+     * <li><a href="scripts/remove_vm_db_commands.txt">remove_vm_db_commands.txt</a>
      * <ul>
      * and rewrites one text file 
-     * <a href="../../../../../../scripts/mongoPortNumber.txt">mongoPortNumber.txt</a>.
+     * <a href="scripts/mongoPortNumber.txt">mongoPortNumber.txt</a>.
      * and one script file
-     * <a href="../../../../../../scripts/run_thermostat_shell_with_commands.sh">run_thermostat_shell_with_commands.sh</a>.
+     * <a href="scripts/run_thermostat_shell_with_commands.sh">run_thermostat_shell_with_commands.sh</a>.
      * 
      * @throws IOException
      * @throws AWTException
--- a/src/org/thermostat/qa/testsuites/CliClientSmokeTest.java	Fri Jun 14 10:19:36 2013 +0200
+++ b/src/org/thermostat/qa/testsuites/CliClientSmokeTest.java	Fri Jun 14 10:56:14 2013 +0200
@@ -101,7 +101,7 @@
      * of the shell.
      * 
      * This test uses the text file
-     * <a href="../../../../../../scripts/exit_therm_shell.txt">exit_therm_shell.txt</a>.
+     * <a href="scripts/exit_therm_shell.txt">exit_therm_shell.txt</a>.
      * 
      * @throws IOException
      */
@@ -133,7 +133,7 @@
      * and checks the output of the shell.
      * 
      * This test uses the text file
-     * <a href="../../../../../../scripts/help_therm_shell.txt">help_therm_shell.txt</a>.
+     * <a href="scripts/help_therm_shell.txt">help_therm_shell.txt</a>.
      * 
      * @throws IOException
      */
--- a/src/org/thermostat/qa/testsuites/GuiClientDBModificationsSmokeTest.java	Fri Jun 14 10:19:36 2013 +0200
+++ b/src/org/thermostat/qa/testsuites/GuiClientDBModificationsSmokeTest.java	Fri Jun 14 10:56:14 2013 +0200
@@ -85,10 +85,10 @@
      * <img src="patterns/noAA/AllAgentsDialog/close_button2.png"><br /><br /> 
      * This method uses scripts and files 
      * <ul>
-     * <li><a href="../../../../../../scripts/find_mongo_port_and_add_agent.sh">find_mongo_port_and_add_agent.sh</a>,
-     * <li><a href="../../../../../../scripts/add_agent_db_commands.txt">add_agent_db_commands.txt</a>, 
-     * <li><a href="../../../../../../scripts/delete_added_agent.sh">delete_added_agent.sh</a>,
-     * <li><a href="../../../../../../scripts/remove_agent_db_commands.txt">remove_agent_db_commands.txt</a>
+     * <li><a href="scripts/find_mongo_port_and_add_agent.sh">find_mongo_port_and_add_agent.sh</a>,
+     * <li><a href="scripts/add_agent_db_commands.txt">add_agent_db_commands.txt</a>, 
+     * <li><a href="scripts/delete_added_agent.sh">delete_added_agent.sh</a>,
+     * <li><a href="scripts/remove_agent_db_commands.txt">remove_agent_db_commands.txt</a>
      * <ul>
      * and rewrites text file 
      * <a href="../../../../../../scripts/mongoPortNumber.txt">mongoPortNumber.txt</a>.
--- a/src/org/thermostat/qa/testsuites/ServiceSmokeTests.java	Fri Jun 14 10:19:36 2013 +0200
+++ b/src/org/thermostat/qa/testsuites/ServiceSmokeTests.java	Fri Jun 14 10:56:14 2013 +0200
@@ -70,7 +70,7 @@
     /**
      * Method getNumberOfAgentsRunning
      * runs the script
-     * <a href="../../../../../../scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a> 
+     * <a href="scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a> 
      * 
      * 
      * @return
@@ -89,7 +89,7 @@
     /**
      * Method stopAllThermostatAgents
      * kills all processes that are thermostat agents by running script
-     * <a href="../../../../../../scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a> 
+     * <a href="scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a> 
      * 
      * @throws IOException
      */
@@ -102,7 +102,7 @@
     /**
      * Method getNumberOfMongosRunning
      * runs the script
-     * <a href="../../../../../../scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a> 
+     * <a href="scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a> 
      * 
      * 
      * @return
@@ -127,9 +127,9 @@
      * 
      * Methods called from this test use the following scripts:
      * <ul>
-     * <li><a href="../../../../../../scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a>,
-     * <li><a href="../../../../../../scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a>,
-     * <li><a href="../../../../../../scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a>.
+     * <li><a href="scripts/list_all_therm_agents.sh">list_all_therm_agents.sh</a>,
+     * <li><a href="scripts/stop_all_therm_agents.sh">stop_all_therm_agents.sh</a>,
+     * <li><a href="scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a>.
      * <ul>
      * 
      * @throws IOException
--- a/src/org/thermostat/qa/testsuites/StorageSmokeTest.java	Fri Jun 14 10:19:36 2013 +0200
+++ b/src/org/thermostat/qa/testsuites/StorageSmokeTest.java	Fri Jun 14 10:56:14 2013 +0200
@@ -98,7 +98,7 @@
      * tries to list all mongo processes without starting thermostat storage.
      * The output of the script should not be null, but it should empty.
      * This method uses script 
-     * <a href="../../../../../../scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a>.
+     * <a href="scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a>.
      * 
      * @throws IOException
      */
@@ -140,7 +140,7 @@
      * lists all mongo processes and tests if this list is not null and there
      * is exactly one mongo process. 
      * This method uses script 
-     * <a href="../../../../../../scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a>.
+     * <a href="scripts/ps_mongo_daemon.sh">ps_mongo_daemon.sh</a>.
      * 
      * @throws IOException
      */