retest 2.0.0.pre1 → 2.0.0.pre3
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 +4 -4
- data/Gemfile.lock +2 -2
- data/exe/retest +28 -50
- data/lib/retest/program/pausable.rb +4 -0
- data/lib/retest/program.rb +12 -14
- data/lib/retest/runners/runner.rb +3 -4
- data/lib/retest/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a4544ea33941c52a493aab49a02f293cf6539e08db2482a858840f49e1ea1e6
|
4
|
+
data.tar.gz: fe2125582bec55b07b0e224ec196f37ed9f9c78c7f21dfd91e5e518ccb92c3d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7971f9c3dc66d7e0389d859f8ddb6d817474c000da3314f4fd4a916fd35c4ea34bd0d0663884769e149739384785a7bd702c72df2b0e898f0e963ba9edd4425c
|
7
|
+
data.tar.gz: 7c3e6a114f9693c2d47fb9ed59e5c5d8337eeb9b1df02bd0cb1f7519128a63b9618ec5873a66264d712d009532153c4917f9f81e1207e561a0e729e31ab8e082
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
retest (2.0.0.
|
4
|
+
retest (2.0.0.pre3)
|
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.
|
14
|
+
ffi (1.17.0)
|
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
@@ -3,13 +3,11 @@
|
|
3
3
|
require 'retest'
|
4
4
|
|
5
5
|
$stdout.sync = true
|
6
|
-
|
7
|
-
runner_rd, runner_wr = IO.pipe
|
8
|
-
|
6
|
+
listen_rd, listen_wr = IO.pipe
|
9
7
|
Signal.trap(:INT) do
|
10
8
|
$stdout.puts "Goodbye"
|
11
|
-
|
12
|
-
|
9
|
+
listen_rd.close
|
10
|
+
listen_wr.close
|
13
11
|
exit
|
14
12
|
end
|
15
13
|
|
@@ -25,10 +23,10 @@ if options.version?
|
|
25
23
|
return
|
26
24
|
end
|
27
25
|
|
28
|
-
prompt = Retest::Prompt.new
|
26
|
+
prompt = Retest::Prompt.new
|
29
27
|
repository = Retest::Repository.new(files: Retest::VersionControl.files, prompt: prompt)
|
30
28
|
command = Retest::Command.for_options(options)
|
31
|
-
runner = Retest::Runners.runner_for(command.to_s
|
29
|
+
runner = Retest::Runners.runner_for(command.to_s)
|
32
30
|
sounds = Retest::Sounds.for(options)
|
33
31
|
|
34
32
|
# All test runner
|
@@ -47,8 +45,6 @@ program = Retest::Program.new(
|
|
47
45
|
)
|
48
46
|
|
49
47
|
if options.params[:diff]
|
50
|
-
prompt.input = $stdin
|
51
|
-
runner.command_stdin = $stdin
|
52
48
|
program.diff(options.params[:diff])
|
53
49
|
return
|
54
50
|
end
|
@@ -63,46 +59,21 @@ end
|
|
63
59
|
$stdout.puts launching_message
|
64
60
|
Retest.listen(options) do |modified, added, removed|
|
65
61
|
begin
|
66
|
-
|
67
|
-
|
68
|
-
|
62
|
+
repository.sync(added: added, removed: removed)
|
63
|
+
runner.sync(added: added, removed: removed)
|
64
|
+
|
65
|
+
listen_wr.puts "file changed: #{(modified + added).first}"
|
69
66
|
rescue => e
|
70
67
|
$stdout.puts "Something went wrong: #{e.message}"
|
71
68
|
end
|
72
69
|
end
|
73
70
|
$stdout.puts "Ready to refactor! You can make file changes now"
|
74
71
|
|
75
|
-
|
76
|
-
|
77
|
-
def print_interactive_message
|
78
|
-
puts "\nType interactive command and press enter"
|
79
|
-
print(">\s")
|
80
|
-
end
|
81
|
-
|
82
|
-
loop do
|
83
|
-
print_interactive_message
|
84
|
-
|
85
|
-
puts "waiting for input"
|
86
|
-
input = $stdin.gets.to_s.chomp
|
87
|
-
|
88
|
-
puts "input is: #{input.inspect}"
|
89
|
-
|
90
|
-
if prompt.question_asked?
|
91
|
-
prompt_wr.puts input
|
92
|
-
next
|
93
|
-
end
|
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
|
-
|
72
|
+
def run_command(input:, program:, all_test_runner:)
|
105
73
|
case input
|
74
|
+
when /^file changed:\s(.*)$/
|
75
|
+
puts "File changed: #{$1}"
|
76
|
+
program.run($1)
|
106
77
|
when 'p', 'pause'
|
107
78
|
program.pause
|
108
79
|
puts "Program is paused\n"
|
@@ -112,14 +83,8 @@ loop do
|
|
112
83
|
when 'e', 'exit'
|
113
84
|
Process.kill("INT", 0)
|
114
85
|
when ''
|
115
|
-
|
116
|
-
|
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
|
86
|
+
puts "Running last command\n"
|
87
|
+
program.run(nil, force_run: true)
|
123
88
|
when 'ra', 'run all'
|
124
89
|
puts "Running all tests\n"
|
125
90
|
all_test_runner.run
|
@@ -140,3 +105,16 @@ loop do
|
|
140
105
|
puts "Unknown interactive command #{input}\n"
|
141
106
|
end
|
142
107
|
end
|
108
|
+
|
109
|
+
connections = [$stdin, listen_rd]
|
110
|
+
loop do
|
111
|
+
puts "\nType interactive command and press enter"
|
112
|
+
print(">\s")
|
113
|
+
|
114
|
+
ready = IO.select(connections)
|
115
|
+
readable_connections = ready[0]
|
116
|
+
readable_connections.each do |conn|
|
117
|
+
data = conn.readpartial(4096)
|
118
|
+
run_command(input: data.to_s.chomp, program: program, all_test_runner: all_test_runner)
|
119
|
+
end
|
120
|
+
end
|
data/lib/retest/program.rb
CHANGED
@@ -4,39 +4,37 @@ module Retest
|
|
4
4
|
class Program
|
5
5
|
include Pausable
|
6
6
|
|
7
|
-
attr_accessor :runner, :repository, :command
|
8
|
-
def initialize(runner: nil, repository: nil, command: nil, clear_window: true)
|
7
|
+
attr_accessor :runner, :repository, :command, :stdout
|
8
|
+
def initialize(runner: nil, repository: nil, command: nil, clear_window: true, stdout: $stdout)
|
9
9
|
@runner = runner
|
10
10
|
@repository = repository
|
11
11
|
@command = command
|
12
12
|
@clear_window = clear_window
|
13
|
+
@stdout = stdout
|
13
14
|
initialize_pause(false)
|
14
15
|
end
|
15
16
|
|
16
|
-
def run(
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
def run(file, force_run: false)
|
18
|
+
if paused? && !force_run
|
19
|
+
@stdout.puts "Main program paused. Please resume program first."
|
20
|
+
return
|
21
|
+
end
|
21
22
|
|
22
23
|
clear_terminal
|
23
|
-
runner.run
|
24
|
-
yield if block_given?
|
24
|
+
runner.run file, repository: repository
|
25
25
|
end
|
26
26
|
|
27
27
|
def diff(branch)
|
28
28
|
raise "Git not installed" unless VersionControl::Git.installed?
|
29
29
|
test_files = repository.find_tests VersionControl::Git.diff_files(branch)
|
30
30
|
|
31
|
-
puts "Tests found:"
|
32
|
-
test_files.each { |test_file| puts " - #{test_file}" }
|
31
|
+
@stdout.puts "Tests found:"
|
32
|
+
test_files.each { |test_file| @stdout.puts " - #{test_file}" }
|
33
33
|
|
34
|
-
puts "Running tests..."
|
34
|
+
@stdout.puts "Running tests..."
|
35
35
|
runner.run_all_tests command.format_batch(*test_files)
|
36
36
|
end
|
37
37
|
|
38
|
-
private
|
39
|
-
|
40
38
|
def clear_terminal
|
41
39
|
return unless @clear_window
|
42
40
|
|
@@ -3,11 +3,10 @@ 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
|
7
|
+
def initialize(command, stdout: $stdout)
|
8
8
|
@stdout = stdout
|
9
9
|
@command = command
|
10
|
-
@command_stdin = command_stdin
|
11
10
|
end
|
12
11
|
|
13
12
|
def ==(obj)
|
@@ -33,7 +32,7 @@ module Retest
|
|
33
32
|
|
34
33
|
def system_run(command)
|
35
34
|
@running = true
|
36
|
-
result = system(command
|
35
|
+
result = system(command) ? :tests_pass : :tests_fail
|
37
36
|
changed
|
38
37
|
notify_observers(result)
|
39
38
|
@running = false
|
data/lib/retest/version.rb
CHANGED
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.
|
4
|
+
version: 2.0.0.pre3
|
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-10-
|
11
|
+
date: 2024-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: string-similarity
|