Matteo Scandolo | ecf088a | 2016-10-20 10:25:34 +0200 | [diff] [blame] | 1 | 'use strict'; |
| 2 | |
| 3 | describe('The User List', () => { |
| 4 | |
| 5 | var scope, element, isolatedScope, httpBackend; |
| 6 | |
| 7 | beforeEach(module('xos.globalXos')); |
| 8 | beforeEach(module('templates')); |
| 9 | |
| 10 | beforeEach(inject(function($httpBackend, $compile, $rootScope){ |
| 11 | |
| 12 | httpBackend = $httpBackend; |
| 13 | // Setting up mock request |
| 14 | $httpBackend.expectGET('/api/core/users/?no_hyperlinks=1').respond([ |
| 15 | { |
| 16 | email: 'matteo.scandolo@gmail.com', |
| 17 | firstname: 'Matteo', |
| 18 | lastname: 'Scandolo' |
| 19 | } |
| 20 | ]); |
| 21 | |
| 22 | scope = $rootScope.$new(); |
| 23 | element = angular.element('<users-list></users-list>'); |
| 24 | $compile(element)(scope); |
| 25 | scope.$digest(); |
| 26 | isolatedScope = element.isolateScope().vm; |
| 27 | })); |
| 28 | |
| 29 | it('should load 1 users', () => { |
| 30 | httpBackend.flush(); |
| 31 | expect(isolatedScope.users.length).toBe(1); |
| 32 | expect(isolatedScope.users[0].email).toEqual('matteo.scandolo@gmail.com'); |
| 33 | expect(isolatedScope.users[0].firstname).toEqual('Matteo'); |
| 34 | expect(isolatedScope.users[0].lastname).toEqual('Scandolo'); |
| 35 | }); |
| 36 | |
| 37 | }); |