Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-12-13 02:56:43 +0000
committermkersten2005-12-13 02:56:43 +0000
commit24eabbb9933d80b2c9316c5cc13b9ac6aadca69e (patch)
treecee0cda82355001f0c3282766501222aab2cc5a6
parentd56f590a6c9d06128be29beaeab303a42786eb0e (diff)
downloadorg.eclipse.mylyn-24eabbb9933d80b2c9316c5cc13b9ac6aadca69e.tar.gz
org.eclipse.mylyn-24eabbb9933d80b2c9316c5cc13b9ac6aadca69e.tar.xz
org.eclipse.mylyn-24eabbb9933d80b2c9316c5cc13b9ac6aadca69e.zip
Refactored preference constants and moved shared data directory stuff into sandbox
-rw-r--r--org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/misc/SharedTaskFolderTest.java209
1 files changed, 0 insertions, 209 deletions
diff --git a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/misc/SharedTaskFolderTest.java b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/misc/SharedTaskFolderTest.java
deleted file mode 100644
index d5c0dd50..00000000
--- a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/misc/SharedTaskFolderTest.java
+++ /dev/null
@@ -1,209 +0,0 @@
-package org.eclipse.mylar.tests.misc;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-
-import junit.framework.TestCase;
-
-import org.eclipse.mylar.core.InteractionEvent;
-import org.eclipse.mylar.core.MylarPlugin;
-import org.eclipse.mylar.core.internal.MylarContext;
-import org.eclipse.mylar.monitor.reports.MylarReportsPlugin;
-import org.eclipse.mylar.monitor.reports.ui.actions.SwitchTaskDataFolderAction;
-import org.eclipse.mylar.tasklist.ITask;
-import org.eclipse.mylar.tasklist.MylarTaskListPlugin;
-import org.eclipse.mylar.tasklist.internal.Task;
-import org.eclipse.mylar.tasklist.internal.TaskListManager;
-
-/**
- * Tests changing the shared task directory
- * currently in use.
- *
- * @author Wesley Coelho
- */
-public class SharedTaskFolderTest extends TestCase{
-
- private File sharedDataRootDir = null;
- private File bobsDataDir = null;
- private File jillsDataDir = null;
- private String originalMainDataDir = null;
- private String originalSharedDataDir = null;
- private TaskListManager manager = MylarTaskListPlugin.getTaskListManager();
-
- /**
- * Set up a shared task directory structure by creating some data
- * in the main directory and copying it to the shared directories.
- */
- protected void setUp() throws Exception {
- super.setUp();
-
- //Get the original main data directory so that it can be reset later
- originalMainDataDir = MylarPlugin.getDefault().getDataDirectory();
-
- //Create a task to make sure there is some data in the main directory
- createAndSaveTask("Task1");
-
- //Create the shared data directory structure
- sharedDataRootDir = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + "SharedDataDir");
- sharedDataRootDir.mkdir();
- assertTrue(sharedDataRootDir.exists());
-
- bobsDataDir = new File(sharedDataRootDir.getPath() + File.separator + "Bob");
- bobsDataDir.mkdir();
- assertTrue(bobsDataDir.exists());
-
- jillsDataDir = new File(sharedDataRootDir.getPath() + File.separator + "Jill");
- jillsDataDir.mkdir();
- assertTrue(jillsDataDir.exists());
-
- //Start the shared data dirs off with copies of the main data
- File mainDataDir = new File(originalMainDataDir);
- for ( File currFile : mainDataDir.listFiles()) {
- File destFile = new File(bobsDataDir.getPath() + File.separator + currFile.getName());
- copy(currFile, destFile);
- destFile = new File(jillsDataDir.getPath() + File.separator + currFile.getName());
- copy(currFile, destFile);
- }
-
- //Set the shared data dir
- originalSharedDataDir = MylarPlugin.getDefault().getSharedDataDirectory();
- MylarReportsPlugin.getDefault().getPreferenceStore().setValue(MylarReportsPlugin.SHARED_TASK_DATA_ROOT_DIR, sharedDataRootDir.getPath());
- MylarPlugin.getDefault().setSharedDataDirectory(sharedDataRootDir.getPath());
- assertFalse(MylarPlugin.getDefault().getDataDirectory().equals(sharedDataRootDir.getPath()));
- }
-
- /**
- * Tests moving the main mylar data directory to another location
- */
- public void testSharedDataDirSwitching(){
- SwitchTaskDataFolderAction switchAction = new SwitchTaskDataFolderAction();
-
- //Create a task to appear in the main data dir only
- ITask mainDataDirTask = createAndSaveTask("Main Dir Task");
-
- //Check the options of folders to switch to
- String[] sharedDataFolderOptions = switchAction.getFolderStrings();
- //Note that index 0 is a string indicating a switch back to the main data directory
- assertTrue(sharedDataFolderOptions[0].equals("Bob"));
- assertTrue(sharedDataFolderOptions[1].equals("Jill"));
-
- //Switch to Bob's folder
- switchAction.switchTaskDataFolder(sharedDataFolderOptions[0]);
-
- //Check that the task created in the main data dir isn't there
- File mainDataDirTaskFile = MylarPlugin.getContextManager().getFileForContext(mainDataDirTask.getHandleIdentifier());
-// File mainDataDirTaskFile = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + mainDataDirTask.getContextPath() + MylarTaskListPlugin.FILE_EXTENSION);
- assertFalse(mainDataDirTaskFile.exists());
- assertNull(manager.getTaskForHandle(mainDataDirTask.getHandleIdentifier(), false));
-
- fail(); // uncomment below
- //Create a new task in bob's task data folder only and check that it exists in the right place
-// ITask bobsTask = createAndSaveTask("Bob's Task");
-//
-// File bobsTaskFile = new File(bobsDataDir.getPath() + File.separator +
-// MylarPlugin.getContextManager().getFileForContext(mainDataDirTask.getHandleIdentifier()).getName());
-// assertTrue(bobsTaskFile.exists());
-// bobsTaskFile = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + bobsTask.getContextPath() + MylarTaskListPlugin.FILE_EXTENSION);
-// assertTrue(bobsTaskFile.exists());
-// assertNotNull(manager.getTaskForHandle(bobsTask.getHandleIdentifier(), false));
-//
-// //Switch to Jill's folder
-// switchAction.switchTaskDataFolder(sharedDataFolderOptions[1]);
-//
-// //Check that Bob's task isn't there
-// bobsTaskFile = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + bobsTask.getContextPath() + MylarTaskListPlugin.FILE_EXTENSION);
-// assertFalse(bobsTaskFile.exists());
-// assertNull(manager.getTaskForHandle(bobsTask.getHandleIdentifier(), false));
-//
-// //Switch back to Bob's folder
-// switchAction.switchTaskDataFolder(sharedDataFolderOptions[0]);
-//
-// //Check that bob's task is still there
-// bobsTaskFile = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + bobsTask.getContextPath() + MylarTaskListPlugin.FILE_EXTENSION);
-// assertTrue(bobsTaskFile.exists());
-// assertNotNull(manager.getTaskForHandle(bobsTask.getHandleIdentifier(), false));
-//
-// //Switch back to the main data folder
-// sharedDataFolderOptions = switchAction.getFolderStrings();
-// switchAction.switchTaskDataFolder(sharedDataFolderOptions[0]);
-//
-// //Check that the main task is there
-// mainDataDirTaskFile = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + mainDataDirTask.getContextPath() + MylarTaskListPlugin.FILE_EXTENSION);
-// assertTrue(mainDataDirTaskFile.exists());
-// assertNotNull(manager.getTaskForHandle(mainDataDirTask.getHandleIdentifier(), false));
-
- }
-
- /**
- * Creates a task with an interaction event and checks that it has
- * been properly saved in the currently active data directory
- */
- protected ITask createAndSaveTask(String taskName){
-
- //Create the task and add it to the root of the task list
- ITask newTask = new Task(MylarTaskListPlugin.getTaskListManager().genUniqueTaskHandle(), taskName, true);
- manager.moveToRoot(newTask);
- MylarContext mockContext = MylarPlugin.getContextManager().loadContext(newTask.getHandleIdentifier());//, newTask.getContextPath());
- InteractionEvent event = new InteractionEvent(InteractionEvent.Kind.EDIT,"structureKind","handle","originId");
- mockContext.parseEvent(event);
- MylarPlugin.getContextManager().contextActivated(mockContext);
-
- fail(); // uncomment below
-// //Save the context file and check that it exists
-// MylarPlugin.getContextManager().saveContext(mockContext.getId());//, newTask.getContextPath());
-// File taskFile = new File(MylarPlugin.getDefault().getDataDirectory() + File.separator + newTask.getContextPath() + MylarContextManager.CONTEXT_FILE_EXTENSION);
-// assertTrue(MylarPlugin.getContextManager().hasContext(newTask.getContextPath()));
-// assertTrue(taskFile.exists());
-
- return newTask;
- }
-
- protected void tearDown() throws Exception{
-
- //Reset the shared directory to the original value
- MylarPlugin.getDefault().setSharedDataDirectory(originalSharedDataDir);
- MylarReportsPlugin.getDefault().getPreferenceStore().setValue(MylarReportsPlugin.SHARED_TASK_DATA_ROOT_DIR, originalSharedDataDir);
-
- //Delete the test shared data directories
- deleteDir(bobsDataDir);
- deleteDir(jillsDataDir);
- deleteDir(sharedDataRootDir);
-
- super.tearDown();
- }
-
- private void deleteDir(File targetDir){
- File[] files = targetDir.listFiles();
- for (File file : files) {
- file.delete();
- }
-
- targetDir.delete();
- assertFalse(targetDir.exists());
- }
-
- // Note: Copied from MylarTaskListPlugin
- private boolean copy(File src, File dst) {
- try {
- InputStream in = new FileInputStream(src);
- OutputStream out = new FileOutputStream(dst);
-
- // Transfer bytes from in to out
- byte[] buf = new byte[1024];
- int len;
- while ((len = in.read(buf)) > 0) {
- out.write(buf, 0, len);
- }
- in.close();
- out.close();
- return true;
- } catch (IOException ioe) {
- return false;
- }
- }
-
-}

Back to the top