Skip to content
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

is_expected with block expectations #805

Closed
xaviershay opened this issue Jun 15, 2015 · 23 comments
Closed

is_expected with block expectations #805

xaviershay opened this issue Jun 15, 2015 · 23 comments
Labels

Comments

@xaviershay
Copy link
Member

The following situation just confused someone here at work:

describe 'is_expected with block expectation' do
  subject { raise }

  it { is_expected.to raise_error }
end

That reads like it should work, but doesn't because is_expected is defined as expect(subject).

I don't typically use is_expected, so not sure if there is a canonical way to do this already. It isn't listed at https://www.relishapp.com/rspec/rspec-core/docs/subject/one-liner-syntax

  1. Is there a "correct way" to do this?
  2. Is one-liner syntax something that we (as a core team) use much, or is it in the expect_any_instance_of bucket of extras?
  3. Should we add one-liner Relish documentation about using block matchers? I'm thinking yes.
  4. Is there a way to fix this transparently, and if yes, should we? My gut says no because it would be switching is_expected implementation based on matcher used and that seems gnarly.

Tangentially related discussion thread on separating block vs value expectations, in which we didn't discuss this case: #526

cc @rspec/rspec

@JonRowe
Copy link
Member

JonRowe commented Jun 15, 2015

  1. Is there a "correct way" to do this?

Not with the one liner syntax that I'm aware of.

  1. Is one-liner syntax something that we (as a core team) use much, or is it in the expect_any_instance_of bucket of extras?

It's in the same bucket, I certainly don't recommend it.

  1. Should we add one-liner Relish documentation about using block matchers? I'm thinking yes.

We should mention they're not supported.

  1. Is there a way to fix this transparently, and if yes, should we? My gut says no because it would be switching is_expected implementation based on matcher used and that seems gnarly.

this has come up before and we shied away from it because the only way to really do it is to pass a block out of the subject block and then conditionally detect what to do with it, the last conversation we had around this resulted in the original issue raiser producing https://github.com/puyo/rspec-subject_call

@myronmarston
Copy link
Member

Not with the one liner syntax that I'm aware of.

There is, if you're willing to make your subject a lambda:

describe 'is_expected with block expectation' do
  subject { -> { raise } }

  it { is_expected.to raise_error }
end

...that's pretty obtuse and not something I'd recommend, generally.

Is one-liner syntax something that we (as a core team) use much, or is it in the expect_any_instance_of bucket of extras?

I consider it in between. It's not something I use frequently, and it's an often abused feature of RSpec...but it's not generally problematic the way expect_any_instance_of is, and there are situations where it works really, really well. I think mustermann has a great example of its usage (although it's using the older should one-liner syntax, but I consider them interchangable). I think for a case like mustermann's, you want the details of the exact string you are matching against to be included in the doc output (as coming up with prose descriptions for all those would be tricky and more ambiguous). Letting the matcher generate the description for the example keeps them in sync, ensuring you don't wind up with doc strings that "lie" like comments can, which can lead to other problems.

Should we add one-liner Relish documentation about using block matchers? I'm thinking yes.

We should mention they're not supported.

Agreed.

Is there a way to fix this transparently, and if yes, should we? My gut says no because it would be switching is_expected implementation based on matcher used and that seems gnarly.

I think the complexity to doing such a thing would be greater than the benefit. I also think it's good for people to understand that the expectation is being set on a lambda/proc that wraps an expression, and not on the return value of the expression itself. Any attempt to make this work nicely would hide that distinction which would only lead to more confusion.

Also, you'll generally get warnings from RSpec 3 when you attempt to use a block matcher against a non-block subject. That falls over for raise_error, unfortunately, because in an expression like expect(raise).to raise_error ruby evaluates the raise first and it aborts before RSpec even has a chance to do anything with it.

@xaviershay
Copy link
Member Author

For the mustermann-style case, I tend to use a custom method: https://github.com/xaviershay/pacebot/blob/master/spec/parse_spec.rb#L23 ... but then I'm the kind of heathen that tends to like assert methods :P

I'll put together a doc PR.

@myronmarston
Copy link
Member

but then I'm the kind of heathen that tends to like assert methods :P

😱

@xaviershay
Copy link
Member Author

I obviously haven't done this. I may still, but am relaxing the commitment expressed in my prior comment.

@codesnik
Copy link

if is_expected would be defined as

def is_expected
   expect { subject }
end

( using { } instead of ( )) then it should work. Also will help with is_expected.to change when subject is a method call with side effects, and it would make "unit specs" with a lot of describe "#method" do sections much shorter, while mantaining readability.

But it could slow down a little every is_expected call. Any other reasons, why it wasn't done in that way?

@myronmarston
Copy link
Member

Any other reasons, why it wasn't done in that way?

The reason is that expect { subject } only works with block expectations. Non-block expectations (e.g. eq, include, be_within, be <, etc) can only be used off of expect(object), not expect { object }. There're a few reasons for that:

  • The generic expect {}.to matcher machinery does not evaluate the block -- instead the block is passed to the matcher so the matcher can evaluate it. For this block matchers, this is important because the matcher must "wrap" evaluation of the block with special logic (such as rescuing an error, etc).
  • That means that if you tried expect { 5 }.to eq(5), the eq matcher would receive proc { 5 } as an argument to match against 5. The eq matcher checks == of the two arguments. proc { 5 } == 5 is obviously not true so it won't match.
  • Procs are objects, too, which means that it's completely valid for eq to compare two proc objects for equality -- which in turn means that eq can't safely evaluate a proc if that's what it's given.

See #526 for more background and info on this.

@mrageh
Copy link

mrageh commented Jan 6, 2016

@xaviershay and @myronmarston what's the status of this issue?

@myronmarston
Copy link
Member

The consensus is to improve the documentation around this but no one has taken that on yet. Would you like to?

@mrageh
Copy link

mrageh commented Jan 10, 2016

yup @myronmarston I'll do that during this upcoming week

@mrageh
Copy link

mrageh commented Jan 19, 2016

I think we can close this PR as the docs around the one-liner syntax has been improved

@JonRowe JonRowe closed this as completed Jan 19, 2016
@singpolyma
Copy link

Could maybe add a is_expected_block syntax for this?

@myronmarston
Copy link
Member

Could maybe add a is_expected_block syntax for this?

I don't think it reads well but if you want to add it to a project (or build a gem that provides it), it's trivial:

module IsExpectedBlock
  def is_expected_block
    expect { subject }
  end
end

RSpec.configure do |c|
  c.include IsExpectedBlock
end

@cmolenda
Copy link

@myronmarston I basically ended up doing the same thing in a project, but I named it #will_be_expected

@guih
Copy link

guih commented Jul 13, 2016

Since it's related to exceptions it could be something like

def is_expected_to_raise(*args)
  expect { subject }.to raise_exception(*args)
end
# and use it like
it { is_expected_to_raise SomeError, 'error message' }`

Even though I think naming the subject will produce very expressive sentence too.

describe '#some_method' do
  subject(:some_method) { described_class.new(...).some_method(invalid_args) }
  it { expect { some_method }.to raise_exception(SomeError, 'error message') }
end

@JonRowe
Copy link
Member

JonRowe commented Jul 14, 2016

@guih that is certainly a way to do it, but I still don't feel it warrants being included in the main gems, as you've demonstrated it's easy enough to customise your own install when needed

@guih
Copy link

guih commented Jul 14, 2016

Thanks for answering @JonRowe 😃

Sorry, I expressed myself badly in the previous comment.

I was not intended to have this included to the main gem, I was just trying to show that sometimes it's more expressive without it as an argument not to include it.

@khalilfazal
Copy link

khalilfazal commented Dec 23, 2016

I've decided to use this in my project:

module WithinBlockIsExpected
  def within_block_is_expected
    expect { subject }
  end
end

RSpec.configure do |config|
  config.include WithinBlockIsExpected
end

and in spec:

it { within_block_is_expected.not_to raise_exception }

khalilfazal added a commit to khalilfazal/advent_of_code that referenced this issue Dec 27, 2016
moved #singleton to BasicObject
changed title in README.md
added short circuit for bad year/day combinations
added tests for 404
using let instead of begin

created with_block_is_expected rspec/rspec-expectations#805 (comment)
@schmijos
Copy link

I ended up calling it "anticipation". Compared to an "expectation" it describes the expectation of a future state more explicitly in my eyes (english native speakers please correct me).

it { is_anticipated.to raise_exception('Because I made it fail intentionally') }

Using the following configuration:

module IsAnticipated
  def is_anticipated
    expect { subject }
  end
end

RSpec.configure do |config|
  config.include IsAnticipated
end

@pirj
Copy link
Member

pirj commented May 20, 2019

@schmijos Jon recently mentioned rspec-has, which does exactly what Myron originally proposed.

This approach has some downsides not directly related to testing.

What would be the benefit compared to more explicit:

expect { add_one_to_total }.to change { total }.by(1)

or

expect { divide_by_zero }.to raise_exception

?

@schmijos
Copy link

schmijos commented May 21, 2019

@pirj Thank you for summing up the references. The downsides seem plausible to me. But I see myself often use the one-liner syntax and it just bugs me a lot to break the consistency of a test block because is_expected cannot handle blocks.

I seem to like the kind of this pattern:

describe '#do_something' do
  subject { instance.do_something }
  it { is_expected.to be_successful }
  it { is_expected.to have_attributes(blub: ) }
  it { is_expected.to change { sut } }
  it { is_expected.to make(sut).receive(:request) }
  

For me this reads a lot more like a specification list than what we're doing with it on multiple lines. In the end I want to define one single behaviour with a list of expected specifications it has to fulfil. And the cool thing about RSpec is that I can do this in a very slick way (but not with a block in the subject).

@pirj
Copy link
Member

pirj commented May 21, 2019

I had an idea of a return_value matcher, that could be used with block expectation syntax, e.g.

subject { -> { instance.do_something } }
it { is_expected.to return_value(be_successful) }
it { is_expected.to return_value(have_attributes(blub: ...)) }
it { is_expected.to change { sut } }
it { is_expected.to make(sut).receive(:request) }

There are some questions I have to this code though. Both sut and subject are mentioned, and it seems to me that they are two different things, which is confusing since subject is intended to be used for defining the subject under test. There is also an instance of something. It's hard to understand what is being tested exactly.

Are you a strong proponent of "one expectation per example"? With the introduction of aggregate_failures, and with matcher composability this has less sense than previously.
What I mean is:

def do_something
  instance.do_something(a: 1)
end

specify "returns a blub, and makes a request to Blurly" do
  expect { do_something }
    .to return_value(be_successful.and(have_attributes(blub: ...)))
    .and change { Something.count }.by(1)
    .and send_message(Blurly, :request).with(a: 1)
end

Do you have an implementation of make matcher, or this is just an example? There's this https://github.com/zverok/saharspec#matchers that you can find useful.

You may expect to see proper documentation output from this, and if something fails, even if it's just one expectation, it can be distinguished from the met expectations.

MatheusRich pushed a commit to MatheusRich/rspec-core that referenced this issue Oct 30, 2020
Users sometimes try to use the one-liner syntax with block matchers,
which can cause RSpec to behave in strange ways. This behaviour is not
supported in RSpec because the complexity of implementing it would
greatly outweigh the benefits.

This commit just clarifies in the documentation that the one-liner
syntax does not support block matchers.

Possible fix for rspec/rspec-expectations#805
@matas-zanevicius
Copy link

matas-zanevicius commented Nov 3, 2023

This is how I got around it:

# spec_helper.rb
RSpec.configure do |config|
  config.include(Module.new { def is_expected_in_block = expect { subject } })
end
# rubocop.yml
RSpec/NoExpectationExample:
  AllowedPatterns:
    - is_expected_in_block

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests