2013.06.13 追記:タイトルを誤って投稿していたため、先日投稿したものと同じ内容のものを再度アップします。
前提
手順
まず、以下のfeature (hello.feature) を
src/test/resource
に配置する。なお、Rubyでは、featureはfeaturesフォルダに配置される。
さらに、以下のbuld.gradleを作成する。
この時点で、
gradle cucumber
を実行した結果は、以下の通り。
$ gradle cucumber
:compileJava UP-TO-DATE
:compileGroovy UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:jar UP-TO-DATE
:assemble UP-TO-DATE
:cucumber
Feature: Hello World
Scenario: Say hello # hello.feature:3
Given I have a hello app with "Howdy"
When I ask it to say hi
Then it should answer with "Howdy World"
You can implement missing steps with the snippets below:
Given(~'^I have a hello app with "([^"]*)"$') { String arg1 ->
// Express the Regexp above with the code you wish you had
throw new PendingException()
}
When(~'^I ask it to say hi$') { ->
// Express the Regexp above with the code you wish you had
throw new PendingException()
}
Then(~'^it should answer with "([^"]*)"$') { String arg1 ->
// Express the Regexp above with the code you wish you had
throw new PendingException()
}
BUILD SUCCESSFUL
Total time: 2.39 secs
上記出力の後半に出力されているテンプレートをもとに、以下のsetp definition (HelloSteps.groovy) を作成し、
src/test/groogy
に配置する。なお、Rubyでは、step definitionはfeatures/step_definitionsフォルダに配置される。
3,4行目でCucmberから呼び出されるメソッドをmixinしている。これを忘れると、Cucumber実行時に必要なメソッドが見つからず、groovy.lang.MissingMethodExceptionが発生してしまうので注意。
再度
gradle cucumber
タスクを実行すると、cucumber.runtime.PendingExceptionが発生する。これは、step definitionからthrowされているPendingExpectionそのものであり、まだstep definitionが実装されていないことを表している。
ここから、通常はTDD的な手法でstep definitionとテスト対象の機能を実装していくのだが、今回そのあたりの手順は省略。最終的なstep definitionは以下の通り。
なお、step definition内では、コンテキストが共有される。例えば、上記では、Givenメソッドで定義したhelloインスタンス(5行目)をWhenメソッド内で参照(9行目)している。
テスト対象の機能を実装したHelloクラスは、以下の通り。このファイルは、
src/main/groogy
に配置する。
再度
gradle cucumber
タスクを実行する。
$ gradle cucumber
:compileJava UP-TO-DATE
:compileGroovy UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:jar UP-TO-DATE
:assemble UP-TO-DATE
:cucumber
Feature: Hello World
Scenario: Say hello # hello.feature:3
Given I have a hello app with "Howdy" # HelloSteps.groovy:13
Given I have a hello app with "Howdy"
# HelloSteps.groovy:13
When I ask it to say hi # HelloSteps.groovy:17
When I ask it to say hi # HelloSteps.groovy:17
Then it should answer with "Howdy World" # HelloSteps.groovy:21
BUILD SUCCESSFUL
Total time: 2.734 secs
Cucumberで定義したテストが、無事パスしたことが確認できる。
感想
Ruby版のCucumberと同様にcucumber-jvm-groovyが動作することが確認できた。ただ、実際に使用するとなると、featureをどう記述するかは、なかなか難しそう。このあたりは、Use Case Descriptionと同様の難しさがあるように思う。
関連リンク