retest 2.0.0.pre → 2.0.0.pre1

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: 8619aafdd8a06156dcd417ca5ed6dcf453acacdf025a3fba15578d4caba4caf9
4
- data.tar.gz: ecee718559ad1ace718eeec856bab148aa37aa05a75a427dc060f52c4961a2c2
3
+ metadata.gz: 8aa95d85d566c3271485de99e777fe77a8821e29a06332752ac5e9e4b3dcc7aa
4
+ data.tar.gz: 812a2acebb89af6544afbbb26b56f81c62c9cd5ef2cf41dd5b39f1a0d5f8c1b6
5
5
  SHA512:
6
- metadata.gz: 3389785c3fdf525180b9203b87b316046a8ac4963f958ad70066d0a73be7fff879efd11878bfa12744aaf43b54c163ba509ec9248c104447b8746c8422f8ee1b
7
- data.tar.gz: a59c5006a914117cda203394d3734660d496fc38e65633be54afe62b441e47d6ef4c4d4adccdba9a91cc4d73c02d9ab86527da3e8b3fb0d24a11892a6214d910
6
+ metadata.gz: d4e43b8ad34890700ff78ab2d66a594e102f23ff8144c3dc55a50b2a850b5ea6cbe8a09707348983e7518387e15759f972cb52275b7e3e94f47b4fd1a52ccf06
7
+ data.tar.gz: 7e51d2fd6ffcb78ca8739fb703a71161c84eb5ee3f3f4cd1b406bc7c364d92f04d077c720b4c94ead0faa0393df2209051a5abcaac86bed64e5b7ad091a76b7e
data/Gemfile CHANGED
@@ -5,4 +5,4 @@ gemspec
5
5
 
6
6
  gem "rake", "~> 13.0"
7
7
  gem "minitest", "~> 5.0"
8
- gem "byebug"
8
+ gem "byebug", require: false
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- retest (2.0.0.pre)
4
+ retest (2.0.0.pre1)
5
5
  listen (~> 3.9)
6
6
  observer (~> 0.1)
7
7
  string-similarity (~> 2.1)
@@ -11,7 +11,7 @@ GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
13
  byebug (11.1.3)
14
- ffi (1.17.0)
14
+ ffi (1.16.3)
15
15
  listen (3.9.0)
16
16
  rb-fsevent (~> 0.10, >= 0.10.3)
17
17
  rb-inotify (~> 0.9, >= 0.9.10)
data/exe/retest CHANGED
@@ -4,6 +4,7 @@ require 'retest'
4
4
 
5
5
  $stdout.sync = true
6
6
  prompt_rd, prompt_wr = IO.pipe
7
+ runner_rd, runner_wr = IO.pipe
7
8
 
8
9
  Signal.trap(:INT) do
9
10
  $stdout.puts "Goodbye"
@@ -27,9 +28,14 @@ end
27
28
  prompt = Retest::Prompt.new(input: prompt_rd)
28
29
  repository = Retest::Repository.new(files: Retest::VersionControl.files, prompt: prompt)
29
30
  command = Retest::Command.for_options(options)
30
- runner = Retest::Runners.runner_for(command.to_s)
31
+ runner = Retest::Runners.runner_for(command.to_s, command_stdin: runner_rd)
31
32
  sounds = Retest::Sounds.for(options)
32
33
 
34
+ # All test runner
35
+ all_test_command = Retest::Command.for_options(options.merge(%w[--all]), stdout: nil)
36
+ all_test_runner = Retest::Runners.runner_for(all_test_command.to_s)
37
+ all_test_runner.add_observer(sounds)
38
+
33
39
  sounds.play(:start)
34
40
  runner.add_observer(sounds)
35
41
  prompt.add_observer(sounds)
@@ -41,6 +47,8 @@ program = Retest::Program.new(
41
47
  )
42
48
 
43
49
  if options.params[:diff]
50
+ prompt.input = $stdin
51
+ runner.command_stdin = $stdin
44
52
  program.diff(options.params[:diff])
45
53
  return
46
54
  end
@@ -74,12 +82,26 @@ end
74
82
  loop do
75
83
  print_interactive_message
76
84
 
77
- input = $stdin.gets.chomp
85
+ puts "waiting for input"
86
+ input = $stdin.gets.to_s.chomp
87
+
88
+ puts "input is: #{input.inspect}"
89
+
78
90
  if prompt.question_asked?
79
91
  prompt_wr.puts input
80
92
  next
81
93
  end
82
94
 
95
+ if all_test_runner.running?
96
+ $stdin.puts input
97
+ next
98
+ end
99
+
100
+ if runner.running?
101
+ runner_wr.puts input
102
+ next
103
+ end
104
+
83
105
  case input
84
106
  when 'p', 'pause'
85
107
  program.pause
@@ -90,27 +112,29 @@ loop do
90
112
  when 'e', 'exit'
91
113
  Process.kill("INT", 0)
92
114
  when ''
93
- puts "Running last command\n"
94
- runner.run(nil, repository: repository)
115
+ begin
116
+ puts "Running last command\n"
117
+ old_stdin = runner.command_stdin
118
+ runner.command_stdin = $stdin
119
+ runner.run(nil, repository: repository)
120
+ ensure
121
+ runner.command_stdin = old_stdin
122
+ end
95
123
  when 'ra', 'run all'
96
124
  puts "Running all tests\n"
97
- tmp_opts = options.dup.tap { |opts| opts.params[:all] = true }
98
- tmp_cmd = Retest::Command.for_options(tmp_opts)
99
- tmp_runner = Retest::Runners.runner_for(tmp_cmd.to_s)
100
- tmp_runner.add_observer(sounds)
101
- tmp_runner.run
102
- tmp_runner.delete_observers
125
+ all_test_runner.run
103
126
  when /^di?f?f?\s(.*)$/
104
127
  program.diff($1)
105
128
  when 'h', 'help'
106
129
  puts <<~HELP
107
130
 
108
- * 'h' or 'help' -> Prints help
109
- * 'p' or 'pause' -> Pauses Retest. Tests aren't run until unpaused.
110
- * 'u' or 'unpause' -> Unpauses Retest
111
- * <Enter> -> Runs last changed triggered command
112
- * 'ra', 'run all' -> Runs all tests
113
- * 'e' or 'exit' -> Exits Retest
131
+ * 'h', 'help' # Prints help
132
+ * 'p', 'pause' # Pauses Retest. Tests aren't run until unpaused.
133
+ * 'u', 'unpause' # Unpauses Retest
134
+ * <ENTER> # Runs last changed triggered command
135
+ * 'ra, 'run all' # Runs all tests
136
+ * 'd', 'diff' [GIT BRANCH] # Run matching specs that changed from a target branch
137
+ * 'e', 'exit' # Exits Retest
114
138
  HELP
115
139
  else
116
140
  puts "Unknown interactive command #{input}\n"
@@ -7,12 +7,8 @@ module Retest
7
7
  class Command
8
8
  extend Forwardable
9
9
 
10
- def self.for_options(options)
11
- new(options: options).command
12
- end
13
-
14
- def self.for_setup(setup)
15
- new(setup: setup).command
10
+ def self.for_options(options, stdout: $stdout)
11
+ new(options: options, stdout: stdout).command
16
12
  end
17
13
 
18
14
  def_delegator :setup, :type
@@ -51,12 +47,16 @@ module Retest
51
47
  end
52
48
 
53
49
  def default_command
54
- @stdout.puts "Setup identified: [#{type.upcase}]. Using command: '#{setup_command}'"
50
+ log "Setup identified: [#{type.upcase}]. Using command: '#{setup_command}'"
55
51
  setup_command
56
52
  end
57
53
 
58
54
  private
59
55
 
56
+ def log(message)
57
+ @stdout&.puts(message)
58
+ end
59
+
60
60
  def rspec_command
61
61
  Rspec.new(all: full_suite?)
62
62
  end
@@ -158,5 +158,9 @@ module Retest
158
158
  def extension
159
159
  Regexp.new(params[:ext])
160
160
  end
161
+
162
+ def merge(options = [])
163
+ self.class.new(@args.dup.concat(options))
164
+ end
161
165
  end
162
166
  end
data/lib/retest/prompt.rb CHANGED
@@ -28,7 +28,7 @@ module Retest
28
28
  Enter the file number now:
29
29
  QUESTION
30
30
  output.print("> ")
31
- options.values[input.gets.chomp.to_i]
31
+ options.values[input.gets.to_s.chomp.to_i]
32
32
  end
33
33
  end
34
34
 
@@ -3,10 +3,11 @@ module Retest
3
3
  class Runner
4
4
  include Observable
5
5
 
6
- attr_accessor :command, :stdout
7
- def initialize(command, stdout: $stdout)
6
+ attr_accessor :command, :stdout, :command_stdin
7
+ def initialize(command, stdout: $stdout, command_stdin: $stdin)
8
8
  @stdout = stdout
9
9
  @command = command
10
+ @command_stdin = command_stdin
10
11
  end
11
12
 
12
13
  def ==(obj)
@@ -18,19 +19,24 @@ module Retest
18
19
  end
19
20
 
20
21
  def run_all_tests(tests_string)
21
- log("Test File Selected: #{tests_string}")
22
- system_run command.gsub('<test>', tests_string)
22
+ raise NotSupportedError, 'cannot run multiple test files against this command'
23
23
  end
24
24
 
25
25
  def sync(added:, removed:)
26
26
  end
27
27
 
28
+ def running?
29
+ @running
30
+ end
31
+
28
32
  private
29
33
 
30
34
  def system_run(command)
31
- result = system(command) ? :tests_pass : :tests_fail
35
+ @running = true
36
+ result = system(command, in: @command_stdin) ? :tests_pass : :tests_fail
32
37
  changed
33
38
  notify_observers(result)
39
+ @running = false
34
40
  end
35
41
 
36
42
  def log(message)
@@ -14,6 +14,11 @@ module Retest
14
14
  system_run command.gsub('<test>', cached_test_file)
15
15
  end
16
16
 
17
+ def run_all_tests(tests_string)
18
+ log("Test File Selected: #{tests_string}")
19
+ system_run command.gsub('<test>', tests_string)
20
+ end
21
+
17
22
  def sync(added:, removed:)
18
23
  purge_test_file(removed)
19
24
  end
@@ -5,9 +5,11 @@ require_relative 'runners/variable_runner'
5
5
 
6
6
  module Retest
7
7
  module Runners
8
+ class NotSupportedError < StandardError; end
9
+
8
10
  module_function
9
11
 
10
- def runner_for(command)
12
+ def runner_for(command, **opts)
11
13
  for_test = command.include?('<test>')
12
14
  for_change = command.include?('<changed>')
13
15
 
@@ -15,7 +17,7 @@ module Retest
15
17
  elsif for_test then TestRunner
16
18
  elsif for_change then ChangeRunner
17
19
  else Runner
18
- end.new command
20
+ end.new command, **opts
19
21
  end
20
22
  end
21
23
  end
@@ -1,3 +1,3 @@
1
1
  module Retest
2
- VERSION = "2.0.0.pre"
2
+ VERSION = "2.0.0.pre1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: retest
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre
4
+ version: 2.0.0.pre1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandre Barret
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-13 00:00:00.000000000 Z
11
+ date: 2024-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: string-similarity
@@ -140,11 +140,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
140
140
  version: 2.5.0
141
141
  required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ">="
143
+ - - ">"
144
144
  - !ruby/object:Gem::Version
145
- version: '0'
145
+ version: 1.3.1
146
146
  requirements: []
147
- rubygems_version: 3.5.3
147
+ rubygems_version: 3.1.6
148
148
  signing_key:
149
149
  specification_version: 4
150
150
  summary: A simple command line tool to watch file change and run its matching spec.