Sha256: 2b4cf6b6b6f236501a50c5a16b77c88e36c5b4e60861fccde593865e36db699b

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

require 'trollop'

module SimplePerf
  module CLI
    class Stop
      include Shared

      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'

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
simple_perf-0.0.12 lib/simple_perf/cli/stop.rb
simple_perf-0.0.11 lib/simple_perf/cli/stop.rb
simple_perf-0.0.10 lib/simple_perf/cli/stop.rb
simple_perf-0.0.9 lib/simple_perf/cli/stop.rb
simple_perf-0.0.8 lib/simple_perf/cli/stop.rb
simple_perf-0.0.7 lib/simple_perf/cli/stop.rb
simple_perf-0.0.6 lib/simple_perf/cli/stop.rb