Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:EUnit Testing"

(JavaScript)
(tdr edits)
Line 5: Line 5:
 
EUnit stands for EGL Unit testing framework. It is a simple open source framework to write and run repeatable EGL tests.&nbsp; Its features include:<br>  
 
EUnit stands for EGL Unit testing framework. It is a simple open source framework to write and run repeatable EGL tests.&nbsp; Its features include:<br>  
  
*Tooling to generate a test runner and run the test cases – Provided by EDT Framework  
+
*Tooling to generate a test program and run the test cases – Provided by EDT Framework  
 
**Manual and automated  
 
**Manual and automated  
 
**Can be run as often as needed (on demand, nightly build, etc.)  
 
**Can be run as often as needed (on demand, nightly build, etc.)  
Line 25: Line 25:
 
*Select the generators:<br>
 
*Select the generators:<br>
  
&nbsp; &nbsp; 1) If you will run the testing on both Java and JavaScript platforms, just leave the default settings (both Java and JavaScript generators selected).<br>  
+
&nbsp; &nbsp; 1) If you will run the testing on both Java and JavaScript platforms, leave the default settings (both Java and JavaScript generators selected).<br>  
  
 
&nbsp; &nbsp; 2) If you will run the testing on a specific platform, select '''Override generation settings from workspace preferences''' and choose a generator.<br>  
 
&nbsp; &nbsp; 2) If you will run the testing on a specific platform, select '''Override generation settings from workspace preferences''' and choose a generator.<br>  
Line 88: Line 88:
 
2. There are two ways to execute the test:  
 
2. There are two ways to execute the test:  
  
*Go to '''project eunit.test.eunit.javascript &gt; EGLSource &gt; eunitgen.RunAllTests_rui.egl''', open it in EGL Rich UI editor's preview pane, and execute it  
+
*Go to '''project eunit.test.eunit.javascript &gt; EGLSource &gt; eunitgen.RunAllTests_rui.egl''', open it in EGL Rich UI editor's preview pane, and execute it.
*Go to '''project eunit.test.eunit.javascript &gt; EGLSource &gt; deploy eunit_test_eunit_javascript.egldd file to a target project.''' Start the server and then run the html file in the browser.<br>
+
*Go to '''project eunit.test.eunit.javascript &gt; EGLSource &gt; deploy eunit_test_eunit_javascript.egldd file to a target project.''' Start the server and then run the HTML file in the browser.<br>
  
 
3. Refresh '''project eunit.test.eunit.javascript'''.&nbsp; You should see a new folder, '''ResultRoot'''.&nbsp; Then do the same steps as described in the Java section above.<br>  
 
3. Refresh '''project eunit.test.eunit.javascript'''.&nbsp; You should see a new folder, '''ResultRoot'''.&nbsp; Then do the same steps as described in the Java section above.<br>  

Revision as of 11:18, 2 February 2012

EUnit Test Framework Overview

What is EUnit?

EUnit stands for EGL Unit testing framework. It is a simple open source framework to write and run repeatable EGL tests.  Its features include:

  • Tooling to generate a test program and run the test cases – Provided by EDT Framework
    • Manual and automated
    • Can be run as often as needed (on demand, nightly build, etc.)
    • GUI and command line interfaces
    • Logging, reporting, analyzing
    • Can be used in a multiple-language environment (Java, JavaScript, etc)
  • Test cases
  • Test case documentation 

How to write test cases using EUnit

1. Create an EGL Project, for example: eunit.test

  • Select Basic as the template.

Eunit001.JPG

  • Select the generators:

    1) If you will run the testing on both Java and JavaScript platforms, leave the default settings (both Java and JavaScript generators selected).

    2) If you will run the testing on a specific platform, select Override generation settings from workspace preferences and choose a generator.

Eunit002.JPG

2. Create an EGL Library, for example: test, and provide a package name, such as libs.

Eunit003.JPG

3. Open the library with the EGL Editor, and remove the automatically generated code.

4. Type the variable declarations and functions (we treat each function as an EUnit test case) in the library, which should contain the annotation @Test. For example:

package libs;
import org.eclipse.edt.eunit.runtime.LogResult;
import org.eclipse.edt.eunit.runtime.Test;

// basic library
library test
	
	const constFlexName string = "Fred Smith";
	varFlexName string;
	variation string;
	
	function runAssignmentFunction01(){@Test {}}
		variation = "constant initialization";
		LogResult.assertStringEqual1("Fred Smith", constFlexName);
	end
	
end
  • Tips

    If you want to disable some specific test cases, you can use targetLang in the annotation. For example, below is a test case which cannot be generated into JavaScript.

function runAssignmentFunction01(){@Test {targetLang = [JAVA]}}
	variation = "constant initialization";
	LogResult.assertStringEqual1("Fred Smith", constFlexName);
end

How to run tests using EUnit

Java

1. Right click on the project you just created, and choose Generate EGL Test Driver > Java to create the Java test driver.

Eunit004.JPG

2. Go to project eunit.test.eunit.java > folder generatedJava > Run test.RunAllTests_pgm as Java application.

3. Refresh project eunit.test.eunit.java.  You should see a new folder,  ResultRoot.  Expand its subfolder (the name is in current timestamp yyyymmdd_hhmmss), until you see file ResultSummary.trs.  Double click to open this file. You will need to install Eclipse BIRT to view the Test Result Statistics Chart. You can also go through every individual report by clicking the leaf node of the result tree and navigating to the corresponding source file.

Eunit005.JPG

  • Tips

You can also select one or more packages, egl files (they must be the same type) to generate the test driver, instead of the entire EGL project.

JavaScript

1. Right click on the project you just created, and choose Generate EGL Test Driver > JavaScript to create the JavaScript test driver.

2. There are two ways to execute the test:

  • Go to project eunit.test.eunit.javascript > EGLSource > eunitgen.RunAllTests_rui.egl, open it in EGL Rich UI editor's preview pane, and execute it.
  • Go to project eunit.test.eunit.javascript > EGLSource > deploy eunit_test_eunit_javascript.egldd file to a target project. Start the server and then run the HTML file in the browser.

3. Refresh project eunit.test.eunit.javascript.  You should see a new folder, ResultRoot.  Then do the same steps as described in the Java section above.



Back to the top