aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/app/vnfs/LoginGuardService/LoginGuardService.spec.ts11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/app/vnfs/LoginGuardService/LoginGuardService.spec.ts b/src/app/vnfs/LoginGuardService/LoginGuardService.spec.ts
index 5e41d90..bf45684 100644
--- a/src/app/vnfs/LoginGuardService/LoginGuardService.spec.ts
+++ b/src/app/vnfs/LoginGuardService/LoginGuardService.spec.ts
@@ -1,7 +1,7 @@
/*
============LICENSE_START==========================================
===================================================================
-Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
+Copyright (C) 2018 IBM.
===================================================================
Unless otherwise specified, all software contained herein is licensed
@@ -16,8 +16,6 @@ distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-
-ECOMP is a trademark and service mark of AT&T Intellectual Property.
============LICENSE_END============================================
*/
@@ -57,4 +55,11 @@ describe('LogginGuard', () => {
let state: RouterStateSnapshot;
expect(service.canActivate(route, state)).toBe(true);
}));
+
+ it('be able to navigate to login page when user is not logged in', inject([LoginGuardService], (service: LoginGuardService) => {
+ localStorage['userId'] = '';
+ let route : ActivatedRouteSnapshot;
+ let mockSnapshot:any = jasmine.createSpyObj<RouterStateSnapshot>("RouterStateSnapshot", ['toString']);
+ expect(service.canActivate(route, mockSnapshot)).toBe(false);
+ }));
});