GithubHelp home page GithubHelp logo

corejet's Introduction

Welcome to the CoreJet BDD Framework

CoreJet is a business friendly BDD framework, designed to provide confidence and insight for users and product owners, whilst allowing developers to turn requirements into automated BDD tests with minimal fuss. The framework focuses on providing requirements traceability and coverage analysis allowing for better visibilty of progress towards business goals.

Learn more on the http://corejet.org website.

Getting started

1. Download the CoreJet source and install it in your local maven repository

mvn clean install

2. Add your chosen test implementation and story repository dependency to your maven project e.g.

<dependency>
    <groupId>org.corejet</groupId>
    <artifactId>corejet-junit-runner</artifactId>
</dependency>
<dependency>
  <groupId>org.corejet</groupId>
  <artifactId>jira-story-repository</artifactId>
</dependency>

4. Create epic and story tickets in JIRA (or your chosen story repository)

5. Populate all stories with their appropriate number of story points

6. Create or use an existing field in your story tickets to link them to your epics

7. Create or use an existing field in your story tickets to contain your acceptance criteria in the form of scenarios. Scenarios should be written in BDD form e.g.

Scenario: User can downloads the latest version of CoreJet
Given a user on the CoreJet.org website
When they download the framework
Then they are provided with the latest version

8. Create a filter to list the the stories to be tested

9. In your src/test/recources folder, create a corejet.properties file to point to your story repository e.g.

jira.soap.wsdl.url=https://myproject.jira.com/rpc/soap/jirasoapservice-v2?wsdl
jira.username=username
jira.password=password
default.project=My Project Name
jira.filter.id=12345
jira.storypoints.fieldid=10060
jira.epic.fieldid=
jira.acceptancecriteria.fieldid=10088
corejet.report.directory=${project.build.directory}/corejet

10. Migrate your stories into test classes, this can be done using the CoreJet-JIRA-Chrome-plugin examples can be seen in SimpleBddTest.java

11. In order to generate the reports, add the following maven plugin to your project

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <testFailureIgnore>true</testFailureIgnore>
  </configuration>
</plugin>
<!-- Generate a corejet report from the test run output -->
<plugin>
  <groupId>org.corejet</groupId>
  <artifactId>corejet-maven-plugin</artifactId>
  <version>${corejet.version}</version>
  <executions>
    <execution>
      <phase>prepare-package</phase>
      <goals>
        <goal>generate-report</goal>
      </goals>
    </execution>
  </executions>
</plugin>

12. Reports are output to the target directory as corejet-repot.html and can be viewed from any HTML5 capable browser

CoreJet Modules

CoreJet is made up of several distinct components designed to maximise the extensibility of the framework

  • corejet-core : The underlying test framework
  • corejet-jira-story : a JIRA specific implementation of the StoryRepository model
  • corejet-junit-runner : a JUnit specific implementation of the test runner
  • corejet-pageobject-support : support for UI testing through the Selenium 2.0 WebDriver framework
  • corejet-vizualisation : JavaScript and CSS to support the HTML reports
  • corejet-maven-plugin : Maven integration for the framework

Annotations

Annotations are used in the framework to map test code to requirements as well as to track the progress of scenario development.

Key annotations include:

  • @Story – Identifies a class as representing a BDD story
  • @StorySource – Maps the story to the StoryRepository implementation
  • @Scenario – Identifies an individual scenario within a story
  • @Given, @When, @Then – The steps that make up a scenario
  • @NotImplementedYet – A default annotation used to identify that the implementation of a scenario has not been completed
  • @NotAutomatable – Identifies a scenario that can not be tested using the framework
  • @AwaitingFunctionality – Identifies a scenario where a test has been written but the functionality has not been delivered yet
  • @Defect – Stops a particular scenario from running due to a known defect
  • @WebDriverPageProvider – (part of corejet-pageobject-support) designates an instance variable within a scenario class as WebDriver that should be used by Corejet when instantiating page objects
  • @CopyFromParent – Allows developers to share instance variables between stories and scenarios. Put this annotation on instance variables in the scenario class, and Corejet will copy (by reference) the instance variable with the same name from the outer Story class. Mainly used in conjunction with @WebDriverPageProvider, to use the same WebDriver object in all scenarios.

See Javadocs and examples for more details.

Get the source

Fork the project source code on Github:

git clone git://github.com/corejet/corejet.git

Licence

CoreJet framework is distributed under Apache 2 licence.

corejet's People

Contributors

rpickard avatar rnorth avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.