This topic explains how to build a custom integration to any source control system you want to integrate with Parasoft Test (e.g., for code review, scope filters and authorship detection — see About Parasoft Test’s Source Control Support for details). 

Parasoft Test provides builtin support for most common version control / source control systems (e.g, SVN, CVS, Subversion, ClearCase etc.) as described in Connecting to Your Source Control Repository. In addition, it provides an open Source Control API, which allows other source control tools to be integrated with Parasoft Test.

Sections include:

Adding a Custom Source Control Implementation

API Javadoc (Eclipse only)

The Parasoft Test online help system provides a Source Control API topic that includes Javadoc documentation for all classes and interfaces that must be implemented.

You can also find this Javadoc in the Parasoft Test installation directory at [INSTALL_DIR\plugins\com.parasoft.xtest.sourcecontrol.eclipse.core\javadoc\openapi.

Main Interfaces

The interface that connects and creates all required implementation is com.parasoft.xtest.sourcecontrol.openapi.IVersionControlFactory.

This factory provides specific implementation for the following interfaces:

  • com.parasoft.xtest.sourcecontrol.openapi.IRepositoryDetector
  • com.parasoft.xtest.sourcecontrol.openapi.IVersionControl
  • com.parasoft.xtest.sourcecontrol.openapi.IVersionControlHelper

Implementation and Compilation

The source control API and all related classes are located in the jar file at [INSTALL_DIR]\plugins\com.parasoft.xtest.libs/Parasoft/sourcecontrol.jar.

Before you can compile, you may need to add the following additional jar files to your classpath:

  • [INSTALL_DIR]\com.parasoft.xtest.libs/Parasoft/util.jar
  • [INSTALL_DIR]\com.parasoft.xtest.libs/Parasoft/common.jar
  • [INSTALL_DIR]\com.parasoft.xtest.libs/Parasoft/preference_api.jar

To implement a custom integration:

  1. Create a project in any location.
  2. Add the required jars to the project's classpath.
  3. Start implementing custom version control support. Begin with the IVersionControlFactory implementation and incrementally add the required classes.

Deployment and Verification

After implementation is completed:

  1. Create a single jar file containing all of the required classes. There are no specific rules concerning the jar file name or package names etc.
  2. Copy your jar file into your Parasoft Test installation directory and restart your Parasoft Test product. The installation directory is:
    • Eclipse: [INSTALL_DIR]\plugins\com.parasoft.xtest.sourcecontrol.eclipse.core\ext
    • Visual Studio: [INSTALL_DIR]\com.parasoft.xtest.libs.vstudio/ext
  3. Verify the implementation as follows:
    1. Choose Parasoft> Preferences> Source Control.
    2. Ensure that Use Concerto settings is cleared.
    3. Verify that a checkbox with your implementation name appears among the builtin version controls.
    4. Select the checkbox for your implementation, click New, add the required properties, and then click Apply.
    5. Go to the Preferences> Scope and Authorship page and verify that Use source controlto compute scope is enabled.
    6. Open a file controlled by your version control system, right-click anywhere in the file’s source code, then choose Show author at line. You should see valid version control author information.

Sample Implementation

Parasoft Test provides a sample implementation for the Source Control Open API. A zipped package is located in [INSTALL_DIR]\plugins\com.parasoft.xtest.sourcecontrol.eclipse.core\openapi\demo\.

After you extract the open_api_demo.zip file, the following directory structure should be created:

  • open_api_demo/demo.jar - Contains a compiled version of the demo source control implementation for Eclipse.
  • open_api_demo/demo.dll - Contains a compiled version of the demo source control implementation for Visual Studio 2005 or later.
  • open_api_demo/src/* - This is the source code for the Open API demo implementation.
  • open_api_demo/local_repository/* - This is a sample Eclipse project for demonstration purposes.

The demo was compiled using JDK 1.6.0_29.

You can compile and deploy it using the procedures described in the preceding section.

To play with the demo:

  1. Deploy the demo.jar file.
  2. Unpack the local repository to any location.
  3. Restart your Parasoft Test product.
  4. Import the demo local repository project into your workspace.
  5. Under Parasoft> Preferences> Source Control, enable the demo implementation.





  6. Open a file, right-click anywhere in the file’s source code, then choose Show author at line. You should see valid version control author information.

  • No labels