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 "SMILA/Documentation/HowTo/Create a test bundle (plug-in)"

(Create a test suite file)
 
(One intermediate revision by one other user not shown)
Line 41: Line 41:
 
* <tt>org.junit.runner</tt>
 
* <tt>org.junit.runner</tt>
 
* <tt>org.junit.runners</tt>
 
* <tt>org.junit.runners</tt>
However, because the Eclipse Testing Framework uses an workaround to execute JUnit4 tests (for details see [https://bugs.eclipse.org/bugs/show_bug.cgi?id=298619]), you must keep the Import-Package entry for <tt>junit.framework</tt> or the test bundle will not work in the headless build process. Check bundle <tt>org.eclipse.smila.clusterconfig.simple.test</tt> for an example.
+
However, because the Eclipse Testing Framework uses an workaround to execute JUnit4 tests (for details see [https://bugs.eclipse.org/bugs/show_bug.cgi?id=298619]), you must keep the Import-Package entry for <tt>junit.framework</tt> or the test bundle will not work in the headless build process. Check bundle <tt>org.eclipse.smila.clusterconfig.simple.test</tt> for an example.
  
 
== Prepare the testing gear  ==
 
== Prepare the testing gear  ==
Line 63: Line 63:
 
#**Set the ''Program arguments'' to <tt>-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}</tt>.  
 
#**Set the ''Program arguments'' to <tt>-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}</tt>.  
 
#**Set the ''VM arguments'' to <tt>-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger -Dlog4j.configuration=file:${eclipse_home}configuration/log4j.properties -Xms40m -Xmx256m</tt>.  
 
#**Set the ''VM arguments'' to <tt>-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger -Dlog4j.configuration=file:${eclipse_home}configuration/log4j.properties -Xms40m -Xmx256m</tt>.  
#**If you need additional configuration or test data files (files/folders you store in your configuration folder), you should also add the following parameter to the VM arguments: <tt>-Dorg.eclipse.smila.utils.config.root=./configuration</tt> (adding this parameter is a good idea in any case).  
+
#**If you need additional configuration or test data files (files/folders you store in your configuration folder), you should also add the following parameter to the VM arguments: <tt>-Dorg.eclipse.smila.utils.config.root=./configuration</tt> (adding this parameter is a good idea in any case). Remember that if you use the bundle folder in SMILA configuration, you need to replicate that structure in the test bundle configuration folder. (EG: <tt>SMILA.application/configuration/org.eclipse.smila.integration.bundle/bundle.properties</tt> --> <tt>org.eclipse.smila.integration.bundle.test/configuration/org.eclipse.smila.integration.bundle/bundle.properties</tt>)
 
#*On the ''Configuration'' panel:  
 
#*On the ''Configuration'' panel:  
 
#**If you have a <tt>config.ini</tt>, you have to reference it here:  
 
#**If you have a <tt>config.ini</tt>, you have to reference it here:  

Latest revision as of 08:53, 19 February 2014

This page descibes how to create a new test bundle for SMILA.The description on how to add a plug-in bundle can be found in How to create a bundle (plug-in). This HowTo is similar with only minor differences.

Create the test bundle

The following steps must be performed to create the test project base:

  1. Launch Eclipse and select your SMILA workspace.
  2. Select File > New > Projectand click Plug-in Project.
  3. Click Next.
    Now you have to fill in various metadata and settings for your plug-in project. You may as well edit some of the settings later on by opening the MANIFEST.MF file with the Plug-in Manifest editor.
  4. Enter a project name (you should use the same name as the bundle that should be tested and append a .test to it, for this example we will use org.eclipse.smila.integration.bundle.test).
  5. Add code as a parent to the source and output folder:
    • Set Source folder to code/src.
    • Set Output folder to code/bin.
  6. Set Target Platform to an OSGi framework: Equinox.
  7. Click Next.
  8. Fill in the metadata information for the new bundle. Set the plug-in's name as ID, your bundle's version, a reasonable bundle name and the information about the provider (i.e. you). For our example we select:
    • ID: org.eclipse.smila.integration.bundle.test (in our example)
    • Version: 1.0.0
    • Name: Example Bundle Plugin Test
    • Provider: Example company
    • Exection Environment: JavaSE-1.7
  9. Normally you won't need an activator in the test bundle, so uncheck this option.
  10. Click Next.
  11. Uncheck the Option Create a plug-in using one of the templates.
  12. Click Finish.

Create a test suite file

Now you should create a test suite in your test bundle.

  1. Open your MANIFEST.MF file.
  2. Switch to the Dependencies page.
  3. In Imported Packages click Add.
  4. Add junit.framework.
  5. Save MANIFEST.MF.
  6. Create a package in code/src with the same name as your bundle (in our example it is org.eclipse.smila.integration.bundle.test).
  7. Add an empty test suite named AllTests.java.
    Here you can add all your bundle's tests after you've created them.

Since SMILA 1.1 you can also use the Junit4 annotations to define test suites and cases, you will need to import these additional packages at least

  • org.junit
  • org.junit.runner
  • org.junit.runners

However, because the Eclipse Testing Framework uses an workaround to execute JUnit4 tests (for details see [1]), you must keep the Import-Package entry for junit.framework or the test bundle will not work in the headless build process. Check bundle org.eclipse.smila.clusterconfig.simple.test for an example.

Prepare the testing gear

Now you have to make some additions to the project in order to be able to integrate it into the build process or create plug-in test launchers.

Create the launcher

  1. Create a configuration folder in your test bundle's root folder.
  2. Add this configuration folder to your build.properties.
  3. Add a log4j.properties file to your configuration folder.
  4. If you need plug-ins to be started for your test (which is normally the case), create a config.ini file in your configuration folder containing your OSGi bundles config.
  5. Create a JUnit Plug-in Test launcher for your AllTests.java suite:
    • Select Run > Run Configurations.
    • Select the JUnit Plug-Test node and click New.
    • Set the name to the bundle's name (here: org.eclipse.smila.integration.bundle.test).
    • On the Test page:
      • Select which class to test.
      • Set the Test runner to JUnit 3 or JUnit 4, depending on the style you have chosen.
    • On the Arguments page:
      • Set the Program arguments to -os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}.
      • Set the VM arguments to -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JLogger -Dlog4j.configuration=file:${eclipse_home}configuration/log4j.properties -Xms40m -Xmx256m.
      • If you need additional configuration or test data files (files/folders you store in your configuration folder), you should also add the following parameter to the VM arguments: -Dorg.eclipse.smila.utils.config.root=./configuration (adding this parameter is a good idea in any case). Remember that if you use the bundle folder in SMILA configuration, you need to replicate that structure in the test bundle configuration folder. (EG: SMILA.application/configuration/org.eclipse.smila.integration.bundle/bundle.properties --> org.eclipse.smila.integration.bundle.test/configuration/org.eclipse.smila.integration.bundle/bundle.properties)
    • On the Configuration panel:
      • If you have a config.ini, you have to reference it here:
        • Check Use an existing config.ini file as a template.
        • Click Workspace and navigate to the config.ini (example path: ${workspace_loc:org.eclipse.smila.integration.bundle.test/configuration/config.ini}).

Hint: You can configure Eclipse to add VM arguments each time a launcher is created:

  1. Window --> Preferences --> Plug-in Development --> Target Platform --> Edit.
  2. On the Arguments page, you can set the VM arguments that will be added to each new launch configuration.

Include test bundle in build process

To enable the build process (see How to build a SMILA distribution) to include your test bundle you should follow the instructions on how to integrate a test bundle into the build process.

Back to the top