-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
set rspec type to :feature instead #809
Conversation
Just a note that I change the type to |
@jnicklas The naming convention is a bit tricky. We have I think adding support for these in rspec-rails will be trivial as well. So rspec-rails should catch up quickly. My $.02. :) |
I think that's a great move and won't be a big deal for other tools. This will make the suite much more concise if we follow the convention of You didn't said anything about the latest one. Are you planning to change this on turnip either? |
@josevalim @jnicklas if capybara attaches itself to feature (or features) what would rspec-rails even need to do? |
@dchelimsky I think we need to attach the basic rspec-rails stuff there, like: https://github.com/rspec/rspec-rails/blob/master/lib/rspec/rails/example/rails_example_group.rb Or this is attached by default to all example groups? If so, I guess rspec-rails doesn't have to do anything. |
@josevalim not automatic for all groups, so that would need a fix in rspec-rails - need to coordinate that with a minor release of rspec-rails (eg 2.12.0) |
@sobrinho: yes, this is also in part to clear up jnicklas/turnip#66, I would personally prefer if Turnip used @josevalim: It seems that the folders are plural, but the @dchelimsky: I don't know the internals of rspec-rails at all, so I don't know if it does anything special at all. Maybe not. In that case, even better :) |
Ah, right. @dchelimsky so don't we need to change rspec-rails to also map the type |
@josevalim if we don't care about :type => xxx, capybara can do it by directory the way rspec-rails does it: RSpec::configure do |c|
def c.escaped_path(*parts)
Regexp.compile(parts.join('[\\\/]'))
end
c.include Capybara::Whatever, :example_group => {
:file_path => c.escaped_path(%w[spec features])
}
end |
Okay, seems the general consensus is that this is a good idea. |
set rspec type to :feature instead
@jnicklas just so we're on the same page: the change you just merged will break integration with rspec-2.11. Is that your understanding/intent? |
@dchelimsky yes, I'm aware of that. I hope that doesn't screw up your release cycle too much. It'll be at least a month or two before Capybara 2.0 hits, maybe more, so you guys do have some time to prepare. |
Any reason for you to not just use my suggestion above (using |
BTW - it's less about the release cycle than it is about forcing end-users to upgrade two libs at the same time (and some of them not understanding that that is necessary). /cc @myronmarston, @alindeman |
It seems strange to me that Capybara would make assumptions about the file layout of the users' test suites. It makes sense for rspec-rails to do that, but not really for Capybara, imo. |
I disagree in this case. "features" is a capybara concept, not an rspec-rails concept. Also, I think it's simpler and easier for end-users to grok "capy will attach its behavior to files in spec/features" than "capy will attach its behavior to example groups tagged :feature => true" and then have to go look at rspec-rails' docs to see that "rspec-rails adds :feature => true to example groups declared in the spec/features directory". |
Assuming spec/features for capybara makes sense for me. But what about the developers that want to change this structure, @dchelimsky? |
@sobrinho as things stand today in rspec-rails, integration, model, view, controller, and routing behavior are all added based on directory structure. It also supports :type => 'xxx', but I don't think any end users write |
@sobrinho to align well w/ how rspec-rails works for the other types, Capy could add itself based on either :type => :feature or dir => spec/features. |
I certainly wouldn't have a problem with adding the folder based behaviour too. How does rspec-rails handle this? I can see the metadata It's worth mentioning that Capybara's global As @josevalim mentioned however, we still need to attach the base Rails behaviour stuff (routing etc.) to |
rspec-rails includes modules based on :type and :file_path (https://github.com/rspec/rspec-rails/blob/69a63cef280310c1164dda457bdecfd7700b10f0/lib/rspec/rails/example.rb#L10-38) and then adds :type from the extensions: https://github.com/rspec/rspec-rails/blob/69a63cef280310c1164dda457bdecfd7700b10f0/lib/rspec/rails/example/controller_example_group.rb#L120 This way end-users are able to use conventional directory structure or add :type => xxx in a non-conventional directory structure, and then extensions are able to attach their behavior based on :type. In the case of capy, it's really adding a completely new type of example group, not extending an existing one, so I'd recommend treating it the same way as rspec-rails treats its own ControllerExampleGroup, for example. As for including other support such as routing, all of that is in Rails' test framework, not RSpec. I wonder if this could all be managed from Capybara. I'm not trying to push extra work on Capy, just trying to reduce its dependency on RSpec to including itself via existing APIs. Thoughts? |
Correction in my last comment - it's ":type or :file_path" (not and). |
There should be no problem with emulating what rspec-rails does in Capybara, and then we can just tell people to move their specs to However, there is one hiccup. Currently, we have I guess we could have |
I don't remember to use I always required require 'capybara/rspec'
require 'capybara/poltergeist'
Capybara.configure do |config|
config.default_driver = :poltergeist
end Is this required for rails 2 apps? |
Why would that be ugly? I don't see any conflict or order-dependency between https://github.com/jnicklas/capybara/blob/master/lib/capybara/rspec.rb and https://github.com/jnicklas/capybara/blob/master/lib/capybara/rails.rb, so I think it's reasonable to either tell end-users to require both, or add capybara/rspec-rails.rb that simply requires the other two. |
The more I think about it, the more I feel that this should be in rspec-rails. We already integrate with Capybara from rspec-rails, so that direction is already set. From within Capybara, we can do a lot of stuff, but it's very tricky to do stuff only when both RSpec and Rails are loaded. Whereas that's completely natural and obvious in rspec-rails. I'd be happy to provide a pull request to rspec-rails, if you're worried about the extra work. So yes, this would require users to upgrade RSpec, but if we just explain this clearly, then it shouldn't be a problem. Maybe we can even check the RSpec version and print a warning if it's too low, or something. What do you think? |
I'd be happy to review the changes for rspec-rails if you make a pull, @jnicklas. |
Okay, I'll try to throw together a pull request for rspec, I probably won't have time for that until next week though. |
Any news? Can I do anything to make this easier? |
@jnicklas @alindeman I'll have time after Monday (conf preso) and happy to work w/ either one or both of you on this. |
That'd work for me; I don't feel entirely comfortable approaching this alone. |
I started a little on a pull request to rspec-rails, but it's a bit daunting and I don't have a lot of time at the moment. |
@jnicklas don't sweat it. @alindeman and I will work on it after Monday. When are you trying to get your release out? I'd like the rspec-rails release that supports this to be out well in advance of the capy release. |
@dchelimsky we're pretty much ready to go with Capybara. I want to do another beta release, and then wait for a month before I do the final release, but aside from this issue there isn't anything stopping us. So the ideal for us would be if we do the beta release immediately after you guys do your release, and then wait a month, then final 2.0 release. Does that sound sensible? |
@jnicklas sure, but it might be a couple of weeks before we're ready to go. This will be part of a minor release of the entire rspec suite so there are some things that need to be coordinated. Most likely we'll be able to get it out the door by Monday, Oct 8, but I can't promise that at this point. We'll keep you posted. |
OK - I got started on this. I've added one commit that includes There is no automated testing for this but there was none before either. I've verified that it does the right thing by ensuring that the following runs correctly (in spec/features/thing_list_spec.rb): require 'spec_helper'
describe "things"
before do
Thing.create!(:name => "Widget")
end
example "view the list" do
visit "/things"
page.body.should include("Widget")
end
end
feature "things" do
background do
Thing.create!(:name => "Widget")
end
scenario "view the list" do
visit "/things"
page.body.should include("Widget")
end
end This solves for the "features" directory, but not the "api" directory. I see that as separate from this specific issue even though it's part of the wider discussion spawned by @josevalim. Agree? |
Yes agreed! Best we get the minimal solution out the door as soon as possible, then we can tweak it. |
@jnicklas I'm not sure I'll be able to get a minor release out this weekend, but I can do a patch release of rspec-rails. This would be rspec-rails-2.11.1. Are you OK explaining in your release notes that capy-2 requires rspec-rails >= 2.11.1 or would you rather wait until we do the 2.12 release (which is unlikely to happen before next weekend). |
Whatever you prefer, I'm not in a rush. |
Hey @jnicklas looking this over a bit more, right now capybara takes the responsibility of adding itself if type == :feature, but rspec-rails is responsible to add capybara if directory == spec/features. This feels odd to me. I'm thinking that either rspec-rails or capybara should own both. rspec-rails would still include Capybara::RSpecMatchers in other types of specs (but not DSL) either way. Thoughts? /cc @alindeman |
Actually, if we do it from rspec-rails, there's no reason to use :type => :feature or :type => :capybara_feature. rspec-rails would include Capybara::DSL, Capybara::RSpecMatchers, and Capybara::Features when directory => spec/features. |
@jnicklas I released rspec-rails-2.11.4 today with support for including Capybara::DSL and Capybara::RSpecMatchers in spec/features. I've tested this building a new app using capybara-head and rspec-rails-2.11.4 and files added spec/features work as expected (visit/page are available and get|post|put|delete|head are not), and spec/requests also work as expected (get|post|put|delete|head work but visit/page do not). I was under the false impression that the capybara-2.0.0.beta release already removed support for spec/acceptance and spec/requests, so I documented that you can use rspec-rails-2.11.4 + capybara-2.0.0.beta2. This does work in the sense that you can now use visit/page in spec/features, but it does not solve the "get and visit are both available" problem. Any chance you can drop a capybara-2.0.0.beta3 release sometime soon? |
Yes, I'll do a release either today or tomorrow, need to take a look at the backlog, but I think we should be good to go. |
I am using this in a new app and it is working amazingly well. |
Awesome :) |
/cc @dchelimsky After @alindeman's rspec/rspec-rails@fd25838 I think we're getting closer. One (hopefully last) issue is that previously we'd have a RSpec.configure do |config|
config.include RequestHelpers, type: :request
end Looking at https://github.com/rspec/rspec-rails/blob/master/lib/rspec/rails/vendor/capybara.rb and grepping the rspec-rails source for |
@joliss did you see rspec/rspec-rails#632? |
Oh I'd missed that. Thanks! |
I just pushed some new docs for feature specs. Reviews welcomed: rspec/rspec-rails@6e68bdd |
### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.4...2.12.0) Enhancements * Support validation contexts when using `#errors_on` (Woody Peterson) * Include RequestExampleGroup in groups in spec/api Bug fixes * Add `should` and `should_not` to `CollectionProxy` (Rails 3.1+) and `AssociationProxy` (Rails 3.0). (Myron Marston) * `controller.controller_path` is set correctly for view specs in Rails 3.1+. (Andy Lindeman) * Generated specs support module namespacing (e.g., in a Rails engine). (Andy Lindeman) * `render` properly infers the view to be rendered in Rails 3.0 and 3.1 (John Firebaugh) * AutoTest mappings involving config/ work correctly (Brent J. Nordquist) * Failures message for `be_new_record` are more useful (Andy Lindeman) ### 2.11.4 / 2012-10-14 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.0...v2.11.4) Capybara-2.0 integration support: * include RailsExampleGroup in spec/features (necessary when there is no AR) * include Capybara::DSL and Capybara::RSpecMatchers in spec/features See [https://github.com/jnicklas/capybara/pull/809](https://github.com/jnicklas/capybara/pull/809) and [http://rubydoc.info/gems/rspec-rails/file/Capybara.md](http://rubydoc.info/gems/rspec-rails/file/Capybara.md) for background. 2.11.1, .2, .3 were yanked due to errant documentation.
### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.4...2.12.0) Enhancements * Support validation contexts when using `#errors_on` (Woody Peterson) * Include RequestExampleGroup in groups in spec/api Bug fixes * Add `should` and `should_not` to `CollectionProxy` (Rails 3.1+) and `AssociationProxy` (Rails 3.0). (Myron Marston) * `controller.controller_path` is set correctly for view specs in Rails 3.1+. (Andy Lindeman) * Generated specs support module namespacing (e.g., in a Rails engine). (Andy Lindeman) * `render` properly infers the view to be rendered in Rails 3.0 and 3.1 (John Firebaugh) * AutoTest mappings involving config/ work correctly (Brent J. Nordquist) * Failures message for `be_new_record` are more useful (Andy Lindeman) ### 2.11.4 / 2012-10-14 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.0...v2.11.4) Capybara-2.0 integration support: * include RailsExampleGroup in spec/features (necessary when there is no AR) * include Capybara::DSL and Capybara::RSpecMatchers in spec/features See [https://github.com/jnicklas/capybara/pull/809](https://github.com/jnicklas/capybara/pull/809) and [http://rubydoc.info/gems/rspec-rails/file/Capybara.md](http://rubydoc.info/gems/rspec-rails/file/Capybara.md) for background. 2.11.1, .2, .3 were yanked due to errant documentation.
### 2.12.0 / 2012-11-12 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.4...2.12.0) Enhancements * Support validation contexts when using `#errors_on` (Woody Peterson) * Include RequestExampleGroup in groups in spec/api Bug fixes * Add `should` and `should_not` to `CollectionProxy` (Rails 3.1+) and `AssociationProxy` (Rails 3.0). (Myron Marston) * `controller.controller_path` is set correctly for view specs in Rails 3.1+. (Andy Lindeman) * Generated specs support module namespacing (e.g., in a Rails engine). (Andy Lindeman) * `render` properly infers the view to be rendered in Rails 3.0 and 3.1 (John Firebaugh) * AutoTest mappings involving config/ work correctly (Brent J. Nordquist) * Failures message for `be_new_record` are more useful (Andy Lindeman) ### 2.11.4 / 2012-10-14 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.11.0...v2.11.4) Capybara-2.0 integration support: * include RailsExampleGroup in spec/features (necessary when there is no AR) * include Capybara::DSL and Capybara::RSpecMatchers in spec/features See [https://github.com/jnicklas/capybara/pull/809](https://github.com/jnicklas/capybara/pull/809) and [http://rubydoc.info/gems/rspec-rails/file/Capybara.md](http://rubydoc.info/gems/rspec-rails/file/Capybara.md) for background. 2.11.1, .2, .3 were yanked due to errant documentation.
Hey @josevalim, @dchelimsky, @sobrinho and anyone else who has had an opinion on this. When applied, this commit changes Capybara to use
:feature
as the type for its ownfeature
helper, as well as only including Capybara in those steps with type:feature
. This follows José's suggestion. I feel that this is a very sensible approach.Though there is obviously a big issue: It breaks compatibility with rspec, especially with rspec-rails.
I'd like to get this into Capybara 2.0 so that we don't have to break the API post release. Can you guys let me know what you think? Should I just release this and hope for the other tools to catch up as soon as possible?