Sha256: 9afb3396d5dde07c9dbb6d1042f554dec6b4c3887a645708f2575d4b24071697

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

require 'trollop'

module SimplePerf
  module CLI
    class Start
      include Shared

      def execute
        opts = Trollop::options do
          version SimplePerf::VERSION
          banner <<-EOS

Starts JMeter java processes.

Usage:
      simple_perf start -e ENVIRONMENT -n STACK_NAME -t JMETER_TEST_PLAN
EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :name, "Stack name to manage", :type => :string
          opt :testplan, "JMeter Test Plan (.jmx file)", :type => :string
        end
        Trollop::die :environment, "is required but not specified" unless opts[:environment]
        Trollop::die :name, "is required but not specified" unless opts[:name]
        Trollop::die :testplan, "is required but not specified" unless opts[:testplan]

        config = Config.new.environment opts[:environment]

        ENV['SIMPLE_DEPLOY_SSH_KEY'] = config['key']
        ENV['SIMPLE_DEPLOY_SSH_USER'] = config['user']

        command = 'simple_deploy execute' +
                    ' -e ' + opts[:environment] +
                    ' -n ' + opts[:name] +
                    ' -c "cd ~/jmeter_test_files; nohup jmeter -Dsun.net.inetaddr.ttl=60 -n -t ' + opts[:testplan] + ' </dev/null >/dev/null 2>&1 &"' +
                    ' -l debug'

        Shared::pretty_print `#{command}`
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_perf-0.0.2 lib/simple_perf/cli/start.rb
simple_perf-0.0.1 lib/simple_perf/cli/start.rb