TECH Insights

Viden og indsigter fra IT Minds' it-talenter

Develop Laravel with TDD

Skrevet af Mindster og Software Developer hos IT Minds on 06-03-20 13:56
Mindster og Software Developer hos IT Minds

Test-driven development helps a developer set up predicates that the code should solve, before writing the actual code.

After the code is written, the test should pass, and the code now supports that predicate.

Sometimes using a purely TDD approach the development time will slow down a lot. And many "buyers" of software solutions do not want to pay this cost upfront.

Laravel provides the tools to create feature tests. These tests fill in the role of integration tests.

Before we get too much into a specific case, it is also worth noting that Laravel gives you an easy way to mock out your database with an in-memory one, which really gives you confidence in the tests you write, since the Feature tests test the data model and its write/read functionality.

The only thing that needs to be added to make sure that you can use this functionality is these lines in the phpunit.xml file.

Screenshot 2020-03-06 at 13.50.13

To make sure that each test has its own pristine version of the database to work with, you can add a use statement in the class, which in turn makes sure that the database is wiped between tests.

Screenshot 2020-03-06 at 13.51.04

Say for instance we want to make an endpoint that exposes some projects that a user owns. A test for such a feature (before writing the actual controller to expose it) would look something like this:

Screenshot 2020-03-06 at 13.51.40

This test firstly creates 5 projects to the user under test.
Then it calls the endpoint api/projects which I then expect to return the same amount of projects that I created for the user in the first place.

To start with, this test would fail, since we have no endpoint that returns projects. So let us go ahead and create that.

Screenshot 2020-03-06 at 13.52.26

First of all, we make sure that we have the authenticated user, and we fetch all of the projects that match the userId from that user.

and boom our test now passes.

Now we get the requirement that all projects can have a scratchpad associated with it.

From here we go back and write a new test that could make sure that if there is a scratch on the project, this scratch is also returned with the project.

such a test might look like this:

Screenshot 2020-03-06 at 13.53.09

The test above says that if there is a user with a project, and that project has a connected scratchpad, I expect that scratchpad to match the one returned from the endpoint.

Very well, but this test fails at this point, since there is no scratches
present on the payload.
A quick fix to the index function solves this:

Screenshot 2020-03-06 at 13.53.51

And boom, our test is again green.

This was not meant to lecture in the use of TDD, but merely how Laravel provides tools that make this process great and fluent.

As a final note, I want to say that if a feature test has tested anything else than the response from the endpoint, that test should maybe be moved out to a unit test. The Feature tests are meant to test the overall functionality of the feature.

It is specifically for this reason I think that the Laravel feature tests are powerfull. It creates a fine line where there is a lot of value given, for not to much effort.

You can read more about testing in Laravel here
(https://laravel.com/docs/7.x/testing)
[https://laravel.com/docs/7.x/testing]
.

Insights fra de bedste softwaretalenter

En del af IT Minds’ DNA er, at vi spotter og tiltrækker de bedste softwaretalenter, som er stærke i de nyeste teknologier og frameworks. Derfor vil vi gerne dele ud af vores viden og erfaringer vores konsulenter opsamler, når de afprøver og arbejder med nye teknologier og frameworks.

Seneste indlæg