aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2018-07-12 15:49:10 +0530
committerTakamune Cho <tc012c@att.com>2018-07-16 14:26:56 +0000
commit58f6096493ff0b54d12c23c762ff7cf108cd91c0 (patch)
tree5be9a8bb7c43642dd2ac45adf1c1e6e11a1cfeb0 /src
parentb5af6ad0774fae0be4ec9639fdb425813bd75f82 (diff)
Added spec file mapping-editor service.
Wrote unit test case for mapping-editor service. Issue-ID: APPC-1064 Change-Id: I99f439a8b8d841d81bf01d85cf9744e64d78fc35 Signed-off-by: Arundathi <arundpil@in.ibm.com>
Diffstat (limited to 'src')
-rw-r--r--src/app/shared/services/mapping-editor.service.spec.ts111
1 files changed, 111 insertions, 0 deletions
diff --git a/src/app/shared/services/mapping-editor.service.spec.ts b/src/app/shared/services/mapping-editor.service.spec.ts
new file mode 100644
index 0000000..bd9cea6
--- /dev/null
+++ b/src/app/shared/services/mapping-editor.service.spec.ts
@@ -0,0 +1,111 @@
+/*
+============LICENSE_START==========================================
+===================================================================
+Copyright (C) 2018 IBM Intellectual Property. All rights reserved.
+===================================================================
+
+Unless otherwise specified, all software contained herein is licensed
+under the Apache License, Version 2.0 (the License);
+you may not use this software except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+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.
+
+============LICENSE_END============================================
+*/
+
+import { inject, TestBed, ComponentFixture } from '@angular/core/testing';
+import { MappingEditorService } from './mapping-editor.service';
+
+fdescribe('MappingEditorService', () => {
+ let service;
+ beforeEach(() => {
+ TestBed.configureTestingModule({
+ providers: [MappingEditorService]
+ });
+ });
+
+ beforeEach(() => {
+ service = new MappingEditorService();
+ service.editor = {};
+ })
+
+ it('should be created', inject([MappingEditorService], (service: MappingEditorService) => {
+ expect(service).toBeTruthy();
+ }));
+
+ it('should test setSelectedWord function', () => {
+ service.setSelectedWord('word');
+ expect(service.selectedWord).toBe('word');
+ });
+
+ it('should test getSelectedWord function', () => {
+ service.setSelectedWord('word');
+ expect(service.getSelectedWord()).toBe('word');
+ });
+
+ it('should test changeNav function', () => {
+ service.changeNav(null);
+ expect(service._navItem).toBe(null);
+ expect(service.referenceNameObjects).toBe(null);
+ });
+
+ it('should test changeNavAppData function', () => {
+ service.changeNavAppData(null);
+ expect(service._navItem).toBe(null);
+ expect(service.appDataObject).toBe(null);
+ });
+
+ it('should test changeNavDownloadData function', () => {
+ service.changeNavDownloadData(null);
+ expect(service._navItem).toBe(null);
+ expect(service.downloadDataObject).toBe(null);
+ });
+
+ it('should test saveLatestAction function', () => {
+ service.saveLatestAction(null);
+ expect(service.latestAction).toBe(null);
+ });
+
+ it('should test saveLatestIdentifier function', () => {
+ service.saveLatestIdentifier(null);
+ expect(service.identifier).toBe(null);
+ });
+
+ it('should test getParamContent function', () => {
+ let paramContetnt = service.getParamContent('{}');
+ expect(paramContetnt).toBe('{}');
+ });
+
+ it('should test saveTempAllData function', () => {
+ service.saveTempAllData(null);
+ expect(service.tempAllData).toBe(null);
+ });
+
+ it('should test navItem function', () => {
+ service.changeNavAppData(null);
+ let navItem = service.navItem();
+ expect(service._navItem).toBe(null);
+ });
+
+ it('should test checkToDataAdd function to return true', () => {
+ let toAdd = service.checkToDataAdd('><');
+ expect(toAdd).toBe(true);
+ });
+
+ it('should test setParamContent function', () => {
+ service.setParamContent('');
+ expect(service.paramContent).toBe('');
+ });
+
+ it('should test checkToDataAdd function to return false', () => {
+ let toAdd = service.checkToDataAdd('.');
+ expect(toAdd).toBe(false);
+ });
+});