rutema 1.2.4 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
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
+
1
6
  == 1.2.4 /2011-11-29
2
7
  * fixed a regression in parsing the configuration
3
8
  * updated gem dependencies
data/Manifest.txt CHANGED
@@ -1,6 +1,4 @@
1
1
  bin/rutema
2
- bin/rutemax
3
- COPYING.txt
4
2
  History.txt
5
3
  examples/config/database.rutema
6
4
  examples/config/full.rutema
@@ -30,7 +28,6 @@ lib/rutema/reporters/activerecord.rb
30
28
  lib/rutema/reporters/base.rb
31
29
  lib/rutema/reporters/email.rb
32
30
  lib/rutema/reporters/text.rb
33
- lib/rutema/reporters/yaml.rb
34
31
  lib/rutema/runners/default.rb
35
32
  lib/rutema/runners/step.rb
36
33
  lib/rutema/system.rb
data/README.md CHANGED
@@ -1,82 +1,62 @@
1
- rutema [http://patir.rubyforge.org/rutema](http://patir.rubyforge.org/rutema)
1
+ [![Build Status](https://secure.travis-ci.org/damphyr/rutema.png)](http://travis-ci.org/damphyr/rutema) rutema [http://patir.rubyforge.org/rutema](http://patir.rubyforge.org/rutema)
2
2
 
3
- ## DESCRIPTION:
4
- rutema is a test execution tool with a twist.
5
- It allows you to combine test tools while it takes care of logging, reporting, archiving of results and formalizes execution of automated and manual tests.
3
+ rutema is a test execution tool.
4
+ It allows the combination of various test tools while it takes care of logging, reporting, archiving of results and formalizes execution of automated and manual tests.
6
5
  It's purpose is to make testing in heterogeneous environments easier.
7
6
 
8
- For more information look at http://patir.rubyforge.org/rutema
7
+ ###Why?
8
+ Require consistency, repeatability and reliability from your test infrastructure while gathering data on every run.
9
9
 
10
- ## FEATURES/PROBLEMS:
10
+ Whether running through a checklist of manual steps, or executing a sequence of fully automated commands we always want in the end to know if a test has failed, where it failed and what was the state of the system at that time.
11
+
12
+ rutema will gather all logs, timestamp them, store them and report on them.
13
+
14
+ Using one of the database reporters we can then extract more information on the quality and state of our system by examining the behaviour of the tests over time.
15
+
16
+ For more information look at [http://patir.rubyforge.org/rutema](http://patir.rubyforge.org/rutema)
17
+
18
+ ###The dry stuff
11
19
  * Unified test execution environment for automated and manual tests
12
20
  * Extensible reports and notifications in various formats (email, rss, pdf, html etc.)
13
21
  * Comprehensive history of test execution
14
22
  * A well defined way to create a project specific test specification format
15
23
 
16
- ## SYNOPSIS:
24
+ ## Synopsis:
17
25
  See http://patir.rubyforge.org/rutema/examples.html for an introductory example.
18
26
 
19
- ## INSTALL:
27
+ ## Installation:
20
28
  * gem install rutema
21
29
 
22
- ## LICENSE:
23
- (The Ruby License)
24
-
25
- rutema is copyright (c) 2007 - 2011 Vassilis Rizopoulos
26
-
27
- You can redistribute it and/or modify it under either the terms of the GPL
28
- (see COPYING.txt file), or the conditions below:
29
-
30
- 1. You may make and give away verbatim copies of the source form of the
31
- software without restriction, provided that you duplicate all of the
32
- original copyright notices and associated disclaimers.
33
-
34
- 2. You may modify your copy of the software in any way, provided that
35
- you do at least ONE of the following:
36
-
37
- a) place your modifications in the Public Domain or otherwise
38
- make them Freely Available, such as by posting said
39
- modifications to Usenet or an equivalent medium, or by allowing
40
- the author to include your modifications in the software.
41
-
42
- b) use the modified software only within your corporation or
43
- organization.
44
-
45
- c) rename any non-standard executables so the names do not conflict
46
- with standard executables, which must also be provided.
47
-
48
- d) make other distribution arrangements with the author.
49
-
50
- 3. You may distribute the software in object code or executable
51
- form, provided that you do at least ONE of the following:
52
-
53
- a) distribute the executables and library files of the software,
54
- together with instructions (in the manual page or equivalent)
55
- on where to get the original distribution.
56
-
57
- b) accompany the distribution with the machine-readable source of
58
- the software.
59
-
60
- c) give non-standard executables non-standard names, with
61
- instructions on where to get the original software distribution.
62
-
63
- d) make other distribution arrangements with the author.
64
-
65
- 4. You may modify and include the part of the software into any other
66
- software (possibly commercial). But some files in the distribution
67
- are not written by the author, so that they are not under this terms.
68
-
69
- They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
70
- files under the ./missing directory. See each file for the copying
71
- condition.
72
-
73
- 5. The scripts and library files supplied as input to or produced as
74
- output from the software do not automatically fall under the
75
- copyright of the software, but belong to whomever generated them,
76
- and may be sold commercially, and may be aggregated with this
77
- software.
78
-
79
- 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
80
- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
81
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
82
- PURPOSE.
30
+ ## Dependencies
31
+ The core functionality of rutema depends on the following gems:
32
+ * [patir](http://github.com/damphyr/patir)
33
+ * [highline](http://highline.rubyforge.org/)
34
+
35
+ Depending on which parser or reporter is used though, further dependencies might be needed.
36
+ The reporters included in the gem depend on
37
+ * activerecord used by rutema/reporters/activerecord
38
+ * [mailfactory](http://mailfactory.rubyforge.org/) used by rutema/reporters/email
39
+
40
+ ## License:
41
+ (The MIT License)
42
+
43
+ Copyright (c) 2007-2012 Vassilis Rizopoulos
44
+
45
+ Permission is hereby granted, free of charge, to any person obtaining
46
+ a copy of this software and associated documentation files (the
47
+ 'Software'), to deal in the Software without restriction, including
48
+ without limitation the rights to use, copy, modify, merge, publish,
49
+ distribute, sublicense, and/or sell copies of the Software, and to
50
+ permit persons to whom the Software is furnished to do so, subject to
51
+ the following conditions:
52
+
53
+ The above copyright notice and this permission notice shall be
54
+ included in all copies or substantial portions of the Software.
55
+
56
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
57
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
58
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
59
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
60
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
61
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
62
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.txt CHANGED
@@ -20,63 +20,25 @@ See http://patir.rubyforge.org/rutema/examples.html for an introductory example.
20
20
  * gem install rutema
21
21
 
22
22
  == LICENSE:
23
- (The Ruby License)
24
-
25
- rutema is copyright (c) 2007 - 2011 Vassilis Rizopoulos
26
-
27
- You can redistribute it and/or modify it under either the terms of the GPL
28
- (see COPYING.txt file), or the conditions below:
29
-
30
- 1. You may make and give away verbatim copies of the source form of the
31
- software without restriction, provided that you duplicate all of the
32
- original copyright notices and associated disclaimers.
33
-
34
- 2. You may modify your copy of the software in any way, provided that
35
- you do at least ONE of the following:
36
-
37
- a) place your modifications in the Public Domain or otherwise
38
- make them Freely Available, such as by posting said
39
- modifications to Usenet or an equivalent medium, or by allowing
40
- the author to include your modifications in the software.
41
-
42
- b) use the modified software only within your corporation or
43
- organization.
44
-
45
- c) rename any non-standard executables so the names do not conflict
46
- with standard executables, which must also be provided.
47
-
48
- d) make other distribution arrangements with the author.
49
-
50
- 3. You may distribute the software in object code or executable
51
- form, provided that you do at least ONE of the following:
52
-
53
- a) distribute the executables and library files of the software,
54
- together with instructions (in the manual page or equivalent)
55
- on where to get the original distribution.
56
-
57
- b) accompany the distribution with the machine-readable source of
58
- the software.
59
-
60
- c) give non-standard executables non-standard names, with
61
- instructions on where to get the original software distribution.
62
-
63
- d) make other distribution arrangements with the author.
64
-
65
- 4. You may modify and include the part of the software into any other
66
- software (possibly commercial). But some files in the distribution
67
- are not written by the author, so that they are not under this terms.
68
-
69
- They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
70
- files under the ./missing directory. See each file for the copying
71
- condition.
72
-
73
- 5. The scripts and library files supplied as input to or produced as
74
- output from the software do not automatically fall under the
75
- copyright of the software, but belong to whomever generated them,
76
- and may be sold commercially, and may be aggregated with this
77
- software.
78
-
79
- 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
80
- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
81
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
82
- PURPOSE.
23
+ (The MIT License)
24
+
25
+ Copyright (c) 2007-2012 Vassilis Rizopoulos
26
+
27
+ Permission is hereby granted, free of charge, to any person obtaining
28
+ a copy of this software and associated documentation files (the
29
+ 'Software'), to deal in the Software without restriction, including
30
+ without limitation the rights to use, copy, modify, merge, publish,
31
+ distribute, sublicense, and/or sell copies of the Software, and to
32
+ permit persons to whom the Software is furnished to do so, subject to
33
+ the following conditions:
34
+
35
+ The above copyright notice and this permission notice shall be
36
+ included in all copies or substantial portions of the Software.
37
+
38
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
39
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
40
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
41
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
42
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
43
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
44
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -1,9 +1,8 @@
1
1
  # Copyright (c) 2007-2010 Vassilis Rizopoulos. All rights reserved.
2
2
  # -*- ruby -*-
3
3
  $:.unshift File.join(File.dirname(__FILE__),"lib")
4
- require 'rutema/system'
5
- require 'rubygems'
6
4
  require 'hoe'
5
+ require 'rutema/system'
7
6
 
8
7
  Hoe.spec('rutema') do |p|
9
8
  p.version=Rutema::Version::STRING
@@ -12,16 +11,20 @@ Hoe.spec('rutema') do |p|
12
11
  p.email = "vassilisrizopoulos@gmail.com"
13
12
  p.summary = 'rutema is a test execution and management framework for heterogeneous testing environments'
14
13
  p.description = p.paragraphs_of('README.md', 1..4).join("\n\n")
15
- p.url = "http://patir.rubyforge.org/rutema"
14
+ p.urls= ["http://github.com/damphyr/rutema"]
16
15
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
17
- p.extra_deps<<["activerecord", "~>3.0.9"]
18
- p.extra_deps<<["patir", "~>0.7.2"]
19
- p.extra_deps<<["highline","~>1.6.2"]
16
+ p.extra_deps<<["patir", "~>0.8.0"]
17
+ p.extra_deps<<["highline","~>1.6.15"]
20
18
  p.extra_deps<<["mailfactory","~>1.4.0"]
21
- p.extra_deps<<["mocha","~>0.9.12"]
22
- p.extra_deps<<["sqlite3","~>1.3.4"]
23
- p.spec_extras={:executables=>["rutemax","rutema"]}
19
+ p.spec_extras={:executables=>["rutema"]}
24
20
  end
25
21
 
22
+ task :default =>[:test,:system_tests]
23
+
24
+ task :system_tests do
25
+ Dir.chdir(File.join(File.dirname(__FILE__),'examples')) do
26
+ sh('./system_test.sh')
27
+ end
28
+ end
26
29
  # vim: syntax=Ruby
27
30
 
data/examples/README.md CHANGED
@@ -4,4 +4,14 @@ The examples included herein are also used to test the rutema functionality, so
4
4
  ## Structure
5
5
  The basic structure we follow in rutema usage (and this has been "in production" for a good 5 years now) is a config/ directory where each suite is configured, a specs/ directory to store the test specifications and a scritps/ directory for any scripts and data files used by the steps in the scripts directory.
6
6
 
7
- We also usually add any custom code used in the configuration files in config/lib so that it can be required in the configuration files without much trouble.
7
+ We also usually add any custom code used in the configuration files in config/lib so that it can be required in the configuration files without much trouble.
8
+
9
+ ##Rutema configuration
10
+ rutema is a modular system made up of two types of modules: parser and reporter.
11
+
12
+ Customizing the behaviour of rutema involves specifying a parser to use for parsing test specifications and one or more reporters to handle the test results.
13
+
14
+ Some examples:
15
+ * [The absolute minimum](https://github.com/damphyr/rutema/blob/master/examples/config/minimal.rutema)
16
+ * [Storing results in an active record database](https://github.com/damphyr/rutema/blob/master/examples/config/database.rutema)
17
+ * [Specify setup, teardown and check scripts](https://github.com/damphyr/rutema/blob/master/examples/config/full.rutema)
@@ -1,3 +1,5 @@
1
+ require 'rutema/parsers/xml'
2
+ require 'rutema/reporters/activerecord'
1
3
  #The parser to use
2
4
  configuration.parser={:class=>Rutema::MinimalXMLParser}
3
5
  #Use the AR-Reporter.
@@ -1,3 +1,4 @@
1
+ require 'rutema/parsers/xml'
1
2
  configuration.parser={:class=>Rutema::MinimalXMLParser}
2
3
  configuration.tests=[
3
4
  "../specs/T001.spec",
@@ -1,6 +1,7 @@
1
1
  # Copyright (c) 2007-2010 Vassilis Rizopoulos. All rights reserved.
2
2
  $:.unshift File.join(File.dirname(__FILE__),"..")
3
3
  require 'ostruct'
4
+ require 'patir/configuration'
4
5
  module Rutema
5
6
  #This module defines the "configuration directives" used in the configuration of Rutema
6
7
  #
@@ -137,6 +138,9 @@ module Rutema
137
138
  @paths=Hash.new
138
139
  @tools=Hash.new
139
140
  @tests=Array.new
141
+ @setup=nil
142
+ @teardown=nil
143
+ @check=nil
140
144
  super(config_file,logger)
141
145
  end
142
146
 
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2007-2010 Vassilis Rizopoulos. All rights reserved.
2
- $:.unshift File.join(File.dirname(__FILE__),"..","..")
2
+ require 'rutema/models/activerecord'
3
3
 
4
4
  module Rutema
5
5
  #The ActiveRecordReporter will store the results of a test run in a database using ActiveRecord.
@@ -9,7 +9,10 @@ module Rutema
9
9
  def initialize params
10
10
  end
11
11
 
12
- #Coordinator will pass the Rutema __configuration__ giving you access to the context which can contain data like headings and build numbers to use in the report. It will also pass the specifications used in the last run so that data like the title and the specification version can be used.
12
+ #Coordinator will pass the Rutema __configuration__ giving you access to the context which can contain data like
13
+ #headings and build numbers to use in the report.
14
+ #
15
+ #It will also pass the specifications used in the last run so that data like the title and the specification version can be used.
13
16
  #
14
17
  #runner_states is an Array of Patir::CommandSequenceStatus containing the stati of the last run (so it contains all the Scenario stati for the loaded tests)
15
18
  #
data/lib/rutema/system.rb CHANGED
@@ -1,28 +1,22 @@
1
- # Copyright (c) 2007-2010 Vassilis Rizopoulos. All rights reserved.
1
+ # Copyright (c) 2007-2012 Vassilis Rizopoulos. All rights reserved.
2
2
  $:.unshift File.join(File.dirname(__FILE__),"..")
3
- require 'rexml/document'
4
- require 'patir/configuration'
5
3
  require 'patir/command'
6
4
  require 'patir/base'
7
5
  require 'rutema/configuration'
8
6
 
9
7
  require 'rutema/parsers/base'
10
- require 'rutema/parsers/xml'
11
8
 
12
9
  require 'rutema/runners/default'
13
10
  require 'rutema/runners/step'
14
-
15
- require 'rutema/reporters/activerecord'
11
+
16
12
  require 'rutema/reporters/text'
17
- require 'rutema/reporters/yaml'
18
- require 'rutema/reporters/email'
19
13
 
20
14
  module Rutema
21
15
  #This module defines the version numbers for the library
22
16
  module Version
23
17
  MAJOR=1
24
- MINOR=2
25
- TINY=4
18
+ MINOR=3
19
+ TINY=0
26
20
  STRING=[ MAJOR, MINOR, TINY ].join( "." )
27
21
  end
28
22
  #This class coordinates parsing, execution and reporting of test specifications
Binary file
@@ -1,8 +1,6 @@
1
- $:.unshift File.join(File.dirname(__FILE__),"..")
1
+ $:.unshift File.join(File.dirname(__FILE__),"..","lib")
2
2
  require 'test/unit'
3
- require 'rubygems'
4
- require 'patir/configuration'
5
- require 'lib/rutema/configuration'
3
+ require 'rutema/configuration'
6
4
  #$DEBUG=true
7
5
  module TestRutema
8
6
  class TestRutemaConfigurator<Test::Unit::TestCase
@@ -1,7 +1,6 @@
1
- $:.unshift File.join(File.dirname(__FILE__),"..")
1
+ $:.unshift File.join(File.dirname(__FILE__),"..","lib")
2
2
  require 'test/unit'
3
- require 'rubygems'
4
- require 'lib/rutema/objectmodel'
3
+ require 'rutema/objectmodel'
5
4
  module TestRutema
6
5
  class DummyCommand
7
6
  include Patir::Command
data/test/test_parsers.rb CHANGED
@@ -1,9 +1,8 @@
1
- $:.unshift File.join(File.dirname(__FILE__),'..')
1
+ $:.unshift File.join(File.dirname(__FILE__),'..','lib')
2
2
  require 'test/unit'
3
3
  require 'ostruct'
4
- require 'patir/command'
5
- require 'mocha'
6
- require 'lib/rutema/parsers/xml'
4
+ require 'mocha/setup'
5
+ require 'rutema/parsers/xml'
7
6
 
8
7
  #$DEBUG=true
9
8
  module TestRutema
@@ -1,12 +1,11 @@
1
- $:.unshift File.join(File.dirname(__FILE__),"..")
1
+ $:.unshift File.join(File.dirname(__FILE__),"..",'lib')
2
2
  require 'test/unit'
3
3
  require 'ostruct'
4
4
  require 'fileutils'
5
- require 'rubygems'
6
- require 'lib/rutema/reporters/base'
7
- require 'lib/rutema/reporters/email'
8
- require 'lib/rutema/reporters/text'
9
- require 'mocha'
5
+ require 'rutema/reporters/base'
6
+ require 'rutema/reporters/email'
7
+ require 'rutema/reporters/text'
8
+ require 'mocha/setup'
10
9
  #$DEBUG=true
11
10
  module TestRutema
12
11
  class MockCommand
data/test/test_runners.rb CHANGED
@@ -1,14 +1,12 @@
1
- $:.unshift File.join(File.dirname(__FILE__),"..")
1
+ $:.unshift File.join(File.dirname(__FILE__),"..",'lib')
2
2
  require 'test/unit'
3
3
  require 'ostruct'
4
-
5
- require 'rubygems'
6
4
  require 'patir/command'
7
- require 'mocha'
5
+ require 'mocha/setup'
8
6
 
9
- require 'lib/rutema/objectmodel'
10
- require 'lib/rutema/runners/default'
11
- require 'lib/rutema/runners/step'
7
+ require 'rutema/objectmodel'
8
+ require 'rutema/runners/default'
9
+ require 'rutema/runners/step'
12
10
 
13
11
  #$DEBUG=true
14
12
  module TestRutema
data/test/test_system.rb CHANGED
@@ -1,11 +1,8 @@
1
- $:.unshift File.join(File.dirname(__FILE__),"..")
2
- require 'rubygems'
1
+ $:.unshift File.join(File.dirname(__FILE__),"..",'lib')
3
2
  require 'test/unit'
4
3
  require 'ostruct'
5
- require 'patir/command'
6
- require 'mocha'
7
- require 'lib/rutema/system'
8
- require 'lib/rutema/parsers/xml'
4
+ require 'mocha/setup'
5
+ require 'rutema/system'
9
6
 
10
7
  #$DEBUG=true
11
8
  module TestRutema
@@ -37,7 +34,6 @@ module TestRutema
37
34
  assert_equal(1,coord.parse_errors.size)
38
35
  coord=Rutema::Coordinator.new(conf)
39
36
  coord.run("data/sample.spec")
40
- p coord.parse_errors
41
37
  assert_equal(0,coord.parse_errors.size)
42
38
  coord=Rutema::Coordinator.new(conf)
43
39
  coord.run("data/no_title.spec")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rutema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.3.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,44 +9,43 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-29 00:00:00.000000000Z
12
+ date: 2012-11-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: activerecord
16
- requirement: &2158912300 !ruby/object:Gem::Requirement
15
+ name: patir
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 3.0.9
21
+ version: 0.8.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2158912300
25
- - !ruby/object:Gem::Dependency
26
- name: patir
27
- requirement: &2158911420 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
28
25
  none: false
29
26
  requirements:
30
27
  - - ~>
31
28
  - !ruby/object:Gem::Version
32
- version: 0.7.2
33
- type: :runtime
34
- prerelease: false
35
- version_requirements: *2158911420
29
+ version: 0.8.0
36
30
  - !ruby/object:Gem::Dependency
37
31
  name: highline
38
- requirement: &2158909860 !ruby/object:Gem::Requirement
32
+ requirement: !ruby/object:Gem::Requirement
39
33
  none: false
40
34
  requirements:
41
35
  - - ~>
42
36
  - !ruby/object:Gem::Version
43
- version: 1.6.2
37
+ version: 1.6.15
44
38
  type: :runtime
45
39
  prerelease: false
46
- version_requirements: *2158909860
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.6.15
47
46
  - !ruby/object:Gem::Dependency
48
47
  name: mailfactory
49
- requirement: &2158908860 !ruby/object:Gem::Requirement
48
+ requirement: !ruby/object:Gem::Requirement
50
49
  none: false
51
50
  requirements:
52
51
  - - ~>
@@ -54,75 +53,63 @@ dependencies:
54
53
  version: 1.4.0
55
54
  type: :runtime
56
55
  prerelease: false
57
- version_requirements: *2158908860
58
- - !ruby/object:Gem::Dependency
59
- name: mocha
60
- requirement: &2158908000 !ruby/object:Gem::Requirement
56
+ version_requirements: !ruby/object:Gem::Requirement
61
57
  none: false
62
58
  requirements:
63
59
  - - ~>
64
60
  - !ruby/object:Gem::Version
65
- version: 0.9.12
66
- type: :runtime
67
- prerelease: false
68
- version_requirements: *2158908000
61
+ version: 1.4.0
69
62
  - !ruby/object:Gem::Dependency
70
- name: sqlite3
71
- requirement: &2158906940 !ruby/object:Gem::Requirement
63
+ name: rdoc
64
+ requirement: !ruby/object:Gem::Requirement
72
65
  none: false
73
66
  requirements:
74
67
  - - ~>
75
68
  - !ruby/object:Gem::Version
76
- version: 1.3.4
77
- type: :runtime
69
+ version: '3.10'
70
+ type: :development
78
71
  prerelease: false
79
- version_requirements: *2158906940
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: '3.10'
80
78
  - !ruby/object:Gem::Dependency
81
79
  name: hoe
82
- requirement: &2158905580 !ruby/object:Gem::Requirement
80
+ requirement: !ruby/object:Gem::Requirement
83
81
  none: false
84
82
  requirements:
85
83
  - - ~>
86
84
  - !ruby/object:Gem::Version
87
- version: '2.12'
85
+ version: '3.3'
88
86
  type: :development
89
87
  prerelease: false
90
- version_requirements: *2158905580
91
- - !ruby/object:Gem::Dependency
92
- name: rdoc
93
- requirement: &2158590960 !ruby/object:Gem::Requirement
88
+ version_requirements: !ruby/object:Gem::Requirement
94
89
  none: false
95
90
  requirements:
96
91
  - - ~>
97
92
  - !ruby/object:Gem::Version
98
- version: '3.10'
99
- type: :development
100
- prerelease: false
101
- version_requirements: *2158590960
102
- description: ! "## DESCRIPTION:\nrutema is a test execution tool with a twist.\nIt
103
- allows you to combine test tools while it takes care of logging, reporting, archiving
104
- of results and formalizes execution of automated and manual tests.\nIt's purpose
105
- is to make testing in heterogeneous environments easier. \n\nFor more information
106
- look at http://patir.rubyforge.org/rutema\n\n## FEATURES/PROBLEMS:\n* Unified test
107
- execution environment for automated and manual tests\n* Extensible reports and notifications
108
- in various formats (email, rss, pdf, html etc.)\n* Comprehensive history of test
109
- execution\n* A well defined way to create a project specific test specification
110
- format\n\n## SYNOPSIS:\nSee http://patir.rubyforge.org/rutema/examples.html for
111
- an introductory example."
93
+ version: '3.3'
94
+ description: ! "rutema is a test execution tool.\nIt allows the combination of various
95
+ test tools while it takes care of logging, reporting, archiving of results and formalizes
96
+ execution of automated and manual tests.\nIt's purpose is to make testing in heterogeneous
97
+ environments easier. \n\n###Why?\nRequire consistency, repeatability and reliability
98
+ from your test infrastructure while gathering data on every run.\n\nWhether running
99
+ through a checklist of manual steps, or executing a sequence of fully automated
100
+ commands we always want in the end to know if a test has failed, where it failed
101
+ and what was the state of the system at that time.\n\nrutema will gather all logs,
102
+ timestamp them, store them and report on them. "
112
103
  email: vassilisrizopoulos@gmail.com
113
104
  executables:
114
- - rutemax
115
105
  - rutema
116
106
  extensions: []
117
107
  extra_rdoc_files:
118
- - COPYING.txt
119
108
  - History.txt
120
109
  - Manifest.txt
121
110
  - README.txt
122
111
  files:
123
112
  - bin/rutema
124
- - bin/rutemax
125
- - COPYING.txt
126
113
  - History.txt
127
114
  - examples/config/database.rutema
128
115
  - examples/config/full.rutema
@@ -152,7 +139,6 @@ files:
152
139
  - lib/rutema/reporters/base.rb
153
140
  - lib/rutema/reporters/email.rb
154
141
  - lib/rutema/reporters/text.rb
155
- - lib/rutema/reporters/yaml.rb
156
142
  - lib/rutema/runners/default.rb
157
143
  - lib/rutema/runners/step.rb
158
144
  - lib/rutema/system.rb
@@ -171,14 +157,13 @@ files:
171
157
  - test/test_reporters.rb
172
158
  - test/test_runners.rb
173
159
  - test/test_system.rb
174
- - test/test_couchdb.rb
175
160
  - .gemtest
176
- homepage: http://patir.rubyforge.org/rutema
161
+ homepage: http://github.com/damphyr/rutema
177
162
  licenses: []
178
163
  post_install_message:
179
164
  rdoc_options:
180
165
  - --main
181
- - README.txt
166
+ - README.md
182
167
  require_paths:
183
168
  - lib
184
169
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -189,7 +174,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
189
174
  version: '0'
190
175
  segments:
191
176
  - 0
192
- hash: 4133070417366984509
177
+ hash: 1271940349164417717
193
178
  required_rubygems_version: !ruby/object:Gem::Requirement
194
179
  none: false
195
180
  requirements:
@@ -198,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
183
  version: '0'
199
184
  requirements: []
200
185
  rubyforge_project: patir
201
- rubygems_version: 1.8.8
186
+ rubygems_version: 1.8.24
202
187
  signing_key:
203
188
  specification_version: 3
204
189
  summary: rutema is a test execution and management framework for heterogeneous testing
@@ -206,7 +191,6 @@ summary: rutema is a test execution and management framework for heterogeneous t
206
191
  test_files:
207
192
  - test/test_activerecord.rb
208
193
  - test/test_configuration.rb
209
- - test/test_couchdb.rb
210
194
  - test/test_objectmodel.rb
211
195
  - test/test_parsers.rb
212
196
  - test/test_reporters.rb
data/COPYING.txt DELETED
@@ -1,340 +0,0 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 2, June 1991
3
-
4
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6
- Everyone is permitted to copy and distribute verbatim copies
7
- of this license document, but changing it is not allowed.
8
-
9
- Preamble
10
-
11
- The licenses for most software are designed to take away your
12
- freedom to share and change it. By contrast, the GNU General Public
13
- License is intended to guarantee your freedom to share and change free
14
- software--to make sure the software is free for all its users. This
15
- General Public License applies to most of the Free Software
16
- Foundation's software and to any other program whose authors commit to
17
- using it. (Some other Free Software Foundation software is covered by
18
- the GNU Library General Public License instead.) You can apply it to
19
- your programs, too.
20
-
21
- When we speak of free software, we are referring to freedom, not
22
- price. Our General Public Licenses are designed to make sure that you
23
- have the freedom to distribute copies of free software (and charge for
24
- this service if you wish), that you receive source code or can get it
25
- if you want it, that you can change the software or use pieces of it
26
- in new free programs; and that you know you can do these things.
27
-
28
- To protect your rights, we need to make restrictions that forbid
29
- anyone to deny you these rights or to ask you to surrender the rights.
30
- These restrictions translate to certain responsibilities for you if you
31
- distribute copies of the software, or if you modify it.
32
-
33
- For example, if you distribute copies of such a program, whether
34
- gratis or for a fee, you must give the recipients all the rights that
35
- you have. You must make sure that they, too, receive or can get the
36
- source code. And you must show them these terms so they know their
37
- rights.
38
-
39
- We protect your rights with two steps: (1) copyright the software, and
40
- (2) offer you this license which gives you legal permission to copy,
41
- distribute and/or modify the software.
42
-
43
- Also, for each author's protection and ours, we want to make certain
44
- that everyone understands that there is no warranty for this free
45
- software. If the software is modified by someone else and passed on, we
46
- want its recipients to know that what they have is not the original, so
47
- that any problems introduced by others will not reflect on the original
48
- authors' reputations.
49
-
50
- Finally, any free program is threatened constantly by software
51
- patents. We wish to avoid the danger that redistributors of a free
52
- program will individually obtain patent licenses, in effect making the
53
- program proprietary. To prevent this, we have made it clear that any
54
- patent must be licensed for everyone's free use or not licensed at all.
55
-
56
- The precise terms and conditions for copying, distribution and
57
- modification follow.
58
-
59
- GNU GENERAL PUBLIC LICENSE
60
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
-
62
- 0. This License applies to any program or other work which contains
63
- a notice placed by the copyright holder saying it may be distributed
64
- under the terms of this General Public License. The "Program", below,
65
- refers to any such program or work, and a "work based on the Program"
66
- means either the Program or any derivative work under copyright law:
67
- that is to say, a work containing the Program or a portion of it,
68
- either verbatim or with modifications and/or translated into another
69
- language. (Hereinafter, translation is included without limitation in
70
- the term "modification".) Each licensee is addressed as "you".
71
-
72
- Activities other than copying, distribution and modification are not
73
- covered by this License; they are outside its scope. The act of
74
- running the Program is not restricted, and the output from the Program
75
- is covered only if its contents constitute a work based on the
76
- Program (independent of having been made by running the Program).
77
- Whether that is true depends on what the Program does.
78
-
79
- 1. You may copy and distribute verbatim copies of the Program's
80
- source code as you receive it, in any medium, provided that you
81
- conspicuously and appropriately publish on each copy an appropriate
82
- copyright notice and disclaimer of warranty; keep intact all the
83
- notices that refer to this License and to the absence of any warranty;
84
- and give any other recipients of the Program a copy of this License
85
- along with the Program.
86
-
87
- You may charge a fee for the physical act of transferring a copy, and
88
- you may at your option offer warranty protection in exchange for a fee.
89
-
90
- 2. You may modify your copy or copies of the Program or any portion
91
- of it, thus forming a work based on the Program, and copy and
92
- distribute such modifications or work under the terms of Section 1
93
- above, provided that you also meet all of these conditions:
94
-
95
- a) You must cause the modified files to carry prominent notices
96
- stating that you changed the files and the date of any change.
97
-
98
- b) You must cause any work that you distribute or publish, that in
99
- whole or in part contains or is derived from the Program or any
100
- part thereof, to be licensed as a whole at no charge to all third
101
- parties under the terms of this License.
102
-
103
- c) If the modified program normally reads commands interactively
104
- when run, you must cause it, when started running for such
105
- interactive use in the most ordinary way, to print or display an
106
- announcement including an appropriate copyright notice and a
107
- notice that there is no warranty (or else, saying that you provide
108
- a warranty) and that users may redistribute the program under
109
- these conditions, and telling the user how to view a copy of this
110
- License. (Exception: if the Program itself is interactive but
111
- does not normally print such an announcement, your work based on
112
- the Program is not required to print an announcement.)
113
-
114
- These requirements apply to the modified work as a whole. If
115
- identifiable sections of that work are not derived from the Program,
116
- and can be reasonably considered independent and separate works in
117
- themselves, then this License, and its terms, do not apply to those
118
- sections when you distribute them as separate works. But when you
119
- distribute the same sections as part of a whole which is a work based
120
- on the Program, the distribution of the whole must be on the terms of
121
- this License, whose permissions for other licensees extend to the
122
- entire whole, and thus to each and every part regardless of who wrote it.
123
-
124
- Thus, it is not the intent of this section to claim rights or contest
125
- your rights to work written entirely by you; rather, the intent is to
126
- exercise the right to control the distribution of derivative or
127
- collective works based on the Program.
128
-
129
- In addition, mere aggregation of another work not based on the Program
130
- with the Program (or with a work based on the Program) on a volume of
131
- a storage or distribution medium does not bring the other work under
132
- the scope of this License.
133
-
134
- 3. You may copy and distribute the Program (or a work based on it,
135
- under Section 2) in object code or executable form under the terms of
136
- Sections 1 and 2 above provided that you also do one of the following:
137
-
138
- a) Accompany it with the complete corresponding machine-readable
139
- source code, which must be distributed under the terms of Sections
140
- 1 and 2 above on a medium customarily used for software interchange; or,
141
-
142
- b) Accompany it with a written offer, valid for at least three
143
- years, to give any third party, for a charge no more than your
144
- cost of physically performing source distribution, a complete
145
- machine-readable copy of the corresponding source code, to be
146
- distributed under the terms of Sections 1 and 2 above on a medium
147
- customarily used for software interchange; or,
148
-
149
- c) Accompany it with the information you received as to the offer
150
- to distribute corresponding source code. (This alternative is
151
- allowed only for noncommercial distribution and only if you
152
- received the program in object code or executable form with such
153
- an offer, in accord with Subsection b above.)
154
-
155
- The source code for a work means the preferred form of the work for
156
- making modifications to it. For an executable work, complete source
157
- code means all the source code for all modules it contains, plus any
158
- associated interface definition files, plus the scripts used to
159
- control compilation and installation of the executable. However, as a
160
- special exception, the source code distributed need not include
161
- anything that is normally distributed (in either source or binary
162
- form) with the major components (compiler, kernel, and so on) of the
163
- operating system on which the executable runs, unless that component
164
- itself accompanies the executable.
165
-
166
- If distribution of executable or object code is made by offering
167
- access to copy from a designated place, then offering equivalent
168
- access to copy the source code from the same place counts as
169
- distribution of the source code, even though third parties are not
170
- compelled to copy the source along with the object code.
171
-
172
- 4. You may not copy, modify, sublicense, or distribute the Program
173
- except as expressly provided under this License. Any attempt
174
- otherwise to copy, modify, sublicense or distribute the Program is
175
- void, and will automatically terminate your rights under this License.
176
- However, parties who have received copies, or rights, from you under
177
- this License will not have their licenses terminated so long as such
178
- parties remain in full compliance.
179
-
180
- 5. You are not required to accept this License, since you have not
181
- signed it. However, nothing else grants you permission to modify or
182
- distribute the Program or its derivative works. These actions are
183
- prohibited by law if you do not accept this License. Therefore, by
184
- modifying or distributing the Program (or any work based on the
185
- Program), you indicate your acceptance of this License to do so, and
186
- all its terms and conditions for copying, distributing or modifying
187
- the Program or works based on it.
188
-
189
- 6. Each time you redistribute the Program (or any work based on the
190
- Program), the recipient automatically receives a license from the
191
- original licensor to copy, distribute or modify the Program subject to
192
- these terms and conditions. You may not impose any further
193
- restrictions on the recipients' exercise of the rights granted herein.
194
- You are not responsible for enforcing compliance by third parties to
195
- this License.
196
-
197
- 7. If, as a consequence of a court judgment or allegation of patent
198
- infringement or for any other reason (not limited to patent issues),
199
- conditions are imposed on you (whether by court order, agreement or
200
- otherwise) that contradict the conditions of this License, they do not
201
- excuse you from the conditions of this License. If you cannot
202
- distribute so as to satisfy simultaneously your obligations under this
203
- License and any other pertinent obligations, then as a consequence you
204
- may not distribute the Program at all. For example, if a patent
205
- license would not permit royalty-free redistribution of the Program by
206
- all those who receive copies directly or indirectly through you, then
207
- the only way you could satisfy both it and this License would be to
208
- refrain entirely from distribution of the Program.
209
-
210
- If any portion of this section is held invalid or unenforceable under
211
- any particular circumstance, the balance of the section is intended to
212
- apply and the section as a whole is intended to apply in other
213
- circumstances.
214
-
215
- It is not the purpose of this section to induce you to infringe any
216
- patents or other property right claims or to contest validity of any
217
- such claims; this section has the sole purpose of protecting the
218
- integrity of the free software distribution system, which is
219
- implemented by public license practices. Many people have made
220
- generous contributions to the wide range of software distributed
221
- through that system in reliance on consistent application of that
222
- system; it is up to the author/donor to decide if he or she is willing
223
- to distribute software through any other system and a licensee cannot
224
- impose that choice.
225
-
226
- This section is intended to make thoroughly clear what is believed to
227
- be a consequence of the rest of this License.
228
-
229
- 8. If the distribution and/or use of the Program is restricted in
230
- certain countries either by patents or by copyrighted interfaces, the
231
- original copyright holder who places the Program under this License
232
- may add an explicit geographical distribution limitation excluding
233
- those countries, so that distribution is permitted only in or among
234
- countries not thus excluded. In such case, this License incorporates
235
- the limitation as if written in the body of this License.
236
-
237
- 9. The Free Software Foundation may publish revised and/or new versions
238
- of the General Public License from time to time. Such new versions will
239
- be similar in spirit to the present version, but may differ in detail to
240
- address new problems or concerns.
241
-
242
- Each version is given a distinguishing version number. If the Program
243
- specifies a version number of this License which applies to it and "any
244
- later version", you have the option of following the terms and conditions
245
- either of that version or of any later version published by the Free
246
- Software Foundation. If the Program does not specify a version number of
247
- this License, you may choose any version ever published by the Free Software
248
- Foundation.
249
-
250
- 10. If you wish to incorporate parts of the Program into other free
251
- programs whose distribution conditions are different, write to the author
252
- to ask for permission. For software which is copyrighted by the Free
253
- Software Foundation, write to the Free Software Foundation; we sometimes
254
- make exceptions for this. Our decision will be guided by the two goals
255
- of preserving the free status of all derivatives of our free software and
256
- of promoting the sharing and reuse of software generally.
257
-
258
- NO WARRANTY
259
-
260
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
- REPAIR OR CORRECTION.
269
-
270
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
- POSSIBILITY OF SUCH DAMAGES.
279
-
280
- END OF TERMS AND CONDITIONS
281
-
282
- How to Apply These Terms to Your New Programs
283
-
284
- If you develop a new program, and you want it to be of the greatest
285
- possible use to the public, the best way to achieve this is to make it
286
- free software which everyone can redistribute and change under these terms.
287
-
288
- To do so, attach the following notices to the program. It is safest
289
- to attach them to the start of each source file to most effectively
290
- convey the exclusion of warranty; and each file should have at least
291
- the "copyright" line and a pointer to where the full notice is found.
292
-
293
- <one line to give the program's name and a brief idea of what it does.>
294
- Copyright (C) 19yy <name of author>
295
-
296
- This program is free software; you can redistribute it and/or modify
297
- it under the terms of the GNU General Public License as published by
298
- the Free Software Foundation; either version 2 of the License, or
299
- (at your option) any later version.
300
-
301
- This program is distributed in the hope that it will be useful,
302
- but WITHOUT ANY WARRANTY; without even the implied warranty of
303
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
- GNU General Public License for more details.
305
-
306
- You should have received a copy of the GNU General Public License
307
- along with this program; if not, write to the Free Software
308
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
309
-
310
-
311
- Also add information on how to contact you by electronic and paper mail.
312
-
313
- If the program is interactive, make it output a short notice like this
314
- when it starts in an interactive mode:
315
-
316
- Gnomovision version 69, Copyright (C) 19yy name of author
317
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
- This is free software, and you are welcome to redistribute it
319
- under certain conditions; type `show c' for details.
320
-
321
- The hypothetical commands `show w' and `show c' should show the appropriate
322
- parts of the General Public License. Of course, the commands you use may
323
- be called something other than `show w' and `show c'; they could even be
324
- mouse-clicks or menu items--whatever suits your program.
325
-
326
- You should also get your employer (if you work as a programmer) or your
327
- school, if any, to sign a "copyright disclaimer" for the program, if
328
- necessary. Here is a sample; alter the names:
329
-
330
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
332
-
333
- <signature of Ty Coon>, 1 April 1989
334
- Ty Coon, President of Vice
335
-
336
- This General Public License does not permit incorporating your program into
337
- proprietary programs. If your program is a subroutine library, you may
338
- consider it more useful to permit linking proprietary applications with the
339
- library. If this is what you want to do, use the GNU Library General
340
- Public License instead of this License.
data/bin/rutemax DELETED
@@ -1,9 +0,0 @@
1
- # Copyright (c) 2007-2011 Vassilis Rizopoulos. All rights reserved.
2
- require 'rubygems'
3
- require 'rutema/system'
4
- begin
5
- puts "rutemax is deprecated and will be removed in the near future, use rutema instead"
6
- Rutema::RutemaX.new(ARGV)
7
- rescue
8
- exit 1
9
- end
@@ -1,34 +0,0 @@
1
- # Copyright (c) 2007-2010 Vassilis Rizopoulos. All rights reserved.
2
- require 'yaml'
3
-
4
- module Rutema
5
- module YAML
6
- #Experimental reporter used to dump the data of a run on disk
7
- #
8
- #The following configuration keys are used by YAML::Reporter:
9
- #
10
- #:filename - the filename to use to save the YAML dump. Default is 'rutema.yaml'
11
- class Reporter
12
- DEFAULT_FILENAME="rutema.yaml"
13
-
14
- def initialize definition
15
- @logger=definition[:logger]
16
- @logger||=Patir.setup_logger
17
- @filename=definition[:filename]
18
- @filename||="rutema.yaml"
19
- @logger.info("Reporter #{self.to_s} registered")
20
- end
21
- #We get all the data from a test run in here.
22
- def report specifications,runner_states,parse_errors,configuration
23
- run_entry={}
24
- if configuration && configuration.context
25
- run_entry[:context]=configuration.context
26
- end
27
- run_entry[:parse_errors]=parse_errors
28
- runner_states.compact!
29
- run_entry[:runner_states]=runner_states
30
- File.open(@filename,"wb") {|f| f.write( ::YAML.dump(run_entry))}
31
- end
32
- end
33
- end
34
- end
data/test/test_couchdb.rb DELETED
@@ -1,65 +0,0 @@
1
- $:.unshift File.join(File.dirname(__FILE__),"..")
2
- require 'rubygems'
3
- require 'test/unit'
4
- require 'ostruct'
5
- require 'patir/command'
6
- require 'couchrest_model'
7
- require 'mocha'
8
- require 'lib/rutema/reporters/couchdb'
9
-
10
- #$DEBUG=true
11
- module TestRutema
12
- class MockCommand
13
- include Patir::Command
14
- def initialize number
15
- @number=number
16
- end
17
- end
18
-
19
- class TestCouchDBReporter<Test::Unit::TestCase
20
- CFG={:db=>{:url=>"http://localhost:5984", :database=>"rutema_test_sandbox"}}
21
- def setup
22
- @parse_errors=[{:filename=>"f.spec",:error=>"error"}]
23
- st=Patir::CommandSequenceStatus.new("test_seq")
24
- st.step=MockCommand.new(1)
25
- st.step=MockCommand.new(2)
26
- st.step=MockCommand.new(3)
27
- @status=[st]
28
- end
29
-
30
- def test_no_errors
31
- spec=mock
32
- db=mock
33
- Rutema::CouchDB.expects(:connect).returns(db)
34
- db.expects(:save_doc).returns({})
35
- r=Rutema::CouchDBReporter.new(CFG)
36
- assert_nothing_raised() { r.report({"test"=>spec},[runner_state_mock()],[],nil) }
37
- end
38
-
39
- def test_a_bit_of_everything
40
- spec=mock
41
- spec.expects(:has_version?).returns(false)
42
- spec.expects(:title).returns("T")
43
- spec.expects(:description).returns("cool test")
44
- db=mock
45
- Rutema::CouchDB.expects(:connect).returns(db)
46
- db.expects(:save_doc).returns({})
47
-
48
- r=Rutema::CouchDBReporter.new(CFG)
49
-
50
- assert_nothing_raised() { r.report({"1"=>spec},[runner_state_mock,runner_state_mock(1,:error)],[],nil) }
51
- end
52
-
53
- def runner_state_mock n=0,status=:success,step_states=[]
54
- rs=mock()
55
- rs.expects(:sequence_name).returns("#{n}")
56
- rs.expects(:sequence_id).returns("seq_id#{n}")
57
- rs.expects(:start_time).returns(Time.now-3600)
58
- rs.expects(:stop_time).returns(Time.now)
59
- rs.expects(:status).returns(status)
60
- rs.expects(:strategy).returns(:attended)
61
- rs.expects(:step_states).returns(step_states)
62
- return rs
63
- end
64
- end
65
- end