X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=it%2Fotf.git;a=blobdiff_plain;f=otf-frontend%2Fclient%2Fsrc%2Fapp%2Flayout%2Ftests%2Ftest-definition-details%2Ftest-definition-details.component.ts;fp=otf-frontend%2Fclient%2Fsrc%2Fapp%2Flayout%2Ftests%2Ftest-definition-details%2Ftest-definition-details.component.ts;h=660fa6237745b4aeec98f3ff6c1f85eda45f65e0;hp=0000000000000000000000000000000000000000;hb=14f6f95c84a4a1fa8774190db4a03fd0214ec55f;hpb=f49bd1efeaaddd4891c1f329b18d8cfb28b3e75b diff --git a/otf-frontend/client/src/app/layout/tests/test-definition-details/test-definition-details.component.ts b/otf-frontend/client/src/app/layout/tests/test-definition-details/test-definition-details.component.ts new file mode 100644 index 0000000..660fa62 --- /dev/null +++ b/otf-frontend/client/src/app/layout/tests/test-definition-details/test-definition-details.component.ts @@ -0,0 +1,107 @@ +/* Copyright (c) 2019 AT&T Intellectual Property. # +# # +# 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 { Component, OnInit, OnDestroy } from '@angular/core'; +import { ActivatedRoute } from '@angular/router'; +import { Subscription } from 'rxjs'; +import { TestDefinitionService } from 'app/shared/services/test-definition.service'; +import { TestDefinition } from 'app/shared/models/test-definition.model'; +import { StatsService } from 'app/layout/components/stats/stats.service'; + +@Component({ + selector: 'app-test-definition-details', + templateUrl: './test-definition-details.component.pug', + styleUrls: ['./test-definition-details.component.scss'] +}) +export class TestDefinitionDetailsComponent implements OnInit, OnDestroy { + + private toDestroy: Array = []; + + public testDefinition: TestDefinition; + + constructor( + private route: ActivatedRoute, + private _testDefinition: TestDefinitionService, + public stats: StatsService + ) { } + + ngOnInit() { + this.toDestroy.push(this.route.params.subscribe(params => { + + if(params.id){ + this._testDefinition.get(params.id).subscribe( + res => { + + this.testDefinition = res as TestDefinition; + }, + err => { + + }) + + this.getData(params.id); + } + })); + } + + get numOfVersions(){ + if(this.testDefinition['bpmnInstances']){ + return this.testDefinition['bpmnInstances'].length; + } + return 0; + } + + ngOnDestroy() { + this.toDestroy.forEach(elem => elem.unsubscribe()); + } + + getData(testDefinitionId?){ + if(!testDefinitionId){ + testDefinitionId = this.testDefinition._id + } + + if(!testDefinitionId){ + return; + } + + this.stats.getDefaultData(1, { + 'historicTestDefinition._id': testDefinitionId, + $select: [ + 'startTime', + 'endTime', + "historicTestDefinition._id", + "historicTestDefinition.testName", + "historicTestInstance._id", + "historicTestInstance.testInstanceName", + "testHeadResults.startTime", + "testHeadResults.endTime", + "testHeadResults.testHeadName", + "testHeadResults.testHeadId", + "testHeadResults.testHeadGroupId", + "testHeadResults.statusCode", + 'testResult' + ], + $limit: -1, + $sort: { + startTime: 1 + }, + startTime: { + $gte: this.stats.filters.startDate, + $lte: this.stats.filters.endDate + } + }); + } + +}