rutema 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == 1.0.2 / 2008-10-23
2
+ * Bugfix in ActiveRecordReporter: \000 sequences produce exceptions when inserting.
3
+ * Output and error from commands is now more strctly sanitized.
1
4
  == 1.0.1 / 2008-10-13
2
5
  * rutema_upgrader - Bug: update not performed - fixed
3
6
 
@@ -70,8 +70,8 @@ module Rutema
70
70
  st.name=step[:name]
71
71
  st.number=number
72
72
  st.status=step[:status].to_s
73
- st.output=step[:output]
74
- st.error=step[:error]
73
+ st.output=sanitize(step[:output])
74
+ st.error=sanitize(step[:error])
75
75
  st.duration=step[:duration]
76
76
  sc.steps<<st
77
77
  end
@@ -83,5 +83,11 @@ module Rutema
83
83
  def to_s
84
84
  "ActiveRecordReporter using '#{@dbfile}'"
85
85
  end
86
+
87
+ private
88
+ def sanitize text
89
+ return text.gsub("\000","") if text
90
+ return ""
91
+ end
86
92
  end
87
93
  end
@@ -11,7 +11,7 @@ module Rutema
11
11
  module Version
12
12
  MAJOR=1
13
13
  MINOR=0
14
- TINY=1
14
+ TINY=2
15
15
  STRING=[ MAJOR, MINOR, TINY ].join( "." )
16
16
  end
17
17
  #The Elements module provides the namespace for the various modules adding parser functionality
Binary file
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.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vassilis Rizopoulos
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-13 00:00:00 +02:00
12
+ date: 2008-10-23 00:00:00 +02:00
13
13
  default_executable: rutemax
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -80,7 +80,7 @@ dependencies:
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: 1.8.0
83
+ version: 1.8.1
84
84
  version:
85
85
  description: "== DESCRIPTION: rutema is a test execution tool with a twist. 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. It's purpose is to make testing in heterogeneous environments easier. For more information look at http://patir.rubyforge.org/rutema == FEATURES/PROBLEMS: * Unified test execution environment for automated and manual tests * Extensible reports and notifications in various formats (email, rss, pdf, html etc.) * Web frontend and command line report generation tools for browsing the test results database (with rutemaweb) * Comprehensive history of test execution * A well defined way to create a project specific test specification format == SYNOPSIS: See http://patir.rubyforge.org/rutema/distro_test.html for an introductory example. == REQUIREMENTS: * patir (http://patir.rubyforge.org) * mailfactory (http://rubyforge.org/projects/mailfactory/) * activerecord (http://ar.rubyonrails.com/) * sqlite3 (http://rubyforge.org/projects/sqlite-ruby/) * ruport (http://rubyreports.org/) * acts_as_reportable * highline"
86
86
  email: riva@braveworld.net