Package com.qspin.qtaste.ui.tools

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


            setTestCaseDoc(testcaseDoc, true);
        }

        @Override
        public boolean isEnabled() {
            FileNode fn = getSelectedFileNode();
            return fn != null && fn.isTestcaseDir();
        }
View Full Code Here


        public TestExternalEditAction() {
            super("Edit in external editor");
        }

        public void actionPerformed(ActionEvent e) {
            FileNode fn = getSelectedFileNode();
            try {
                Desktop.getDesktop().edit(fn.getTestcaseFile().getAbsoluteFile());
            } catch (IOException ex) {
                logger.error("Error while calling Desktop edit on " + fn.getTestcaseFile().getAbsoluteFile());
            }
        }
View Full Code Here

        protected void addNodesToDir(TreePath path) {
            Object obj = path.getLastPathComponent();
            if (obj instanceof TCTreeNode) {
                TCTreeNode tn = (TCTreeNode) obj;
                FileNode fn = (FileNode) tn.getUserObject();
                if (fn.isDir()) {
                    tn.removeAllChildren();
                    addTreeToDir(fn.getFile(), tn);
                    ((DefaultTreeModel) getModel()).reload(tn);
                }
            }
        }
View Full Code Here

            }
        }

        @Override
        public boolean isEnabled() {
            FileNode fn = getSelectedFileNode();
            return fn != null && fn.isTestcaseDir() && Desktop.isDesktopSupported();
        }
View Full Code Here

        public TestOpenFolderAction() {
            super("Open folder");
        }

        public void actionPerformed(ActionEvent e) {
            FileNode fn = getSelectedFileNode();
            try {
                Desktop.getDesktop().open(fn.getFile().getAbsoluteFile());
            } catch (IOException ex) {
                logger.error("Error while calling Desktop open on " + fn.getFile().getAbsoluteFile());
            }
        }
View Full Code Here

            }
        }

        @Override
        public boolean isEnabled() {
            FileNode fn = getSelectedFileNode();
            return fn != null && Desktop.isDesktopSupported();
        }
View Full Code Here

        public CreateTestFolder() {
            super("Create folder");
        }

        public void actionPerformed(ActionEvent e) {
            FileNode fn = getSelectedFileNode();
            String input = JOptionPane.showInputDialog(null,
                    "Give the name of the folder",
                    "folder name:",
                    JOptionPane.QUESTION_MESSAGE);
            if (input==null) return;
            File testScriptFile = fn.getFile();
            testScriptFile.renameTo(new File(input));
        }
View Full Code Here

        public void actionPerformed(ActionEvent e) {
            TCTreeNode tn = getSelectedTreeNode();

            String testName = tn.toString();
            FileNode fn = (FileNode) tn.getUserObject();
            String input = JOptionPane.showInputDialog(null,
                    "Give the new name of the test " + testName,
                    //"Test name:",
                    //JOptionPane.QUESTION_MESSAGE
                    testName
                    );
            if (input==null) return;

            // if doc tab is opened, ensure close it first
            testCasePane.getDocPane().setText("");
            File newFile = new File(fn.getFile().getParent() + "/" + input);
            boolean result = fn.getFile().renameTo(newFile);
            if (!result) {
              logger.error("Impossible to rename " + fn.getFile().getName() + " to " + input);
              return;
            }
            String testScriptFileName;
      try {
        // rename necessary classes
        fn.setFile(newFile);
        testScriptFileName = fn.getFile().getCanonicalPath() + "/" + StaticConfiguration.TEST_SCRIPT_FILENAME;
              fn.getPythonTestScript().setTestScriptFile(new File(testScriptFileName));
              // rename the testscript name
              NonWrappingTextPane tcPane = testCasePane.getTcSourceTextPane();
              if (tcPane!=null)
              {
                tcPane.setFileName(testScriptFileName);
              }
              // rename the testdata name
              TestDataEditor tcDataPane = testCasePane.getTestDataPane();
              if (tcDataPane!=null)
              {
                tcDataPane.setFileName(fn.getPythonTestScript().getTestcaseData().getCanonicalPath());
              }
             
              TCTreeNode parentTreeNode = (TCTreeNode)tn.getParent();
              parentTreeNode.removeAllChildren();
              FileNode parentFileNode = (FileNode)parentTreeNode.getUserObject();
              addTreeToDir(parentFileNode.getFile(), parentTreeNode);
              ((DefaultTreeModel) getModel()).reload(parentTreeNode);
              // reload the doc is selected
              setTestCaseDoc(fn.getPythonTestScript().getTestcaseDoc(), false);
              //
      } catch (IOException e1) {
View Full Code Here

        public void actionPerformed(ActionEvent e) {
            // confirmation dialog
            TCTreeNode tn = getSelectedTreeNode();

            String testName = tn.toString();
            FileNode fn = (FileNode) tn.getUserObject();
            if (fn.isTestcaseDir()) {
                if (JOptionPane.showConfirmDialog(null, "Are you sure to remove the script '" + testName + "'", "Confirmation", JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE) ==
                        JOptionPane.OK_OPTION)
                {
                    // remove the test script directory
                    File testScriptFile = fn.getFile();
                    boolean deleted = DeleteDirectory.deleteDirectory(testScriptFile);
                    if (deleted)
                    {
                        TCTreeNode parentTreeNode = (TCTreeNode)tn.getParent();
                        parentTreeNode.removeAllChildren();
                        FileNode parentFileNode = (FileNode)parentTreeNode.getUserObject();
                        addTreeToDir(parentFileNode.getFile(), parentTreeNode);
                        ((DefaultTreeModel) getModel()).reload(parentTreeNode);
                    }
                    else
                    {
                        JOptionPane.showConfirmDialog(null, "Impossible to delete " + testName, "Error", JOptionPane.OK_OPTION, JOptionPane.ERROR_MESSAGE);
View Full Code Here

                    JOptionPane.QUESTION_MESSAGE);
            if (input==null) return;
            TCTreeNode tn = getSelectedTreeNode();

      try {
              FileNode fn = (FileNode) tn.getUserObject();
              if (fn.isTestcaseDir()) {
                  // get the source Dir
                  TestScriptCreation createScriptTool = new TestScriptCreation(input, fn.getFile().getParentFile().getAbsoluteFile().getCanonicalPath());
                  createScriptTool.copyTestSuite(fn.getFile().getAbsoluteFile().getCanonicalPath());
                  tn = (TCTreeNode) tn.getParent();
                  fn = (FileNode) tn.getUserObject();
              } else {
                  TestScriptCreation createScriptTool = new TestScriptCreation(
                          input, fn.getFile().getAbsoluteFile().getCanonicalPath());
                  createScriptTool.createTestSuite();
              }
              // update the tree view
              // add the tree
 
              tn.removeAllChildren();
              addTreeToDir(fn.getFile(), tn);
              ((DefaultTreeModel) getModel()).reload(tn);
      } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
      }
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.