retest 2.0.0.pre → 2.0.0.pre2

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: '09eb72dbc99fae984bbd2d445461bc8f6cb16fd68c2f176a510dab1836e2f93a'
4
+ data.tar.gz: ff5d41621be25bb672f4167804b5e443924a55b87836baa8a49f603eebab0688
5
5
  SHA512:
6
- metadata.gz: 3389785c3fdf525180b9203b87b316046a8ac4963f958ad70066d0a73be7fff879efd11878bfa12744aaf43b54c163ba509ec9248c104447b8746c8422f8ee1b
7
- data.tar.gz: a59c5006a914117cda203394d3734660d496fc38e65633be54afe62b441e47d6ef4c4d4adccdba9a91cc4d73c02d9ab86527da3e8b3fb0d24a11892a6214d910
6
+ metadata.gz: 403fb9d6050a23b540868ccb1bd2c2f98f2851ff18a0549efccfe1ba78f90e7c3593937dfc4aba0f7df51195c1c3022cf70175b1d593e6a3a63baf3fba440584
7
+ data.tar.gz: e75d88c1b43ed89afc25673be7a913c3f4156f6e3259584d470f0f757810c7a73e934d94a0087e56643d246830cdc130f18340a62eb24afcbb75bb10fd028a36
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.pre2)
5
5
  listen (~> 3.9)
6
6
  observer (~> 0.1)
7
7
  string-similarity (~> 2.1)
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,7 +47,7 @@ program = Retest::Program.new(
41
47
  )
42
48
 
43
49
  if options.params[:diff]
44
- program.diff(options.params[:diff])
50
+ program.run_synchronously { program.diff(options.params[:diff]) }
45
51
  return
46
52
  end
47
53
 
@@ -74,12 +80,26 @@ end
74
80
  loop do
75
81
  print_interactive_message
76
82
 
77
- input = $stdin.gets.chomp
83
+ puts "waiting for input"
84
+ input = $stdin.gets.to_s.chomp
85
+
86
+ puts "input is: #{input.inspect}"
87
+
78
88
  if prompt.question_asked?
79
89
  prompt_wr.puts input
80
90
  next
81
91
  end
82
92
 
93
+ if all_test_runner.running?
94
+ $stdin.puts input
95
+ next
96
+ end
97
+
98
+ if runner.running?
99
+ runner_wr.puts input
100
+ next
101
+ end
102
+
83
103
  case input
84
104
  when 'p', 'pause'
85
105
  program.pause
@@ -91,26 +111,22 @@ loop do
91
111
  Process.kill("INT", 0)
92
112
  when ''
93
113
  puts "Running last command\n"
94
- runner.run(nil, repository: repository)
114
+ program.run_synchronously { runner.run(nil, repository: repository) }
95
115
  when 'ra', 'run all'
96
116
  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
117
+ all_test_runner.run
103
118
  when /^di?f?f?\s(.*)$/
104
- program.diff($1)
119
+ program.run_synchronously { program.diff($1) }
105
120
  when 'h', 'help'
106
121
  puts <<~HELP
107
122
 
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
123
+ * 'h', 'help' # Prints help
124
+ * 'p', 'pause' # Pauses Retest. Tests aren't run until unpaused.
125
+ * 'u', 'unpause' # Unpauses Retest
126
+ * <ENTER> # Runs last changed triggered command
127
+ * 'ra, 'run all' # Runs all tests
128
+ * 'd', 'diff' [GIT BRANCH] # Run matching specs that changed from a target branch
129
+ * 'e', 'exit' # Exits Retest
114
130
  HELP
115
131
  else
116
132
  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
@@ -35,6 +35,23 @@ module Retest
35
35
  runner.run_all_tests command.format_batch(*test_files)
36
36
  end
37
37
 
38
+ def run_synchronously(runner: @runner, prompt: @repository.prompt)
39
+ raise ArgumentError, 'need a block' unless block_given?
40
+
41
+ begin
42
+ pause
43
+ old_command_stdin = runner.command_stdin
44
+ old_prompt_stdin = prompt.input
45
+ prompt.input = $stdin
46
+ runner.command_stdin = $stdin
47
+ yield
48
+ ensure
49
+ resume
50
+ runner.command_stdin = old_command_stdin
51
+ prompt.input = old_prompt_stdin
52
+ end
53
+ end
54
+
38
55
  private
39
56
 
40
57
  def clear_terminal
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.pre2"
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.pre2
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.