1 19 20 package editor_actions; 21 22 import java.awt.datatransfer.Transferable ; 23 import java.io.File ; 24 import java.io.FileOutputStream ; 25 import java.io.IOException ; 26 import java.io.OutputStream ; 27 import java.io.PrintStream ; 28 import java.util.Hashtable ; 29 import javax.swing.text.BadLocationException ; 30 import javax.swing.text.Document ; 31 import lib.EditorTestCase; 32 import org.netbeans.jellytools.EditorOperator; 33 import org.netbeans.jemmy.operators.JEditorPaneOperator; 34 35 42 public class EditorActionsTest extends EditorTestCase { 43 44 private PrintStream systemOutPSWrapper = new PrintStream (System.out); 46 private int index = 0; 47 public static final int WAIT_MAX_MILIS_FOR_UNDO_REDO = 2000; 48 49 50 public EditorActionsTest(String testMethodName) { 51 super(testMethodName); 52 } 53 54 private String getIndexAsString(){ 55 String ret = String.valueOf(index); 56 if (ret.length() == 1) ret = "0" + ret; 57 return ret; 58 } 59 60 private String getRefFileName(){ 61 return this.getName()+getIndexAsString()+".ref"; } 63 64 private String getGoldenFileName(){ 65 return this.getName()+getIndexAsString()+".pass"; } 67 68 private String getDiffFileName(){ 69 return this.getName()+getIndexAsString()+".diff"; } 71 72 private Hashtable logStreamTable = null; 74 75 private PrintStream getFileLog(String logName) throws IOException { 76 OutputStream outputStream; 77 FileOutputStream fileOutputStream; 78 79 if ((logStreamTable == null)|(hasTestMethodChanged())) { 80 logStreamTable = new Hashtable (); 82 } else { 84 if (logStreamTable.containsKey(logName)) { 85 return (PrintStream )logStreamTable.get(logName); 87 } 88 } 89 FileOutputStream fileLog = new FileOutputStream (new File (getWorkDir(),logName)); 91 PrintStream printStreamLog = new PrintStream (fileLog,true); 92 logStreamTable.put(logName,printStreamLog); 93 return printStreamLog; 95 } 96 97 private String lastTestMethod=null; 98 99 private boolean hasTestMethodChanged() { 100 if (!this.getName().equals(lastTestMethod)) { 101 lastTestMethod=this.getName(); 102 return true; 103 } else { 104 return false; 105 } 106 } 107 108 public PrintStream getRef() { 109 String refFilename = getRefFileName(); 110 try { 111 return getFileLog(refFilename); 112 } catch (IOException ioe) { 113 fail("Could not open reference file: "+refFilename); 117 return systemOutPSWrapper; 118 } 119 } 120 121 protected void compareToGoldenFile(Document testDoc){ 122 try { 124 ref(testDoc.getText(0, testDoc.getLength())); 125 compareReferenceFiles(getRefFileName(), getGoldenFileName(), getDiffFileName()); 126 index++; 127 } catch (BadLocationException e) { 128 e.printStackTrace(getLog()); 129 fail(); 130 } 131 } 132 133 134 protected void waitForMilis(int maxMiliSeconds){ 135 int time = (int) maxMiliSeconds / 100; 136 while (time > 0) { 137 try { 138 Thread.currentThread().sleep(100); 139 } catch (InterruptedException ex) { 140 time=0; 141 } 142 time--; 143 144 } 145 } 146 147 protected ValueResolver getFileLengthChangeResolver(final JEditorPaneOperator txtOper, final int oldLength){ 148 log(""); 149 log("oldLength:"+oldLength); 150 ValueResolver fileLengthValueResolver = new ValueResolver(){ 151 public Object getValue(){ 152 int newLength = txtOper.getDocument().getLength(); 153 log("newLength:"+newLength); 154 return (newLength == oldLength) ? Boolean.TRUE : Boolean.FALSE; 155 } 156 }; 157 158 return fileLengthValueResolver; 159 } 160 161 162 } 163
| Popular Tags
|