poke-your-api 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19cf4f80beebc15282040b29e55cad480f9aa1d351a18fc8f072bba6285eb565
4
- data.tar.gz: a2f33c5fdbc67ff3d3c1c01c058b849bb0020cadf101fe31337d7bc7661301a6
3
+ metadata.gz: ca92137a00063a26c6f3a762768653bc5e0681b404ae8453a3c5595fc8a44075
4
+ data.tar.gz: 762b370cd9f20cf0f8fbc73f9c01e77168daeaf55162060d0509020e9da7e71f
5
5
  SHA512:
6
- metadata.gz: 7e7eb02dcd6d9158ab5fb7aded2c93333d9b88a4f1c5c4cc38d76b50c456767ae9adc26fe4e23cab390d4ecea06868363c2800de65b691e2612376190d6f67f3
7
- data.tar.gz: 1d05adfd7df8e6c97b4fdc54aae8e3f6a7a2b7f160ba9fdf81ccc322880340e73606949e7b78d2575374d86c919babd7cc96f6a1ef210c0ae0cf888677180d6e
6
+ metadata.gz: 04c21eb78b1cd3d1f4b3f62e028ed02d24f7a8ea05a3fac7f88c2d108c7a45e8629ab466af52e025e58738580ae863b0733daba322cf8e601d8ce0154c6dce4e
7
+ data.tar.gz: 8da8bafa688a78a389a5399334cef7dbddce7705476617ab639b99982bf8dd4659869877f849ddc590bcb4ac5bc995b2b31ec14e198cca65b456e51a7e892c03
data/lib/poke/cli.rb CHANGED
@@ -48,6 +48,19 @@ module Poke
48
48
  end
49
49
  end
50
50
 
51
+ desc 'speed', 'Run a speed test for an endpoint'
52
+ method_option :help, aliases: '-h', type: :boolean, desc: 'Display usage information'
53
+ method_option :env, aliases: '-e', type: :string, desc: 'Set target environment'
54
+ method_option :name, aliases: '-n', type: :string, desc: 'Find request by name'
55
+ def speed(*)
56
+ if options[:help]
57
+ invoke :help, ['curl']
58
+ else
59
+ require_relative 'commands/speed'
60
+ Poke::Commands::Speed.new(options).execute
61
+ end
62
+ end
63
+
51
64
  desc 'response', 'Print out last response'
52
65
  method_option :help, aliases: '-h', type: :boolean, desc: 'Display usage information'
53
66
  def response(*)
@@ -0,0 +1,103 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../command'
4
+ require_relative '../group'
5
+ require_relative '../config'
6
+ require_relative '../paint'
7
+ require_relative '../last_recently_used'
8
+
9
+ require 'pathname'
10
+ require 'pastel'
11
+
12
+ require 'tty-command'
13
+ require 'tty-editor'
14
+ require 'tty-table'
15
+
16
+ module Poke
17
+ module Commands
18
+ class Speed < Poke::Command
19
+ WRITE_OUT_FIELDS = {
20
+ 'response_code' => ->(e) { e },
21
+ 'time_total' => ->(e) { format('%.2fms', (e * 1000)) }
22
+ }.freeze
23
+
24
+ private
25
+
26
+ def run(output: $stdout, errors: $stderr)
27
+ if (name = @options.fetch(:name, nil))
28
+ request = Request.find_by_name(Config.find_request_name_by_alias(name))
29
+ else
30
+ errors << "Please define the target endpoint with -n or --name\n"
31
+ return
32
+ end
33
+
34
+ request.use!
35
+ request.group.use!
36
+
37
+ env = @options.fetch(:env, request.group.config.default_env)
38
+ raise Poke::GroupConfig::InvalidEnv unless request.group.config.valid_env?(env)
39
+
40
+ curl_command, comments = build_command(request.path)
41
+
42
+ table = TTY::Table.new(
43
+ [['ENV', env]] +
44
+ request.group.config.variables(env).to_a +
45
+ [['CMD', curl_command]] +
46
+ [['COMMENTS', comments]]
47
+ )
48
+ errors << table.render(:unicode, multiline: true, padding: [0, 1, 0, 1])
49
+ errors << "\n\n"
50
+
51
+
52
+ times = []
53
+ count = @options.fetch(:count, 10)
54
+
55
+ errors << "Running speed test for #{request.name} #{count} times\n\n"
56
+
57
+ count.to_i.times do
58
+ command = TTY::Command.new(printer: :null).run!(
59
+ request.group.config.variables(env),
60
+ curl_command
61
+ )
62
+
63
+ if command.failure?
64
+ output << Pastel.new.decorate(command.err, :red)
65
+ else
66
+ errors << Pastel.new.decorate(command.err, :green)
67
+ errors << "\n"
68
+ stats = JSON.parse(command.out)
69
+ times << stats['time_total']
70
+
71
+ table = TTY::Table.new(WRITE_OUT_FIELDS.map { |field, lambda| [field, lambda.call(stats[field])] }.to_a)
72
+ errors << table.render(:unicode, padding: [0, 1, 0, 1])
73
+ errors << "\n\n"
74
+ end
75
+ end
76
+ errors << "Run count: #{count}\nAverage time: #{format('%.2fms', (times.sum / times.size * 1000))}\n\n"
77
+ end
78
+
79
+ # extract
80
+ def build_command(path)
81
+ out = TTY::Command.new(printer: :null).run("cat #{path}").out
82
+ out << "\n" unless out[-1] == "\n"
83
+
84
+ command_lines = out.split(" \\\n").map(&:strip)
85
+
86
+ comments = command_lines.filter { |line| line.start_with?('#') }.join(" \\\n")
87
+ command_lines = command_lines.reject { |line| line.start_with?('#') }
88
+ command_lines += additional_curl_params
89
+
90
+ [command_lines.join(" \\\n "), comments]
91
+ end
92
+
93
+ # rubocop:disable Style/FormatStringToken
94
+ def additional_curl_params
95
+ [
96
+ "-o #{Poke::Config.response_path}",
97
+ '-w "%{json}"'
98
+ ]
99
+ end
100
+ # rubocop:enable Style/FormatStringToken
101
+ end
102
+ end
103
+ end
data/lib/poke/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Poke
4
- VERSION = '0.2.2'
4
+ VERSION = '0.2.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: poke-your-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Bator
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-21 00:00:00.000000000 Z
11
+ date: 2024-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pastel
@@ -130,6 +130,7 @@ files:
130
130
  - lib/poke/commands/lru/cat.rb
131
131
  - lib/poke/commands/lru/reset.rb
132
132
  - lib/poke/commands/response.rb
133
+ - lib/poke/commands/speed.rb
133
134
  - lib/poke/config.rb
134
135
  - lib/poke/group.rb
135
136
  - lib/poke/group_config.rb
@@ -158,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
159
  - !ruby/object:Gem::Version
159
160
  version: '0'
160
161
  requirements: []
161
- rubygems_version: 3.5.5
162
+ rubygems_version: 3.4.1
162
163
  signing_key:
163
164
  specification_version: 4
164
165
  summary: manage curl requests