stella 0.3.2 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.txt +24 -84
- data/Rakefile +1 -6
- data/doc/classes/Crypto.html +248 -0
- data/doc/classes/Crypto/Key.html +308 -0
- data/doc/classes/Enumerable.html +309 -0
- data/doc/classes/FileUtil.html +310 -0
- data/doc/classes/HTTPUtil.html +530 -0
- data/doc/classes/MathUtil.html +210 -0
- data/doc/classes/Stella.html +238 -0
- data/doc/classes/Stella/Adapter.html +127 -0
- data/doc/classes/Stella/Adapter/ApacheBench.html +1076 -0
- data/doc/classes/Stella/Adapter/Base.html +432 -0
- data/doc/classes/Stella/Adapter/CommandNotReady.html +146 -0
- data/doc/classes/Stella/Adapter/Httperf.html +949 -0
- data/doc/classes/Stella/Adapter/Siege.html +1011 -0
- data/doc/classes/Stella/CLI.html +914 -0
- data/doc/classes/Stella/CLI/Base.html +186 -0
- data/doc/classes/Stella/CLI/Language.html +149 -0
- data/doc/classes/Stella/CLI/LocalTest.html +268 -0
- data/doc/classes/Stella/Command.html +111 -0
- data/doc/classes/Stella/Command/Base.html +335 -0
- data/doc/classes/Stella/Config.html +292 -0
- data/doc/classes/Stella/InvalidArgument.html +242 -0
- data/doc/classes/Stella/LocalTest.html +450 -0
- data/doc/classes/Stella/Logger.html +548 -0
- data/doc/classes/Stella/Response.html +846 -0
- data/doc/classes/Stella/Storable.html +928 -0
- data/doc/classes/Stella/Test.html +142 -0
- data/doc/classes/Stella/Test/DaySummary.html +249 -0
- data/doc/classes/Stella/Test/Definition.html +294 -0
- data/doc/classes/Stella/Test/Definition/Rampup.html +215 -0
- data/doc/classes/Stella/Test/RunSummary.html +315 -0
- data/doc/classes/Stella/Test/SummaryBase.html +286 -0
- data/doc/classes/Stella/Test/TestSummary.html +200 -0
- data/doc/classes/Stella/Text.html +581 -0
- data/doc/classes/Stella/Text/Resource.html +289 -0
- data/doc/classes/Stella/UnavailableAdapter.html +242 -0
- data/doc/classes/Stella/UnknownValue.html +242 -0
- data/doc/classes/Stella/UnsupportedLanguage.html +115 -0
- data/doc/classes/Stella/Util.html +348 -0
- data/doc/classes/TextGraph.html +460 -0
- data/doc/classes/TimerUtil.html +431 -0
- data/doc/created.rid +1 -0
- data/doc/files/LICENSE_txt.html +129 -0
- data/doc/files/README_txt.html +209 -0
- data/doc/files/lib/stella/adapter/ab_rb.html +101 -0
- data/doc/files/lib/stella/adapter/base_rb.html +101 -0
- data/doc/files/lib/stella/adapter/httperf_rb.html +101 -0
- data/doc/files/lib/stella/adapter/siege_rb.html +101 -0
- data/doc/files/lib/stella/cli/base_rb.html +101 -0
- data/doc/files/lib/stella/cli/language_rb.html +101 -0
- data/doc/files/lib/stella/cli/localtest_rb.html +101 -0
- data/doc/files/lib/stella/cli_rb.html +112 -0
- data/doc/files/lib/stella/command/base_rb.html +101 -0
- data/doc/files/lib/stella/command/localtest_rb.html +101 -0
- data/doc/files/lib/stella/logger_rb.html +101 -0
- data/doc/files/lib/stella/response_rb.html +101 -0
- data/doc/files/lib/stella/storable_rb.html +109 -0
- data/doc/files/lib/stella/support_rb.html +101 -0
- data/doc/files/lib/stella/test/daysummary_rb.html +101 -0
- data/doc/files/lib/stella/test/definition_rb.html +101 -0
- data/doc/files/lib/stella/test/runsummary_rb.html +101 -0
- data/doc/files/lib/stella/test/summarybase_rb.html +101 -0
- data/doc/files/lib/stella/test/testsummary_rb.html +108 -0
- data/doc/files/lib/stella/text/resource_rb.html +108 -0
- data/doc/files/lib/stella/text_rb.html +108 -0
- data/doc/files/lib/stella_rb.html +128 -0
- data/doc/files/lib/utils/crypto-key_rb.html +116 -0
- data/doc/files/lib/utils/fileutil_rb.html +108 -0
- data/doc/files/lib/utils/httputil_rb.html +110 -0
- data/doc/files/lib/utils/mathutil_rb.html +101 -0
- data/doc/files/lib/utils/textgraph_rb.html +138 -0
- data/doc/files/lib/utils/timerutil_rb.html +108 -0
- data/doc/fr_class_index.html +66 -0
- data/doc/fr_file_index.html +62 -0
- data/doc/fr_method_index.html +309 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/stella.rb +5 -6
- data/lib/stella/adapter/ab.rb +4 -31
- data/lib/stella/adapter/base.rb +1 -15
- data/lib/stella/adapter/httperf.rb +4 -35
- data/lib/stella/adapter/siege.rb +29 -51
- data/lib/stella/cli.rb +22 -45
- data/lib/stella/cli/language.rb +0 -2
- data/lib/stella/cli/localtest.rb +0 -5
- data/lib/stella/command/base.rb +1 -1
- data/lib/stella/command/localtest.rb +68 -84
- data/lib/stella/test/daysummary.rb +93 -0
- data/lib/stella/test/definition.rb +5 -10
- data/lib/stella/test/{run/summary.rb → runsummary.rb} +6 -4
- data/lib/stella/test/{base.rb → summarybase.rb} +7 -3
- data/lib/stella/test/{summary.rb → testsummary.rb} +29 -27
- data/lib/utils/mathutil.rb +34 -36
- data/spec/base.rb +26 -0
- data/spec/shell_spec.rb +12 -0
- data/support/text/en.yaml +1 -7
- metadata +102 -8
- data/lib/stella/cli/agents.rb +0 -73
- data/lib/utils/escape.rb +0 -302
|
@@ -2,18 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
module Stella
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# Stella::Test::Definition
|
|
6
|
+
#
|
|
7
|
+
# This class defines the properties of load test. These are "generic" properties
|
|
8
|
+
# in that they don't relate to a specific tool.
|
|
6
9
|
module Test
|
|
7
|
-
|
|
8
|
-
# Stella::Test::Definition
|
|
9
|
-
#
|
|
10
|
-
# This class defines the properties of load test. These are "generic" properties
|
|
11
|
-
# in that they don't relate to a specific tool.
|
|
12
10
|
class Definition
|
|
13
11
|
|
|
14
|
-
# Stella::Test::Definition::Rampup
|
|
15
|
-
#
|
|
16
|
-
# This class holds the values for a rampup: interval and ceiling.
|
|
17
12
|
class Rampup
|
|
18
13
|
attr_accessor :interval
|
|
19
14
|
attr_accessor :ceiling
|
|
@@ -52,7 +47,7 @@ module Stella
|
|
|
52
47
|
attr_accessor :message
|
|
53
48
|
|
|
54
49
|
def initialize
|
|
55
|
-
@repetitions =
|
|
50
|
+
@repetitions = 1
|
|
56
51
|
end
|
|
57
52
|
|
|
58
53
|
def repetitions=(v)
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
module Stella
|
|
4
|
+
module Stella
|
|
5
|
+
module Test
|
|
5
6
|
|
|
6
|
-
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class RunSummary < Stella::Storable
|
|
7
10
|
|
|
8
11
|
attr_accessor :note
|
|
9
12
|
attr_accessor :tool, :version
|
|
@@ -29,8 +32,6 @@ module Stella::Test::Run
|
|
|
29
32
|
(@transactions / @successful).to_f * 100
|
|
30
33
|
end
|
|
31
34
|
|
|
32
|
-
# We calculate the throughput because Apache Bench does not provide this
|
|
33
|
-
# value in the output.
|
|
34
35
|
def throughput
|
|
35
36
|
return 0 if !@elapsed_time || @elapsed_time == 0
|
|
36
37
|
(@data_transferred / @elapsed_time).to_f
|
|
@@ -47,4 +48,5 @@ module Stella::Test::Run
|
|
|
47
48
|
end
|
|
48
49
|
|
|
49
50
|
|
|
51
|
+
end
|
|
50
52
|
end
|
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
|
|
2
2
|
module Stella::Test
|
|
3
3
|
|
|
4
|
-
module
|
|
4
|
+
module SummaryBase
|
|
5
5
|
|
|
6
6
|
attr_reader :message
|
|
7
7
|
attr_reader :elapsed_time_avg, :transaction_rate_avg, :vusers_avg, :response_time_avg
|
|
8
8
|
attr_reader :elapsed_time_sdev, :transaction_rate_sdev, :vusers_sdev, :response_time_sdev
|
|
9
9
|
attr_accessor :transactions_total, :headers_transferred_total, :data_transferred_total
|
|
10
|
-
attr_accessor :successful_total, :failed_total, :elapsed_time_total
|
|
10
|
+
attr_accessor :successful_total, :failed_total, :elapsed_time_total
|
|
11
11
|
|
|
12
12
|
def availability
|
|
13
13
|
return 0 if @successful_total == 0
|
|
14
14
|
(@transactions_total / @successful_total).to_f * 100
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
+
def throughput
|
|
18
|
+
return 0 if @elapsed_time_total == 0
|
|
19
|
+
(@data_transferred_total / @elapsed_time_total).to_f
|
|
20
|
+
end
|
|
17
21
|
|
|
18
22
|
# Defines the fields the are output by to_hash and to_csv.
|
|
19
23
|
# For to_csv, this also determines the field order
|
|
@@ -26,7 +30,7 @@ module Stella::Test
|
|
|
26
30
|
:transactions_total, :successful_total, :failed_total,
|
|
27
31
|
:data_transferred_total, :headers_transferred_total,
|
|
28
32
|
|
|
29
|
-
:elapsed_time_total, :availability, :
|
|
33
|
+
:elapsed_time_total, :availability, :throughput
|
|
30
34
|
]
|
|
31
35
|
end
|
|
32
36
|
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
require 'stella/test/
|
|
2
|
+
require 'stella/test/summarybase'
|
|
3
3
|
|
|
4
4
|
module Stella::Test
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
include Base
|
|
6
|
+
class TestSummary < Stella::Storable
|
|
7
|
+
include SummaryBase
|
|
9
8
|
|
|
10
9
|
attr_reader :runs
|
|
11
10
|
|
|
@@ -16,32 +15,34 @@ module Stella::Test
|
|
|
16
15
|
|
|
17
16
|
# Add a TestRun object to the list
|
|
18
17
|
def add_run(run)
|
|
19
|
-
raise "I got a #{run.class} but I wanted a
|
|
18
|
+
raise "I got a #{run.class} but I wanted a RunSummary" unless run.is_a?(RunSummary)
|
|
20
19
|
@runs << run
|
|
21
20
|
calculate
|
|
22
21
|
end
|
|
23
22
|
|
|
24
23
|
private
|
|
25
24
|
def calculate
|
|
26
|
-
# We simply keep a running tally of these
|
|
27
25
|
@transactions_total = 0
|
|
28
26
|
@headers_transferred_total = 0
|
|
29
27
|
@data_transferred_total = 0
|
|
30
|
-
|
|
28
|
+
|
|
29
|
+
@elapsed_time_avg = 0
|
|
30
|
+
@response_time_avg = 0
|
|
31
|
+
@transaction_rate_avg = 0
|
|
32
|
+
@vusers_avg = 0
|
|
33
|
+
|
|
31
34
|
@successful_total = 0
|
|
32
35
|
@failed_total = 0
|
|
33
36
|
|
|
34
|
-
# We keep a list of the values for averaging and std dev
|
|
35
37
|
elapsed_times = []
|
|
36
38
|
transaction_rates = []
|
|
37
39
|
vusers_list = []
|
|
38
40
|
response_times = []
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
vusers =
|
|
41
|
+
@elapsed_time_total = 0
|
|
42
|
+
response_time = 0
|
|
43
|
+
transaction_rate = 0
|
|
44
|
+
vusers = 0
|
|
43
45
|
|
|
44
|
-
# Each run is the summary of a single run (i.e. run01/SUMMARY.csv)
|
|
45
46
|
runs.each do |run|
|
|
46
47
|
# These are totaled
|
|
47
48
|
@transactions_total += run.transactions
|
|
@@ -49,32 +50,33 @@ module Stella::Test
|
|
|
49
50
|
@data_transferred_total += run.data_transferred
|
|
50
51
|
@successful_total += run.successful
|
|
51
52
|
@failed_total += run.failed
|
|
53
|
+
|
|
52
54
|
@elapsed_time_total += run.elapsed_time
|
|
53
55
|
|
|
56
|
+
response_time += run.response_time
|
|
57
|
+
|
|
58
|
+
transaction_rate += run.transaction_rate
|
|
59
|
+
vusers += run.vusers
|
|
60
|
+
|
|
54
61
|
# These are used for standard deviation
|
|
55
62
|
elapsed_times << run.elapsed_time
|
|
56
63
|
transaction_rates << run.transaction_rate
|
|
57
64
|
vusers_list << run.vusers
|
|
58
65
|
response_times << run.response_time
|
|
59
|
-
throughput << run.throughput
|
|
60
|
-
response_time << run.response_time
|
|
61
|
-
transaction_rate << run.transaction_rate
|
|
62
|
-
vusers << run.vusers
|
|
63
66
|
end
|
|
64
67
|
|
|
68
|
+
|
|
65
69
|
# Calculate Averages
|
|
66
|
-
@elapsed_time_avg =
|
|
67
|
-
@
|
|
68
|
-
@
|
|
69
|
-
@
|
|
70
|
-
@vusers_avg = vusers.average
|
|
70
|
+
@elapsed_time_avg = @elapsed_time_total / runs.size
|
|
71
|
+
@transaction_rate_avg = transaction_rate / runs.size
|
|
72
|
+
@vusers_avg = (vusers / runs.size)
|
|
73
|
+
@response_time_avg = response_time / runs.size
|
|
71
74
|
|
|
72
75
|
# Calculate Standard Deviations
|
|
73
|
-
@elapsed_time_sdev =
|
|
74
|
-
@
|
|
75
|
-
@
|
|
76
|
-
@
|
|
77
|
-
@response_time_sdev = response_times.standard_deviation
|
|
76
|
+
@elapsed_time_sdev = MathUtil.standard_deviation(elapsed_times)
|
|
77
|
+
@transaction_rate_sdev = MathUtil.standard_deviation(transaction_rates)
|
|
78
|
+
@vusers_sdev = MathUtil.standard_deviation(vusers_list)
|
|
79
|
+
@response_time_sdev = MathUtil.standard_deviation(response_times)
|
|
78
80
|
|
|
79
81
|
end
|
|
80
82
|
end
|
data/lib/utils/mathutil.rb
CHANGED
|
@@ -1,41 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
module MathUtil
|
|
4
|
-
|
|
5
|
-
def self.variance(population)
|
|
6
|
-
n = 0
|
|
7
|
-
mean = 0.0
|
|
8
|
-
s = 0.0
|
|
9
|
-
population.each { |x|
|
|
10
|
-
n = n + 1
|
|
11
|
-
delta = (x - mean).to_f
|
|
12
|
-
mean = (mean + (delta / n)).to_f
|
|
13
|
-
s = (s + delta * (x - mean)).to_f
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
return s / n
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
# calculate the standard deviation of a population
|
|
20
|
-
# accepts: an array, the population
|
|
21
|
-
# returns: the standard deviation
|
|
22
|
-
def self.standard_deviation(population)
|
|
23
|
-
Math.sqrt(variance(population))
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
# enforce_limit
|
|
27
|
-
#
|
|
28
|
-
# Enforce a minimum and maximum value
|
|
29
|
-
def self.enforce_limit(val,min,max)
|
|
30
|
-
val = min if val < min
|
|
31
|
-
val = max if val > max
|
|
32
|
-
val
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
3
|
|
|
40
4
|
module Enumerable
|
|
41
5
|
|
|
@@ -75,4 +39,38 @@ module Enumerable
|
|
|
75
39
|
return Math.sqrt(self.sample_variance)
|
|
76
40
|
end
|
|
77
41
|
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
module MathUtil
|
|
45
|
+
|
|
46
|
+
def self.variance(population)
|
|
47
|
+
n = 0
|
|
48
|
+
mean = 0.0
|
|
49
|
+
s = 0.0
|
|
50
|
+
population.each { |x|
|
|
51
|
+
n = n + 1
|
|
52
|
+
delta = (x - mean).to_f
|
|
53
|
+
mean = (mean + (delta / n)).to_f
|
|
54
|
+
s = (s + delta * (x - mean)).to_f
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return s / n
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# calculate the standard deviation of a population
|
|
61
|
+
# accepts: an array, the population
|
|
62
|
+
# returns: the standard deviation
|
|
63
|
+
def self.standard_deviation(population)
|
|
64
|
+
Math.sqrt(variance(population))
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# enforce_limit
|
|
68
|
+
#
|
|
69
|
+
# Enforce a minimum and maximum value
|
|
70
|
+
def self.enforce_limit(val,min,max)
|
|
71
|
+
val = min if val < min
|
|
72
|
+
val = max if val > max
|
|
73
|
+
val
|
|
74
|
+
end
|
|
75
|
+
|
|
78
76
|
end
|
data/spec/base.rb
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'spec'
|
|
3
|
+
|
|
4
|
+
STELLA_HOME = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
5
|
+
|
|
6
|
+
$: << File.join(STELLA_HOME, 'lib')
|
|
7
|
+
$: << File.join(STELLA_HOME, 'vendor', 'useragent', 'lib')
|
|
8
|
+
|
|
9
|
+
require 'optparse'
|
|
10
|
+
require 'rdoc/usage'
|
|
11
|
+
require 'ostruct'
|
|
12
|
+
require 'date'
|
|
13
|
+
|
|
14
|
+
require 'stella/storable'
|
|
15
|
+
require 'stella/command'
|
|
16
|
+
require 'stella/config'
|
|
17
|
+
require 'stella/response'
|
|
18
|
+
require 'stella/command/harness'
|
|
19
|
+
|
|
20
|
+
require 'utils/httputil'
|
|
21
|
+
require 'utils/crypto-key'
|
|
22
|
+
require 'utils/fileutil'
|
|
23
|
+
|
|
24
|
+
## Create and run the application
|
|
25
|
+
#app = Stella::Command.new(ARGV, STDIN)
|
|
26
|
+
#app.run
|
data/spec/shell_spec.rb
ADDED
data/support/text/en.yaml
CHANGED
|
@@ -5,12 +5,6 @@
|
|
|
5
5
|
:enabled: true
|
|
6
6
|
:text_available_languages: "Available languages: %s"
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
:agents_option_full: Return complete user-agent strings.
|
|
10
|
-
:agents_option_list: List available user-agent shortnames.
|
|
11
|
-
:agents_option_search: Return only user agents which match the search term.
|
|
12
|
-
:agents_count_message: "There are %d user agent strings matching your query"
|
|
13
|
-
|
|
14
8
|
:option_help_stdout: Print STDOUT output from load tool for each test run
|
|
15
9
|
:option_help_stderr: Print STDERR output from load tool for each test run
|
|
16
10
|
:option_help_verbose: Specify the output verbosity (level 1, 2 or 3)
|
|
@@ -42,7 +36,7 @@
|
|
|
42
36
|
:option_help_format: "Output file format. One of: csv [default], yaml, tsv, json"
|
|
43
37
|
:option_help_version: Display the version, then exit
|
|
44
38
|
:option_help_sleep: Number of seconds to sleep between runs
|
|
45
|
-
:option_help_agent: Specify a User-Agent. Can be a short string or complete agent string.
|
|
39
|
+
:option_help_agent: Specify a User-Agent. Can be a short string or complete agent string.
|
|
46
40
|
:option_help_help: Displays this message
|
|
47
41
|
:option_help_rampup: Execute multiple tests, incremented by R users every test, up to U users
|
|
48
42
|
|
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.
|
|
4
|
+
version: 0.5.1
|
|
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: 2008-12-
|
|
12
|
+
date: 2008-12-22 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -41,6 +41,100 @@ extra_rdoc_files:
|
|
|
41
41
|
files:
|
|
42
42
|
- Rakefile
|
|
43
43
|
- bin/stella
|
|
44
|
+
- doc/classes
|
|
45
|
+
- doc/classes/Crypto
|
|
46
|
+
- doc/classes/Crypto/Key.html
|
|
47
|
+
- doc/classes/Crypto.html
|
|
48
|
+
- doc/classes/Enumerable.html
|
|
49
|
+
- doc/classes/FileUtil.html
|
|
50
|
+
- doc/classes/HTTPUtil.html
|
|
51
|
+
- doc/classes/MathUtil.html
|
|
52
|
+
- doc/classes/Stella
|
|
53
|
+
- doc/classes/Stella/Adapter
|
|
54
|
+
- doc/classes/Stella/Adapter/ApacheBench.html
|
|
55
|
+
- doc/classes/Stella/Adapter/Base.html
|
|
56
|
+
- doc/classes/Stella/Adapter/CommandNotReady.html
|
|
57
|
+
- doc/classes/Stella/Adapter/Httperf.html
|
|
58
|
+
- doc/classes/Stella/Adapter/Siege.html
|
|
59
|
+
- doc/classes/Stella/Adapter.html
|
|
60
|
+
- doc/classes/Stella/CLI
|
|
61
|
+
- doc/classes/Stella/CLI/Base.html
|
|
62
|
+
- doc/classes/Stella/CLI/Language.html
|
|
63
|
+
- doc/classes/Stella/CLI/LocalTest.html
|
|
64
|
+
- doc/classes/Stella/CLI.html
|
|
65
|
+
- doc/classes/Stella/Command
|
|
66
|
+
- doc/classes/Stella/Command/Base.html
|
|
67
|
+
- doc/classes/Stella/Command.html
|
|
68
|
+
- doc/classes/Stella/Config.html
|
|
69
|
+
- doc/classes/Stella/InvalidArgument.html
|
|
70
|
+
- doc/classes/Stella/LocalTest.html
|
|
71
|
+
- doc/classes/Stella/Logger.html
|
|
72
|
+
- doc/classes/Stella/Response.html
|
|
73
|
+
- doc/classes/Stella/Storable.html
|
|
74
|
+
- doc/classes/Stella/Test
|
|
75
|
+
- doc/classes/Stella/Test/DaySummary.html
|
|
76
|
+
- doc/classes/Stella/Test/Definition
|
|
77
|
+
- doc/classes/Stella/Test/Definition/Rampup.html
|
|
78
|
+
- doc/classes/Stella/Test/Definition.html
|
|
79
|
+
- doc/classes/Stella/Test/RunSummary.html
|
|
80
|
+
- doc/classes/Stella/Test/SummaryBase.html
|
|
81
|
+
- doc/classes/Stella/Test/TestSummary.html
|
|
82
|
+
- doc/classes/Stella/Test.html
|
|
83
|
+
- doc/classes/Stella/Text
|
|
84
|
+
- doc/classes/Stella/Text/Resource.html
|
|
85
|
+
- doc/classes/Stella/Text.html
|
|
86
|
+
- doc/classes/Stella/UnavailableAdapter.html
|
|
87
|
+
- doc/classes/Stella/UnknownValue.html
|
|
88
|
+
- doc/classes/Stella/UnsupportedLanguage.html
|
|
89
|
+
- doc/classes/Stella/Util.html
|
|
90
|
+
- doc/classes/Stella.html
|
|
91
|
+
- doc/classes/TextGraph.html
|
|
92
|
+
- doc/classes/TimerUtil.html
|
|
93
|
+
- doc/created.rid
|
|
94
|
+
- doc/files
|
|
95
|
+
- doc/files/lib
|
|
96
|
+
- doc/files/lib/stella
|
|
97
|
+
- doc/files/lib/stella/adapter
|
|
98
|
+
- doc/files/lib/stella/adapter/ab_rb.html
|
|
99
|
+
- doc/files/lib/stella/adapter/base_rb.html
|
|
100
|
+
- doc/files/lib/stella/adapter/httperf_rb.html
|
|
101
|
+
- doc/files/lib/stella/adapter/siege_rb.html
|
|
102
|
+
- doc/files/lib/stella/cli
|
|
103
|
+
- doc/files/lib/stella/cli/base_rb.html
|
|
104
|
+
- doc/files/lib/stella/cli/language_rb.html
|
|
105
|
+
- doc/files/lib/stella/cli/localtest_rb.html
|
|
106
|
+
- doc/files/lib/stella/cli_rb.html
|
|
107
|
+
- doc/files/lib/stella/command
|
|
108
|
+
- doc/files/lib/stella/command/base_rb.html
|
|
109
|
+
- doc/files/lib/stella/command/localtest_rb.html
|
|
110
|
+
- doc/files/lib/stella/logger_rb.html
|
|
111
|
+
- doc/files/lib/stella/response_rb.html
|
|
112
|
+
- doc/files/lib/stella/storable_rb.html
|
|
113
|
+
- doc/files/lib/stella/support_rb.html
|
|
114
|
+
- doc/files/lib/stella/test
|
|
115
|
+
- doc/files/lib/stella/test/daysummary_rb.html
|
|
116
|
+
- doc/files/lib/stella/test/definition_rb.html
|
|
117
|
+
- doc/files/lib/stella/test/runsummary_rb.html
|
|
118
|
+
- doc/files/lib/stella/test/summarybase_rb.html
|
|
119
|
+
- doc/files/lib/stella/test/testsummary_rb.html
|
|
120
|
+
- doc/files/lib/stella/text
|
|
121
|
+
- doc/files/lib/stella/text/resource_rb.html
|
|
122
|
+
- doc/files/lib/stella/text_rb.html
|
|
123
|
+
- doc/files/lib/stella_rb.html
|
|
124
|
+
- doc/files/lib/utils
|
|
125
|
+
- doc/files/lib/utils/crypto-key_rb.html
|
|
126
|
+
- doc/files/lib/utils/fileutil_rb.html
|
|
127
|
+
- doc/files/lib/utils/httputil_rb.html
|
|
128
|
+
- doc/files/lib/utils/mathutil_rb.html
|
|
129
|
+
- doc/files/lib/utils/textgraph_rb.html
|
|
130
|
+
- doc/files/lib/utils/timerutil_rb.html
|
|
131
|
+
- doc/files/LICENSE_txt.html
|
|
132
|
+
- doc/files/README_txt.html
|
|
133
|
+
- doc/fr_class_index.html
|
|
134
|
+
- doc/fr_file_index.html
|
|
135
|
+
- doc/fr_method_index.html
|
|
136
|
+
- doc/index.html
|
|
137
|
+
- doc/rdoc-style.css
|
|
44
138
|
- lib/stella
|
|
45
139
|
- lib/stella/adapter
|
|
46
140
|
- lib/stella/adapter/ab.rb
|
|
@@ -48,7 +142,6 @@ files:
|
|
|
48
142
|
- lib/stella/adapter/httperf.rb
|
|
49
143
|
- lib/stella/adapter/siege.rb
|
|
50
144
|
- lib/stella/cli
|
|
51
|
-
- lib/stella/cli/agents.rb
|
|
52
145
|
- lib/stella/cli/base.rb
|
|
53
146
|
- lib/stella/cli/language.rb
|
|
54
147
|
- lib/stella/cli/localtest.rb
|
|
@@ -61,23 +154,24 @@ files:
|
|
|
61
154
|
- lib/stella/storable.rb
|
|
62
155
|
- lib/stella/support.rb
|
|
63
156
|
- lib/stella/test
|
|
64
|
-
- lib/stella/test/
|
|
157
|
+
- lib/stella/test/daysummary.rb
|
|
65
158
|
- lib/stella/test/definition.rb
|
|
66
|
-
- lib/stella/test/
|
|
67
|
-
- lib/stella/test/
|
|
68
|
-
- lib/stella/test/
|
|
159
|
+
- lib/stella/test/runsummary.rb
|
|
160
|
+
- lib/stella/test/summarybase.rb
|
|
161
|
+
- lib/stella/test/testsummary.rb
|
|
69
162
|
- lib/stella/text
|
|
70
163
|
- lib/stella/text/resource.rb
|
|
71
164
|
- lib/stella/text.rb
|
|
72
165
|
- lib/stella.rb
|
|
73
166
|
- lib/utils
|
|
74
167
|
- lib/utils/crypto-key.rb
|
|
75
|
-
- lib/utils/escape.rb
|
|
76
168
|
- lib/utils/fileutil.rb
|
|
77
169
|
- lib/utils/httputil.rb
|
|
78
170
|
- lib/utils/mathutil.rb
|
|
79
171
|
- lib/utils/textgraph.rb
|
|
80
172
|
- lib/utils/timerutil.rb
|
|
173
|
+
- spec/base.rb
|
|
174
|
+
- spec/shell_spec.rb
|
|
81
175
|
- support/text
|
|
82
176
|
- support/text/en.yaml
|
|
83
177
|
- support/text/nl.yaml
|