stella 0.8.6.002 → 0.8.7.001

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.txt CHANGED
@@ -10,9 +10,10 @@ STELLA, CHANGES
10
10
  * TODO: request block conditions.
11
11
  * TODO: process templates for calls to set in get blocks
12
12
 
13
- #### 0.8.7 (2010-04-??) ###############################
13
+ #### 0.8.7 (2010-05-21) ###############################
14
14
 
15
15
  * FIXED: sequential, rsequential, and random values were broken for Arrays
16
+ * FIXED: Support for supplying test durations in the form "5m" (300 seconds)
16
17
  * CHANGE: Enforce port 443 if port 80 and scheme is HTTPS.
17
18
 
18
19
 
data/README.md CHANGED
@@ -21,8 +21,8 @@ Stella is an integration and load testing tool. It fits well into an agile devel
21
21
 
22
22
  There are a few known limitations:
23
23
 
24
- * *SHOW-STOPPER*: An upper limit of around 200-300 concurrent virtual HTTP clients. There is a threading issue in the HTTPClient library which appears under high load.
25
- * *SHOW-STOPPER (for some)*: No support for browser or UI based tests (a la Watir or Selenium). If this is a show stopper for you, check out [WatirGrid](http://github.com/90kts/watirgrid)
24
+ * *POSSIBLE SHOW-STOPPER*: An upper limit of around 200-300 concurrent virtual HTTP clients. There is a threading issue in the HTTPClient library which appears under high load.
25
+ * *POSSIBLE SHOW-STOPPER*: No support for browser or UI based tests (a la Watir or Selenium). If this is a show stopper for you, check out [WatirGrid](http://github.com/90kts/watirgrid)
26
26
  * *ANNOYING*: File uploads do not work with some HTTP servers (WEBrick)
27
27
  * *ANNOYING*: Lack of documentation (see examples/ directory)
28
28
  * *ANNOYING*: Reporting is limited to log files and command-line output. You need to make your own graphs.
@@ -95,6 +95,11 @@ Get it in one of the following ways:
95
95
 
96
96
  You can also download via [tarball](http://github.com/solutious/stella/tarball/latest) or [zip](http://github.com/solutious/stella/zipball/latest).
97
97
 
98
+ NOTE: If you get errors about libxml2 or libxslt on Ubuntu, you need to install the following:
99
+
100
+ sudo apt-get install libxml2-dev
101
+ sudo apt-get install libxslt1-dev
102
+
98
103
 
99
104
  ## More Information
100
105
 
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :MAJOR: 0
3
3
  :MINOR: 8
4
- :PATCH: 6
5
- :BUILD: '002'
4
+ :PATCH: 7
5
+ :BUILD: '001'
data/lib/stella/engine.rb CHANGED
@@ -191,6 +191,9 @@ class Stella::Testrun < Storable
191
191
  @duration ||= 0
192
192
  @repetitions ||= 0
193
193
 
194
+ # Support durations in the form "30m", "2h", etc...
195
+ @duration = @duration.in_seconds if String === @duration
196
+
194
197
  @clients &&= @clients.to_i
195
198
  @duration &&= @duration.to_i
196
199
  @arrival &&= @arrival.to_f
@@ -36,8 +36,6 @@ module Stella::Engine
36
36
 
37
37
  @dumper = prepare_dumper(testrun)
38
38
 
39
-
40
-
41
39
  if testrun.duration > 0
42
40
  timing = "#{testrun.duration.seconds.to_i} seconds"
43
41
  else
data/stella.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{stella}
8
- s.version = "0.8.6.002"
8
+ s.version = "0.8.7.001"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Delano Mandelbaum"]
12
- s.date = %q{2010-05-04}
12
+ s.date = %q{2010-05-21}
13
13
  s.default_executable = %q{stella}
14
14
  s.description = %q{Blame Stella for breaking your web application!}
15
15
  s.email = %q{delano@solutious.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stella
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.6.002
4
+ version: 0.8.7.001
5
5
  platform: ruby
6
6
  authors:
7
7
  - Delano Mandelbaum
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-05-04 00:00:00 -04:00
12
+ date: 2010-05-21 00:00:00 -04:00
13
13
  default_executable: stella
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency