Sha256: 39129a8b28273f3c62574ec0c507f2e2e97b8e4df77e7c980f7141f4899a7ace

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

require 'trollop'

module SimplePerf
  module CLI
    class StartGatling
      include Shared

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

Starts Gatling java processes.

Usage:
      simple_perf start_gatling -e ENVIRONMENT -n STACK_NAME -s SIMULATION_NAME
EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :name, "Stack name to manage", :type => :string
          opt :simulation, "Gatling User simulation file (e.g. sample.SampleUserModelSimulation)", :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 :simulation, "is required but not specified" unless opts[:simulation]

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

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

        command = 'simple_deploy execute' +
                    ' -e ' + opts[:environment] +
                    ' -n ' + opts[:name] +
                    ' -c "cd ~/gatling_test_files; nohup ./gatling.sh ' + opts[:simulation] + ' < input > gatling.log  &"' +
                    ' -l debug'

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_perf-0.0.4 lib/simple_perf/cli/start_gatling.rb