Skip to content

Latest commit

 

History

History
1002 lines (766 loc) · 28.5 KB

chapter_24_outside_in.asciidoc

File metadata and controls

1002 lines (766 loc) · 28.5 KB

Finishing "My Lists": Outside-In TDD

Warning, Chapter Recently Updated

🚧 Warning, this Chapter is freshly updated for Django 5 + Python 3.13.

The code listings should have valid syntax, and I’ve been through and sense-checked the chapter text, but a few things might still be off! So let me know what you think of the chapter, via [email protected]

In this chapter I’d like to talk about a technique called Outside-In TDD. It’s pretty much what we’ve been doing all along. Our "double-loop" TDD process, in which we write the functional test first and then the unit tests, is already a manifestation of outside-in—​we design the system from the outside, and build up our code in layers. Now I’ll make it explicit, and talk about some of the common issues involved.

The Alternative: "Inside-Out"

The alternative to "outside-in" is to work "inside-out", which is the way most people intuitively work before they encounter TDD. After coming up with a design, the natural inclination is sometimes to implement it starting with the innermost, lowest-level components first.

For example, when faced with our current problem, providing users with a "My Lists" page of saved lists, the temptation is to start at the models layer: we probably want to add an "owner" attribute to the List model object, reasoning that an attribute like this is "obviously" going to be required. Once that’s in place, we would modify the more peripheral layers of code, such as views and templates, taking advantage of the new attribute, and then finally add URL routing to point to the new view.

It feels comfortable because it means you’re never working on a bit of code that is dependent on something that hasn’t yet been implemented. Each bit of work on the inside is a solid foundation on which to build the next layer out.

But working inside-out like this also has some weaknesses.

Why Prefer "Outside-In"?

The most obvious problem with inside-out is that it requires us to stray from a TDD workflow. Our functional test’s first failure might be due to missing URL routing, but we decide to ignore that and go off adding attributes to our database model objects instead.

We might have ideas in our head about the new desired behaviour of our inner layers like database models, and often these ideas will be pretty good, but they are actually just speculation about what’s really required, because we haven’t yet built the outer layers that will use them.

One problem that can result is to build inner components that are more general or more capable than we actually need, which is a waste of time, and an added source of complexity for your project. Another common problem is that you create inner components with an API which is convenient for their own internal design, but which later turns out to be inappropriate for the calls your outer layers would like to make…​worse still, you might end up with inner components which, you later realise, don’t actually solve the problem that your outer layers need solved.

In contrast, working outside-in allows you to use each layer to imagine the most convenient API you could want from the layer beneath it. Let’s see it in action.

The FT for "My Lists"

As we work through the following functional test, we start with the most outward-facing (presentation layer), through to the view functions (or "controllers"), and lastly the innermost layers, which in this case will be model code.

We know our create_pre_authenticated_session code works now, so we can just write our FT to look for a "My Lists" page:

Example 1. src/functional_tests/test_my_lists.py (ch22l001)
from selenium.webdriver.common.by import By
[...]

    def test_logged_in_users_lists_are_saved_as_my_lists(self):
        # Edith is a logged-in user
        self.create_pre_authenticated_session("[email protected]")

        # She goes to the home page and starts a list
        self.browser.get(self.live_server_url)
        self.add_list_item("Reticulate splines")
        self.add_list_item("Immanentize eschaton")
        first_list_url = self.browser.current_url

        # She notices a "My lists" link, for the first time.
        self.browser.find_element(By.LINK_TEXT, "My lists").click()

        # She sees that her list is in there, named according to its
        # first list item
        self.wait_for(
            lambda: self.browser.find_element(By.LINK_TEXT, "Reticulate splines")
        )
        self.browser.find_element(By.LINK_TEXT, "Reticulate splines").click()
        self.wait_for(
            lambda: self.assertEqual(self.browser.current_url, first_list_url)
        )

We create a list with a couple of items, and then we check that this list appears on a new "My Lists" page, and that it’s "named" after the first item in the list.

Let’s validate that it really works by creating a second list, and seeing that appear on the My Lists page as well. The FT continues, and while we’re at it, we check that only logged-in users can see the "My Lists" page:

Example 2. src/functional_tests/test_my_lists.py (ch22l002)
        [...]
        self.wait_for(
            lambda: self.assertEqual(self.browser.current_url, first_list_url)
        )

        # She decides to start another list, just to see
        self.browser.get(self.live_server_url)
        self.add_list_item("Click cows")
        second_list_url = self.browser.current_url

        # Under "my lists", her new list appears
        self.browser.find_element(By.LINK_TEXT, "My lists").click()
        self.wait_for(lambda: self.browser.find_element(By.LINK_TEXT, "Click cows"))
        self.browser.find_element(By.LINK_TEXT, "Click cows").click()
        self.wait_for(
            lambda: self.assertEqual(self.browser.current_url, second_list_url)
        )

        # She logs out.  The "My lists" option disappears
        self.browser.find_element(By.CSS_SELECTOR, "#id_logout").click()
        self.wait_for(
            lambda: self.assertEqual(
                self.browser.find_elements(By.LINK_TEXT, "My lists"),
                [],
            )
        )

Our FT uses a new helper method, add_list_item, which abstracts away entering text into the right input box. We define it in 'base.py':

Example 3. src/functional_tests/base.py (ch22l003)
from selenium.webdriver.common.keys import Keys
[...]

    def add_list_item(self, item_text):
        num_rows = len(self.browser.find_elements(By.CSS_SELECTOR, "#id_list_table tr"))
        self.get_item_input_box().send_keys(item_text)
        self.get_item_input_box().send_keys(Keys.ENTER)
        item_number = num_rows + 1
        self.wait_for_row_in_list_table(f"{item_number}: {item_text}")

And while we’re at it we can use it in a few of the other FTs, like this:

Example 4. src/functional_tests/test_list_item_validation.py
    self.add_list_item("Buy wellies")

I think it makes the FTs a lot more readable. I made a total of six changes—​see if you agree with me.

A quick run of all FTs, a commit, and then back to the FT we’re working on. The first error should look like this:

$ python src/manage.py test functional_tests.test_my_lists
[...]
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate
element: My lists; [...]

The Outside Layer: Presentation and Templates

The test is currently failing saying that it can’t find a link saying "My Lists". We can address that at the presentation layer, in base.html, in our navigation bar. Here’s the minimal code change:

  • TODO: update this link for latest bootstrap / style nicely

Example 5. src/lists/templates/base.html (ch22l005)
      <nav class="navbar">
        <div class="container-fluid">
          <a class="navbar-brand" href="/">Superlists</a>
          {% if user.email %}
            <a href="#">My lists</a>
            <span class="navbar-text">Logged in as {{ user.email }}</span>
            <form method="POST" action="{% url 'logout' %}">
              [...]

Of course, that link doesn’t actually go anywhere, but it does get us along to the next failure:

  • TODO: address issue with default list item ordering here.

$ python src/manage.py test functional_tests.test_my_lists
[...]
    self.wait_for(
    ~~~~~~~~~~~~~^
        lambda: self.browser.find_element(By.LINK_TEXT, "Reticulate splines")
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[...]
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate
element: Reticulate splines; [...]

Which is telling us we’re going to have to build a page that lists all of a user’s lists by title. Let’s start with the basics—​a URL and a placeholder template for it.

Again, we can go outside-in, starting at the presentation layer with just the URL and nothing else:

Example 6. src/lists/templates/base.html (ch22l006)
  {% if user.email %}
    <a href="{% url 'my_lists' user.email %}">My lists</a>

Moving Down One Layer to View Functions (the Controller)

That will cause a template error, so we’ll start to move down from the presentation layer and URLs down to the controller layer, Django’s view functions.

As always, we start with a test:

Example 7. src/lists/tests/test_views.py (ch22l007)
class MyListsTest(TestCase):
    def test_my_lists_url_renders_my_lists_template(self):
        response = self.client.get("/lists/users/[email protected]/")
        self.assertTemplateUsed(response, "my_lists.html")

That gives:

AssertionError: No templates used to render the response

And we fix it, still at the presentation level, in 'urls.py':

Example 8. src/lists/urls.py (ch22l008)
urlpatterns = [
    path("new", views.new_list, name="new_list"),
    path("<int:list_id>/", views.view_list, name="view_list"),
    path("users/<str:email>/", views.my_lists, name="my_lists"),
]

That gives us a test failure, which informs us of what we should do as we move down to the next level:

    path("users/<str:email>/", views.my_lists, name="my_lists"),
                               ^^^^^^^^^^^^^^
AttributeError: module 'lists.views' has no attribute 'my_lists'

We move in from the presentation layer to the views layer, and create a minimal placeholder:

Example 9. src/lists/views.py (ch22l009)
def my_lists(request, email):
    return render(request, "my_lists.html")

And a minimal template:

Example 10. src/lists/templates/my_lists.html (ch22l010)
{% extends 'base.html' %}

{% block header_text %}My Lists{% endblock %}

That gets our unit tests passing, but our FT is still at the same point, saying that the "My Lists" page doesn’t yet show any lists. It wants them to be clickable links named after the first item:

$ python src/manage.py test functional_tests.test_my_lists
[...]
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate
element: Reticulate splines; [...]

Another Pass, Outside-In

At each stage, we still let the FT drive what development we do.

Starting again at the outside layer, in the template, we begin to write the template code we’d like to use to get the "My Lists" page to work the way we want it to. As we do so, we start to specify the API we want from the code at the layers below.

A Quick Restructure of the Template Inheritance Hierarchy

Currently there’s no place in our base template for us to put any new content.

Example 11. src/lists/templates/base.html (ch22l011-2)
      <div class="row justify-content-center">
        <div class="col-lg-6">
          {% block table %}
          {% endblock %}
        </div>
      </div>

      <div class="row">
        <div class="col-md-6 col-md-offset-3">
          {% block extra_content %}
          {% endblock %}
        </div>
      </div>
    </div>

    <script src="/static/lists.js"></script>
    [...]

Also, the "My Lists" page doesn’t need the new item form, so we’ll put that into a block too, making it optional.

Example 12. src/lists/templates/base.html (ch22l011-1)
@@ -57,6 +57,7 @@
         <div class="col-lg-6 text-center">
           <h1 class="display-1 mb-4">{% block header_text %}{% endblock %}</h1>

+          {% block list_form %}
             <form method="POST" action="{% block form_action %}{% endblock %}" >
               {% csrf_token %}
               <input
@@ -76,6 +77,8 @@
                 </div>
               {% endif %}
             </form>
+          {% endblock %}
+
         </div>
       </div>

Designing Our API Using the Template

Meanwhile, in my_lists.html we override the list_form and say it should be empty…​

Example 13. src/lists/templates/my_lists.html (ch22l010-1)
{% extends 'base.html' %}

{% block header_text %}My Lists{% endblock %}

{% block list_form %}{% endblock %}

And then we can just work inside the extra_content block:

Example 14. src/lists/templates/my_lists.html (ch22l010-2)
[...]

{% block list_form %}{% endblock %}

{% block extra_content %}
  <h2>{{ owner.email }}'s lists</h2>  (1)
  <ul>
    {% for list in owner.list_set.all %}  (2)
      <li><a href="{{ list.get_absolute_url }}">{{ list.name }}</a></li>  (3)
    {% endfor %}
  </ul>
{% endblock %}

We’ve made several design decisions in this template which are going to filter their way down through the code:

  1. We want a variable called owner to represent the user in our template.

  2. We want to be able to iterate through the lists created by the user using owner.list_set.all (I happen to know we get this for free from the Django ORM).

  3. We want to use list.name to print out the "name" of the list, which is currently specified as the text of its first element.

Note
Outside-In TDD is sometimes called "programming by wishful thinking",[1] and you can see why. We start writing code at the higher levels based on what we wish we had at the lower levels, even though it doesn’t exist yet!

We can rerun our FTs, to check that we didn’t break anything, and to see whether we’ve got any further:

$ python src/manage.py test functional_tests
[...]
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate
element: Reticulate splines; [...]

 ---------------------------------------------------------------------
Ran 8 tests in 77.613s

FAILED (errors=1)

Well, no further, but at least we didn’t break anything. Time for a commit:

$ git add src/lists
$ git diff --staged
$ git commit -m "url, placeholder view, and first-cut templates for my_lists"

Moving Down to the Next Layer: What the View Passes to the Template

Now our views layer needs to respond to the requirements we’ve laid out in the template layer, by giving it the objects it needs. In this case, the list owner:

Example 15. src/lists/tests/test_views.py (ch22l011)
from django.contrib.auth import get_user_model

User = get_user_model()
[...]


class MyListsTest(TestCase):
    def test_my_lists_url_renders_my_lists_template(self):
        [...]

    def test_passes_correct_owner_to_template(self):
        User.objects.create(email="[email protected]")
        correct_user = User.objects.create(email="[email protected]")
        response = self.client.get("/lists/users/[email protected]/")
        self.assertEqual(response.context["owner"], correct_user)

Gives:

KeyError: 'owner'

So:

Example 16. src/lists/views.py (ch22l012)
from django.contrib.auth import get_user_model

User = get_user_model()
[...]


def my_lists(request, email):
    owner = User.objects.get(email=email)
    return render(request, "my_lists.html", {"owner": owner})

That gets our new test passing, but we’ll also see an error from the previous test. We just need to add a user for it as well:

Example 17. src/lists/tests/test_views.py (ch22l013)
    def test_my_lists_url_renders_my_lists_template(self):
        User.objects.create(email="[email protected]")
        [...]

And we get to an OK:

OK

The Next "Requirement" from the Views Layer: New Lists Should Record Owner

Before we move down to the model layer, there’s another part of the code at the views layer that will need to use our model: we need some way for newly created lists to be assigned to an owner, if the current user is logged in to the site.

Here’s a first crack at writing the test:

Example 18. src/lists/tests/test_views.py (ch22l014)
class NewListTest(TestCase):
    [...]

    def test_list_owner_is_saved_if_user_is_authenticated(self):
        user = User.objects.create(email="[email protected]")
        self.client.force_login(user)  #(1)
        self.client.post("/lists/new", data={"text": "new item"})
        new_list = List.objects.get()
        self.assertEqual(new_list.owner, user)
  1. force_login() is the way you get the test client to make requests with a logged-in user.

The test fails as follows:

AttributeError: 'List' object has no attribute 'owner'

To fix this, we can try writing code like this:

Example 19. src/lists/views.py (ch22l015)
def new_list(request):
    form = ItemForm(data=request.POST)
    if form.is_valid():
        nulist = List.objects.create()
        nulist.owner = request.user
        nulist.save()
        form.save(for_list=nulist)
        return redirect(nulist)
    else:
        return render(request, "home.html", {"form": form})

But it won’t actually work, because we don’t know how to save a list owner yet:

    self.assertEqual(new_list.owner, user)
                     ^^^^^^^^^^^^^^
AttributeError: 'List' object has no attribute 'owner'

A Decision Point: Whether to Proceed to the Next Layer with a Failing Test

  • TODO: rewrite this section if we do decide to drop the next chapter.

In order to get this test passing, as it’s written now, we have to move down to the model layer. However, it means doing more work with a failing test, which is not ideal.

The alternative is to rewrite the test to make it more isolated from the level below, using mocks.

On the one hand, it’s a lot more effort to use mocks, and it can lead to tests that are harder to read. On the other hand, advocates of what’s known as "London School" TDD are very keen on the approach. Read more in [appendix_purist_unit_tests].

Let’s do a commit, and then 'tag' the commit as a way of remembering our position for that appendix:

$ git commit -am "new_list view tries to assign owner but cant"
$ git tag revisit_this_point_with_isolated_tests

Moving Down to the Model Layer

Our outside-in design has driven out two requirements for the model layer: we want to be able to assign an owner to a list using the attribute .owner, and we want to be able to access the list’s owner with the API owner.list_set.all().

Let’s write a test for that:

Example 20. src/lists/tests/test_models.py (ch22l018)
from django.contrib.auth import get_user_model
[...]

User = get_user_model()
[...]


class ListModelTest(TestCase):
    def test_get_absolute_url(self):
        [...]

    def test_lists_can_have_owners(self):
        user = User.objects.create(email="[email protected]")
        mylist = List.objects.create(owner=user)
        self.assertIn(mylist, user.list_set.all())

And that gives us a new unit test failure:

    mylist = List.objects.create(owner=user)
    [...]
TypeError: List() got unexpected keyword arguments: 'owner'

The naive implementation would be this:

from django.conf import settings
[...]

class List(models.Model):
    owner = models.ForeignKey(settings.AUTH_USER_MODEL)

But we want to make sure the list owner is optional. Explicit is better than implicit, and tests are documentation, so let’s have a test for that too:

Example 21. src/lists/tests/test_models.py (ch22l020)
    def test_list_owner_is_optional(self):
        List.objects.create()  # should not raise

The correct implementation is this:

Example 22. src/lists/models.py (ch22l021)
from django.conf import settings
[...]

class List(models.Model):
    owner = models.ForeignKey(
        settings.AUTH_USER_MODEL, blank=True, null=True, on_delete=models.CASCADE
    )

    def get_absolute_url(self):
        return reverse("view_list", args=[self.id])

Now running the tests gives the usual database error:

    return super().execute(query, params)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^
django.db.utils.OperationalError: table lists_list has no column named owner_id

Because we need to make some migrations:

$ python src/manage.py makemigrations
Migrations for 'lists':
  src/lists/migrations/0007_list_owner.py
    + Add field owner to list

We’re almost there; a couple more failures:

ERROR: test_can_save_a_POST_request
[...]
ValueError: Cannot assign "<SimpleLazyObject:
<django.contrib.auth.models.AnonymousUser object at 0x1069852e>>": "List.owner" must
be a "User" instance.
[...]

ERROR: test_redirects_after_POST
[...]
ValueError: Cannot assign "<SimpleLazyObject:
<django.contrib.auth.models.AnonymousUser object at 0x106a1b440>>": "List.owner" must
be a "User" instance.

We’re moving back up to the views layer now, just doing a little tidying up. Notice that these are in the old test for the new_list view, when we haven’t got a logged-in user. We should only save the list owner when the user is actually logged in. The .is_authenticated attribute we defined in [chapter_19_spiking_custom_auth] comes in useful now (when they’re not logged in, Django represents users using a class called AnonymousUser, whose .is_authenticated is always False):

Example 23. src/lists/views.py (ch22l023)
    if form.is_valid():
        nulist = List.objects.create()
        if request.user.is_authenticated:
            nulist.owner = request.user
            nulist.save()
        form.save(for_list=nulist)
        return redirect(nulist)
        [...]

And that gets us passing!

$ python src/manage.py test lists
[...]

Ran 38 tests in 0.237s

OK

This is a good time for a commit:

$ git add src/lists
$ git commit -m "lists can have owners, which are saved on creation."

Final Step: Feeding Through the .name API from the Template

The last thing our outside-in design wanted came from the templates, which wanted to be able to access a list "name" based on the text of its first item:

Example 24. src/lists/tests/test_models.py (ch22l024)
    def test_list_name_is_first_item_text(self):
        list_ = List.objects.create()
        Item.objects.create(list=list_, text="first item")
        Item.objects.create(list=list_, text="second item")
        self.assertEqual(list_.name, "first item")
Example 25. src/lists/models.py (ch22l025)
    @property
    def name(self):
        return self.item_set.first().text

And that, believe it or not, actually gets us a passing test, and a working "My Lists" page (The "My Lists" page, in all its glory (and proof I did test on Windows))!

$ python src/manage.py test functional_tests
[...]
Ran 8 tests in 93.819s

OK
The @property Decorator in Python

If you haven’t seen it before, the @property decorator transforms a method on a class to make it appear to the outside world like an attribute.

This is a powerful feature of the language, because it makes it easy to implement "duck typing", to change the implementation of a property without changing the interface of the class. In other words, if we decide to change .name into being a "real" attribute on the model, which is stored as text in the database, then we will be able to do so entirely transparently—​as far as the rest of our code is concerned, they will still be able to just access .name and get the list name, without needing to know about the implementation. Raymond Hettinger gave a great, beginner-friendly talk on this topic at Pycon a few years ago, which I enthusiastically recommend (it covers about a million good practices for Pythonic class design besides).

Of course, in the Django template language, .name would still call the method even if it didn’t have @property, but that’s a particularity of Django, and doesn’t apply to Python in general…​

But we know we cheated to get there. The Testing Goat is eyeing us suspiciously. We left a test failing at one layer while we implemented its dependencies at the lower layer. Let’s see how things would play out if we were to use better test isolation…​

Screenshot of new My Lists page
Figure 1. The "My Lists" page, in all its glory (and proof I did test on Windows)
Outside-In TDD
Outside-In TDD

A methodology for building code, driven by tests, which proceeds by starting from the "outside" layers (presentation, GUI), and moving "inwards" step by step, via view/controller layers, down towards the model layer. The idea is to drive the design of your code from the use to which it is going to be put, rather than trying to anticipate requirements from the ground up.

Programming by wishful thinking

The outside-in process is sometimes called "programming by wishful thinking". Actually, any kind of TDD involves some wishful thinking. We’re always writing tests for things that don’t exist yet.

The pitfalls of outside-in

Outside-in isn’t a silver bullet. It encourages us to focus on things that are immediately visible to the user, but it won’t automatically remind us to write other critical tests that are less user-visible—​things like security, for example. You’ll need to remember them yourself.


1. This phrase "programming by wishful thinking" was perhaps first used in the amazing, mind-expanding textbook SICP, which I cannot recommend highly enough.