commented out code responsible for exceptions. now showing correct suite names and...
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / PHPUnitView.java
index 1f16ca6..9f388dd 100644 (file)
@@ -6,6 +6,8 @@ import java.io.BufferedWriter;
 import java.io.File;
 import java.io.FileWriter;
 import java.io.IOException;
+import java.net.MalformedURLException;
+import java.net.URL;
 
 import net.sourceforge.phpeclipse.phpunit.testpool.TestCase;
 import net.sourceforge.phpeclipse.phpunit.testpool.TestPool;
@@ -13,16 +15,13 @@ import net.sourceforge.phpeclipse.phpunit.testpool.TestSuite;
 
 import org.eclipse.jface.action.Action;
 import org.eclipse.jface.action.IToolBarManager;
+import org.eclipse.jface.resource.ImageDescriptor;
 import org.eclipse.swt.SWT;
-import org.eclipse.swt.events.MouseEvent;
-import org.eclipse.swt.events.MouseListener;
 import org.eclipse.swt.layout.GridData;
 import org.eclipse.swt.layout.GridLayout;
-import org.eclipse.swt.widgets.Button;
 import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.FileDialog;
 import org.eclipse.ui.IActionBars;
-import org.eclipse.ui.ISharedImages;
-import org.eclipse.ui.PlatformUI;
 import org.eclipse.ui.part.ViewPart;
 
 /**
@@ -68,18 +67,22 @@ public class PHPUnitView extends ViewPart {
        
        private TestPool testPool;
 
-       private Button startButton;
+       //private Button startButton;
 
        private ProgressInfoComposite progressInfoComposite;
        private ResultsInfoComposite resultsInfoComposite;
-       private SettingsInfoComposite settingsInfoComposite; //TODO: move somewhere else, launcher, wizard or preferences.
-       
+       //private SettingsInfoComposite settingsInfoComposite; //TODO: move somewhere else, launcher, wizard or preferences.
+       private FileDialog dialog;
+
+       private String testSuiteToRun = "";
 
 
        public PHPUnitView() {
                
                if(view == null)
                        view = this;
+                       
+                       
 
        }
        
@@ -93,6 +96,8 @@ public class PHPUnitView extends ViewPart {
 
                //parent.setLayout(new FillLayout(SWT.VERTICAL));
 
+               dialog = new FileDialog(parent.getShell());
+
                GridLayout gridLayout = new GridLayout();
                gridLayout.numColumns = 1;
                
@@ -116,36 +121,36 @@ public class PHPUnitView extends ViewPart {
                //build the settings composite
                //buildSettingsComposite(parent);
                
-               settingsInfoComposite = new SettingsInfoComposite(parent, SWT.NONE);
-
-
-               startButton = new Button(parent, SWT.CENTER);
-               startButton.setText("Start Tests");
-               startButton.addMouseListener(new MouseListener() {
-
-                       public void mouseDoubleClick(MouseEvent arg0) {
-
-                       }
-
-                       public void mouseDown(MouseEvent arg0) {
-
-
-
-                       }
-
-                       public void mouseUp(MouseEvent arg0) {
+               //settingsInfoComposite = new SettingsInfoComposite(parent, SWT.NONE);
 
-                               try {
-                                       String testFile = settingsInfoComposite.getTestSuite();
-                                       startTests(testFile);
-                               } catch (IOException e) {
-                                       // TODO Auto-generated catch block
-                                       e.printStackTrace();
-                               }
-
-                       }
 
-               }); // end add action listener.
+//             startButton = new Button(parent, SWT.CENTER);
+//             startButton.setText("Start Tests");
+//             startButton.addMouseListener(new MouseListener() {
+//
+//                     public void mouseDoubleClick(MouseEvent arg0) {
+//
+//                     }
+//
+//                     public void mouseDown(MouseEvent arg0) {
+//
+//                             try {
+//                                     String testFile = settingsInfoComposite.getTestSuite();
+//                                     startTests(testFile);
+//                             } catch (IOException e) {
+//                                     // TODO Auto-generated catch block
+//                                     e.printStackTrace();
+//                             }
+//
+//
+//                     }
+//
+//                     public void mouseUp(MouseEvent arg0) {
+//
+//
+//                     }
+//
+//             }); // end add action listener.
 
        }
 
@@ -177,24 +182,66 @@ public class PHPUnitView extends ViewPart {
        private void setActions() {
                final IActionBars actionBars = getViewSite().getActionBars();
                IToolBarManager toolBarManager = actionBars.getToolBarManager();
-               Action action1 = new Action() {};
-               action1.setText("Action 1");
-               action1.setToolTipText("Start the testing");
-               //final URL installUrl = PaintPlugin.getDefault().getDescriptor().getInstallURL();
-               //final URL imageUrl = new URL(installUrl, PaintPlugin.getResourceString(id + ".image"));
-//             URL imageUrl = null;
-//             try {
-//                     imageUrl =
-//                             new URL("C:\\sample.gif");
-//             } catch (MalformedURLException e) {
-//                     // TODO Auto-generated catch block
-//                     e.printStackTrace();
-//             }
-//             action1.setImageDescriptor(ImageDescriptor.createFromURL(imageUrl));
-//             
-               action1.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().
-                       getImageDescriptor(ISharedImages.IMG_OBJS_TASK_TSK));
-               toolBarManager.add(action1);
+
+               String iconsPath = "C:\\Documents and Settings\\Ali Echihabi\\My Documents\\workspace.eclipse2.1\\net.sourceforge.phpeclipse.phpunit\\icons";
+               
+               ImageDescriptor descriptor = null;
+               String icon = "";
+
+               Action selectTestAction = new Action() {
+                       
+                       public void run() {
+                               
+                               testSuiteToRun = dialog.open(); 
+                       }
+               };
+               selectTestAction.setText("Select Test Suite");
+               selectTestAction.setToolTipText("Select Test Suite");
+               try {
+                       icon = "tsuite.gif";
+                       descriptor = ImageDescriptor.createFromURL(new URL("file://" + iconsPath + "//" + icon));
+                       selectTestAction.setImageDescriptor(descriptor);
+               } catch (MalformedURLException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               }
+               
+                               
+               toolBarManager.add(selectTestAction);
+               
+               
+               Action startTestAction = new Action() {
+               
+                       public void run() {
+                               
+                               
+                               try {
+                                       if(testSuiteToRun == null || testSuiteToRun == "")
+                                               return;
+                                               
+                                       startTests(testSuiteToRun);
+                               } catch (IOException e) {
+                                       // TODO Auto-generated catch block
+                                       e.printStackTrace();
+                               }
+                                       
+                       }
+                       
+               };
+               startTestAction.setText("Start Test");
+               startTestAction.setToolTipText("Start Test Suite");
+
+               try {
+                       icon = "start.gif";
+                       descriptor = ImageDescriptor.createFromURL(new URL("file://" + iconsPath + "//" + icon));
+                       startTestAction.setImageDescriptor(descriptor);
+               } catch (MalformedURLException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               }
+
+       
+               toolBarManager.add(startTestAction);
        }
 
 
@@ -221,16 +268,6 @@ public class PHPUnitView extends ViewPart {
 
        }
 
-       private void markTestStarted(String testID) {
-
-               
-
-       }
-
-       private void createNewTest(String testName, String testID) {
-
-               testPool.addTest(new TestCase(testName, testID));
-       }
 
        private void markTestFail(String testID) {
                
@@ -238,20 +275,6 @@ public class PHPUnitView extends ViewPart {
                
        }
 
-       private void markTestingStarted(int numTestsToBeRun) {
-               
-               
-               //reportArea.append("Tests started expecting: " + numTests + " \n");
-               
-       }
-
-       private void markTestingFinished() {
-
-               
-               //reportArea.append("end all tests \n");
-
-       }
-
        // action to start tests:
        public void startTests() throws IOException {
 
@@ -280,11 +303,15 @@ public class PHPUnitView extends ViewPart {
                
                //testSuite: the name of the file containing the suite we want to run.
                // we will put that test suite inside a contained that uses our SocketResult.
-
-
+               
                //reset from previous run
                reset();
                
+               
+               testSuite = testSuite.replaceAll("\\\\", "/");
+               
+               System.out.println("new: " +  testSuite);
+               
                //where the plugin's temp files should go
                String tempFolder = "C:\\tmp"; 
                String tempFileName = "temTest.php";
@@ -294,15 +321,16 @@ public class PHPUnitView extends ViewPart {
                BufferedWriter out = new BufferedWriter(new FileWriter(testFile));
 
                out.write("<?php" + "\n");
+               out.write("ob_start();" + "\n");
                out.write("$path = \"C:/Documents and Settings/Ali Echihabi/My Documents/workspace.eclipse2.1/PHPUnit/phpunit\";" + "\n");
                out.write("include_once($path . \"/phpunit_test.php\");" + "\n");
                out.write("include_once $path . \"/socketTestResult.php\";" + "\n");
 
                //include the test suite that we want to run.
-               String testSuiteName = "ManyFailingTests2";
-               String testSuitePath = "C:/eclipse/eclipse/runtime-workspace/PHPProject/testSuite.php";
-               
-               out.write("include_once(\"" + testSuitePath + "\");" + "\n");
+               String testSuiteName = "";
+               testSuiteName = testSuite.substring(testSuite.lastIndexOf('/') + 1, testSuite.lastIndexOf('.'));
+
+               out.write("include_once(\"" + testSuite + "\");" + "\n");
                
 
                out.write("" + "\n");
@@ -311,13 +339,7 @@ public class PHPUnitView extends ViewPart {
                out.write("$suite = new TestSuite();" + "\n");
                out.write("$suite->addTest(new TestSuite(\"" + testSuiteName + "\"));" + "\n");
                
-               
-               
-               //out.write("$suite->addTest(new TestSuite(\"MoreTesterTests\"));" + "\n");
        
-               //out.write("$suite->addTest(new TestSuite(\"ManyFailingTests\"));" + "\n");
-               //out.write("$suite->addTest(new TestSuite(\"AssertEqualsTests\"));" + "\n");           
-                       
                out.write("$result = new SocketTestResult();" + "\n");
                out.write("$suite->run($result);" + "\n");
                out.write("$result->report();   " + "\n");
@@ -325,6 +347,12 @@ public class PHPUnitView extends ViewPart {
                out.write("" + "\n");
                out.write("" + "\n");
                
+               out.write("$output = ob_get_contents();" + "\n");
+               out.write("$fileHandle = fopen('c:/tmp/phpOut.txt');" + "\n");
+               out.write("fclose($fileHandle);" + "\n");
+               
+               
+               out.write("ob_end();" + "\n");
                out.write("?>" + "\n");
                
                out.flush();
@@ -384,33 +412,39 @@ public class PHPUnitView extends ViewPart {
         * @param testID
         */
        public void handleCommand(
-               String command,
-               String testCount,
-               String testID) {
-
+               String command, String[] args) {
+       
 
                if (command.equals("startAll")) {
                
-                        markTestingStarted(new Integer(testCount).intValue());
+                        //markTestingStarted(new Integer(testCount).intValue());
                         
                        
                } else if (command.equals("testSuiteStarted")) {
 
-                       createNewTestSuite("TestSuiteName: " + testID, testID, new Integer(testCount).intValue());
-                       markTestSuiteStarted(testID);
+                       String testID = args[0];
+                       String testCount = args[1];
+                       
+                       //createNewTestSuite("TestSuiteName: " + testID, testID, new Integer(testCount).intValue());
+                       TestSuite suite = new TestSuite("TestSuiteName: " + testID, testID, new Integer(testCount).intValue());
+                       testPool.addTestSuite(suite);
 
                } else if (command.equals("testStarted")) {
 
-                       createNewTest("TestName: " + testID, testID);
-                       markTestStarted(testID);
+                       String testID = args[0];
+                       String testCount = args[1];
+                       String testName = args[2];
+                       String parentTestSuiteName = args[3];
+                       
+                       testPool.addTest(new TestCase(testID, testName, parentTestSuiteName));                  
 
                } else if (command.equals("testFINISHED")) {
 
-                       markTestFinished();
+                       
                        
                } else if (command.equals("endAll")) {
 
-                       markTestingFinished();
+                       
                }
 
                
@@ -431,41 +465,6 @@ public class PHPUnitView extends ViewPart {
                
        }
 
-       /**
-        * @param testID
-        */
-       private void markTestSuiteStarted(String testID) {
-               // TODO Auto-generated method stub
-               
-       }
-
-       /**
-        * @param string
-        * @param testID
-        * @param testCount
-        */
-       private void createNewTestSuite(String name, String testID, int testCount) {
-               
-               TestSuite suite = new TestSuite(name, testID, testCount);
-               testPool.addTestSuite(suite);
-               
-       }
-
-       /**
-        * 
-        */
-       private void markTestFinished() {
-                       
-               
-       }
-
-       /**
-        * 
-        */
-       private void updateResultsInfo() {
-               // TODO Auto-generated method stub
-               
-       }
 
        /**
         * @param currentTestID
@@ -491,4 +490,5 @@ public class PHPUnitView extends ViewPart {
 
        }
 
+
 } //end of class