class SimplePerf::CLI::Stop

Public Instance Methods

execute() click to toggle source
# File lib/simple_perf/cli/stop.rb, line 8
      def execute
        opts = Trollop::options do
          version SimplePerf::VERSION
          banner <<-EOS

Stops the current test by killing JMeter or Gatling java processes.

Usage:
      simple_perf stop -e ENVIRONMENT -p PROJECT_NAME
EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :project, "Project name to manage", :type => :string
        end
        Trollop::die :environment, "is required but not specified" unless opts[:environment]
        Trollop::die :project, "is required but not specified" unless opts[:project]

        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 ' + 'simple-perf-' + opts[:project] +
                    ' -c "killall java"' +
                    ' -l debug -x'

        Shared::pretty_print `#{command}`
      end