Package com.qspin.qtaste.ui.tools

Examples of com.qspin.qtaste.ui.tools.FileNode


    protected boolean checkIfDirectoryContainsTestScriptFile(File file) {
        File[] childFiles = FileUtilities.listSortedFiles(file);
        for (int i = 0; i < childFiles.length; i++) {
            if (childFiles[i].isDirectory()) {
                FileNode childNode = new FileNode(childFiles[i], childFiles[i].getName(), getTestCasePane().getTestSuiteDirectory());
                if (childNode.isTestcaseDir()) {
                    return true;
                } else {
                    // go recursively into its directory
                    boolean result = checkIfDirectoryContainsTestScriptFile(childFiles[i]);
                    if (result) {
View Full Code Here


    protected void addChildToTree(File file, DefaultMutableTreeNode parent) {
        if (!file.isDirectory()) {
            return;
        }
        FileNode fn = new FileNode(file, file.getName(), getTestCasePane().getTestSuiteDirectory());
        // check if the directory is the child one containing data files
        boolean nodeToAdd = fn.isTestcaseDir();
        if (!fn.isTestcaseDir()) {
            // go recursilvely to its child and check if it must be added
            nodeToAdd = checkIfDirectoryContainsTestScriptFile(file);
        }
        if (!nodeToAdd) {
            return;
        }
        TCTreeNode node = new TCTreeNode(fn, !fn.isTestcaseDir());
        final int NON_EXISTENT = -1;
        if (parent.getIndex(node) == NON_EXISTENT &&
                !file.isHidden()) {
            parent.add(node);
        }
View Full Code Here

        }
    }

    public void loadSelectedTestCase(TreePath path) {
        if (path != null) {
            FileNode fn = getFileNode(path);
            if (fn != null && fn.isTestcaseDir()) {
                File testcaseFile = fn.getTestcaseFile();
                if (testCasePane.getTestScripPane() != null) {
                    try {
            if (testcaseFile.getAbsoluteFile().getCanonicalPath().equals(testCasePane.getTestScripPane().getFileName())) {
                return;
            }
          } catch (IOException e) {
            logger.error(e.getMessage());
            return;
          }
                }
                if (testcaseFile != null) {
                    testCasePane.setCurrentSelectedFileNode(fn);
                    if (fn.getFile().getName().equals("TestSuite")) {
                        testCasePane.setCurrentSelectedTestsuite("TestSuite");
                    } else {
                        String parentDir = testcaseFile.getParent();
                        testCasePane.setCurrentSelectedTestsuite(parentDir);
                    }
                    setTestCaseSource(testcaseFile, false);

                }
                File testcaseData = fn.getPythonTestScript().getTestcaseData();
                if (testcaseData != null) {
                    setTestCaseData(testcaseData, false);
                }
                File testcaseRequirement = fn.getPythonTestScript().getTestcaseRequirements();
                if (testcaseRequirement != null) {
                    setTestCaseRequirement(testcaseRequirement, false);
                }
                //  regenerate the doc if file date of script > file date of doc
                PythonTestScript script = fn.getPythonTestScript();
                boolean generateDoc =  testCasePane.isDocTabSelected() && !script.isDocSynchronized();
               
                if (generateDoc) {                 
                    testCasePane.parent.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
                    script.generateDoc();
View Full Code Here

        Object targetNode = path.getLastPathComponent();
        if (targetNode instanceof TCTreeNode)
        {
           TCTreeNode tcTreeNode = (TCTreeNode)targetNode;
           if (tcTreeNode.getUserObject() instanceof FileNode) {
               FileNode fn = (FileNode)tcTreeNode.getUserObject();
           }
        }
    }
View Full Code Here

        }
        Object targetNode = path.getLastPathComponent();
        if (targetNode instanceof TCTreeNode) {
           TCTreeNode tcTreeNode = (TCTreeNode)targetNode;
           if (tcTreeNode.getUserObject() instanceof FileNode) {
               FileNode fn = (FileNode)tcTreeNode.getUserObject();
               if (fn.isTestcaseDir())
               {
                   return;
               }
           }
        }
View Full Code Here

                TreePath path = getPathForLocation (dropPoint.x, dropPoint.y);
                Object targetNode = path.getLastPathComponent();
                if (targetNode instanceof TCTreeNode) {
                    // rename the dragged dir into the new target one
                    TCTreeNode tcTargetNode = (TCTreeNode)targetNode;
                    FileNode fn = (FileNode)tcTargetNode.getUserObject();
                    if (fn.isTestcaseDir())
                    {
                        dtde.rejectDrop();
                        return;
                    }

                    FileNode draggedFileNode = (FileNode)tcTreeNode.getUserObject();
                    draggedFileNode.getFile().renameTo(new File(fn.getFile() + "/" + draggedFileNode.getFile().getName()));
                    // update target tree

                    testCasePane.parent.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));

                    TCTreeNode parentTreeNode = (TCTreeNode)tcTargetNode.getParent();
                    if (parentTreeNode!=null) {
                        parentTreeNode.removeAllChildren();
                        FileNode parentFileNode = (FileNode)parentTreeNode.getUserObject();
                        addTreeToDir(parentFileNode.getFile(), parentTreeNode);
                        ((DefaultTreeModel) getModel()).reload(parentTreeNode);
                    }
                    else
                    {
                        tcTargetNode.removeAllChildren();
                        FileNode targetFileNode = (FileNode)tcTargetNode.getUserObject();
                        addTreeToDir(targetFileNode.getFile(), tcTargetNode);
                        ((DefaultTreeModel) getModel()).reload(tcTargetNode);
                    }
                    // update source tree
                    parentTreeNode = (TCTreeNode)tcTreeNode.getParent();
                    if (parentTreeNode!=null) {
                        parentTreeNode.removeAllChildren();
                        FileNode parentFileNode = (FileNode)parentTreeNode.getUserObject();
                        addTreeToDir(parentFileNode.getFile(), parentTreeNode);
                        ((DefaultTreeModel) getModel()).reload(parentTreeNode);
                    }
                    else
                    {
                        tcTreeNode.removeAllChildren();
                        FileNode targetFileNode = (FileNode)tcTreeNode.getUserObject();
                        addTreeToDir(targetFileNode.getFile(), tcTreeNode);
                        ((DefaultTreeModel) getModel()).reload(tcTreeNode);
                    }
                    testCasePane.parent.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
                    dtde.getDropTargetContext().dropComplete(true);
                }
View Full Code Here

TOP

Related Classes of com.qspin.qtaste.ui.tools.FileNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.