simple_perf 0.0.15 → 0.0.17

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4c11151da123300981ce70f315f209259801c486
4
+ data.tar.gz: ba7c88219ccde9a00f42ba131f9746e00d7e3cf1
5
+ SHA512:
6
+ metadata.gz: 1764256ad0c724a06298e98d43e1a4111fadeaf3aeb252e00c614a08eba5c126a0d7dd4547cc0bd8ff2bd144a9bc59674ae8cb2b85bb149f43e339d3f3455ef7
7
+ data.tar.gz: 3a559af7c2fff00a0a1cc9c02e778aabd81e51eea301c746a3160afd5e2cbf7aa6dd580352adbac8482e2e3866d65b58e39e03dfb7721403914b5b79f12bd243
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-1.9.3-p385
1
+ ruby-2.1.1
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Intuit Inc
1
+ Copyright (c) 2014 Intuit Inc
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  I use CAP for distributed jmeter or Gatling performance testing in AWS EC2.
2
+ Simple_perf is a command line interface that allows distribution of jmeter or gatling tests to multiple EC2 instances in AWS.
3
+ Tests are run on every instance through a single command (no more starting tests on individual instances). See the [wiki](https://github.com/intuit/simple_perf/wiki/How-to-get-started-with-simple_perf) for more
2
4
 
3
5
  Getting Started
4
6
  ---------------
@@ -26,3 +28,41 @@ Commands
26
28
  --------
27
29
 
28
30
  For a list of commands, run simple_perf -h. To get more information about each subcommand, append a -h after the subcommand. For example: **simple_perf status -h**.
31
+
32
+ Contributing
33
+ ------------
34
+
35
+ ####I want to help with coding
36
+ Awesome! Simple_perf is built with Ruby. To contribute, [fork the project](https://help.github.com/articles/fork-a-repo), make a change and submit a [pull request](https://help.github.com/articles/using-pull-requests).
37
+
38
+
39
+ ####I want to report a bug
40
+ If you've found a repeatable bug, submit it in the [issues list](https://github.com/intuit/simple_perf/issues) on GitHub. Please include the following:
41
+
42
+ * Descriptive Title
43
+ * Repeatable Steps
44
+ * What happens
45
+ * Any errors
46
+
47
+
48
+ ####I want to submit a suggestion
49
+ Submit all suggestions as issues with the label *enhancement* through the GitHub [issues list](https://github.com/intuit/simple_perf/issues).
50
+
51
+ Running
52
+ -------
53
+
54
+ The commands for simple_perf can be run once the gem is installed (gem install 'simple_perf') or a gemspec is created from a local copy.
55
+ To create a local gem, do the following:
56
+
57
+ * Fork the code
58
+ * Clone the forked repo to your local
59
+ * Change the version (if you've made changes and want to see them)
60
+ * Build the gemspec
61
+ ```
62
+ gem build simple_perf.gemspec
63
+ ```
64
+ * Install the new local gem
65
+ ```
66
+ gem install /my/directory/simple_perf/simple_perf-0.0.16.gem
67
+ ```
68
+
@@ -0,0 +1,59 @@
1
+ require 'trollop'
2
+ require 'aws-sdk'
3
+
4
+ module SimplePerf
5
+ module CLI
6
+ class GatlingResults
7
+ include Shared
8
+
9
+ def execute
10
+ opts = Trollop::options do
11
+ version SimplePerf::VERSION
12
+ banner <<-EOS
13
+
14
+ Moves simulations logs from EC2 simple_perf instances to s3 bucket for respective project.
15
+
16
+ Usage:
17
+ simple_perf gatling_results -e ENVIRONMENT -p PROJECT_NAME
18
+ EOS
19
+ opt :help, "Display Help"
20
+ opt :environment, "Set the target environment", :type => :string
21
+ opt :project, "Stack name to manage", :type => :string
22
+ end
23
+ Trollop::die :environment, "is required but not specified" unless opts[:environment]
24
+ Trollop::die :project, "is required but not specified" unless opts[:project]
25
+
26
+
27
+ config = Config.new.environment opts[:environment]
28
+
29
+ ENV['SIMPLE_DEPLOY_SSH_KEY'] = config['local_pem']
30
+ ENV['SIMPLE_DEPLOY_SSH_USER'] = config['user']
31
+
32
+ AWS.config(
33
+ :access_key_id => config['access_key'],
34
+ :secret_access_key => config['secret_key'])
35
+
36
+ command = 'simple_deploy list' +
37
+ ' -e ' + opts[:environment] +
38
+ ' | grep ' + opts[:project] + '-s3'
39
+ bucket_stack = `#{command}`
40
+
41
+ command = 'simple_deploy outputs' +
42
+ ' -e ' + opts[:environment] +
43
+ ' -n ' + bucket_stack
44
+ bucket_name = `#{command}`
45
+ bucket_name = bucket_name.split(' ')[1]
46
+
47
+
48
+ command = 'simple_deploy execute' +
49
+ ' -e ' + opts[:environment] +
50
+ ' -n ' + 'simple-perf-' + opts[:project] +
51
+ ' -c "~/sync_to_s3.sh "' + bucket_name +
52
+ ' -l debug -x'
53
+
54
+ Shared::pretty_print `#{command}`
55
+
56
+ end
57
+ end
58
+ end
59
+ end
@@ -19,6 +19,7 @@ EOS
19
19
  opt :environment, "Set the target environment", :type => :string
20
20
  opt :project, "Project name to manage", :type => :string
21
21
  opt :simulation, "Gatling User simulation file (e.g. sample.SampleUserModelSimulation)", :type => :string
22
+ opt :reports, "Pass 'nr' for no reporting.", :type => :string
22
23
  end
23
24
  Trollop::die :environment, "is required but not specified" unless opts[:environment]
24
25
  Trollop::die :project, "is required but not specified" unless opts[:project]
@@ -29,10 +30,15 @@ EOS
29
30
  ENV['SIMPLE_DEPLOY_SSH_KEY'] = config['local_pem']
30
31
  ENV['SIMPLE_DEPLOY_SSH_USER'] = config['user']
31
32
 
33
+ report = opts[:reports].to_s
34
+ if defined?(report) && (report != '')
35
+ report = " -#{report}"
36
+ end
37
+
32
38
  command = 'simple_deploy execute' +
33
39
  ' -e ' + opts[:environment] +
34
40
  ' -n ' + 'simple-perf-' + opts[:project] +
35
- ' -c "cd ~/simple_perf_test_files; nohup ./gatling.sh ' + opts[:simulation] + ' < input > gatling.log &"' +
41
+ ' -c "cd ~/simple_perf_test_files; nohup ./gatling.sh ' + opts[:simulation] + report + ' < input > gatling.log &"' +
36
42
  ' -l debug -x'
37
43
 
38
44
  Shared::pretty_print `#{command}`
@@ -15,6 +15,7 @@ require 'simple_perf/cli/deploy'
15
15
  require 'simple_perf/cli/start_jmeter'
16
16
  require 'simple_perf/cli/start_gatling'
17
17
  require 'simple_perf/cli/start_custom'
18
+ require 'simple_perf/cli/gatling_results'
18
19
 
19
20
  module SimplePerf
20
21
  module CLI
@@ -48,14 +49,16 @@ module SimplePerf
48
49
  CLI::Update.new.execute
49
50
  when 'chaos'
50
51
  CLI::Chaos.new.execute
52
+ when 'gatling_results'
53
+ CLI::GatlingResults.new.execute
51
54
  when '-h'
52
- puts "simple_perf [start_jmeter|start_gatling|start_custom|stop|deploy|create_jmeter|create_gatling|create_bucket|destroy|status|results|update|chaos] [options]"
55
+ puts "simple_perf [start_jmeter|start_gatling|start_custom|stop|deploy|create_jmeter|create_gatling|create_bucket|destroy|status|results|update|chaos|gatling_results] [options]"
53
56
  puts "Append -h for help on specific subcommand."
54
57
  when '-v'
55
58
  puts SimplePerf::VERSION
56
59
  else
57
60
  puts "Unknown command: '#{cmd}'."
58
- puts "simple_perf [start_jmeter|start_gatling|start_custom|stop|deploy|create_jmeter|create_gatling|create_bucket|destroy|status|results|update|chaos] [options]"
61
+ puts "simple_perf [start_jmeter|start_gatling|start_custom|stop|deploy|create_jmeter|create_gatling|create_bucket|destroy|status|results|update|chaos|gatling_results] [options]"
59
62
  puts "Append -h for help on specific subcommand."
60
63
  exit 1
61
64
  end
@@ -199,17 +199,6 @@
199
199
  },
200
200
 
201
201
  "gatling": {
202
- "commands": {
203
-
204
- "modify_etc_sudoers_1": {
205
- "command": "sed -i 's/Defaults requiretty/#Defaults requiretty/' /etc/sudoers"
206
- },
207
-
208
- "modify_etc_sudoers_2": {
209
- "command": "sed -i 's/Defaults !visiblepw/#Defaults !visiblepw/' /etc/sudoers"
210
- }
211
-
212
- },
213
202
  "files": {
214
203
 
215
204
  "/home/ec2-user/sync_test_files.sh": {
@@ -224,10 +213,19 @@
224
213
  "mode": "000770"
225
214
  },
226
215
 
216
+ "/home/ec2-user/sync_to_s3.sh": {
217
+ "content": { "Fn::Join": [ "", [ "#!/bin/bash", "\n",
218
+ "cd /opt/gatling/results/taxusermodelsimulation*", "\n",
219
+ "s3cmd sync simulation.log s3://$1/logs/simulation$HOSTNAME.log"] ] },
220
+ "owner": "ec2-user",
221
+ "group": "ec2-user",
222
+ "mode": "000770"
223
+ },
224
+
227
225
  "/home/ec2-user/simple_perf_test_files/gatling.sh": {
228
226
  "content": { "Fn::Join": [ "", [ "#!/bin/bash", "\n",
229
227
  "export GATLING_HOME=/opt/gatling", "\n",
230
- "$GATLING_HOME/bin/gatling.sh -df ~/simple_perf_test_files/user-files/data -sf ~/simple_perf_test_files/user-files/simulations -s $1", "\n" ] ] },
228
+ "$GATLING_HOME/bin/gatling.sh -df ~/simple_perf_test_files/user-files/data -sf ~/simple_perf_test_files/user-files/simulations -s $1 $2", "\n" ] ] },
231
229
  "owner": "ec2-user",
232
230
  "group": "ec2-user",
233
231
  "mode": "000770"
@@ -1,3 +1,3 @@
1
1
  module SimplePerf
2
- VERSION = "0.0.15"
2
+ VERSION = "0.0.17"
3
3
  end
data/simple_perf.gemspec CHANGED
@@ -19,10 +19,10 @@ Gem::Specification.new do |s|
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ["lib"]
21
21
 
22
- s.add_development_dependency "rake"
23
- s.add_development_dependency "rspec", "~> 2.11.0"
22
+ s.add_development_dependency 'rake', '10.3.1'
23
+ s.add_development_dependency 'rspec', '2.14.1'
24
24
 
25
- s.add_runtime_dependency "trollop", "2.0"
26
- s.add_runtime_dependency "simple_deploy", "0.8.0"
27
- s.add_runtime_dependency "aws-sdk", ">= 1.9.5"
28
- end
25
+ s.add_runtime_dependency 'trollop', '2.0'
26
+ s.add_runtime_dependency 'simple_deploy', '0.8.2'
27
+ s.add_runtime_dependency 'aws-sdk', '1.38.0'
28
+ end
metadata CHANGED
@@ -1,52 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_perf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
5
- prerelease:
4
+ version: 0.0.17
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jimmy Armitage
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-02-27 00:00:00.000000000 Z
11
+ date: 2014-04-22 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '='
20
18
  - !ruby/object:Gem::Version
21
- version: '0'
19
+ version: 10.3.1
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '='
28
25
  - !ruby/object:Gem::Version
29
- version: '0'
26
+ version: 10.3.1
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rspec
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - '='
36
32
  - !ruby/object:Gem::Version
37
- version: 2.11.0
33
+ version: 2.14.1
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - '='
44
39
  - !ruby/object:Gem::Version
45
- version: 2.11.0
40
+ version: 2.14.1
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: trollop
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - '='
52
46
  - !ruby/object:Gem::Version
@@ -54,7 +48,6 @@ dependencies:
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - '='
60
53
  - !ruby/object:Gem::Version
@@ -62,35 +55,31 @@ dependencies:
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: simple_deploy
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - '='
68
60
  - !ruby/object:Gem::Version
69
- version: 0.8.0
61
+ version: 0.8.2
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - '='
76
67
  - !ruby/object:Gem::Version
77
- version: 0.8.0
68
+ version: 0.8.2
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: aws-sdk
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - '='
84
74
  - !ruby/object:Gem::Version
85
- version: 1.9.5
75
+ version: 1.38.0
86
76
  type: :runtime
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - '='
92
81
  - !ruby/object:Gem::Version
93
- version: 1.9.5
82
+ version: 1.38.0
94
83
  description: I am designed to control a JMeter or Gatling army of AWS EC2 instances
95
84
  email:
96
85
  - mrjimmy410@gmail.com
@@ -99,9 +88,9 @@ executables:
99
88
  extensions: []
100
89
  extra_rdoc_files: []
101
90
  files:
102
- - .gitignore
103
- - .ruby-gemset
104
- - .ruby-version
91
+ - ".gitignore"
92
+ - ".ruby-gemset"
93
+ - ".ruby-version"
105
94
  - CHANGELOG
106
95
  - Gemfile
107
96
  - LICENSE
@@ -116,6 +105,7 @@ files:
116
105
  - lib/simple_perf/cli/create_jmeter.rb
117
106
  - lib/simple_perf/cli/deploy.rb
118
107
  - lib/simple_perf/cli/destroy.rb
108
+ - lib/simple_perf/cli/gatling_results.rb
119
109
  - lib/simple_perf/cli/results.rb
120
110
  - lib/simple_perf/cli/shared.rb
121
111
  - lib/simple_perf/cli/start_custom.rb
@@ -134,27 +124,26 @@ files:
134
124
  homepage: https://github.com/intuit/simple_perf
135
125
  licenses:
136
126
  - MIT
127
+ metadata: {}
137
128
  post_install_message:
138
129
  rdoc_options: []
139
130
  require_paths:
140
131
  - lib
141
132
  required_ruby_version: !ruby/object:Gem::Requirement
142
- none: false
143
133
  requirements:
144
- - - ! '>='
134
+ - - ">="
145
135
  - !ruby/object:Gem::Version
146
136
  version: '0'
147
137
  required_rubygems_version: !ruby/object:Gem::Requirement
148
- none: false
149
138
  requirements:
150
- - - ! '>='
139
+ - - ">="
151
140
  - !ruby/object:Gem::Version
152
141
  version: '0'
153
142
  requirements: []
154
143
  rubyforge_project: simple_perf
155
- rubygems_version: 1.8.25
144
+ rubygems_version: 2.2.2
156
145
  signing_key:
157
- specification_version: 3
146
+ specification_version: 4
158
147
  summary: I help with performance testing
159
148
  test_files:
160
149
  - spec/spec_helper.rb