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) {