/!\ The project has been integrated to the JBehave Project itself, the adventure continues here: jbehave-ide
In progress see presentation
Misc:
- Custom and internal buildin Story parser
Story Editor:
- Story syntax highlighting
- Step hyperlink detector and implementation jump
- Basic step auto-completion
- Story's steps validation:
- Detects unimplemented steps, ie invalid step syntax
- Detects ambiguous steps, ie entry that is match by several implementation
Preference page:
- Story syntax coloring settings
- Localized Keyword support
- Console (and logger level) settings
Previous (for posterity)
Simply drop the jar in your eclipse plugins/
directory and restart your ide.
Neighbours' Day - Release notes (1.0.7)
Download here 1.0.7
- Thanks to dschneller for initiating the development of the localized keywords support (Issue 3)
- A per project preference is available to set the locale that should be used.
- Add JBehave Console to trace what happens under the hood (Issue 45). A new preference page allows to define level per logger (similar to logback and log4j settings)
- Support shortcut for (un-)commenting selection (Issue 44)
- Various fixes:
- Plugin fails to disambiguate steps matching different kind of steps Issue 41
- See here for more Closed Issues
Download here 1.0.6
- Thanks to dschneller priority is now taken into account to disambiguate steps during validation phase (Issue 27) and on aliases too (Issue 33).
- Outline view is available and story is displayed as tree (Issue 22 and Issue 8), double click allows a quick jump into the corresponding part in the story.
- Syntax highlighting has been enhanced to support meta properties. Comments should now be highlighted within an
ExampleTable
. (Issue 21) - Validation of the story's structure has been relaxed to allow meta definition before Narratives (Issue 20)
- Several enhancements and fixes see here for a more complete list.
- Error markers enhanced to display tooltip, Ambiguous cases also list the all matching steps
Thanks to dschneller for creating issues, providing fixes and contributing to the project!!
- Fix and unify code for jump to declaration behavior (mouse and keybord shortcut use the same code, supports multiline steps and should not be anymore sensible to trailing newlines) Brathax's followup on Issue 6.
- Complete refactoring of the Java Scanner Issue 15
- All the classpath is now scanned: source folders and libraries
- Classes and packages scanned can be filtered to reduce overhead: a new preference page has been added to configure the filters. Filters can be setup globally through preferences, or by project through the project properties.
- Step cache is now fully operational and not anymore recalculated each time: rebuild is triggered on JDT change, and the cache sub-hierarchy is only recalculated if required (see implementation notes here)
- Plugin has now a dedicated log file Issue 16 available at
<workspace>/.metadata/.plugins/technbolts-jbehave-eclipse-plugin/plugin.log
.logback.xml
in plugin jar file is used to configure logger (whereas appenders are removed and configured programatically). - Integrate step variants feature by dschneller Issue 18. Your project requires to use a suitable version of jbehave in order for the steps to be recognize at runtime too.
@When("$A {+|plus|is added to} $B")
would then fitsWhen 3 + 4
When 3 plus 4
When 3 is added to 4
Thanks to brathax for his help in solving Issue 6.
Thanks to dschneller for his integration of the step variants in both jbehave-core and this project.
Note: the embedded jbehave-core
library is build from the jbehave-core master branch (commit 3bf29212b6). Since this library is used only by the plugin itself, and not the project that uses the plugin, this should have no impact on projects.
- Fix and improve completion:
- Fix several issue on completion
- Completion supports step with parameters, even if parameter values are already written (Issue 4)
- Add template support: is the inserted step contains variables, the eclipse template behavior is triggered, allowing to efficiently replace variable declaration with their value, and switching to the next using tab key.
- Completion now supports the
And
step keyword too.
- Smarter step editor: should be able to detect parameter values and parameter variables within a step and apply corresponding syntax highlighting (Issue 5).
- Quick search (Ctrl+J) for an quick popup display (Issue 7) that allows to searched for steps. Step's type (Given, When, Then) is indicated with a corresponding icon. Focus is made on the filter where
*
can be used as special character for search. Step selected in then inserted as a new line at the carret position. - Jump to declaration (ctrl+mouse click) is also bind on keyboard using (Ctrl+G). Furthermore it now detect multiline steps (Issue 1)
- Quick outline (Ctrl+O) can be used to quickly navigate within big stories with several scenario (Issue 8)
- Add validation for narrative keywords: check for uniqueness and presence of all keywords.
- Add preferences page to modify the editor color settings (Issue 12)
- JBEHAVE-233
- GivWenZen
- Building an Eclipse Text Editor with JFace Text
- Eclipse Plug-ins, Third Edition
Erlide for plugin usage and template proposal behavior