/site/chorus-website/site/pages/GettingStarted/SimpleExample.md

http://github.com/Chorus-bdd/Chorus · Markdown · 145 lines · 104 code · 41 blank · 0 comment · 0 complexity · 5bc1205d0a915530f6c406d7cbaa4e6b MD5 · raw file

  1. ---
  2. layout: page
  3. title: Simple Example
  4. section: Getting Started
  5. sectionIndex: 20
  6. ---
  7. ## Chorus Demo Project
  8. There is a simple project with some Chorus examples, including the Calculator example below:
  9. [Chorus Demo](https://github.com/Chorus-bdd/Chorus-demo)
  10. This demo project runs Chorus tests as a JUnit test suite with a Java project
  11. [You can also run Chorus at the command line, or as a Docker container](/pages/GettingStarted/GettingStarted)
  12. ## Let's look at a very simple example, which tests a Calculator class.
  13. To make this work you'll just need to create and compile two classes, and write a .feature file:
  14. 1. A feature file, **Calculator.feature** - this contains the plain English test definition.
  15. 2. A java handler class **CalculatorHandler.java** which will execute the steps in the feature.
  16. 3. The class **Calculator.java** which we are going to test
  17. First here is the feature file:
  18. #File: Calculator.feature
  19. Feature: Calculator
  20. You should put a description of the feature under test here
  21. In this test we'll check our Calculator can add two numbers
  22. Scenario: Add two numbers
  23. Given I have entered 50 into the calculator
  24. And I have entered 70 into the calculator
  25. When I press add
  26. Then the result should be 120 on the screen
  27. Then the java handler class:
  28. //File: CalculatorHandler.java
  29. package org.chorus.example;
  30. import org.chorusbdd.chorus.annotations.*;
  31. import org.chorusbdd.chorus.util.assertion.ChorusAssert;
  32. @Handler("Calculator")
  33. public class CalculatorHandler {
  34. private Calculator calc = new Calculator();
  35. @Step("I have entered ([0-9]*) into the calculator")
  36. public void enterNumber(Double number) {
  37. calc.enterNumber(number);
  38. }
  39. @Step("I press (.*)")
  40. public void enterOperator(String operator) {
  41. if ("add".equalsIgnoreCase(operator)) {
  42. calc.press(Calculator.Operator.ADD);
  43. }
  44. else if ("subtract".equalsIgnoreCase(operator)) {
  45. calc.press(Calculator.Operator.SUBTRACT);
  46. }
  47. else {
  48. ChorusAssert.fail("Operator not recognised: " + operator);
  49. }
  50. }
  51. @Step("the result should be ([0-9]*).*")
  52. public void checkCalculation(double expectedResult) {
  53. ChorusAssert.assertEquals(expectedResult, calc.getResult());
  54. }
  55. }
  56. Look here for some [notes on writing handler classes](/pages/Handlers/HandlerClasses)
  57. Here's the Calculator class itself:
  58. package org.chorus.example;
  59. import java.util.Stack;
  60. public class Calculator {
  61. public enum Operator {
  62. ADD, SUBTRACT, MULTIPLY, DIVIDE
  63. }
  64. private Stack<Double> stack = new Stack<Double>();
  65. private double lastResult = 0;
  66. public void enterNumber(Double number) {
  67. stack.push(number);
  68. }
  69. public void press(Operator operator) {
  70. double d2 = stack.pop();
  71. double d1 = stack.pop();
  72. switch (operator) {
  73. case ADD:
  74. lastResult = d1 + d2;
  75. break;
  76. case SUBTRACT:
  77. lastResult = d1 - d2;
  78. break;
  79. case MULTIPLY:
  80. lastResult = d1 * d2;
  81. break;
  82. case DIVIDE:
  83. lastResult = d1 / d2;
  84. break;
  85. }
  86. }
  87. public double getResult() {
  88. return lastResult;
  89. }
  90. }
  91. ## Running the test
  92. See [Running Chorus](/pages/RunningChorus/RunningChorus)
  93. First you need to compile the Handler and Calculator class
  94. Make sure they are in your java classpath, along with chorus-{version}.jar
  95. Then, if your feature file was saved in ./features, and your handler package was org.chorus.example:
  96. `java -cp ${classpath} org.chorusbdd.chorus.Chorus -f ./features -h org.chorus.example`
  97. You can use an absolute or relative path for the features directory.
  98. The output should be:
  99. Feature: Calculator
  100. Scenario: Add two numbers
  101. Given I have entered 50 into the calculator PASSED
  102. And I have entered 70 into the calculator PASSED
  103. When I press add PASSED
  104. Then the result should be 120 on the screen PASSED