rutema 1.3.0 → 2.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/History.txt +204 -194
  3. data/Manifest.txt +15 -48
  4. data/README.md +55 -61
  5. data/bin/rutema +7 -7
  6. data/lib/rutema/application.rb +61 -0
  7. data/lib/rutema/core/configuration.rb +195 -0
  8. data/lib/rutema/core/engine.rb +186 -0
  9. data/lib/rutema/core/framework.rb +28 -0
  10. data/lib/rutema/{objectmodel.rb → core/objectmodel.rb} +43 -48
  11. data/lib/rutema/core/parser.rb +35 -0
  12. data/lib/rutema/core/reporter.rb +105 -0
  13. data/lib/rutema/core/runner.rb +83 -0
  14. data/lib/rutema/elements/minimal.rb +47 -44
  15. data/lib/rutema/parsers/xml.rb +154 -186
  16. data/lib/rutema/version.rb +9 -0
  17. metadata +39 -108
  18. data/README.txt +0 -44
  19. data/Rakefile +0 -30
  20. data/examples/README.md +0 -17
  21. data/examples/config/database.rutema +0 -17
  22. data/examples/config/full.rutema +0 -27
  23. data/examples/config/minimal.rutema +0 -10
  24. data/examples/specs/T001.spec +0 -8
  25. data/examples/specs/T002.spec +0 -8
  26. data/examples/specs/T003.spec +0 -8
  27. data/examples/specs/T004.spec +0 -8
  28. data/examples/specs/T005.spec +0 -10
  29. data/examples/specs/T006.spec +0 -9
  30. data/examples/specs/check.spec +0 -8
  31. data/examples/specs/fail.spec +0 -9
  32. data/examples/specs/include.scenario +0 -5
  33. data/examples/specs/rutema.spec +0 -10
  34. data/examples/specs/setup.spec +0 -8
  35. data/examples/specs/teardown.spec +0 -8
  36. data/lib/rutema/configuration.rb +0 -173
  37. data/lib/rutema/models/activerecord.rb +0 -159
  38. data/lib/rutema/models/base.rb +0 -5
  39. data/lib/rutema/parsers/base.rb +0 -45
  40. data/lib/rutema/rake.rb +0 -62
  41. data/lib/rutema/reporters/activerecord.rb +0 -82
  42. data/lib/rutema/reporters/base.rb +0 -23
  43. data/lib/rutema/reporters/email.rb +0 -84
  44. data/lib/rutema/reporters/text.rb +0 -77
  45. data/lib/rutema/runners/default.rb +0 -157
  46. data/lib/rutema/runners/step.rb +0 -23
  47. data/lib/rutema/system.rb +0 -302
  48. data/test/data/duplicate_name.spec +0 -8
  49. data/test/data/no_title.spec +0 -5
  50. data/test/data/sample.spec +0 -8
  51. data/test/data/test_identifiers.rutema +0 -7
  52. data/test/test_activerecord.rb +0 -0
  53. data/test/test_configuration.rb +0 -43
  54. data/test/test_objectmodel.rb +0 -82
  55. data/test/test_parsers.rb +0 -131
  56. data/test/test_reporters.rb +0 -115
  57. data/test/test_runners.rb +0 -70
  58. data/test/test_system.rb +0 -45
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b33b6b88e4121705329bb3fbb58b8f34235dca12
4
+ data.tar.gz: d392458e9ec2a67ba34ae28bdf112d4efcb52393
5
+ SHA512:
6
+ metadata.gz: 99489401905504e8aecbbbea6c3665549ecae82fa8aa67fde6dc8f9acf3ffbfb45cd34289e24fc137231f4b97c42a150d77d8129ad47b29b1d1f1d24b259eefb
7
+ data.tar.gz: 640e6f1514cf7c5c18819a9f0bea6ec1d31f460af4f8547fec9d25983a9f546e5d5aa0220344c400911d23a62c57e1e253a67669bfbeadd7ec486fc96ea8e064
data/History.txt CHANGED
@@ -1,194 +1,204 @@
1
- == 1.3.0 /2012-11-28
2
- * remove most of the gem dependencies by not requiring parsers and reporters in the core
3
- * update gem dependencies
4
- * switched license to MIT
5
-
6
- == 1.2.4 /2011-11-29
7
- * fixed a regression in parsing the configuration
8
- * updated gem dependencies
9
- * added Bundler configuration for development purposes
10
- * activerecord now loaded on demand to improve startup times
11
- * 1.9 compatibility!
12
- * the mixed sample/tests are now clearly split between examples and test data
13
- * Documentation overhaul started. 4 years of cruft to get rid of
14
- == 1.2.3 /2011-05-03
15
- * parser interface expanded for configuration validation
16
- * parser interface expanded to allow separate parsing of setup and teardown scripts
17
- == 1.2.2 /2011-04-05
18
- * Actually fixed all the places where path expansion takes place.
19
- == 1.2.1 /2011-04-04
20
- * The configuration code no longer assumes that you are passing files. configuration.tests= now assumes you're passing an array of strings and it is the responsibility of the parser to make heads or tails from that. The configuration is clever enough to detect paths relative to the configuration file and expand them.
21
- * some minor cosmetic changes in the documentation
22
- == 1.2.0 /2011-04-01
23
- * refactored library structure
24
- * More unit tests. We're now over the magical 80% coverage point
25
- * Updated gem dependencies for activerecord to the newest version
26
- * Deprecated rutemax. The command now is simply rutema (avoids observed confusion). Will remove in 1.3.0
27
- == 1.1.3 /2010-12-23
28
- * fixed dependency handling of Rutema::RakeTask within the block.
29
- == 1.1.2 /2010-12-22
30
- * Rutema::RakeTask accepts dependencies
31
- == 1.1.1 /2010-12-22
32
- * Bugfix: RakeTask constructor parameter config renamed to config_file to match the accessor methods
33
- == 1.1.0 /2010-12-20
34
- * Added Rutema::RakeTask class to allow integration of the test runner with rake
35
- * Email reporting now suppresses _setup and _teardown entries unless it's configured as verbose. To do this add a :verbose=>true entry in the reporter configuration
36
- * Fixed a bug, where on a setup spec failure the state of the actual spec was nil
37
- * added YAML dump reporter
38
- * Fixed a bug in the initialization of StepRunner that prevented use of --step
39
- == 1.0.9 / 2010-03-22
40
- * Fixed (hopefully) a nagging bug in activerecord reporter where it would crash if a step had status nil.
41
- * Fixed the same behaviour in the text reporter
42
- * Improved the logging of steps to avoid a debug logging exception that messed logs up
43
- * Thinned out the debug logs
44
- == 1.0.8 / 2009-11-13
45
- * ActiveRecordReporter now accepts all activerecord adapter parameters - you can now connect to DBs other than sqlite3
46
- * Reporter delegation now more robust (rutemax will exit gracefully and log if one reporter bombs)
47
- * The old db connection code was removed. Explicit dependencies to adapters are also absent - you have to now have the appropriate gems for the ActiveRecordReporter to work properly
48
- == 1.0.7 / 2009-09-11
49
- * Steps now include the commandline (if there) in their name - makes the logs more readable
50
- * Added a check for nil states to ensure reporters always get valid data
51
- * activerecord dependency is now 2.3.4
52
- == 1.0.6 / 2009-09-04
53
- * The run context is now passed to the runner and subsequently to the TestStep#run method
54
- This way you can pass informaton to the command being run (context contains information on the start time of the run, the spec filename as well as any information added in the configuration)
55
- * Minor bugfix in the activerecord reporter to avoid crashes due to nil runner states
56
- * The runner adds the current scenario name to the context passed
57
- == 1.0.5 / 2009-07-16
58
- * Updated gem dependencies to use activerecord 2.3.2
59
- * A failure of the check test now passes all test stati (as not_executed). This will not skew statistics that show the trends on test numbers
60
- * Setup and teardown are no longer executed for check tests
61
- * fixed bug in element_prompt where a negative answer would not set an error
62
- * TextReporter now shows the failed tests first, followed by tests with warnings, not executed tests and finally the successes. This gives a better overview of the important bits
63
- * removed require "rubygems" from library code
64
- == 1.0.4 / 2008-11-7
65
- * Added functionality that allows ignoring the result of a step. The step is considered always successful
66
- == 1.0.3 / 2008-10-28
67
- * The name of the configuration file is added in the context information - can be used to group results together in cases where there are multiple configurations
68
- * Context is now stored as a Hash
69
- * EmailReporter now displays a footer as defined in it's configuration
70
- == 1.0.2 / 2008-10-23
71
- * Bugfix in ActiveRecordReporter: \000 sequences produce exceptions when inserting.
72
- * Output and error from commands is now more strictly sanitized.
73
- == 1.0.1 / 2008-10-13
74
- * rutema_upgrader - Bug: update not performed - fixed
75
- == 1.0.0 / 2008-10-06
76
- * DB schema change: title and description added to scenario table
77
- * footer parameter for the email reporter
78
- * Specification titles included in the text reports
79
- * When parsing multiple specifications a duplicate name will now generate a parser error
80
- * rutema_updater upgrades existing databases, check http://patir.rubyforge.org/rutema/update_090_to_100.html
81
- * rutemah scrapped
82
- * rutemax logs it's version always
83
- * activerecord 2.1.1 is now in use
84
-
85
- == 0.9.3 / 2008-09-10
86
- * Sorted result summaries in the text and the email reporter
87
- * ActiveRecordReporter registration logging
88
- == 0.9.2 / 2008-09-10
89
- * Fixed major blunder with test reporting
90
- * Added text reporter for consistent text summaries
91
- * More tests
92
- * Fixed check test behaviour (was not running even when specified in the configuration)
93
- * Fixed bungled emailing when using multiple addresses in the config
94
- == 0.9.1 / 2008-09-09
95
- * Modularisation of element parsing methods introduced.
96
- * MinimalXMLParser refactored as example.
97
- * Extra element parser modules available in the rutema_elements gem
98
- * Cleaned up EmailReporter. Unit tests with Mocha, text report has a better layout
99
- == 0.9.0 / 2008-09-08
100
- * Ability to nest scenarios added to the base parser
101
- * Documentation at http://patir.rubyforge.org/rutema/tool_configuration.html
102
-
103
- == 0.8.0 / 2008-07-03
104
- * Split rutemaweb into own gem
105
- * Refactored reporters
106
- * Re-enabled the --step commandline facility of rutemax allowing step-by-step execution and fixed the StepRunner implementation
107
-
108
- == 0.7.1 / 2008-06-12
109
- * Added the ruport_formatter.rb file to the manifest (and consequently to the gem)
110
- * Locked down the active record and ramaze versions to avoid the String#start_with? alias bug from active support 2.1.0 and the Ramaze.start! change
111
- == 0.7.0 / 2008-05-16
112
- * Support for tools, paths and context information in the configuration solidified (http://patir.rubyforge.org/rutema/tool_configuration.html for more)
113
- * Changes in the configuration for Historian and ActiveRecordReporter. Check the distro_test samples
114
- * database connection code consolidated in db.rb
115
- * Added support for jdbc/h2 to work with jRuby
116
- * AR-reporter configuration expanded to support different adapters. Consistent with the Historian db configuration
117
- * rutema unit tests now run under jRuby
118
- * rutemah runs under jRuby
119
-
120
- == 0.6.5 / 2008-04-15
121
- * Updated rutemaweb controller to work with ramaze 0.3.9.1
122
- == 0.6.4 / 2008-03-30
123
- * Bugfix: duration SQL type adjusted in the model to return proper values.
124
- * Bugfix: name=step_type for TestStep so that name is assigned a value in the model step
125
- * Locked the Ramaze version to 0.3.5 until we find out why the new version breaks us
126
- == 0.6.3 / 2008-03-26
127
- * Bugfix: specifying a .spec filename on the commandline did not work - Path expanded before changing directory.
128
- * Bugfix: running an attended .spec on it's own was not possible - attended mode is now set for single runs.
129
- * Cleaned up the Runner's log output
130
- == 0.6.2 / 2008-03-12
131
- * Parsers derived from Rutema::SpecificationParser now receive the system configuration so that conventions like tools, paths and context can be used in element_ methods (this functionality fell through the cracks with the change in parser implementation)
132
- * rutemaweb now has proper commandline help and connects properly to the database
133
- == 0.6.1 / 2008-02-28
134
- * ExtensibleXMLParser made more tolerant (no exceptions when an element cannot be handled)
135
- * Bug: Typo in the class name used in the exceptions fixed
136
- * Bugfix: ActiveRecord connection throws an exception that prevented Historian from establishing a new one. Fixed
137
- * More unit tests
138
- == 0.6.0 / 2008-02-27
139
- * Added Rutema::ExtensibleXMLParser - this parser simplifies parser creation immensely. Check the documentation for details
140
- * "Howto create a parser v0.5.0" officially the fastest deprecation of a document ever. http://patir.rubyforge.org/rutema/parser.html is the new black.
141
- * Corrected some english spelling mistakes (hey, we're not native speakers)
142
- * Fixed an issue with AR cached connections that interfered with unit tests
143
-
144
- == 0.5.0 / 2008-02-26
145
- * activerecord reporter is now loaded by default (no need to require it in the configuration file)
146
- * bugfix: step names correctly written in the database
147
- * The web frontend now uses Ramaze
148
- * using patir-0.5.3 because of the chdir bugfixes
149
- * rutema can now test itself! rutemax and rutemah return meaningful exit codes. So there, we do eat our own dogfood
150
- * lots more documentation on usage and how to build a parser
151
-
152
- == 0.4.3 / 2008-02-25
153
- * fixed bug in rutemax when the activerecord reporter is used, where the database was not created relative to the configuration entry
154
- * fixed bug in rutemah where the report was not printed (doh!)
155
- * added active record reporter configuration and rutemah configuration to distro test
156
- == 0.4.2 / 2007-12-05
157
- * rutemah code cleaned up
158
- * Bugfix: MinimalXMLParser now handles relative paths in command elements correctly
159
- * distro_test added to the gem
160
- * Distro test documented, documentation pages updated
161
- == 0.4.1 / 2007-12-04
162
- * Documented MinimalXMLParser
163
- * More debug logs
164
- * Fixed bug in attribute checking for command steps in the minimal parser
165
- * Fixed bug in specification parsing in the Coordinator (no specs were returned)
166
- * Fixed bug in the implementation of <prompt> in the minimal parser (attended was not set)
167
- * Fixed bug in evaluation of attended status for steps
168
- * Fixed bug where runner would complain that attened scenarios cannot be run in unattended mode when choosing to run only attended tests
169
- * Added Version module to better handle versioning
170
- == 0.4 / 2007-07-05
171
- * rutemaweb, a web interface for the db contents added
172
- * uses WEBRick, Camping and Ruport
173
- * offers views on all runs in the System, detailed scenario views and scenario-over-time views
174
- * Runner now rescues all failures in scenarios
175
- * Bugfix in setting status of attended scenario in unattended mode
176
- * Better ruport usage in the historian
177
- * rutemah added to the gem and manifest
178
- * rutemax help message complete with commands
179
- * split the AR reporter and the model
180
- * expanded the unit tests
181
-
182
- == 0.3 / 2007-05-30
183
- * Reporter implementations moved to own file
184
- * Reporter interface changed (Runner stati now passed directly as a name indexed Hash, specifications passed as well)
185
- * ActiveRecordReporter with SQLite DB added
186
- * rutemah (the Historian) added in tools. The Historian reads from ActiveRecordReporter databases
187
- == 0.2 / 2007-05-21
188
- * bin/ files included in gem
189
- * rutemax: missing configuration file is now checked before passed to the system
190
- == 0.1 / 2007-05-21
191
- * A running system!
192
- * Basic XML parser with echo, command and prompt
193
- * email reporting
194
- * rutemax application
1
+ == 2.0.0 /2015-03-09
2
+ * Completely rewritten execution engine
3
+ * dropped Ruby 1.8.x, 1.9.x support, added 2.x
4
+ * Rewritten configuration engine and new format for configuration files
5
+ * Step by step status updates can now be sent to streaming reporters
6
+ * Core separated from standard implementations
7
+ * No database dependencies, no AR model.
8
+ * No more disk IO in unit tests
9
+
10
+ == 1.3.0 /2012-11-28
11
+ * remove most of the gem dependencies by not requiring parsers and reporters in the core
12
+ * update gem dependencies
13
+ * switched license to MIT
14
+ * officially abandon 1.8.7 support
15
+
16
+ == 1.2.4 /2011-11-29
17
+ * fixed a regression in parsing the configuration
18
+ * updated gem dependencies
19
+ * added Bundler configuration for development purposes
20
+ * activerecord now loaded on demand to improve startup times
21
+ * 1.9 compatibility!
22
+ * the mixed sample/tests are now clearly split between examples and test data
23
+ * Documentation overhaul started. 4 years of cruft to get rid of
24
+ == 1.2.3 /2011-05-03
25
+ * parser interface expanded for configuration validation
26
+ * parser interface expanded to allow separate parsing of setup and teardown scripts
27
+ == 1.2.2 /2011-04-05
28
+ * Actually fixed all the places where path expansion takes place.
29
+ == 1.2.1 /2011-04-04
30
+ * The configuration code no longer assumes that you are passing files. configuration.tests= now assumes you're passing an array of strings and it is the responsibility of the parser to make heads or tails from that. The configuration is clever enough to detect paths relative to the configuration file and expand them.
31
+ * some minor cosmetic changes in the documentation
32
+ == 1.2.0 /2011-04-01
33
+ * refactored library structure
34
+ * More unit tests. We're now over the magical 80% coverage point
35
+ * Updated gem dependencies for activerecord to the newest version
36
+ * Deprecated rutemax. The command now is simply rutema (avoids observed confusion). Will remove in 1.3.0
37
+ == 1.1.3 /2010-12-23
38
+ * fixed dependency handling of Rutema::RakeTask within the block.
39
+ == 1.1.2 /2010-12-22
40
+ * Rutema::RakeTask accepts dependencies
41
+ == 1.1.1 /2010-12-22
42
+ * Bugfix: RakeTask constructor parameter config renamed to config_file to match the accessor methods
43
+ == 1.1.0 /2010-12-20
44
+ * Added Rutema::RakeTask class to allow integration of the test runner with rake
45
+ * Email reporting now suppresses _setup and _teardown entries unless it's configured as verbose. To do this add a :verbose=>true entry in the reporter configuration
46
+ * Fixed a bug, where on a setup spec failure the state of the actual spec was nil
47
+ * added YAML dump reporter
48
+ * Fixed a bug in the initialization of StepRunner that prevented use of --step
49
+ == 1.0.9 / 2010-03-22
50
+ * Fixed (hopefully) a nagging bug in activerecord reporter where it would crash if a step had status nil.
51
+ * Fixed the same behaviour in the text reporter
52
+ * Improved the logging of steps to avoid a debug logging exception that messed logs up
53
+ * Thinned out the debug logs
54
+ == 1.0.8 / 2009-11-13
55
+ * ActiveRecordReporter now accepts all activerecord adapter parameters - you can now connect to DBs other than sqlite3
56
+ * Reporter delegation now more robust (rutemax will exit gracefully and log if one reporter bombs)
57
+ * The old db connection code was removed. Explicit dependencies to adapters are also absent - you have to now have the appropriate gems for the ActiveRecordReporter to work properly
58
+ == 1.0.7 / 2009-09-11
59
+ * Steps now include the commandline (if there) in their name - makes the logs more readable
60
+ * Added a check for nil states to ensure reporters always get valid data
61
+ * activerecord dependency is now 2.3.4
62
+ == 1.0.6 / 2009-09-04
63
+ * The run context is now passed to the runner and subsequently to the TestStep#run method
64
+ This way you can pass informaton to the command being run (context contains information on the start time of the run, the spec filename as well as any information added in the configuration)
65
+ * Minor bugfix in the activerecord reporter to avoid crashes due to nil runner states
66
+ * The runner adds the current scenario name to the context passed
67
+ == 1.0.5 / 2009-07-16
68
+ * Updated gem dependencies to use activerecord 2.3.2
69
+ * A failure of the check test now passes all test stati (as not_executed). This will not skew statistics that show the trends on test numbers
70
+ * Setup and teardown are no longer executed for check tests
71
+ * fixed bug in element_prompt where a negative answer would not set an error
72
+ * TextReporter now shows the failed tests first, followed by tests with warnings, not executed tests and finally the successes. This gives a better overview of the important bits
73
+ * removed require "rubygems" from library code
74
+ == 1.0.4 / 2008-11-7
75
+ * Added functionality that allows ignoring the result of a step. The step is considered always successful
76
+ == 1.0.3 / 2008-10-28
77
+ * The name of the configuration file is added in the context information - can be used to group results together in cases where there are multiple configurations
78
+ * Context is now stored as a Hash
79
+ * EmailReporter now displays a footer as defined in it's configuration
80
+ == 1.0.2 / 2008-10-23
81
+ * Bugfix in ActiveRecordReporter: \000 sequences produce exceptions when inserting.
82
+ * Output and error from commands is now more strictly sanitized.
83
+ == 1.0.1 / 2008-10-13
84
+ * rutema_upgrader - Bug: update not performed - fixed
85
+ == 1.0.0 / 2008-10-06
86
+ * DB schema change: title and description added to scenario table
87
+ * footer parameter for the email reporter
88
+ * Specification titles included in the text reports
89
+ * When parsing multiple specifications a duplicate name will now generate a parser error
90
+ * rutema_updater upgrades existing databases, check http://patir.rubyforge.org/rutema/update_090_to_100.html
91
+ * rutemah scrapped
92
+ * rutemax logs it's version always
93
+ * activerecord 2.1.1 is now in use
94
+
95
+ == 0.9.3 / 2008-09-10
96
+ * Sorted result summaries in the text and the email reporter
97
+ * ActiveRecordReporter registration logging
98
+ == 0.9.2 / 2008-09-10
99
+ * Fixed major blunder with test reporting
100
+ * Added text reporter for consistent text summaries
101
+ * More tests
102
+ * Fixed check test behaviour (was not running even when specified in the configuration)
103
+ * Fixed bungled emailing when using multiple addresses in the config
104
+ == 0.9.1 / 2008-09-09
105
+ * Modularisation of element parsing methods introduced.
106
+ * MinimalXMLParser refactored as example.
107
+ * Extra element parser modules available in the rutema_elements gem
108
+ * Cleaned up EmailReporter. Unit tests with Mocha, text report has a better layout
109
+ == 0.9.0 / 2008-09-08
110
+ * Ability to nest scenarios added to the base parser
111
+ * Documentation at http://patir.rubyforge.org/rutema/tool_configuration.html
112
+
113
+ == 0.8.0 / 2008-07-03
114
+ * Split rutemaweb into own gem
115
+ * Refactored reporters
116
+ * Re-enabled the --step commandline facility of rutemax allowing step-by-step execution and fixed the StepRunner implementation
117
+
118
+ == 0.7.1 / 2008-06-12
119
+ * Added the ruport_formatter.rb file to the manifest (and consequently to the gem)
120
+ * Locked down the active record and ramaze versions to avoid the String#start_with? alias bug from active support 2.1.0 and the Ramaze.start! change
121
+ == 0.7.0 / 2008-05-16
122
+ * Support for tools, paths and context information in the configuration solidified (http://patir.rubyforge.org/rutema/tool_configuration.html for more)
123
+ * Changes in the configuration for Historian and ActiveRecordReporter. Check the distro_test samples
124
+ * database connection code consolidated in db.rb
125
+ * Added support for jdbc/h2 to work with jRuby
126
+ * AR-reporter configuration expanded to support different adapters. Consistent with the Historian db configuration
127
+ * rutema unit tests now run under jRuby
128
+ * rutemah runs under jRuby
129
+
130
+ == 0.6.5 / 2008-04-15
131
+ * Updated rutemaweb controller to work with ramaze 0.3.9.1
132
+ == 0.6.4 / 2008-03-30
133
+ * Bugfix: duration SQL type adjusted in the model to return proper values.
134
+ * Bugfix: name=step_type for TestStep so that name is assigned a value in the model step
135
+ * Locked the Ramaze version to 0.3.5 until we find out why the new version breaks us
136
+ == 0.6.3 / 2008-03-26
137
+ * Bugfix: specifying a .spec filename on the commandline did not work - Path expanded before changing directory.
138
+ * Bugfix: running an attended .spec on it's own was not possible - attended mode is now set for single runs.
139
+ * Cleaned up the Runner's log output
140
+ == 0.6.2 / 2008-03-12
141
+ * Parsers derived from Rutema::SpecificationParser now receive the system configuration so that conventions like tools, paths and context can be used in element_ methods (this functionality fell through the cracks with the change in parser implementation)
142
+ * rutemaweb now has proper commandline help and connects properly to the database
143
+ == 0.6.1 / 2008-02-28
144
+ * ExtensibleXMLParser made more tolerant (no exceptions when an element cannot be handled)
145
+ * Bug: Typo in the class name used in the exceptions fixed
146
+ * Bugfix: ActiveRecord connection throws an exception that prevented Historian from establishing a new one. Fixed
147
+ * More unit tests
148
+ == 0.6.0 / 2008-02-27
149
+ * Added Rutema::ExtensibleXMLParser - this parser simplifies parser creation immensely. Check the documentation for details
150
+ * "Howto create a parser v0.5.0" officially the fastest deprecation of a document ever. http://patir.rubyforge.org/rutema/parser.html is the new black.
151
+ * Corrected some english spelling mistakes (hey, we're not native speakers)
152
+ * Fixed an issue with AR cached connections that interfered with unit tests
153
+
154
+ == 0.5.0 / 2008-02-26
155
+ * activerecord reporter is now loaded by default (no need to require it in the configuration file)
156
+ * bugfix: step names correctly written in the database
157
+ * The web frontend now uses Ramaze
158
+ * using patir-0.5.3 because of the chdir bugfixes
159
+ * rutema can now test itself! rutemax and rutemah return meaningful exit codes. So there, we do eat our own dogfood
160
+ * lots more documentation on usage and how to build a parser
161
+
162
+ == 0.4.3 / 2008-02-25
163
+ * fixed bug in rutemax when the activerecord reporter is used, where the database was not created relative to the configuration entry
164
+ * fixed bug in rutemah where the report was not printed (doh!)
165
+ * added active record reporter configuration and rutemah configuration to distro test
166
+ == 0.4.2 / 2007-12-05
167
+ * rutemah code cleaned up
168
+ * Bugfix: MinimalXMLParser now handles relative paths in command elements correctly
169
+ * distro_test added to the gem
170
+ * Distro test documented, documentation pages updated
171
+ == 0.4.1 / 2007-12-04
172
+ * Documented MinimalXMLParser
173
+ * More debug logs
174
+ * Fixed bug in attribute checking for command steps in the minimal parser
175
+ * Fixed bug in specification parsing in the Coordinator (no specs were returned)
176
+ * Fixed bug in the implementation of <prompt> in the minimal parser (attended was not set)
177
+ * Fixed bug in evaluation of attended status for steps
178
+ * Fixed bug where runner would complain that attened scenarios cannot be run in unattended mode when choosing to run only attended tests
179
+ * Added Version module to better handle versioning
180
+ == 0.4 / 2007-07-05
181
+ * rutemaweb, a web interface for the db contents added
182
+ * uses WEBRick, Camping and Ruport
183
+ * offers views on all runs in the System, detailed scenario views and scenario-over-time views
184
+ * Runner now rescues all failures in scenarios
185
+ * Bugfix in setting status of attended scenario in unattended mode
186
+ * Better ruport usage in the historian
187
+ * rutemah added to the gem and manifest
188
+ * rutemax help message complete with commands
189
+ * split the AR reporter and the model
190
+ * expanded the unit tests
191
+
192
+ == 0.3 / 2007-05-30
193
+ * Reporter implementations moved to own file
194
+ * Reporter interface changed (Runner stati now passed directly as a name indexed Hash, specifications passed as well)
195
+ * ActiveRecordReporter with SQLite DB added
196
+ * rutemah (the Historian) added in tools. The Historian reads from ActiveRecordReporter databases
197
+ == 0.2 / 2007-05-21
198
+ * bin/ files included in gem
199
+ * rutemax: missing configuration file is now checked before passed to the system
200
+ == 0.1 / 2007-05-21
201
+ * A running system!
202
+ * Basic XML parser with echo, command and prompt
203
+ * email reporting
204
+ * rutemax application
data/Manifest.txt CHANGED
@@ -1,48 +1,15 @@
1
- bin/rutema
2
- History.txt
3
- examples/config/database.rutema
4
- examples/config/full.rutema
5
- examples/config/minimal.rutema
6
- examples/README.md
7
- examples/specs/check.spec
8
- examples/specs/fail.spec
9
- examples/specs/include.scenario
10
- examples/specs/rutema.spec
11
- examples/specs/setup.spec
12
- examples/specs/T001.spec
13
- examples/specs/T002.spec
14
- examples/specs/T003.spec
15
- examples/specs/T004.spec
16
- examples/specs/T005.spec
17
- examples/specs/T006.spec
18
- examples/specs/teardown.spec
19
- lib/rutema/configuration.rb
20
- lib/rutema/elements/minimal.rb
21
- lib/rutema/models/activerecord.rb
22
- lib/rutema/models/base.rb
23
- lib/rutema/objectmodel.rb
24
- lib/rutema/parsers/base.rb
25
- lib/rutema/parsers/xml.rb
26
- lib/rutema/rake.rb
27
- lib/rutema/reporters/activerecord.rb
28
- lib/rutema/reporters/base.rb
29
- lib/rutema/reporters/email.rb
30
- lib/rutema/reporters/text.rb
31
- lib/rutema/runners/default.rb
32
- lib/rutema/runners/step.rb
33
- lib/rutema/system.rb
34
- Manifest.txt
35
- Rakefile
36
- README.md
37
- README.txt
38
- test/data/duplicate_name.spec
39
- test/data/no_title.spec
40
- test/data/sample.spec
41
- test/data/test_identifiers.rutema
42
- test/test_activerecord.rb
43
- test/test_configuration.rb
44
- test/test_objectmodel.rb
45
- test/test_parsers.rb
46
- test/test_reporters.rb
47
- test/test_runners.rb
48
- test/test_system.rb
1
+ History.txt
2
+ Manifest.txt
3
+ README.md
4
+ bin/rutema
5
+ lib/rutema/application.rb
6
+ lib/rutema/core/configuration.rb
7
+ lib/rutema/core/engine.rb
8
+ lib/rutema/core/framework.rb
9
+ lib/rutema/core/objectmodel.rb
10
+ lib/rutema/core/parser.rb
11
+ lib/rutema/core/reporter.rb
12
+ lib/rutema/core/runner.rb
13
+ lib/rutema/elements/minimal.rb
14
+ lib/rutema/parsers/xml.rb
15
+ lib/rutema/version.rb