Replace ecomp references
[portal.git] / ecomp-portal-FE-common / client / app / views / tabs / tabs.controller.spec.js
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 'use strict';
39
40 describe('Controller: TabsCtrl ',() => {
41     beforeEach(module('ecompApp'));
42
43     //destroy $http default cache before starting to prevent the error 'default cache already exists'
44     beforeEach(inject((_CacheFactory_)=>{
45         _CacheFactory_.destroyAll();
46     }));
47
48     let TabsCtrl, $controller, $q, $rootScope, $log, $window, $cookies,$scope;
49
50     beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_, _$window_, _$cookies_)=>{
51         [$controller, $q, $rootScope, $log, $window, $cookies] = [_$controller_, _$q_, _$rootScope_, _$log_, _$window_, _$cookies_];
52     }));
53
54     var deferredApps, deferredUserProfile;
55     beforeEach(()=>{
56         deferredApps = $q.defer();
57         deferredUserProfile = $q.defer();
58         let applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock', ['getUserApps']);
59         applicationsServiceMock.getUserApps.and.returnValue(deferredApps.promise);
60
61         let userProfileServiceMock = jasmine.createSpyObj('userProfileServiceMock',['getUserProfile']);
62         userProfileServiceMock.getUserProfile.and.returnValue(deferredUserProfile.promise);
63
64         $scope = $rootScope.$new();
65         TabsCtrl = $controller('TabsCtrl', {
66             applicationsService: applicationsServiceMock,
67             $log: $log,
68             $window: $window,
69             userProfileService: userProfileServiceMock,
70             $scope: $scope,
71             $cookies: $cookies,
72             $rootScope: $rootScope
73         });
74     });
75
76     it('should populate this.apps with data from portals service getUserApps', ()=>{
77         var profile = {roles:'superAdmin',userId:'userid'};
78        deferredUserProfile.resolve(profile);
79        deferredApps.resolve([{name: 'portal1'},{name: 'portal2'},{name: 'portal3'}]);
80         $rootScope.$apply();
81         expect($scope.appsViewData.length).toBe(3);
82     });
83
84     it('should call $log error when getAllPortals fail', ()=>{
85         spyOn($log, 'error');
86         deferredUserProfile.reject('something happened!');
87         $rootScope.$apply();
88         expect($log.error).toHaveBeenCalled();
89     });
90
91     it('should open link in a new window when clicking app thumbnail', () => {
92         spyOn($window, 'open');
93         let someUrl = 'http://some/url/';
94         TabsCtrl.goToPortal(someUrl);
95         expect($window.open).toHaveBeenCalledWith(someUrl, '_self');
96     });
97     
98  
99 });