-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable to open rspec result from emacs #306
base: master
Are you sure you want to change the base?
Conversation
This is VERY cool! I can't accept this PR only because it isn't generic enough (other editors and tools would benefit too). If you're looking for a quick solution, you may want to try the new guard :rspec, cmd_additional_args: '|tee results.txt' Months ago I actually tried to get this working with Vim, but I put it aside because the final step was to remove the colors from the RSpec output (I see you don't use colors in RSpec - probably for the same reason). (I tried to use various options with RSpec, but as far as I remember, there's no way to keep color output and have a text-only formatter.) I gave up because I found a another plugin that worked for me (vim-dispatch). If have time and you want to create a PR, then the best solution would be to add an option to So the only way (that I know of) is to modify The deleting happens here: guard-rspec/lib/guard/rspec/runner.rb Line 79 in b76a839
If you don't want to create a PR, just create a new issue and link this PR to it, so you're automatically notified if I ever get to implementing this. |
Thanks for the pointer to vim-dispatch! |
@e2 Thank you for reviewing and suggestion! I agree that it isn't generic enough for other tools. In addition, I think that this feature is useful other guard plugin, e.g. guard-rubocop. So, I'm considering that guard plugins using console output should hold it output like Guard::Sheller, and notifier can use these output. My design is below. module Guard
class ShellPlugin < Plugin
attr_reader :status,:stdout,:stderr
...
end
end How about this proposal? |
@uk-ar - thanks, I never would have thought of doing something like that. Personally, I like streams and pipes and queues. In this case, when we're running tools, it's better for things to be "atomic". Like if RSpec output was in JSON, you wouldn't wan't "half a JSON file". Just as RSpec does doesn't use streams as inputs and just as we don't edit files as streams of text. It makes sense for logging, but I don't think it makes sense for results. Also, since Guard listens to files, having the output written to a file could trigger all sort of "jobs" in parallel in the future (e.g. rubocop, yard, coverage reports, etc.). Instead I planned on adding support for "events" in plugins, so that plugins can "talk" to each other, and respond to each other's events - without Guard having to understand the API between them. So instead of streaming output, it would be better for the Guard::RSpec formatter to "notify" a listening emacs plugin every time there is a new result - it would be much better than pipe'ing and you wouldn't need a defined interface between guard and the plugins - except for handling events, but this could be trivial. This also means inheritance in Ruby isn't a good idea - even with the current Guard plugins it caused too many problems and provided no benefit. Mixins and modules are much better for Ruby. Or even just respond_to?. Classes mean requiring files and API compatibility - even when behavior doesn't change, so it's a cost for everyone and no benefit. (Inheritance interferes also very much with testing - and makes more sense in compiled languages). But until we get to events/signals/actions, using actual files is the next best thing. Files are also good, because they are persistent storage, and you could do cool things like "continuing" with work where you left off (unfinished tests, repository status, workflows). So using files right now for "data exchange" is the best way to go - especially since we can listen to them for changes and respond. I'm just sharing a general direction and your PR really shows the need for some asynchronous communication. For this purpose, sockets are much better than streams. But until we get the architecture for Guard ready, files+Listen are the easiest way to start moving in that direction. What do you think? |
@e2 - I'm sorry for late reply. I was in vacation. I agree "atomic" result is more important than stream in this case. And I intended stdout is not File object but String of whole output. Thank you for your suggestion that this PR feature should implement as Guard plugin using files+Listen. But I still have one question. I want to show result "only" when test failed. And if guard execute plugin in pallarel, how do I get status code of RSpec(and another tools)? 2014/12/18 4:46�$B!"�(BCezary Baginski [email protected] �$B$N%a%C%;!<%8�(B:
|
Nothing to apologize for - no rush at all!
Yes - and I suggest using a file name instead of output - so you can read the file in your code yourself. So in the future, you will get a filename with the results whenever an RSpec run finishes.
I don't know exactly what you mean by "show". If you implement the results file in guard-rspec, you'll know by the file contents (see below). See the guard-rspec formatter source code for how the guard-rspec results file looks like.
That will happen in the future. Currently, Guard will run all tasks synchronously from the main thread. Don't worry about parallel - if it's ever implemented, it will be transparent. If you want to get this working now, just submit a PR that would get this code working: require 'guard/compat/plugin'
module Guard
class Emacs < Plugin
def run_on_modifications(results_files)
failures = extract_failures(results_files.first)
open_emacs(failures)
end
def extract_failures(file)
# (...) - you need to implement this based on how guard-rspec reads it's output file
end
def open_emacs(failures)
# (...) - code from your PR
end
end
end
guard :emacs do
watch('tmp/rspec_results.txt')
end
guard :rspec, results_file: 'tmp/rspec_results.txt' do
# (...)
end This means:
and that's it. I think it was a mistake to include Launchy in guard-rspec - it shouldn't be there (I'll probably throw it away into a new gem once this PR is merged). Let me know if you need help with anything (I'm working on other issues, so I won't be able to work on this myself right now). |
In case someone's interested, I've added a feature request to create a "failures file" here: #333 If such a file is created on failures, is should be possible to watch for that file in the Guardfile, and load the errors into editors/tools from there. |
This PR add feature to open rspec result from emacs. And this feature is enabled only when test fail.