summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-09-26 16:53:28 +0800
committerxu ran <xuranyjy@chinamobile.com>2019-09-27 00:45:40 +0000
commit2fd289f8e4e211eb26752d04d8d9b394ab78470f (patch)
tree8d987aace682431d2818aaa301cc338a9f6b015a /usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts
parent2b307fe51a873c200c22469327e6947095516288 (diff)
feat:adjust the file schema of components related to service instances
Change-Id: I18f1674601536a59313528bb1e01fd6b4fffd4fd Issue-ID: USECASEUI-307 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts')
-rw-r--r--usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts69
1 files changed, 0 insertions, 69 deletions
diff --git a/usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts b/usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts
deleted file mode 100644
index b6f3171f..00000000
--- a/usecaseui-portal/src/app/views/ccvpn-detail/ccvpn-detail.component.spec.ts
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- Copyright (C) 2018 CMCC, Inc. and others. All rights reserved.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file 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.
-*/
-import { async, ComponentFixture, TestBed } from '@angular/core/testing';
-import { NgZorroAntdModule } from 'ng-zorro-antd';
-import { HttpClientModule } from '@angular/common/http';
-import { NZ_I18N, en_US } from 'ng-zorro-antd';
-import { TranslateModule, TranslateLoader, TranslateService, TranslateFakeLoader } from '@ngx-translate/core';
-
-import { CcvpnDetailComponent } from './ccvpn-detail.component';
-import { ServiceListService } from '../../core/services/serviceList.service';
-
-describe('CcvpnDetailComponent', () => {
- let component: CcvpnDetailComponent;
- let fixture: ComponentFixture<CcvpnDetailComponent>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [CcvpnDetailComponent],
- imports: [TranslateModule.forRoot({ loader: { provide: TranslateLoader, useClass: TranslateFakeLoader } }),
- NgZorroAntdModule.forRoot(), HttpClientModule],
- providers: [ServiceListService, { provide: NZ_I18N, useValue: en_US }]
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- let detailshow = false;
- detailData: Object;
- let serviceDetail = (service) => {
- service["siteSer"] = [];
- service["sdwanSer"] = [];
- service["customer"] = this.customerSelected;
- service["serviceType"] = this.serviceTypeSelected;
-
- service.childServiceInstances.forEach((item) => {
- if (item.serviceDomain == "SITE") {
- service.siteSer.push(item);
- } else if (item.serviceDomain == "SDWAN") {
- service.sdwanSer.push(item);
- }
- })
- this.detailshow = true;
- this.detailData = service;
- component.detailParams = this.detailData
- fixture = TestBed.createComponent(CcvpnDetailComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- };
-
- it('should create', () => {
- console.log(component);
- expect(component).toBeTruthy();
- });
- });
-
-});