This is the sixth installment in a series of building a Test-Driven Grocery List application using Jasmine and RequireJS. To learn more about the intent and general concept of the series please visit The Making of a Test-Driven Grocery List Application in JavaScript: Part I

Introduction

We left the previous post with failing tests!

I don’t necessarily condone leaving a master branch in such a state, so don’t give my name to your managers :) I, however, have no problem with leaving a feature or developer branch at the end of the day with failing tests – within reason. As long as the errors are from unimplemented behavior and the branch is not being monitored by some CI server feeding reports to your client(s), I see no problem. Sometimes I will write out the tests I plan to resolve the following day at 5:30 just so I can get a refresher the next morning as to the task at hand.

In the article I plan to get your tests all green again by modifying the Mark Off Item tests and possibly add a few new features.

Mark Off Item Feature

Way back in the third article in this series, we wrote up a story and some feature specs around the usability of marking off an item already existant in the list of item of the Grocery List application. In getting this feature implemented, we added a basic mark-item API to the list-controller, which allowed us to pass in a grocery-ls-item model to the list-controller which would then modify its state.

In the previous couple posts, we have refactored list-controller to not be responsible for item state and to respond to changes on a collection model – this is what led us to failing tests. We still want to keep the Mark Off Item feature, but instead of having specs that tested the mark-item API of the list-controller, we’re going to change the specs to verify that the grocery-ls-item model that is being modified updates its state and is retained in the collection held by the list-controller.

Tests

When I start creating the tests, I take some time in thinking about the Givens. Typically, the Givens are what make up the beforeEach() setup of a spec suite, but they can also lead to address some design concerns about components involved in getting the tests to pass. Such is the case in modifying our Mark Off Item feature specs.

We are not necessarily going to test the UI changes related to the action of marking off an item from the Grocery List. We could, but it is more important to me to test that the grocery-ls-item model that holds that state value of being marked is properly retaining that value and accessible from not only the collection, but from the associated list-item-controller instance, as well – after all, it is the list-item-controller that is responsible for responding to changes to an item being marked-off; i want to ensure that, in the very least, it has the opportunity, not actually what it does with the opportunity.

That statement may sound foolish, i’ll admit. If it was an expectation that the action of marking off an item was to trigger a reaction that defined another feature specification, then certainly I would write up tests accordingly. But as it stands, it changes a style on the list-item-controller view. I am not so concerned with that implementation at the moment – if it becomes a real business issue and it was a requirement to have the text shown with a strike-through, then yes.

Let’s start with the setup and teardown for the Mark Off Item feature specs:

/test/jasmine/spec/feature/markitem.spec.js

define(['jquery', 'script/controller/list-controller', 'script/controller/list-item-controller'],

        function($, listController, itemControllerFactory) {



  describe('Existing item is marked-off', function() {



    var item,

        itemController,

        getRendererStub;



    beforeEach( function() {

      item = listController.createNewItem();



      itemController = itemControllerFactory.create($('<li/>'), item);

      getRendererStub = sinon.stub();

      getRendererStub.returns(itemController);

      listController.getRendererFromItem = getRendererStub;

    });



    afterEach( function() {

      item = undefined;

      itemController = undefined;

      getRendererStub = undefined;

    });



  });



});

In the beforeEach(), we’ve stubbed out a new method on list-controller that allows us to access the associated list-item-controller with a model: getRendererFromItem().

If you remember from the last article, we also did some stubbing of methods before moving to implementation on list-controller. We are doing the same here and using the SinonJS stub API to stub a method that currently does not exist on list-controller. To do so, and not have exceptions thrown in your tests regarding the existence of the method on the object being stubbed, you create an anonymous stub and assign it to the target object:

/test/jasmine/spec/feature/markitem.spec.js

getRendererStub = sinon.stub();

getRendererStub.returns(itemController);

listController.getRendererFromItem = getRendererStub;

The stub is sort of a fub, seeing as it is not really accessing the list-item-controller created by the list-controller in response to change on the collection – but it does provide some basis of design in that getRendererFromItem() is expected to return a list-item-controller which in turn responds to the provided model. Anyway, once we remove the stub and implement the API on the list-controller itself, we’ll certainly have to write more tests for that integration as we are not necessarily concerned in this specification of getRendererFromItem() returning the correct list-item-controller instance… so you have that to look forward to :) Right now, we only care about the preservation of state and model existence within the application.

First we’ll test that setting an item as marked is preserved in the model and held on the item controller:
/test/jasmine/spec/feature/markitem.spec.js

it('should denote item as being in possession', function() {

  var itemRenderer = listController.getRendererFromItem(item);

      savedItemSpy = sinon.spy();



  savedItemSpy(itemRenderer.model);

  item.marked = true;



  expect(item.marked).toEqual(true);

  sinon.assert.calledWith(savedItemSpy, sinon.match.hasOwn('marked', true));

});

Then, I want to ensure that marking off an item does not mean that it is removed from the overall collection:
/test/jasmine/spec/feature/markitem.spec.js

it('should retain the item in the grocery list collection', function() {

  var itemIndex = listController.getItemList().getItemIndex(item);



  item.marked = true;

  expect(listController.getItemList().getItemIndex(item)).toEqual(itemIndex);

});

And finally, just to be sure that we can safely toggle the marked off state and it be retained:
/test/jasmine/spec/feature/markitem.spec.js

it('should retain item in renderer listing regardless of marked-off status', function() {

  var itemRenderer = listController.getRendererFromItem(item),

      itemIndex = listController.getItemList().getItemIndex(item);



  item.marked = true;

  item.marked = false;



  expect(itemRenderer.model.marked).toEqual(false);

  expect(listController.getItemList().getItemIndex(item)).toEqual(itemIndex);

});

Perhaps the last one is out of a little paranoia, but it also describes the behavior of the Mark Off Item feature as being togglable from a User standpoint – meaning, marking off an item is not considered deleting it from the list. Also, a little paranoia sprinkled on some tests can save you from fret when working with the implementation code.

Speaking of implementation…

list-controller Implementation

Moving the getRendererFromItem() method over to the list-controller will involve holding and maintaining a list of list-item-renderers. We’ll use the Collection object we created previously for the models and place the job of curation between both collections on the list-controller:

/script/controller/list-controller

var collection = collectionFactory.create(),

    rendererList = collectionFactory.create(),

    listController = {

      $view: undefined,

      getItemList: function() {

        return collection;

      },

      getRendererFromItem: function(item) {

        var i = rendererList.itemLength();

        while( --i > -1 ) {

          if(rendererList.getItemAt(i).model === item) {

            return rendererList.getItemAt(i);

          }

          return undefined;

        }

      },

      createNewItem: function() {

        var model = modelFactory.create();

        collection.addItem(model);

        return model;

      },

      setView: function(view) {

        this.$view = (view instanceof $) ? view : $(view);

      }

    };

If an associated list-item-controller cannot be found from the provided grocery-ls-item model, then undefined is returned. We will ensure this and other expectations in a new integration test for the list-controller in a bit, but for now we have a little more work to do in order for the list-controller to behave as described in the Mark Off Item feature specs.

Next step is to have the tests fail by removing the stub for the getRendererFromItem() method now on the list-controller:
/test/jasmine/spec/feature/markitem.spec.js

define(['jquery', 'script/controller/list-controller'],

        function($, listController) {



  describe('Existing item is marked-off', function() {



    var item;



    beforeEach( function() {

      item = listController.createNewItem();

    });



    it('should denote item as being in possession', function() {

      var itemRenderer = listController.getRendererFromItem(item);

          savedItemSpy = sinon.spy();



      savedItemSpy(itemRenderer.model);

      item.marked = true;



      expect(item.marked).toEqual(true);

      sinon.assert.calledWith(savedItemSpy, sinon.match.hasOwn('marked', true));

    });



    it('should retain the item in the grocery list collection', function() {

      var itemIndex = listController.getItemList().getItemIndex(item);



      item.marked = true;

      expect(listController.getItemList().getItemIndex(item)).toEqual(itemIndex);

    });



    it('should retain item in renderer listing regardless of marked-off status', function() {

      var itemRenderer = listController.getRendererFromItem(item),

          itemIndex = listController.getItemList().getItemIndex(item);



      item.marked = true;

      item.marked = false;

      expect(itemRenderer.model.marked).toEqual(false);

      expect(listController.getItemList().getItemIndex(item)).toEqual(itemIndex);

    });



    afterEach( function() {

      item = undefined;

    });



  });



});

Run the tests, and we’ll get failures related to the getRendererFromItem() method returning undefined with each call:
Failing tests on getRendererFromItem invocation

Good. That sort of assures us that getRendererFromItem() works as expected. This little mid-implementation failure won’t save us from writing proper tests for list-controller, but it’s a warm feeling for now :)

The reason that getRendererForItem() is returning undefined on each call is that we have not modified list-controller to add the list-item-controller renderer to the underlying rendererList collection. Let’s add the maintenance to the collection-change response on the model collection:

/script/controller/list-controller

$collection.on('collection-change', function(event) {

  var model, itemController, $itemView;

  switch( event.kind ) {

    case EventKindEnum.ADD:

      $itemView = $('<li>');

      model = event.items.shift();

      itemController = itemControllerFactory.create($itemView, model);



      $itemView.appendTo(listController.$view);

      rendererList.addItem(itemController);

      itemController.state = itemControllerFactory.state.EDITABLE;

      break;

    case EventKindEnum.REMOVE:

      break;

    case EventKindEnum.RESET:

      break;

  }

});

We’ve moved the variable declarations out of the switch..case for the ADD event type; they are hoisted by the interpreter, anyway, but I like a little more clarity. More importantly, we are adding the newly created list-item-controller to he renderList.

Run the tests and we’ll be back to green!
Passing tests on getRendererFromItem implementation

Hold on! Before you run out the door and down the street singing my praises… you need pants. I don’t know why you are reading this article without pants, but you probably will get a fine. Plus, we really need to add some tests for the list-controller.

list-controller Tests

The Mark Off Item specs we just got to pass are great in describing that feature and the usability, but they don’t necessarily test all the expectations we have of the list-controller and its API. Perhaps we should have wrote up the tests for list-controller and, specifically, the getRendererFromItem() method prior to modifying the Mark Off Item specs and getting them to pass. I would agree with that, but I am also not a stickler… as long as we get some integration tests in for list-controller, I won’t hold it against myself :)

There are more tests regarding the list-controller API in the repository tagged later in this article, but for now I wanted to create a new spec suite for list-controller and test the expectations we had previously described for the getRendererFromItem() method:

/test/jasmine/spec/list-controller.spec.js

define(['jquery', 'script/controller/list-controller', 'script/model/grocery-ls-item'],

        function($, listController, modelFactory) {



  describe('Grocery List list-controller', function() {



    describe('getRendererItem()', function() {



      it('should return renderer associated with model', function() {

        var itemModel, renderer;



        itemModel = listController.createNewItem();

        renderer = listController.getRendererFromItem(itemModel);

        expect(renderer).not.toBeUndefined();

        expect(renderer.model).toBe(itemModel);

      });



      it('should return undefined with no associated model', function() {

        var itemModel, renderer;



        itemModel = modelFactory.create();

        renderer = listController.getRendererFromItem(itemModel);

        expect(renderer).toBeUndefined();

      });



    });



  });



});

We have defined two tests for the getRendererFromItem() method on list-controller to ensure that it 1) does return the associated renderer when available and 2) does return undefined when an associated renderer is not available.

Let’s add that to the specrunner:
/test/jasmine/specrunner.html

require( ['spec/feature/additem.spec.js', 'spec/feature/markitem.spec.js',

          'spec/list-controller.spec.js', 'spec/list-item-controller.spec.js', 'spec/grocery-ls-item.spec.js',

          'spec/collection.spec.js'], function() {



  var jasmineEnv = jasmine.getEnv(),

      ...

  jasmineEnv.execute();



});

aside

You may be wondering why it seems like I am doubling up on tests; after all, we have verified that the getRendererFromItem() method does as expected from within the Mark Off Item specs. This is true. However, I think of this spec suite, list-controller.spec.js, as more unit tests in that we are verifying how the component behaves. Within the Mark Off Item specs, I feel it is closer to how the component behaves in the system and reveals more of an expectation of the features of the Grocery List application. If I was to do further work in modifying the list-controller, I would start with this spec, and if it impacted the Mark Off Item feature, get that passing afterward. Not stuck in my way of thinking on this, but it my current workflow. Let me know if you have any better strategies.

Actually, that brings up a good point. We should revisit the Add Item specs and add a test to ensure that the newly created item returned from createNewItem() will return an associated list-item-controller instance from getRendererFromItem()

Add Item Feature Update

We’ll add a spec to the current suite that verifies that the new created grocery-ls-item is properly paired with the list-item-controller and that they associated view is the one made available on the Grocery List UI:

/test/jasmine/spec/feature/additem.spec.js

it('should enable associated item renderer as editable', function() {

  var newItem = listController.createNewItem(),

      itemRenderer = listController.getRendererFromItem(newItem);



    expect(itemRenderer).not.toBeUndefined();

    expect(itemRenderer.model).toBe(newItem);

    expect(itemRenderer.state).toEqual(itemControllerFactory.state.EDITABLE);

    expect($listView.children()[0]).toBe(itemRenderer.parentView.get(0));

});

The last expectation in there utilizes some of the access API from jQuery. If you are unfamiliar with it, it is basically testing that the first item in the parent list view is that of the parentView managed by the associated list-item-controller. If you take a look at the previous spec, we had already verified that the child list of the list view had been changed to include a new item; now we are ensuring that the new item is the correct one, accessible from getRendererFromItem().

I think that pretty much shores up the proper testing in describing the Add Item and Mark Off Item features. Run the tests and all are green!
Passing tests for Add Item and Mark Off Item Features

Tagged 0.1.9 : https://github.com/bustardcelly/grocery-ls/tree/0.1.9

Conclusion

We got the Mark Off Item specs running green again after we had left the application in a failing state from the last article. Hooray! But, we are still only addressing half of the usability features I envision for the Grocery List application. Sometimes it is easy to forget that we are still building an application. If you ran it, you would see that it still works as expected, which I think is rather cool; I mean, we have been busying ourselves ensuring that our code will support our understanding of the system, and at the end of the day, it actually does. We have been running the test runner much more than the actual application. That is not to say that we shouldn’t be doing more User testing…

Anyway, in the next article I think we should address a new feature – Removal. Cheers for sticking around!

Link Dump

Reference

Test-Driven JavaScript Development by Christian Johansen
Introducing BDD by Dan North
RequireJS
AMD
Jasmine
Sinon
Jasmine.Async

Post Series

grocery-ls github repo
Part I – Introduction
Part II – Feature: Add Item
Part III – Feature: Mark-Off Item
Part IV – Feature: List-Item-Controller
Part V – Feature: List-Controller Refactoring
Part VI – Back to Passing
Part VII – Remove Item
Part VIII – Bug Fixing
Part IX – Persistence
Part X – It Lives!

Posted in AMD, JavaScript, RequireJS, grocery-ls, jasmine, unit-testing.