diff options
author | sj108s <sj108s@us.att.com> | 2018-03-13 20:29:58 +0530 |
---|---|---|
committer | sj108s <sj108s@us.att.com> | 2018-03-13 20:30:50 +0530 |
commit | f1e61ce405cf11ea77fe98abd5e10f7ed2d72611 (patch) | |
tree | 0d6f464a3c8e275b2b74359f81282aaf589074fe /src/app/test/test.component.html | |
parent | 8ac6f161c2260e48a743df82e57b4ba24ce9795c (diff) |
Fixed defects in test screen & updated test cases
Fixed few defects raised by ST in test screen and also updated test
cases to improve coverage. Also,changed code to match onap standards,
and rectfied grep code violations.
Issue-ID: APPC-730
Change-Id: I0286c38eb4f76dc8c0253a4ccab721b3ccfeff9d
Signed-off-by: sj108s <sj108s@us.att.com>
Diffstat (limited to 'src/app/test/test.component.html')
-rw-r--r-- | src/app/test/test.component.html | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/src/app/test/test.component.html b/src/app/test/test.component.html index ad6ff7f..3519007 100644 --- a/src/app/test/test.component.html +++ b/src/app/test/test.component.html @@ -32,16 +32,6 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <input class="form-control" type="text" disabled value="{{action}}" /> </div> - <!-- <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12"> - <label>Vnf Type:</label> - <input class="form-control" type="text" disabled value="{{vnfType}}" /> - - </div> - <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12"> - <label>Vnfc Type:</label> - <input class="form-control" type="text" disabled value="{{vnfcType}}" /> - - </div>--> <div class="col-lg-3 col-sm-6 col-md-4 col-xs-12"> <label>Vnf Id:</label> <input class="form-control" type="text" [(ngModel)]="this.actionIdentifiers['vnf-id']" /> @@ -54,11 +44,6 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. </div> - <!-- <div class="col-lg-3 col-sm-6 col-md-3 col-xs-12"> - <label>VF-Module-Id(optional):</label> - <input class="form-control" disabled type="text" value="{{this.actionIdentifiers['vmodule-id']}}" /> - - </div>--> <div class="col-12"> <div class="input-group"> @@ -113,14 +98,9 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <div class="col-md-12"> <div class="row justify-content-center" style="padding-top:0.3cm"> - - <!-- <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button" (click)="clearLog()">Abort Test</button> --> - <button style="margin-left:6%;" [disabled]="!enableTestButton" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" type="submit" (click)="testVnf()">Execute Test </button> - <!-- <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button" (click)="abortTest()">Abort Test</button> --> - <!--button class="btn btn-primary" type="submit"> Save Revised Name/Value Pair to APPC</button--> - + </div> </div> @@ -130,8 +110,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. </div> <div style="padding-left:60%;padding-bottom:0.5cm"> - <!-- <a href="javascript:void(0)" style="color:darkblue; text-decoration: double; font-size: 15px;" (click)="download()">Download Raw Request/Response.</a>--> - <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" type="button" (click)="download()">Download Raw Request/Response + <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" type="button" [disabled]="!enableDownload" (click)="download()">Download Raw Request/Response </button> <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button" [disabled]="!enableAbort" (click)="abortTest()">Abort Test </button> |