rizens

Testing Angular 1.x ES2015 Component with Jasmine

By Oren Farhi on Jan 15, 2016

In the previous article, I wrote about how to setup karma for testing AngularJS.x written with ES2015. Since then, I stumbled upon few issues while trying to test an AngularJS.x component written in ES2015 according to the angular ES2015 style guide. In this post, I’m sharing how to test AngularJS.x component written in ES2015.

Karma Setup For Testing Angular 1.x ES2015

tldr; the test code can be found here.

Apart from setting up karma as I mentioned in the previous article, I found that it is necessary to define the relevant transforms that the browserify task is using (and rather not “plugins” as i’ve written before) in karma’s configuration.

Since I’m using several transforms, in particularly - the “stringify” transform to load html files as strings, the karma configuration file now includes:

{
//... other configurations
    preprocessors: {
        '../tests/mocks/**/*mock.json': ['json_fixtures'],
        '**/*spec.js': ['browserify']
    },
    browserify: {
      debug: true,
      transform: [ 'babelify', 'stringify' ]
    },
    babelPreprocessor: {
      options: {
        presets: ['es2015'],
        sourceMap: 'inline'
      }
    }
}

Writing Tests For Angular 1.x Controller written in ES2015

As mentioned above, the component i’m testing is written in ES2015 as part of a preparation to Angular (+2). We’re going to explore a test case for the YoutubeVideos Component of the Echoes Player Open Source App that I developed, recently converting the code to use ES2015. The controller is defined as part of the component’s properties:

import template from './youtube-videos.tpl.html';

// Usage:
//  <youtube-videos></youtube-videos>
export let YoutubeVideosComponent = {
	template,
	selector: 'youtubeVideos',
	controllerAs: 'youtubeVideos',
	scope: {},
	bindToController: true,
	// replace: true,
	restrict: 'E',
	controller: class YoutubeVideosCtrl {
		/* @ngInject */
		constructor (YoutubePlayerSettings, YoutubeSearch, YoutubeVideoInfo, PlaylistEditorSettings) {
			Object.assign(this, { YoutubePlayerSettings, YoutubeVideoInfo, PlaylistEditorSettings });

			this.queueVideo = YoutubePlayerSettings.queueVideo;
			this.getFeedType = YoutubeSearch.getFeedType;
			this.videos = YoutubeSearch.items;
			this.searchMore = YoutubeSearch.searchMore;

			YoutubeSearch.resetPageToken();
			if (!this.videos.length) {
				YoutubeSearch.search();
			}
		}

		playVideo (video) {
			this.YoutubePlayerSettings.queueVideo(video);
			this.YoutubePlayerSettings.playVideoId(video);
		}

		playPlaylist (playlist) {
			return this.YoutubeVideoInfo.getPlaylist(playlist.id).then(this.YoutubePlayerSettings.playPlaylist);
		}

		addVideo (video) {
			this.PlaylistEditorSettings.add(video);
			this.PlaylistEditorSettings.show();
		}
	}
};

The YoutubeVideos component is a smart component, responsible for displaying a “wall” of media cards, originated in a youtube search api request.

First, to allow ES2015 new variables declarations, I need to define ‘use strict’. Afterwards, the code imports the relevant component and starts a describe block where I define variables that will be used during the tests:

'use strict';
import { YoutubeVideosComponent } from './youtube-videos.component';

describe('Youtube Videos', () => {
	let scope, YoutubeSearch, ctrl, YoutubePlayerSettings, controller;
	let YoutubeVideoInfo = {};
	let mockVideoItem = {};
	let mockPlaylistItem = {};

Next, inside the ”describe” block, comes two definitions of ”beforeEach” blocks. The first, defines a mocked module for testing the ”youtube-videos” module.

The 2nd, is a setup that will run for every test (“it()”) inside this describe block. Since it’s a smart component, it uses core services of the app that are injected to the controller of the component. These should be mocked since we really don’t want to invoke these services and, i.e,  calling youtube api for every test.

For mocking the services, I’m using jasmine’s “createSpyObj”, which create a mocked object with the set of “methods” that is passed in the 2nd argument as an array. These methods are defined as trackable functions which I can test and “spy” later.

After setting up the spies for the injected services, I’m creating a new instance of the component’s controller. The actual function is passed as an argument - that is part of the api of “$controller” mock service, as well as the mocked services are passed for this controller.

During the actual test, the “constructor” function of ”YoutubeVideosCtrl” is injected with the spies that are passed rather than the real services.

beforeEach(angular.mock.module('youtube-videos'));

	beforeEach(inject(($injector, $controller, $q) => {
		controller = $controller;
		YoutubeSearch = jasmine.createSpyObj('YoutubeSearch', [
			'search', 'resetPageToken', 'getFeedType', 'searchMore'
		]);
		YoutubePlayerSettings = jasmine.createSpyObj('YoutubePlayerSettings',
			['playVideoId', 'queueVideo', 'playPlaylist']);
		// spies
		YoutubeSearch.items = [];
		YoutubeVideoInfo.getPlaylist = () => {};
		spyOn(YoutubeVideoInfo, 'getPlaylist').and.callFake( () => {
			let defer = $q.defer();
			defer.resolve();
			return defer.promise;
		});
		scope = $injector.get('$rootScope').$new();
		ctrl = controller(YoutubeVideosComponent.controller, {
			$scope: scope,
			YoutubeSearch: YoutubeSearch,
			YoutubePlayerSettings: YoutubePlayerSettings,
			YoutubeVideoInfo: YoutubeVideoInfo
		});
		scope.$digest();
		mockVideoItem = window.mocks['video.item.mock'];
		mockPlaylistItem = window.mocks['youtube.videos.mock'];
	}));

That’s the code needed for the ”beforeEach” phase. Now, we can start writing the actual tests for the controller.

Notice how I refer to a ”search” function that i’m expecting to exist on the YoutubeSearch spy. As part of this component behaviour, I expect the “search” method to be invoked only once if there are no items (videos) for the component to render.

it('search youtube once when it loads if there are no items to render', () => {
	expect(YoutubeSearch.search).toHaveBeenCalled();
	expect(YoutubeSearch.search.calls.count()).toBe(1);
});

In order to test the opposite case, I took a different approach.

I copied an array of video items to ”YoutubeSearch.items” property to mock a populated property, after a ”search” response. Then, I create again a new instance of the YoutubeVideos controller, expecting the “YoutubeSearch.search” function not to be called. Eventually, the count of calls for the ”search” function should be still 1.

it('should not search when it loads if there are items to render', () => {
	angular.copy(mockPlaylistItem.items, YoutubeSearch.items);
	controller(YoutubeVideosComponent.controller, {
		$scope: scope,
		YoutubeSearch: YoutubeSearch,
		YoutubePlayerSettings: YoutubePlayerSettings,
		YoutubeVideoInfo: YoutubeVideoInfo
	});
	expect(YoutubeSearch.search.calls.count()).toBe(1);
});

For testing methods directly on the controller’s instance, I can refer to the ”ctrl” variable which hold a reference to it.

In the 2nd test described below, I’m testing the ”playPlaylist” method which supposed to invoke a promise based service. The ”getPlaylist” method has been mocked in the “beforeEach” block, and suppose to return a mocked promise. That, in order to test that the ”YoutubePlayerSettings” is expected to be called once as a reaction to a resolved promise.

In order to “invoke” the promise chain, we need to instruct angular to digest the changes, an only then, we can expect to write assertions.

it('should queue and play video', () => {
	ctrl.playVideo(mockVideoItem);
	expect(YoutubePlayerSettings.queueVideo).toHaveBeenCalled();
	expect(YoutubePlayerSettings.playVideoId).toHaveBeenCalled();
});

it('should play a playlist and queue the videos', () => {
	ctrl.playPlaylist(mockPlaylistItem);
	scope.$digest();
	expect(YoutubePlayerSettings.playPlaylist.calls.count()).toBe(1);
});

Final Thoughts

Currently, tests run on Chrome and PhantomJs2 these tests run on Chrome only - and not on PhantomJS2 as I wanted. The final code in one piece can be found here.

As i’ve written before, I think testing is important. Using ES2015 to to test ES2015 code is essential, as well as promoting modularity and more concise code. Still, there are more fields to cover in this world of testing and I can’t wait to explore all.

 

Hi there, I'm Oren Farhi

I'm an Experienced Software Engineer, Front End Tech Lead, focusing on Front End & Software Architecture and creating well formed applications.

Profile Avatar
© 2024, Built by Oren Farhi