| describe('Controller: NoteCreateCtrl', function() { |
| beforeEach(angular.mock.module('zeppelinWebApp')); |
| |
| let scope; |
| let ctrl; |
| let noteList; |
| |
| beforeEach(inject(function($injector, $rootScope, $controller) { |
| noteList = $injector.get('noteListFactory'); |
| scope = $rootScope.$new(); |
| ctrl = $controller('NoteCreateCtrl', { |
| $scope: scope, |
| noteListFactory: noteList, |
| }); |
| })); |
| |
| it('should create a new name from current name when cloneNoteName is called', function() { |
| let notesList = [ |
| {path: 'dsds 1', id: '1'}, |
| {path: 'dsds 2', id: '2'}, |
| {path: 'test name', id: '3'}, |
| {path: 'aa bb cc', id: '4'}, |
| {path: 'Untitled Note 6', id: '4'}, |
| ]; |
| |
| noteList.setNotes(notesList); |
| |
| ctrl.sourceNoteName = 'test name'; |
| expect(ctrl.cloneNoteName()).toEqual('test name 1'); |
| ctrl.sourceNoteName = 'aa bb cc'; |
| expect(ctrl.cloneNoteName()).toEqual('aa bb cc 1'); |
| ctrl.sourceNoteName = 'Untitled Note 6'; |
| expect(ctrl.cloneNoteName()).toEqual('Untitled Note 7'); |
| ctrl.sourceNoteName = 'My_note'; |
| expect(ctrl.cloneNoteName()).toEqual('My_note 1'); |
| ctrl.sourceNoteName = 'dsds 2'; |
| expect(ctrl.cloneNoteName()).toEqual('dsds 3'); |
| }); |
| }); |