You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(899) |
Aug
(493) |
Sep
(542) |
Oct
(674) |
Nov
(365) |
Dec
(906) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(159) |
Feb
(547) |
Mar
(583) |
Apr
(775) |
May
(1169) |
Jun
(809) |
Jul
(287) |
Aug
(629) |
Sep
(734) |
Oct
(952) |
Nov
(493) |
Dec
(493) |
2007 |
Jan
(292) |
Feb
(1007) |
Mar
(137) |
Apr
(19) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Nikolay M. <nbm...@us...> - 2007-05-31 12:35:40
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv9066/tests Modified Files: preferences.xml Log Message: Import User Defaults (old) Index: preferences.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/preferences.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** preferences.xml 26 Apr 2007 09:38:12 -0000 1.9 --- preferences.xml 31 May 2007 12:35:40 -0000 1.10 *************** *** 87,90 **** --- 87,98 ---- </target> + <target name="Import User Defaults (old)"> + <java fork="true" classpathref="classpath" + classname="com.intel.gpe.tests.gui.UserPreferences" + dir="${basedir}"> + <arg line="importUD convert_old.properties ../clients/src/com/intel/gpe/client2/defaults/common.properties"/> + </java> + </target> + <target name="Import Tests Defaults"> <java fork="true" classpathref="classpath" |
From: Nikolay M. <nbm...@us...> - 2007-05-11 14:19:01
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv16345/tests/src/com/intel/gpe/tests/gui Modified Files: UserPreferences.java Log Message: improving editPreferences Index: UserPreferences.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/UserPreferences.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** UserPreferences.java 26 Apr 2007 09:38:12 -0000 1.19 --- UserPreferences.java 11 May 2007 14:18:59 -0000 1.20 *************** *** 256,260 **** try { if (!root.nodeExists(r)) { ! System.err.println("The node " + r + " is absent."); continue; } --- 256,272 ---- try { if (!root.nodeExists(r)) { ! int lastSlash = r.lastIndexOf('/'); ! String nodeName = r.substring(0, lastSlash); ! if (!root.nodeExists(nodeName)) { ! System.err.println("The node " + r + " is absent."); ! continue; ! } ! Preferences node = root.node(nodeName); ! String key = r.substring(lastSlash + 1); ! String value = node.get(key, "UnDeFiNeD"); ! if (!value.equals("UnDeFiNeD")) { ! node.remove(key); ! System.out.println("The key " + r + " is removed."); ! } continue; } |
From: Nikolay M. <nbm...@us...> - 2007-04-26 09:38:15
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv802/tests/src/com/intel/gpe/tests Added Files: FileTools.java Log Message: Preparation of a test environment to new (maven/svn) project --- NEW FILE: FileTools.java --- /* * Copyright (c) 2000-2007, Intel Corporation All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * (1) Redistributions of source code must retain the above copyright notice, * this list of conditions and the disclaimer at the end. Redistributions in * binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other * materials provided with the distribution. * * (2) Neither the name of Intel Corporation nor the names of its contributors * may be used to endorse or promote products derived from this software without * specific prior written permission. * * DISCLAIMER * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package com.intel.gpe.tests; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; /** * @author Ralf Ratering * @version $Id: FileTools.java,v 1.1 2007/04/26 09:38:13 nbmalysh Exp $ */ public class FileTools { public static void writeBytesToFile(byte[] bytes, File file) throws IOException { OutputStream os = new FileOutputStream(file); os.write(bytes); os.close(); } public static byte[] readBytesFromInputStream(InputStream is) throws IOException { DataInputStream dis = new DataInputStream(is); byte[] bytes = new byte[dis.available()]; dis.readFully(bytes); return bytes; } public static byte[] readBytesFromFile(File file) throws IOException { InputStream is = new FileInputStream(file); long length = file.length(); if (length > Integer.MAX_VALUE) { throw new IOException("File size " + length + " is too large."); } byte[] bytes = new byte[(int) length]; int offset = 0; int numRead = 0; while (offset < bytes.length && (numRead = is.read(bytes, offset, bytes.length - offset)) >= 0) { offset += numRead; } if (offset < bytes.length) { throw new IOException("Could not completely read file " + file.getName()); } is.close(); return bytes; } } |
From: Nikolay M. <nbm...@us...> - 2007-04-26 09:38:15
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv802/tests/src/com/intel/gpe/tests/gui Modified Files: GUITestStarter.java UserPreferences.java Log Message: Preparation of a test environment to new (maven/svn) project Index: GUITestStarter.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/GUITestStarter.java,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** GUITestStarter.java 5 Apr 2007 10:45:10 -0000 1.69 --- GUITestStarter.java 26 Apr 2007 09:38:09 -0000 1.70 *************** *** 59,64 **** import com.intel.gpe.tests.func.GPETestType; import com.intel.gpe.tests.func.TestInfo; - import static com.intel.util.files.FileTools.*; import static com.intel.gpe.tests.gui.GUITestInit.*; import static com.intel.gpe.tests.RemoteTools.*; --- 59,64 ---- import com.intel.gpe.tests.func.GPETestType; import com.intel.gpe.tests.func.TestInfo; + import static com.intel.gpe.tests.FileTools.*; import static com.intel.gpe.tests.gui.GUITestInit.*; import static com.intel.gpe.tests.RemoteTools.*; *************** *** 92,95 **** --- 92,96 ---- private static Logger logger = Logger.getLogger("com.intel"); private static TargetSystemClient atTSC = null; + private static boolean oldClient = false; private class MyPreferences { *************** *** 167,173 **** if (size != null) taskbarSize = Integer.parseInt(size); root = userRoot(); String env = root.get(UserPreferences.USER_NAME_KEY, "undefined"); ! if (!env.equals(UserPreferences.TEST_USER_NAME)) { System.err.println("Be switched on an environment of the test user to not damage own preferences.\n" + "cd .../tests; ant -f preferences.xml \"Switch to Tests Preferences\""); --- 168,176 ---- if (size != null) taskbarSize = Integer.parseInt(size); + if (args[0].equals("old")) + oldClient = true; root = userRoot(); String env = root.get(UserPreferences.USER_NAME_KEY, "undefined"); ! if (!env.equals(UserPreferences.TEST_USER_NAME) && !oldClient) { System.err.println("Be switched on an environment of the test user to not damage own preferences.\n" + "cd .../tests; ant -f preferences.xml \"Switch to Tests Preferences\""); *************** *** 273,277 **** private void updatePreferences(String var, boolean abbot) throws Exception { // Also it is restored keystore ! NAME_KEY = testProp.getProperty("Registry.NAME_KEY"); URL_KEY = testProp.getProperty("Registry.URL_KEY"); --- 276,280 ---- private void updatePreferences(String var, boolean abbot) throws Exception { // Also it is restored keystore ! /* NAME_KEY = testProp.getProperty("Registry.NAME_KEY"); URL_KEY = testProp.getProperty("Registry.URL_KEY"); *************** *** 314,318 **** } boolean all = var.equals("all"); ! if (prot.equals("https")) { String id0 = testProp.getProperty("first.alias", "testing.certificate"); prefsName = testProp.getProperty("PREFS.DEFAULTIDENTITY"); --- 317,321 ---- } boolean all = var.equals("all"); ! if (prot.equals("https") && !oldClient) { String id0 = testProp.getProperty("first.alias", "testing.certificate"); prefsName = testProp.getProperty("PREFS.DEFAULTIDENTITY"); *************** *** 393,396 **** --- 396,400 ---- } } + */ } Index: UserPreferences.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/UserPreferences.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** UserPreferences.java 23 Apr 2007 10:46:35 -0000 1.18 --- UserPreferences.java 26 Apr 2007 09:38:12 -0000 1.19 *************** *** 53,56 **** --- 53,57 ---- private static Preferences root = null; + private static Preferences clientRoot = null; private static String userName = null; private static String currentPrefs = null; *************** *** 66,70 **** private static final String FIXED_PREFS_FILE = "previousPreferences.txt"; private static final String EDIT_REQUEST = "EditPreferences.request"; ! private static final String GPE_PREFIX = "/com/intel/gpe/client/common/preferences/"; private static final String lineSeparator = System.getProperty("line.separator"); --- 67,71 ---- private static final String FIXED_PREFS_FILE = "previousPreferences.txt"; private static final String EDIT_REQUEST = "EditPreferences.request"; ! private static final String CLIENT_NODE_NAME = "/com/intel/gpe/client"; private static final String lineSeparator = System.getProperty("line.separator"); *************** *** 84,95 **** fileName = configDir + File.separator + "UserDefaults.txt"; configDir = Matcher.quoteReplacement(configDir); - Properties defaults = new Properties(); - defaults.load(new FileInputStream(fileName)); Properties convert = new Properties(); convert.load(new FileInputStream(convertProperties)); Properties newDefaults = new Properties(); newDefaults.load(new FileInputStream(preferencesDefaultsProp)); ! String REGISTRIES_BASE = convert.getProperty("REGISTRIES_BASE", GPE_PREFIX + "Common/Registries"); String key2Prefix = convert.getProperty("key2.prefix", "Common."); Object[] list = convert.keySet().toArray(); Preferences node = null; --- 85,97 ---- fileName = configDir + File.separator + "UserDefaults.txt"; configDir = Matcher.quoteReplacement(configDir); Properties convert = new Properties(); convert.load(new FileInputStream(convertProperties)); Properties newDefaults = new Properties(); newDefaults.load(new FileInputStream(preferencesDefaultsProp)); ! String REGISTRIES_BASE = convert.getProperty("REGISTRIES_BASE"); String key2Prefix = convert.getProperty("key2.prefix", "Common."); + String suffix = REGISTRIES_BASE.indexOf("client2") > 0 ? ".old" : ""; + Properties defaults = new Properties(); + defaults.load(new FileInputStream(fileName + suffix)); Object[] list = convert.keySet().toArray(); Preferences node = null; *************** *** 147,160 **** } if (currentPrefs.equals(TEST_USER_NAME)) { ! savePrefs(root, TEST_PREFS_FILE_NAME); } File prefs = new File(USER_PREFS_FILE_NAME); if (prefs.exists()) { ! clearNode(root); FileInputStream is = new FileInputStream(prefs); importPreferences(is); is.close(); ! } else ! root.put(USER_NAME_KEY, userName); } --- 149,162 ---- } if (currentPrefs.equals(TEST_USER_NAME)) { ! savePrefs(clientRoot, TEST_PREFS_FILE_NAME); } File prefs = new File(USER_PREFS_FILE_NAME); if (prefs.exists()) { ! clearNode(clientRoot); FileInputStream is = new FileInputStream(prefs); importPreferences(is); is.close(); ! } ! root.put(USER_NAME_KEY, userName); } *************** *** 165,177 **** } if (currentPrefs.equals(userName)) { ! savePrefs(root, USER_PREFS_FILE_NAME); } File prefs = new File(TEST_PREFS_FILE_NAME); if (prefs.exists()) { FileInputStream is = new FileInputStream(prefs); importPreferences(is); is.close(); ! } else ! root.put(USER_NAME_KEY, TEST_USER_NAME); } --- 167,180 ---- } if (currentPrefs.equals(userName)) { ! savePrefs(clientRoot, USER_PREFS_FILE_NAME); } File prefs = new File(TEST_PREFS_FILE_NAME); if (prefs.exists()) { + clearNode(clientRoot); FileInputStream is = new FileInputStream(prefs); importPreferences(is); is.close(); ! } ! root.put(USER_NAME_KEY, TEST_USER_NAME); } *************** *** 195,198 **** --- 198,202 ---- public static void main(String[] args) throws Exception { root = userRoot(); + clientRoot = root.node(CLIENT_NODE_NAME); userName = System.getProperty("user.name"); currentPrefs = root.get(USER_NAME_KEY, "undefined"); *************** *** 200,204 **** root.put(USER_NAME_KEY, currentPrefs = userName); if (args.length == 0) { ! analysisTree(root); return; } --- 204,208 ---- root.put(USER_NAME_KEY, currentPrefs = userName); if (args.length == 0) { ! analysisTree(clientRoot); return; } *************** *** 207,220 **** clearNode(root); root.put(USER_NAME_KEY, currentPrefs); } else if (cmd.equals("print_values")) { ! if (args.length > 1) ! printValues(root.node(args[1])); ! else ! printValues(root); } else if (cmd.equals("print_tree")) { ! if (args.length > 1) ! printValues(root.node(args[1])); ! else ! printTree(".", root); } else if (cmd.equals("importUD")) { importUserDefaults(true, args[1], args[2]); --- 211,224 ---- clearNode(root); root.put(USER_NAME_KEY, currentPrefs); + } else if (cmd.equals("clearClients")) { + clearNode(clientRoot); } else if (cmd.equals("print_values")) { ! printValues(root); ! } else if (cmd.equals("printClient_values")) { ! printValues(clientRoot); } else if (cmd.equals("print_tree")) { ! printTree(".", root); ! } else if (cmd.equals("printClient_tree")) { ! printTree(".", clientRoot); } else if (cmd.equals("importUD")) { importUserDefaults(true, args[1], args[2]); *************** *** 227,233 **** } else if (cmd.equals("status")) { printPreferencesStatus(System.out); - } else if (cmd.equals("prune")) { - if (args.length > 1) - root.node(args[1]).removeNode(); } else if (cmd.equals("getNews")) { getNewPreferences(false); --- 231,234 ---- *************** *** 298,302 **** ByteArrayOutputStream baos = new ByteArrayOutputStream(262144); PrintStream print = new PrintStream(baos); ! printValues(root, print); String[] list = baos.toString().split(lineSeparator); Arrays.sort(list); --- 299,303 ---- ByteArrayOutputStream baos = new ByteArrayOutputStream(262144); PrintStream print = new PrintStream(baos); ! printValues(clientRoot, print); String[] list = baos.toString().split(lineSeparator); Arrays.sort(list); *************** *** 321,324 **** --- 322,326 ---- String[] New = getSortedPrefs(); if (withDot) { + String GPE_PREFIX = CLIENT_NODE_NAME + "/common/preferences/"; int l = GPE_PREFIX.length(); for (int i = 0; i < old.length; i++) { |
From: Nikolay M. <nbm...@us...> - 2007-04-26 09:38:15
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv802/tests Modified Files: GUI_run.xml preferences.xml Added Files: GUI_run_new.xml Log Message: Preparation of a test environment to new (maven/svn) project Index: preferences.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/preferences.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** preferences.xml 23 Apr 2007 10:46:06 -0000 1.8 --- preferences.xml 26 Apr 2007 09:38:12 -0000 1.9 *************** *** 31,34 **** --- 31,42 ---- </target> + <target name="Clear GPE Preferences"> + <java fork="true" classpathref="classpath" + classname="com.intel.gpe.tests.gui.UserPreferences" + dir="${basedir}"> + <arg line="clearClients"/> + </java> + </target> + <target name="Print values"> <java fork="true" classpathref="classpath" *************** *** 39,42 **** --- 47,58 ---- </target> + <target name="Print Client's values"> + <java fork="true" classpathref="classpath" + classname="com.intel.gpe.tests.gui.UserPreferences" + dir="${basedir}"> + <arg line="printClient_values"/> + </java> + </target> + <target name="Print tree"> <java fork="true" classpathref="classpath" *************** *** 47,50 **** --- 63,74 ---- </target> + <target name="Print Client's tree"> + <java fork="true" classpathref="classpath" + classname="com.intel.gpe.tests.gui.UserPreferences" + dir="${basedir}"> + <arg line="printClient_tree"/> + </java> + </target> + <target name="Preferences status"> <java fork="true" classpathref="classpath" Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 --- GUI_run.xml 26 Apr 2007 09:38:12 -0000 1.18 *************** *** 242,246 **** classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="sec com.intel.gpe.client2.application.ApplicationClient"/> </java> </target> --- 242,246 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="old com.intel.gpe.client2.application.ApplicationClient"/> </java> </target> *************** *** 250,254 **** classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="sec com.intel.gpe.client2.admin.AdminClient"/> </java> </target> --- 250,254 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="old com.intel.gpe.client2.admin.AdminClient"/> </java> </target> *************** *** 258,262 **** classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="sec com.intel.gpe.client2.expert.ExpertClient"/> </java> </target> --- 258,262 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="old com.intel.gpe.client2.expert.ExpertClient"/> </java> </target> *************** *** 266,270 **** classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="sec com.intel.gpe.client2.filemanager.FileManager"/> </java> </target> --- 266,270 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> ! <arg line="old com.intel.gpe.client2.filemanager.FileManager"/> </java> </target> --- NEW FILE: GUI_run_new.xml --- <?xml version="1.0"?> <!-- Author Nikolay Malyshev Version $Id: GUI_run_new.xml,v 1.1 2007/04/26 09:38:12 nbmalysh Exp $ --> <project name="GUI and GUI-testing (secure NEW)" basedir="./"> <property environment="env" /> <property name="abbot.location" location="${env.ABBOT_LOCATION}" /> <!-- local settings --> <property name="lib.dir" location="../lib_new" /> <property name="release.dir" location="../release" /> <property name="dbg" value="off" /> <!-- define classpath --> <path id="project.classpath"> <fileset dir="${release.dir}"> <include name="gpe4gtk-test.jar" /> </fileset> <fileset dir="${lib.dir}"/> </path> <path id="gui.classpath"> <fileset dir="${abbot.location}/lib"> <include name="*.jar" /> </fileset> <fileset dir="${release.dir}"> <include name="gpe4gtk-test.jar" /> </fileset> <fileset dir="${lib.dir}"/> </path> <target name="GUIinit"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="https"/> </java> </target> <target name="get GUI test for windows"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="https windows"/> </java> </target> <target name="get GUI test for windows only"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="https windows only"/> </java> </target> <target name="get GUI test for linux"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="https linux"/> </java> </target> <target name="get GUI test for linux only"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="https linux only"/> </java> </target> <target name="update GridBeans"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="gridbeans"/> </java> </target> <target name="set lastmodified in build"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestInit" dir="${basedir}"> <arg line="setlastmodified"/> </java> </target> <target name="Check User Defaults and keystore"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec defaults"/> </java> </target> <target name="save modified tests"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.SavingUpdatedTests" dir="${basedir}"> </java> </target> <target name="list of modified tests"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.SavingUpdatedTests" dir="${basedir}"> <arg line="list_modified"/> </java> </target> <target name="Costello"> <java fork="true" classpathref="gui.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec Costello"/> </java> </target> <target name="Change Tests By Table"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.SavingUpdatedTests" dir="${basedir}"> <arg line="Sec"/> </java> </target> <target name="TestApplicationClient"> <java fork="true" classpathref="gui.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec abbot ApplicationClient app AppClientStart.xml"/> </java> </target> <target name="TestAdminClient"> <java fork="true" classpathref="gui.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec abbot AdminClient/AdminClientTest-1.05.xml adm AdminClientStart.xml"/> </java> </target> <target name="TestExpertClient"> <java fork="true" classpathref="gui.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> </target> <target name="TestFileManager"> <java fork="true" classpathref="gui.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec abbot FileManager rfm FileManagerStart.xml"/> </java> </target> <target name="ApplicationClient"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec com.intel.gpe.client.application.ApplicationClient"/> </java> </target> <target name="AdminClient"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec com.intel.gpe.client.admin.AdminClient"/> </java> </target> <target name="ExpertClient"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec com.intel.gpe.client.expert.ExpertClient"/> </java> </target> <target name="FileManager"> <java fork="true" classpathref="project.classpath" classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> <arg line="sec com.intel.gpe.client.filemanager.FileManager"/> </java> </target> </project> |
From: Nikolay M. <nbm...@us...> - 2007-04-23 11:48:06
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv29326/tests Modified Files: convert.properties Log Message: changed node name Index: convert.properties =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/convert.properties,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** convert.properties 17 Apr 2007 09:19:45 -0000 1.11 --- convert.properties 23 Apr 2007 11:48:05 -0000 1.12 *************** *** 2,6 **** key2.prefix = Common. ! /com/intel/gpe/client/common/preferences/Common/GRIDBEANS/LOADED_PLUGIN = gpe.loadedplugin /com/intel/gpe/client/common/preferences/Common/DEFAULTIDENTITY = gpe.identity /com/intel/gpe/client/common/preferences/Common/DEFAULTMYPROXYPORT = gpe.myproxy.defaultport --- 2,6 ---- key2.prefix = Common. ! /com/intel/gpe/client/common/preferences/Common/GRIDBEAN_JARS/LOADED_PLUGIN = gpe.loadedplugin /com/intel/gpe/client/common/preferences/Common/DEFAULTIDENTITY = gpe.identity /com/intel/gpe/client/common/preferences/Common/DEFAULTMYPROXYPORT = gpe.myproxy.defaultport |
From: Nikolay M. <nbm...@us...> - 2007-04-23 10:46:37
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5799/tests/src/com/intel/gpe/tests/gui Modified Files: UserPreferences.java Log Message: fix small bug Index: UserPreferences.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/UserPreferences.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** UserPreferences.java 17 Apr 2007 06:28:45 -0000 1.17 --- UserPreferences.java 23 Apr 2007 10:46:35 -0000 1.18 *************** *** 66,70 **** private static final String FIXED_PREFS_FILE = "previousPreferences.txt"; private static final String EDIT_REQUEST = "EditPreferences.request"; ! private static final String GPE_PREFIX = "/com/intel/gpe/client/common/preferences"; private static final String lineSeparator = System.getProperty("line.separator"); --- 66,70 ---- private static final String FIXED_PREFS_FILE = "previousPreferences.txt"; private static final String EDIT_REQUEST = "EditPreferences.request"; ! private static final String GPE_PREFIX = "/com/intel/gpe/client/common/preferences/"; private static final String lineSeparator = System.getProperty("line.separator"); |
From: Nikolay M. <nbm...@us...> - 2007-04-23 10:46:08
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5517/tests Modified Files: preferences.xml Log Message: Import Tests Defaults for old clients Index: preferences.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/preferences.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** preferences.xml 24 Feb 2007 14:43:39 -0000 1.7 --- preferences.xml 23 Apr 2007 10:46:06 -0000 1.8 *************** *** 71,74 **** --- 71,82 ---- </target> + <target name="Import Tests Defaults (old)"> + <java fork="true" classpathref="classpath" + classname="com.intel.gpe.tests.gui.UserPreferences" + dir="${basedir}/secure"> + <arg line="importTD ../convert_old.properties ../../clients/src/com/intel/gpe/client2/defaults/common.properties"/> + </java> + </target> + <target name="Switch to User Preferences" depends="-init"> <java fork="true" classpathref="classpath" |
From: Nikolay M. <nbm...@us...> - 2007-04-17 09:19:46
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv18894/tests Modified Files: convert.properties Added Files: convert_old.properties Log Message: fix for new (svn/maven) version of preferences Index: convert.properties =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/convert.properties,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** convert.properties 6 Mar 2007 07:20:11 -0000 1.10 --- convert.properties 17 Apr 2007 09:19:45 -0000 1.11 *************** *** 1,23 **** ! REGISTRIES_BASE = /com/intel/gpe/client2/Common/Registries ! key2.prefix = Common. ! /com/intel/gpe/client2/Common/GRIDBEANS/LOADED_PLUGIN = gpe.loadedplugin ! /com/intel/gpe/client2/Common/DEFAULTIDENTITY = gpe.identity ! /com/intel/gpe/client2/Common/DEFAULTMYPROXYPORT = gpe.myproxy.defaultport ! /com/intel/gpe/client2/Common/DEFAULTMYPROXYSERVER = gpe.myproxy.defaultserver ! /com/intel/gpe/client2/Common/EXPORTDIR = gpe.export.directory @config.dir@/.. ! /com/intel/gpe/client2/Common/GRIDBEAN_SERVICE_URL = gpe.gridbeanservice.url ! /com/intel/gpe/client2/Common/IMPORTDIR = gpe.import.directory @config.dir@/.. ! /com/intel/gpe/client2/Common/JOBDIR = gpe.job.directory @config.dir@/.. ! /com/intel/gpe/client2/Common/KEYSTOREDIR = gpe.keystore.path @config.dir@/keystore.jks ! /com/intel/gpe/client2/Common/LOGDIR = gpe.log.directory @config.dir@/log ! /com/intel/gpe/client2/Common/LOG_LEVEL = gpe.log.level ! /com/intel/gpe/client2/Common/MYPROXYACCOUNTSLISTPATH = gpe.myproxy.accounts.path @config.dir@/myproxyaccounts.dat ! /com/intel/gpe/client2/Common/NO_PROXY = gpe.proxy.noproxy ! /com/intel/gpe/client2/Common/PLUGINDIR = gpe.plugin.directory @config.dir@/plugins ! /com/intel/gpe/client2/Common/PROXY_ENABLED = gpe.proxy.enabled ! /com/intel/gpe/client2/Common/PROXY_HOST = gpe.proxy.host ! /com/intel/gpe/client2/Common/PROXY_PORT = gpe.proxy.port ! /com/intel/gpe/client2/Common/TERMINATION_TIME = gpe.terminationtime ! /com/intel/gpe/client2/Common/TTDIALOG_ENABLED = gpe.terminationtime.dialog ! /com/intel/gpe/client2/Common/TMPDIR = gpe.tmp.directory @config.dir@/tmp --- 1,23 ---- ! REGISTRIES_BASE = /com/intel/gpe/client/common/preferences/Common/Registries ! key2.prefix = Common. ! /com/intel/gpe/client/common/preferences/Common/GRIDBEANS/LOADED_PLUGIN = gpe.loadedplugin ! /com/intel/gpe/client/common/preferences/Common/DEFAULTIDENTITY = gpe.identity ! /com/intel/gpe/client/common/preferences/Common/DEFAULTMYPROXYPORT = gpe.myproxy.defaultport ! /com/intel/gpe/client/common/preferences/Common/DEFAULTMYPROXYSERVER = gpe.myproxy.defaultserver ! /com/intel/gpe/client/common/preferences/Common/EXPORTDIR = gpe.export.directory @config.dir@/.. ! /com/intel/gpe/client/common/preferences/Common/GRIDBEAN_SERVICE_URL = gpe.gridbeanservice.url ! /com/intel/gpe/client/common/preferences/Common/IMPORTDIR = gpe.import.directory @config.dir@/.. ! /com/intel/gpe/client/common/preferences/Common/JOBDIR = gpe.job.directory @config.dir@/.. ! /com/intel/gpe/client/common/preferences/Common/KEYSTOREDIR = gpe.keystore.path @config.dir@/keystore.jks ! /com/intel/gpe/client/common/preferences/Common/LOGDIR = gpe.log.directory @config.dir@/log ! /com/intel/gpe/client/common/preferences/Common/LOG_LEVEL = gpe.log.level ! /com/intel/gpe/client/common/preferences/Common/MYPROXYACCOUNTSLISTPATH = gpe.myproxy.accounts.path @config.dir@/myproxyaccounts.dat ! /com/intel/gpe/client/common/preferences/Common/NO_PROXY = gpe.proxy.noproxy ! /com/intel/gpe/client/common/preferences/Common/PLUGINDIR = gpe.plugin.directory @config.dir@/plugins ! /com/intel/gpe/client/common/preferences/Common/PROXY_ENABLED = gpe.proxy.enabled ! /com/intel/gpe/client/common/preferences/Common/PROXY_HOST = gpe.proxy.host ! /com/intel/gpe/client/common/preferences/Common/PROXY_PORT = gpe.proxy.port ! /com/intel/gpe/client/common/preferences/Common/TERMINATION_TIME = gpe.terminationtime ! /com/intel/gpe/client/common/preferences/Common/TTDIALOG_ENABLED = gpe.terminationtime.dialog ! /com/intel/gpe/client/common/preferences/Common/TMPDIR = gpe.tmp.directory @config.dir@/tmp --- NEW FILE: convert_old.properties --- REGISTRIES_BASE = /com/intel/gpe/client2/Common/Registries key2.prefix = Common. /com/intel/gpe/client2/Common/GRIDBEANS/LOADED_PLUGIN = gpe.loadedplugin /com/intel/gpe/client2/Common/DEFAULTIDENTITY = gpe.identity /com/intel/gpe/client2/Common/DEFAULTMYPROXYPORT = gpe.myproxy.defaultport /com/intel/gpe/client2/Common/DEFAULTMYPROXYSERVER = gpe.myproxy.defaultserver /com/intel/gpe/client2/Common/EXPORTDIR = gpe.export.directory @config.dir@/.. /com/intel/gpe/client2/Common/GRIDBEAN_SERVICE_URL = gpe.gridbeanservice.url /com/intel/gpe/client2/Common/IMPORTDIR = gpe.import.directory @config.dir@/.. /com/intel/gpe/client2/Common/JOBDIR = gpe.job.directory @config.dir@/.. /com/intel/gpe/client2/Common/KEYSTOREDIR = gpe.keystore.path @config.dir@/keystore.jks /com/intel/gpe/client2/Common/LOGDIR = gpe.log.directory @config.dir@/log /com/intel/gpe/client2/Common/LOG_LEVEL = gpe.log.level /com/intel/gpe/client2/Common/MYPROXYACCOUNTSLISTPATH = gpe.myproxy.accounts.path @config.dir@/myproxyaccounts.dat /com/intel/gpe/client2/Common/NO_PROXY = gpe.proxy.noproxy /com/intel/gpe/client2/Common/PLUGINDIR = gpe.plugin.directory @config.dir@/plugins /com/intel/gpe/client2/Common/PROXY_ENABLED = gpe.proxy.enabled /com/intel/gpe/client2/Common/PROXY_HOST = gpe.proxy.host /com/intel/gpe/client2/Common/PROXY_PORT = gpe.proxy.port /com/intel/gpe/client2/Common/TERMINATION_TIME = gpe.terminationtime /com/intel/gpe/client2/Common/TTDIALOG_ENABLED = gpe.terminationtime.dialog /com/intel/gpe/client2/Common/TMPDIR = gpe.tmp.directory @config.dir@/tmp |
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/func/clients/fts In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv19158/tests/src/com/intel/gpe/tests/func/clients/fts Modified Files: GridFTPFileTransferImplTest.java StreamableByteIOFileTransferTest.java RandomByteIOFileTransferImplTest.java Log Message: new functional tests (writing to non-existent-dir) Index: StreamableByteIOFileTransferTest.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/func/clients/fts/StreamableByteIOFileTransferTest.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** StreamableByteIOFileTransferTest.java 2 Feb 2007 15:12:42 -0000 1.8 --- StreamableByteIOFileTransferTest.java 17 Apr 2007 06:32:35 -0000 1.9 *************** *** 295,298 **** --- 295,313 ---- } + public void testFarWrite() throws Exception { + if (!streamableByteIOSupported) { + fail("Test " + this.getName() + " not started - StreamableByteIO protocol isn't supported"); + } + logger.info("## Test StreamableByteIOFileTransferTest/testFarWrite started."); + StorageClient workingDir = job.getWorkingDirectory();; + StreamableByteIOFileTransferClient ftc = null; + ftc = workingDir.importFile("non-existent-dir/remote-test.txt", STREAMABLEBYTEIO, false); + byte[] arr = "This is a text for write to StreamableByteIO FileTransferClient".getBytes(); + ftc.seekWrite(0, SeekOrigin.CURRENT, arr); + GridFile f = workingDir.listProperties("non-existent-dir/remote-test.txt"); + assertEquals("non-existent-dir/remote-test.txt", f.getPath()); + assertEquals(arr.length, f.getSize().intValue()); + } + public void testSeekWrite() throws Exception { if (!streamableByteIOSupported) { Index: RandomByteIOFileTransferImplTest.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/func/clients/fts/RandomByteIOFileTransferImplTest.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** RandomByteIOFileTransferImplTest.java 27 Dec 2006 06:32:05 -0000 1.21 --- RandomByteIOFileTransferImplTest.java 17 Apr 2007 06:32:35 -0000 1.22 *************** *** 289,292 **** --- 289,307 ---- } + public void testFarWrite() throws Exception { + if (!randomByteIOSupported) { + fail("Test " + this.getName() + " not started - RandomByteIO protocol isn't supported"); + } + logger.info("## Test RandomByteIOFileTransferImplTest/testFarWrite started."); + StorageClient workingDir = job.getWorkingDirectory();; + RandomByteIOFileTransferClient ftc = null; + ftc = workingDir.importFile("non-existent-dir/remote-test.txt", RANDOMBYTEIO, false); + byte[] arr = "This is a text for append to ByteIO FileTransferClient".getBytes(); + ftc.append(arr); + GridFile f = workingDir.listProperties("non-existent-dir/remote-test.txt"); + assertEquals("non-existent-dir/remote-test.txt", f.getPath()); + assertEquals(arr.length, f.getSize().intValue()); + } + public void testAppendWrite() throws Exception { if (!randomByteIOSupported) { Index: GridFTPFileTransferImplTest.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/func/clients/fts/GridFTPFileTransferImplTest.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** GridFTPFileTransferImplTest.java 12 Sep 2006 07:57:27 -0000 1.14 --- GridFTPFileTransferImplTest.java 17 Apr 2007 06:32:35 -0000 1.15 *************** *** 43,46 **** --- 43,47 ---- import java.util.Calendar; + import com.intel.gpe.clients.api.GridFile; import com.intel.gpe.clients.api.JobClient; import com.intel.gpe.clients.api.StorageClient; *************** *** 52,55 **** --- 53,57 ---- import static com.intel.gpe.clients.api.FileTransferClient.GRIDFTP; import static com.intel.gpe.tests.Tools.*; + import com.intel.gpe.tests.func.GPETestType; import com.intel.gpe.tests.func.TestInfo; *************** *** 219,222 **** --- 221,246 ---- } + public void testFarWrite() throws Exception { + if (!gridFTPSupported) { + fail("Test " + this.getName() + " not started - GridFTP protocol isn't supported"); + } + logger.info("## Test GridFTPFileTransferImplTest/testFarWrite started."); + StorageClient workingDir = job.getWorkingDirectory();; + GridFTPFileTransferClient ftc = null; + ftc = workingDir.importFile("non-existent-dir/remote-test.txt", GRIDFTP, false); + byte[] arr = "This is a text for write to GRIDFTP FileTransferClient".getBytes(); + try { + OutputStream os = ftc.getOutputStream((GSSSecurityManager)secManager); + os.write(arr); + os.close(); + } catch (Exception e1) { + printExceptionInfo(e1); + e1.printStackTrace(); + } + GridFile f = workingDir.listProperties("non-existent-dir/remote-test.txt"); + assertEquals("non-existent-dir/remote-test.txt", f.getPath()); + assertEquals(arr.length, f.getSize().intValue()); + } + public void testGetOutputStream() { if (!gridFTPSupported) { |
From: Nikolay M. <nbm...@us...> - 2007-04-17 06:28:46
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv17617/tests/src/com/intel/gpe/tests/gui Modified Files: UserPreferences.java Log Message: fix for new (svn/maven) version of preferences Index: UserPreferences.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/UserPreferences.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** UserPreferences.java 6 Mar 2007 07:16:53 -0000 1.16 --- UserPreferences.java 17 Apr 2007 06:28:45 -0000 1.17 *************** *** 66,70 **** private static final String FIXED_PREFS_FILE = "previousPreferences.txt"; private static final String EDIT_REQUEST = "EditPreferences.request"; ! private static final String GPE_PREFIX = "/com/intel/gpe/client2/"; private static final String lineSeparator = System.getProperty("line.separator"); --- 66,70 ---- private static final String FIXED_PREFS_FILE = "previousPreferences.txt"; private static final String EDIT_REQUEST = "EditPreferences.request"; ! private static final String GPE_PREFIX = "/com/intel/gpe/client/common/preferences"; private static final String lineSeparator = System.getProperty("line.separator"); |
From: Dmitry N. P. <dnp...@us...> - 2007-04-11 10:57:11
|
Update of /cvsroot/gpe4gtk/gpe4gtk/docs/web-page In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv25805/docs/web-page Modified Files: gpe_contents_page.htm Log Message: portal client docs Index: gpe_contents_page.htm =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/docs/web-page/gpe_contents_page.htm,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** gpe_contents_page.htm 1 Mar 2007 12:28:25 -0000 1.30 --- gpe_contents_page.htm 11 Apr 2007 10:56:32 -0000 1.31 *************** *** 190,199 **** </li> - <!-- It is not yet clear where the portal client docs should reside. - Anyway these docs are outdated. <li> <img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm" target="main">Portal client</a> ! </li> --> <li> --- 190,254 ---- </li> <li> <img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#0" target="main">Portal client</a> ! <ul id="portal_list" style="display:none;" class="menu" onclick="window.event.cancelBubble=true"> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#1" target="main">What is GPE Portal Client?</a> ! </li> ! <li class="menuItem"> ! <img src="images/sublist-expand.png" class="menuCtrl" style="cursor:pointer" ! id="portal_inst_img" onclick="toggle('portal_inst_list', 'portal_inst_img')"> ! <a class="menuLink" href="gpe-portal-client.htm#2" target="main">Installing GPE Portal Client</a> ! <ul id="porta_inst_list" style="display:none;" class="menu" onclick="window.event.cancelBubble=true"> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#201" target="main">Preparing web container</a> ! </li> ! <li class="menuItem"> ! <img src="images/sublist-expand.png" class="menuCtrl" style="cursor:pointer" ! id="portal_sec_img" onclick="toggle('portal_sec_list', 'portal_sec_img')"> ! <a class="menuLink" href="gpe-portal-client.htm#202" target="main">Configuring MyProxy server</a> ! <ul id="portal_sec_list" style="display:none;" class="menu" onclick="window.event.cancelBubble=true"> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#20201" target="main">Configuring MyProxy server</a> ! </li> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#20202" target="main">Configuring container's host security</a> ! </li> ! </ul> ! </li> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#203" target="main">Building GPE Portal Client WAR-file</a> ! </li> ! <li class="menuItem"> ! <img src="images/sublist-expand.png" class="menuCtrl" style="cursor:pointer" ! id="portal_depl_img" onclick="toggle('portal_depl_list', 'portal_depl_img')"> ! <a class="menuLink" href="gpe-portal-client.htm#204" target="main">Deploying GPE Portal Client</a> ! <ul id="portal_depl_list" style="display:none;" class="menu" onclick="window.event.cancelBubble=true"> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#20401" target="main">Installing the WAR file</a> ! </li> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#20402" target="main">Configuring the Portal Client application</a> ! </li> ! </ul> ! </li> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#205" target="main">Connecting to GPE Portal Client</a> ! </li> ! <li class="menuItem"> ! <img src="images/sublist-expand.png" class="menuCtrl" style="cursor:pointer" ! id="portal_myproxy_img" onclick="toggle('portal_myproxy_list', 'portal_myproxy_img')"> ! <a class="menuLink" href="gpe-portal-client.htm#206" target="main">Managing user accounts at MyProxy server</a> ! <ul id="portal_myproxy_list" style="display:none;" class="menu" onclick="window.event.cancelBubble=true"> ! <li class="menuItem"><img src="images/simple-item.png"> ! <a class="menuLink" href="gpe-portal-client.htm#20601" target="main">Setting up MyProxy account with the GPE Application Client</a> ! </li> ! </ul> ! </li> ! </ul> ! </li> ! </ul> ! </li> <li> |
From: Vladimir N. R. <vnr...@us...> - 2007-04-10 14:38:18
|
Update of /cvsroot/gpe4gtk/gpe_installer/resources/gpe In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11238/resources/gpe Modified Files: unix.properties Log Message: fix a typo in the port number Index: unix.properties =================================================================== RCS file: /cvsroot/gpe4gtk/gpe_installer/resources/gpe/unix.properties,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** unix.properties 29 Mar 2007 11:19:04 -0000 1.10 --- unix.properties 10 Apr 2007 14:38:17 -0000 1.11 *************** *** 55,59 **** tutorial.dir=${common.dir}/tutorial tutorial.tsi.dir=${tutorial.dir}/gpe/tsi ! tutorial.tsi.port=3888; tutorial.tsi.remote.runscript.name=javatsi tutorial.tsi.remote.runscript=${tsi.common.dir}/bin/javatsi --- 55,59 ---- tutorial.dir=${common.dir}/tutorial tutorial.tsi.dir=${tutorial.dir}/gpe/tsi ! tutorial.tsi.port=3888 tutorial.tsi.remote.runscript.name=javatsi tutorial.tsi.remote.runscript=${tsi.common.dir}/bin/javatsi |
From: Nikolay M. <nbm...@us...> - 2007-04-05 16:18:12
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv9516/tests/src/com/intel/gpe/tests/gui Modified Files: SavingUpdatedTests.java Log Message: improving of the saving modified tests Index: SavingUpdatedTests.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/SavingUpdatedTests.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** SavingUpdatedTests.java 5 Apr 2007 08:56:28 -0000 1.21 --- SavingUpdatedTests.java 5 Apr 2007 16:18:06 -0000 1.22 *************** *** 130,134 **** String targ = new String(FileTools.readBytesFromFile(target)); long timeInit = target.lastModified(); ! int savedFilesNumber = 0; TestInfo testInfo = new TestInfo("GUITester.properties", "GUIHost.properties", null, false); Properties testProp = testInfo.getTestProp(); --- 130,134 ---- String targ = new String(FileTools.readBytesFromFile(target)); long timeInit = target.lastModified(); ! long lastModified = 0; TestInfo testInfo = new TestInfo("GUITester.properties", "GUIHost.properties", null, false); Properties testProp = testInfo.getTestProp(); *************** *** 211,223 **** continue; FileTools.writeBytesToFile(text.getBytes(), out); ! long lastModified = out.lastModified(); test.setLastModified(lastModified); out.setLastModified(lastModified); - savedFilesNumber++; } } } ! if (savedFilesNumber > 0) { ! target.setLastModified(System.currentTimeMillis()); } } --- 211,222 ---- continue; FileTools.writeBytesToFile(text.getBytes(), out); ! lastModified = out.lastModified(); test.setLastModified(lastModified); out.setLastModified(lastModified); } } } ! if (lastModified > 0) { ! target.setLastModified(lastModified); } } |
From: Nikolay M. <nbm...@us...> - 2007-04-05 10:45:14
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv9325/tests/src/com/intel/gpe/tests/gui Modified Files: GUITestStarter.java Log Message: checking preference value for ExpertClientFrame/WorkflowSplitPane/splitPosition Index: GUITestStarter.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/GUITestStarter.java,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** GUITestStarter.java 5 Apr 2007 09:07:44 -0000 1.68 --- GUITestStarter.java 5 Apr 2007 10:45:10 -0000 1.69 *************** *** 339,342 **** --- 339,346 ---- } } + prefsName = testProp.getProperty("PREFS.WORKFLOW_AREA_WIDTH"); + int wfWidth = defaults.getProperty(prefsName, 200); + if (wfWidth < 150) + defaults.setProperty(prefsName, "200"); if (all || abbot) updateRegistries(abbot); |
From: Nikolay M. <nbm...@us...> - 2007-04-05 10:45:14
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv9325/tests Modified Files: GUITester.properties Log Message: checking preference value for ExpertClientFrame/WorkflowSplitPane/splitPosition Index: GUITester.properties =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUITester.properties,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** GUITester.properties 2 Apr 2007 12:25:52 -0000 1.39 --- GUITester.properties 5 Apr 2007 10:45:12 -0000 1.40 *************** *** 33,36 **** --- 33,37 ---- PREFS.TT_DIALOG_ENABLED = Common/TTDIALOG_ENABLED PREFS.TT_VALUE = Common/TERMINATION_TIME + PREFS.WORKFLOW_AREA_WIDTH = ExpertClientFrame/WorkflowSplitPane/splitPosition Registry.NAME_KEY = name |
From: Nikolay M. <nbm...@us...> - 2007-04-05 09:07:44
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4125/tests/src/com/intel/gpe/tests/gui Modified Files: GUITestStarter.java Log Message: set TERMINATION_TIME = 2 Index: GUITestStarter.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/GUITestStarter.java,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** GUITestStarter.java 2 Apr 2007 12:25:52 -0000 1.67 --- GUITestStarter.java 5 Apr 2007 09:07:44 -0000 1.68 *************** *** 349,354 **** prefsName = testProp.getProperty("PREFS.TT_VALUE"); tt = defaults.getProperty(prefsName); ! if (tt == null || !tt.equals("1")) { ! defaults.setProperty(prefsName, "1"); } } --- 349,354 ---- prefsName = testProp.getProperty("PREFS.TT_VALUE"); tt = defaults.getProperty(prefsName); ! if (tt == null || !tt.equals("2")) { ! defaults.setProperty(prefsName, "2"); } } |
From: Nikolay M. <nbm...@us...> - 2007-04-05 08:58:01
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv32257/tests/src/com/intel/gpe/tests/gui Modified Files: SavingUpdatedTests.java Log Message: synchronizing of lastModified Index: SavingUpdatedTests.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/SavingUpdatedTests.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** SavingUpdatedTests.java 3 Apr 2007 09:57:03 -0000 1.20 --- SavingUpdatedTests.java 5 Apr 2007 08:56:28 -0000 1.21 *************** *** 211,215 **** continue; FileTools.writeBytesToFile(text.getBytes(), out); ! test.setLastModified(out.lastModified()); savedFilesNumber++; } --- 211,217 ---- continue; FileTools.writeBytesToFile(text.getBytes(), out); ! long lastModified = out.lastModified(); ! test.setLastModified(lastModified); ! out.setLastModified(lastModified); savedFilesNumber++; } |
From: Nikolay M. <nbm...@us...> - 2007-04-03 09:57:05
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv3807/tests/src/com/intel/gpe/tests/gui Modified Files: GUITestInit.java SavingUpdatedTests.java Log Message: improving Index: GUITestInit.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/GUITestInit.java,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** GUITestInit.java 16 Mar 2007 10:44:52 -0000 1.46 --- GUITestInit.java 3 Apr 2007 09:57:03 -0000 1.47 *************** *** 233,237 **** if (!testName.equals(starter)) { String[] s = text.split("\n"); ! text = s[0]; for (int j = 1; j< s.length; j++) { String line = s[j]; --- 233,237 ---- if (!testName.equals(starter)) { String[] s = text.split("\n"); ! text = s[0] + "\n"; for (int j = 1; j< s.length; j++) { String line = s[j]; *************** *** 257,261 **** // line = line.replace('\\', '/'); } ! text += "\n" + line; } text = text.replaceAll("TARGET_idb.xml", targ + "_idb.xml"). --- 257,261 ---- // line = line.replace('\\', '/'); } ! text += line + "\n"; } text = text.replaceAll("TARGET_idb.xml", targ + "_idb.xml"). Index: SavingUpdatedTests.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/SavingUpdatedTests.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** SavingUpdatedTests.java 5 Mar 2007 08:45:57 -0000 1.19 --- SavingUpdatedTests.java 3 Apr 2007 09:57:03 -0000 1.20 *************** *** 211,214 **** --- 211,215 ---- continue; FileTools.writeBytesToFile(text.getBytes(), out); + test.setLastModified(out.lastModified()); savedFilesNumber++; } |
From: Nikolay M. <nbm...@us...> - 2007-04-02 12:25:54
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv25479/tests Modified Files: GUITester.properties Log Message: changing default_delay for GUI testing Index: GUITester.properties =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUITester.properties,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** GUITester.properties 6 Mar 2007 07:21:44 -0000 1.38 --- GUITester.properties 2 Apr 2007 12:25:52 -0000 1.39 *************** *** 22,26 **** rrc.file2 = Temp sources/javasources/HelloWorld.java ../sources/javasources/HelloWorld.java ! abbot.robot.auto_delay = 400 REGISTRIES_NODE = /com/intel/gpe/client2/Common/Registries PREFS_PREFIX = /com/intel/gpe/client2/ --- 22,28 ---- rrc.file2 = Temp sources/javasources/HelloWorld.java ../sources/javasources/HelloWorld.java ! #abbot.robot.auto_delay = 200 ! #abbot.robot.default_delay = 30000 ! REGISTRIES_NODE = /com/intel/gpe/client2/Common/Registries PREFS_PREFIX = /com/intel/gpe/client2/ |
From: Nikolay M. <nbm...@us...> - 2007-04-02 12:25:53
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv25479/tests/src/com/intel/gpe/tests/gui Modified Files: GUITestStarter.java Log Message: changing default_delay for GUI testing Index: GUITestStarter.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/src/com/intel/gpe/tests/gui/GUITestStarter.java,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** GUITestStarter.java 24 Mar 2007 12:32:43 -0000 1.66 --- GUITestStarter.java 2 Apr 2007 12:25:52 -0000 1.67 *************** *** 189,192 **** --- 189,198 ---- System.setProperty("abbot.robot.auto_delay", auto_delay); System.out.println("abbot.robot.auto_delay = " + (auto_delay != null ? auto_delay : "null")); + + String default_delay = testProp.getProperty("abbot.robot.default_delay"); + if (default_delay != null) + System.setProperty("abbot.robot.default_delay", default_delay); + System.out.println("abbot.robot.default_delay = " + (default_delay != null ? default_delay : "null")); + System.setProperty("com.intel.gpe.tests.passwd", testProp.getProperty("tests.passwd", "changeit")); } |
From: Vladimir N. R. <vnr...@us...> - 2007-03-29 17:09:45
|
Update of /cvsroot/gpe4gtk/gpe_installer In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv17536 Modified Files: build.xml Log Message: gpe-clients-common,jar added to lib and classpaths Index: build.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe_installer/build.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** build.xml 29 Mar 2007 14:33:35 -0000 1.24 --- build.xml 29 Mar 2007 17:09:43 -0000 1.25 *************** *** 146,149 **** --- 146,150 ---- <fileset dir="${gpe4gtk.release.dir}"> <include name="${gpe.common.jar}" /> + <include name="${gpe.clients.common.jar}" /> </fileset> <fileset dir="${common.release.dir}/"> |
From: Vladimir N. R. <vnr...@us...> - 2007-03-29 17:09:45
|
Update of /cvsroot/gpe4gtk/gpe_installer/toplevel In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv17536/toplevel Modified Files: run-installer.sh run-installer.bat Log Message: gpe-clients-common,jar added to lib and classpaths Index: run-installer.sh =================================================================== RCS file: /cvsroot/gpe4gtk/gpe_installer/toplevel/run-installer.sh,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** run-installer.sh 1 Mar 2007 12:09:49 -0000 1.10 --- run-installer.sh 29 Mar 2007 17:09:43 -0000 1.11 *************** *** 13,17 **** CLP=./lib/ant-launcher.jar:${CLP} CLP=./lib/bcprov-jdk15-133.jar:${CLP} ! CLP=./lib/common.jar:${CLP} CLP=./lib/gpe-common.jar:${CLP} CLP=./lib/gpe-commons.jar:${CLP} --- 13,17 ---- CLP=./lib/ant-launcher.jar:${CLP} CLP=./lib/bcprov-jdk15-133.jar:${CLP} ! CLP=./lib/gpe-clients-common.jar:${CLP} CLP=./lib/gpe-common.jar:${CLP} CLP=./lib/gpe-commons.jar:${CLP} Index: run-installer.bat =================================================================== RCS file: /cvsroot/gpe4gtk/gpe_installer/toplevel/run-installer.bat,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** run-installer.bat 1 Mar 2007 12:09:49 -0000 1.8 --- run-installer.bat 29 Mar 2007 17:09:43 -0000 1.9 *************** *** 5,9 **** set LCP=.\lib\ant-launcher.jar;%LCP% set LCP=.\lib\bcprov-jdk15-133.jar;%LCP% ! set LCP=.\lib\common.jar;%LCP% set LCP=.\lib\gpe-common.jar;%LCP% set LCP=.\lib\gpe-commons.jar;%LCP% --- 5,9 ---- set LCP=.\lib\ant-launcher.jar;%LCP% set LCP=.\lib\bcprov-jdk15-133.jar;%LCP% ! set LCP=.\lib\gpe-clients-common.jar;%LCP% set LCP=.\lib\gpe-common.jar;%LCP% set LCP=.\lib\gpe-commons.jar;%LCP% |
From: Maxim L. <mlu...@us...> - 2007-03-29 14:39:19
|
Update of /cvsroot/gpe4gtk/gpe_installer/installer2/src/com/intel/gpe/installer2/impl/tutorial/actions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv18069/installer2/src/com/intel/gpe/installer2/impl/tutorial/actions Modified Files: InstallTutorialComponent.java Log Message: Index: InstallTutorialComponent.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe_installer/installer2/src/com/intel/gpe/installer2/impl/tutorial/actions/InstallTutorialComponent.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** InstallTutorialComponent.java 29 Mar 2007 14:33:46 -0000 1.15 --- InstallTutorialComponent.java 29 Mar 2007 14:38:54 -0000 1.16 *************** *** 649,652 **** --- 649,653 ---- private void changeJNDIConfig(){ String containerDir = getPropertyManager().getProperty(PropertyKeys.TutorialKeys.TUTORIAL_CONTAINER_DIR); + String gbDir = getPropertyManager().getProperty(PropertyKeys.TutorialKeys.TUTORIAL_GRIDBEAN_DIR); File jndiSrc = new File("resources/gpe/server/jndi-config.xml"); *************** *** 668,672 **** filterSet.addFilter(filter); ! //TODO: add other ssss copy.execute(); } --- 669,677 ---- filterSet.addFilter(filter); ! filter = new Filter(); ! filter.setToken("gpe.gridbean.dir"); ! filter.setValue(gbDir); ! filterSet.addFilter(filter); ! copy.execute(); } |
From: Maxim L. <mlu...@us...> - 2007-03-29 14:33:47
|
Update of /cvsroot/gpe4gtk/gpe_installer/installer2/src/com/intel/gpe/installer2/impl/tutorial/actions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15805/installer2/src/com/intel/gpe/installer2/impl/tutorial/actions Modified Files: InstallTutorialComponent.java Log Message: Index: InstallTutorialComponent.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe_installer/installer2/src/com/intel/gpe/installer2/impl/tutorial/actions/InstallTutorialComponent.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** InstallTutorialComponent.java 29 Mar 2007 13:46:10 -0000 1.14 --- InstallTutorialComponent.java 29 Mar 2007 14:33:46 -0000 1.15 *************** *** 43,46 **** --- 43,47 ---- import java.util.List; import java.util.Properties; + import java.util.prefs.Preferences; import javax.security.auth.x500.X500Principal; *************** *** 79,82 **** --- 80,85 ---- import org.w3c.dom.NodeList; + import com.intel.gpe.client2.UserPreferences; + import com.intel.gpe.client2.defaults.preferences.CommonKeys; import com.intel.gpe.installer2.PropertyKeys; import com.intel.gpe.installer2.PropertyManager; *************** *** 88,92 **** import com.intel.gpe.security.PEMTools; import com.intel.gpe.security.keystore.Keystore; - import com.sun.org.apache.xerces.internal.parsers.IntegratedParserConfiguration; public class InstallTutorialComponent extends InstallationComponent{ --- 91,94 ---- *************** *** 842,845 **** --- 844,850 ---- keystore.store(); + + Preferences node = UserPreferences.getRoot().node(CommonKeys.Common.getName()); + node.put(CommonKeys.KEYSTOREDIR.getName(), keyStoreFile); } } |