Sha256: 28056bf802b7308374b8e35b98595f1ad3ef3daaa0779877c36e7aaa4a9984a1

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

require 'trollop'

module SimplePerf
  module CLI
    class StartCustom
      include Shared

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

Starts JMeter or Gatling with custom shell script.

Usage:
      simple_perf start_custom -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 "cd ~/simple_perf_test_files; nohup ./start_custom.sh 2>&1 start_custom.log  &"' +
                    ' -l debug -x'

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simple_perf-0.0.18 lib/simple_perf/cli/start_custom.rb
simple_perf-0.0.17 lib/simple_perf/cli/start_custom.rb
simple_perf-0.0.15 lib/simple_perf/cli/start_custom.rb