aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/drawingBoard/service-planning/drawing-board-tree/drawing-board-tree.service.spec.ts
blob: e5979f7edf02dc1e2766b65c35dc60a78bcb24fe (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import {getTestBed, TestBed} from '@angular/core/testing';
import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing';
import {NgRedux} from "@angular-redux/store";
import {DrawingBoardTreeService, TreeNodeContextMenuModel} from "./drawing-board-tree.service";
import {ITreeNode} from "angular-tree-component/dist/defs/api";

class MockAppStore<T> {
  getState() {
    return {
      service: {
        serviceInstance: {
          "serviceInstanceId": {
            vnfs: {
              "vnfStoreKey": {
                isMissingData: true,
                vfModules: {
                  "vfModulesName": {
                    "vfModulesName": {
                      isMissingData: true
                    }
                  }
                }
              },

              "vnfStoreKey1": {
                isMissingData: false,
                vfModules: {
                  "vfModulesName": {
                    "vfModulesName": {
                      isMissingData: false
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

describe('Drawing board tree Service', () => {
  let injector;
  let service: DrawingBoardTreeService;
  let httpMock: HttpTestingController;


  beforeAll(done => (async () => {
    TestBed.configureTestingModule({
      imports: [HttpClientTestingModule],
      providers: [
        DrawingBoardTreeService,
        {provide: NgRedux, useClass: MockAppStore}]
    });
    await TestBed.compileComponents();

    injector = getTestBed();
    service = injector.get(DrawingBoardTreeService);
    httpMock = injector.get(HttpTestingController);

  })().then(done).catch(done.fail));


  test('generateContextMenuOptions should return list of optional context menu', () => {
    const options: TreeNodeContextMenuModel[] = service.generateContextMenuOptions();
    const expected: TreeNodeContextMenuModel[] = [
      new TreeNodeContextMenuModel('edit', 'context-menu-edit', 'Edit', 'edit-file-o'),
      new TreeNodeContextMenuModel('duplicate', 'context-menu-duplicate', 'Duplicate', 'copy-o'),
      new TreeNodeContextMenuModel('showAuditInfo', 'context-menu-showAuditInfo', 'Show audit info', 'eye-o'),
      new TreeNodeContextMenuModel('addGroupMember', 'context-menu-addGroupMember', 'Add group members', 'plus'),
      new TreeNodeContextMenuModel('delete', 'context-menu-delete', 'Delete', 'trash-o'),
      new TreeNodeContextMenuModel('remove', 'context-menu-remove', 'Remove', 'trash-o'),
      new TreeNodeContextMenuModel('upgrade', 'context-menu-upgrade', 'Upgrade', 'upgrade'),
      new TreeNodeContextMenuModel('undoDelete', 'context-menu-undoDelete', 'Undo Delete', 'undo-delete'),
      new TreeNodeContextMenuModel('undoUpgrade', 'context-menu-undoUpgrade', 'Undo Upgrade', 'undo-delete'),
      new TreeNodeContextMenuModel('changeAssociations', 'context-menu-changeAssociations', 'Change Associations', 'edit-file-o')
    ];
    expect(options.length).toEqual(10);
    expect(options).toEqual(expected);
  });

  test('isVNFMissingData should return true if vnf isMissingData = true', () => {
    let node: ITreeNode = <any>{
      data: {
        type: 'VF',
        vnfStoreKey: "vnfStoreKey"
      }
    };
    let result: boolean = service.isVNFMissingData(node, "serviceInstanceId");
    expect(result).toBeTruthy();
  });


  test('isVNFMissingData should return false if vnf has isMissingData = false', () => {
    let node: ITreeNode = <any>{
      data: {
        type: 'VFModule',
        modelName: "vfModulesName",
        dynamicModelName: "vfModulesName",
        parent: {
          vnfStoreKey: "vnfStoreKey1",
          type: 'VF'
        }
      }
    };
    let result: boolean = service.isVNFMissingData(node, "serviceInstanceId");
    expect(result).toBeFalsy();
  });


  test('isVFModuleMissingData should return true if vnfModule has isMissingData = true', () => {
    let node: ITreeNode = <any>{
      data: {
        type: 'VFModule',
        modelName: "vfModulesName",
        dynamicModelName: "vfModulesName",
        parent: {
          vnfStoreKey: "vnfStoreKey",
          type: 'VF'
        }
      }
    };
    let result: boolean = service.isVFModuleMissingData(node, "serviceInstanceId");
    expect(result).toBeFalsy();
  });


  test('isVFModuleMissingData should return false if vnfModule has isMissingData = false', () => {
    let node: ITreeNode = <any>{
      data: {
        type: 'VFModule',
        modelName: "vfModulesName",
        dynamicModelName: "vfModulesName",
        parent: {
          vnfStoreKey: "vnfStoreKey1",
          type: 'VF'
        }
      }
    };
    let result: boolean = service.isVFModuleMissingData(node, "serviceInstanceId");
    expect(result).toBeFalsy();
  });

});