Creating a Plug-in

Introduction

Concordia Compiler uses plug-ins for generating test scripts, running them and reading their results.

A plug-in can...

Requirements for a plug-in

  1. Its name must start with concordialang-, for example: concordialang-my-awesome-plugin.

  2. It must be installable with NPMarrow-up-right. We recommend you to publish it at NPM too.

  3. It must implement the interface Pluginarrow-up-right from concordialang-pluginarrow-up-right.

  4. Its package.json file must contain the property concordiaPlugin, like in the following example:

{
   ...
   
   "concordiaPlugin": {
      "file": "dist/index.js",
      "class": "MyAwesomePlugin",
      "serve": "npx command-to-start-my-testing-server"
   }
}

Properties of concordiaPlugin:

  • file: string: Relative path of the file that contains an implementation of the Plugin interface.

  • class: string: Class (name) that implementsPlugin.

  • serve: string: Multi-platform console command to execute in order to start the testing server. Whether the testing framework does not need running a testing server, you can set something like echo \"Running a testing server is not needed.\".

Tasks to perform

A plug-in must deal with three tasks:

  1. Transforming Abstract Test Scriptsarrow-up-right into test scripts (i.e., source code).

  2. Executing the produced test scripts, regarding some execution optionsarrow-up-right.

  3. Transforming test execution results (produced by the testing framework) to the expected resulting formatarrow-up-right.

Let's get into the details on how to accomplish them.

Transforming Abstract Test Scripts into test scripts

Think of an Abstract Test Script (ATS) as an object to transform into source code. Basically, it contains a structure that represents the actions to be converted into commands of your preferred programming language.

For instance, consider the following action:

That could be converted to the following command in Codeceptionarrow-up-right, for PHP:

Or to the following command in Cypressarrow-up-right, for JavaScript:

Let's consider a more realistic example, starting with a Test Case in the hypothetical file feature1.testcase:

That would probably produce an Abstract Test Script like this:

A plug-in for Cypress could generate the following code from the above object:

To help generating such commands, you can use some template library such as Mustachearrow-up-right (recommended) or Handlebarsarrow-up-right.

You can observe that after every command there is a line comment containing the corresponding location in the .testcase file. These comments will help to track the specification in case of test script failures.

Executing the test scripts

To execute the produced test scripts, you can use the target framework API or run the tool. Your call.

For example, whether you chose to run Cypress through npx and generate a report using Mocha JUnit Reporter,arrow-up-right the command to run could be the following:

Transforming execution results

Now the plug-in needs to read the report and transform it into an object of the class TestScriptExecutionResultarrow-up-right that will be returned to Concordia Compiler.

For instance, the core of the plug-in for CodeceptJSarrow-up-right reads the report from a JSON file generated by using CodeceptJSarrow-up-right with Mocha Multi Reportersarrow-up-right. The current implementation is available in the class ReportConverterarrow-up-right.

A plug-in must be able to track back the location of failures or errors in the corresponding .testcase file from a test script. When a test script has a failure or an error, the report saves the stack trace where it occurred. For instance, tests/feature1.js:20:4 indicates, respectively, the file, line and column where the problem happened. You can use these data to read the line of the test script file and retrieve the line comment that contains the corresponding line in the .testcase file.

You can use a regular expression to extract the data from the stack trace, like ReportConverterarrow-up-right did in the method extractScriptLocationFromStackTrace. Then you can use the class FileInstrumentationReaderarrow-up-right from concordialang-pluginarrow-up-right to retrieve the location from the line comment. Example:

You can read these locations in the examples described earlier. Whether tests/feature1.js:7:8 is...

Retrieving the line 10 and column 4 fromfeature1.testcase would give us:

In TestScriptExecutionResultarrow-up-right, both test failures and errors are represented as an exception which includes the properties scriptLocation and specLocation.

Basic guide

We recommend you to follow these steps when creating a plug-in:

1. Open an issuearrow-up-right to indicate that you are interested in developing a new plug-in for a certain testing framework or programming language. That is good way to make others aware of your work.

2. Choose a good name for your plug-in and check whether it registered at NPMarrow-up-right. Remember that it must start with concordialang-. We recommend that it includes the target framework, tools or language. Example: concordialang-selenium-python to create a plug-in that generates test scripts for the Selenium framework and the Python language. You may use the opened issue (step 1) to get feedback about the name, if you wish.

3. Create a repository for it (e.g., at GitHub, GitLab, BitBucket) and clone the repository.

4. Create a NPM package with npm --init.

5. Add the property concordiaPlugin to your package.json file.

6. Install concordialang-pluginarrow-up-right as a dependency:

7. Add your files. We recommend the following structure, but you can adapt it as you wish. For example, if you use TypeScriptarrow-up-right, you will probably add a tsconfig.json file. If you use Jestarrow-up-right, your test folder will probably be named __tests__. We also recommend you to add a .editorconfigarrow-up-right file and a .gitignorearrow-up-right file (the latter should include the folder node_modules).

8. Implement the interface Pluginarrow-up-right. We recommend you to take a look at other plugins that did a similar jobarrow-up-right and encourage you to unit test all your code.

9. Test it with the Concordia Compiler before publishing it. Create a simple project that uses your plug-in. You can use NPM to install your plug-in from a directory in your computer or your remote repository. For example:

10. Publish your plug-in at NPMarrow-up-right after making sure that you are using Semantic Versioningarrow-up-right. Congratulations! Tell everybody and ask for feedback! ✌

Last updated