summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/test-template/test-template.component.html
blob: fe322fada03b6253883738961b124ac1b751425d (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
<!--
============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============================================
-->

<div style="border: 1px solid #3f51b5; padding: 1em;">
    <i class="fa fa-exclamation-circle" style="color: #3f51b5"  aria-hidden="true"></i>
    Disclaimer*: The Test CBA Certification page allow the testing/certification team with the certification 
    of the CBA workflow action. Workflow action may include various action and subaction that result in content 
    resolution (using mS such as naming , netbox , and etc.), content generation (Jinja/Velocity) and content 
    distribution (netconf, restconf etc.) . Once the certification is complete, it is the responsibility of the 
    testing/certification team to rollback all the resource assignment and network function configuration that has 
    been reserved and distributed during the certification.
</div>
<div class="testTemplateContainer">
    <div class="editorContainer">
        <div class="editorDiv">
            <p>Request</p>
            <ace-editor [(text)]="requestText" mode="json" [theme]="eclipse" [options]="options" #editor class="aceEditor"></ace-editor>
            <div class="btnContainer">
                <button class="button" (click)="submitRequest()">Submit</button>
                <button class="button">Clear</button>
            </div>
        </div>

        <div class="editorDiv">
            <p>Response</p>
            <ace-editor [(text)]="responseText" mode="json" [theme]="eclipse" [options]="options" #editor class="aceEditor"></ace-editor>
        </div>
    </div>

</div>