Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Created May 29, 2013 21:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeffreyWay/5674014 to your computer and use it in GitHub Desktop.
Save JeffreyWay/5674014 to your computer and use it in GitHub Desktop.
<?php
class User extends Eloquent {
public function getOldest()
{
return $this->orderBy('age', 'desc')->first();
}
}
@bilalq
Copy link

bilalq commented May 29, 2013

2 with a tear down at the end makes the most sense.

@Bronx205
Copy link

3

@desugaring
Copy link

2

@wouterj
Copy link

wouterj commented May 29, 2013

3 if this is the only method you want to test, 2 otherwise.

@NSURLSession0
Copy link

2

@JeffreyWay
Copy link
Author

So here's my issue with #3. Mocking is good, but for short query methods like this, you'd essentially be writing a test that does nothing other than verify that a method, orderBy, is triggered. That's not overly useful.

@sorora
Copy link

sorora commented May 29, 2013

@JeffreyWay - it is probably lucky I haven't got onto the Models section of the book then, still much to learn!

@worenga
Copy link

worenga commented May 29, 2013

2

@agileurbanite
Copy link

3

@fideloper
Copy link

2

@JeffreyWay - I often find I'm doing that (just testing that a method was fired) when I mock tests, especially ones around data. Sorta frustrating for me.

In this situation (and I'm really just thinking this through now as I type)

We know that:

  1. Eloquent\Model is fully tested
  2. Database\Query (and related classes) are fully tested.

Since we know the components ("units") of everything we're using will function (they work correctly as individual units), and we're just USING those components to create a functionality, all that's really left is an integration test to test that the "units", in our implementation, do make up a functional "whole".

So, I think an integration test is what's needed there.

That being said, I still hate using databases in a test. Takes away speed, creates issues of data being present when someone clones and tests, other minor things...

@JeffreyWay
Copy link
Author

fideloper - Yeah. Made the survey, because this question comes up all the time.

@nicholasleblanc
Copy link

2

@Menelion
Copy link

2

@DavertMik
Copy link

@fideloper

That being said, I still hate using databases in a test. Takes away speed, creates issues of data being present when someone clones and tests, other minor things...

It depends on ORM design. In ActiveRecord of Rails or in Doctrine tests run extremely fast because of nested transactions that are rolled back in the end of test. Basically I don't see a problem with integration tests. In my Rails development I use them very often and I'm quite happy to know that I'm testing real things and not something mocked.

I looked into Eloquent and it does not have support for nested transactions :( Perhaps it should, as it's necessary for testing, I think.


As for question, it depends. My answer: use what is cheapest and what provides a better coverage.
2. If I have fixtures on which to test

  1. If I don't have them
  2. If this method is very important to me, but still I don't have fixtures :)

@joezimjs
Copy link

The integration test should be for Eloquent, but since you're using it more specifically, I'd still do an integration test on this. But, I'd also do a mock for the unit tests. The mock would verify that orderBy is called and give back a mock object. Then you'd also verify that this method is returning the first item in that set.

@jabranr
Copy link

jabranr commented May 29, 2013

2

@ImadBoumzaoued
Copy link

2

@JeffreyWay
Copy link
Author

So here's how you'd basically do it (for #2).

public function testGetsOldestUser()
{
    Factory::create('User', ['age' => 20]);
    Factory::create('User', ['age' => 30]);

    $oldest = (new User)->getOldest();

    $this->assertEquals(30, $oldest->age);
}

@alexrussell
Copy link

In general I'd say #1 because this will work (assuming Eloquent works, which we have to) and does not require a test.

I really don't like the idea of 3 (and I've seen you do this quite a bit in some of your testing screencasts recently*) because you're not really testing anything, and you're making the test rely on an implementation detail. The test should test that the method does the right thing, not that it calls a given Eloquent method. But the reasons for not liking this are twofold:

  1. As I mentioned you're not really testing anything. In this case it's not too bad, but someone with a lower knowldge about unit testing might think this type of testing is acceptable for all tests. Give you a false sense of security about the outcome of the testing.
  2. Also as I mentioned, you're relying on implementation details of the code when writing the test. What if (god forbid) this code was changed to use the bog standard DB class - the test would now fail even though the code would stil be correct. Similarly, if the ORM was replaced with a different one that didn't use $this->orderBy(), all your tests fail - yes, great reminder to change the test code, but now you have to update two lots of code.

Finally, the most real proper answer here is that if you want to test (get full coverage or whatever) the integration test makes the most sense. However, from the comments above it sounds like Laravel do not have a test-database-with-fixtures feature out of the box. That's surprising and a bit of a shame.

*I understand in your tutorials you've been doing a very quick intro to testing so that's fine (although if I were you I'd note during the screencast that normally you'd need to test more or whatever).

@alexrussell
Copy link

@JeffreyWay A-ha I think your 'answer' to #2 answered my question about fixtures (at least to an extent).

@JeffreyWay
Copy link
Author

Hey, Alex -

I'd always use mocks if the method did more than simply call a method. This is a different case though. Chris outlined my views well.

@DavertMik
Copy link

@JeffreyWay
Mocks is a must when you deal with asynchronous storage. Like RabbitMQ, or web services, for instance. It's really hard to check data there.

If connection happens synchronously, there is no actual reason to separate tests from data. Especially when database is properly cleaned and fixtures are used.

@ukoasis
Copy link

ukoasis commented May 30, 2013

2

@mdespuits
Copy link

2

When dealing with databases and queries, ALWAYS use integration. Yes, you could use a mock expectation that the method was called, and yes, you can have faith that Eloquent will query properly, but with databases, unless you are dealing with real data, you cannot always be absolutely sure that you did it right. What if you typo-d the method or the parameters in the production and test code? Your tests would pass, but you would have a nasty 🐛.

Mocks are much more useful for asserting that interfaces around external APIs are called properly from your own abstraction, not for testing that the ORM runs the right query and the database returns the right values.

@vladan-zoricic
Copy link

Some combination of 2 and 3.

@JulienItard
Copy link

2

@jlambe
Copy link

jlambe commented May 30, 2013

2 because we're dealing with datas from the database. Otherwise 3 if you intend to test a method that format a given data.

@lnguyen0901
Copy link

2 and 3

@hasokeric
Copy link

2

@torkiljohnsen
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment