Cinnamon is an open-source java framework developed by the NTT DATA team that provides fast enablement on your automation projects. It is designed with ease-of-use in mind, supports Behaviour Driven Development (BDD), robust extensions and easy to use abstraction layers for popular tooling such as WebDriver. You can mix and match various modules depending on your requirements. Let's get started ...
As a company, we have faced many challenges with tooling across many clients in various sectors. Cinnamon incorporates our solutions to these challenges, which means that you don’t have to invest time in solving them yourself.
We are currently working towards:
- enhancing support for Rest
- adding standard web and rest cherry missions
- custom Hamcrest matchers
We have plans to support:
- junit
- jbehave
- Update
cucumber-jvm-parallel-plugin
version in pom.xml to5.0.0
, e.g.
<plugin>
<groupId>com.github.temyers</groupId>
<artifactId>cucumber-jvm-parallel-plugin</artifactId>
<version>5.0.0</version>
<executions>
<execution>
<id>generateRunners</id>
<phase>generate-test-sources</phase>
<goals>
<goal>generateRunners</goal>
</goals>
<configuration>
<glue>
<package>com.acme</package>
</glue>
<plugins>
<plugin>
<name>json</name>
</plugin>
</plugins>
<namingScheme>pattern</namingScheme>
<namingPattern>{f}IT</namingPattern>
<cucumberOutputDir>target/cucumber-reports</cucumberOutputDir>
</configuration>
</execution>
</executions>
</plugin>
- Update
donut-maven-plugin
version in pom.xml to1.2.1
, e.g.
<plugin>
<groupId>report.donut</groupId>
<artifactId>donut-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>execution</id>
<phase>post-integration-test</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<resultSources>
<resultSource>
<format>cucumber</format>
<directory>${project.build.directory}/cucumber-reports</directory>
</resultSource>
</resultSources>
<outputPath>${project.build.directory}/donut/</outputPath>
<timestamp>${maven.build.timestamp}</timestamp>
<template>default</template>
<prefix>${project.name}</prefix>
<projectName>${project.name}</projectName>
<projectVersion>${project.version}</projectVersion>
</configuration>
</execution>
</executions>
</plugin>
- Update
maven-failsafe-plugin
configuration to replace:
<forkCount>${failsafe.fork.count}</forkCount>
<reuseForks>false</reuseForks>
with
<threadCount>${failsafe.thread.count}</threadCount>
<parallel>both</parallel>
- Update
GuiceInjectorSource
to replaceCucumberModules.SCENARIO
withCucumberModules.createScenarioModule()
- Update Guice module classes to replace references to
CucumberScopes.SCENARIO
withScenarioScoped.class
- Fork it
- Create your feature branch (
git checkout -b feature/my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin feature/my-new-feature
) - Create new Pull Request
Dave Bassan, Tim Myerscough, Christina Daskalaki, Amit Sharma, Miles Lord, Hamish Tedeschi, Kevin Bradwick
- Thanks to Boni Garcia for WebDriverManager
Powered by NTT DATA