aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/shared/services/mapping-editor.service.spec.ts
blob: 7659e4e6d3539a6bd379783ab15186a6662224b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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';

describe('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);
    });
});