IMPL: MC Xapp tests
[it/test.git] / ric_robot_suite / helm / nanobot / configmap-src / public / testsuites / update_ric_page.robot
1 #   Copyright (c) 2019 AT&T Intellectual Property.
2 #
3 #   Licensed under the Apache License, Version 2.0 (the "License");
4 #   you may not use this file except in compliance with the License.
5 #   You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #   Unless required by applicable law or agreed to in writing, software
10 #   distributed under the License is distributed on an "AS IS" BASIS,
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #   See the License for the specific language governing permissions and
13 #   limitations under the License.
14
15 *** Settings ***
16 Documentation     Initializes RIC Test Web Page and Password
17
18 Library    Collections
19 Library    OperatingSystem
20 Library    StringTemplater
21
22
23 Test Timeout    5 minutes
24
25 *** Variables ***
26 ${URLS_HTML_TEMPLATE}   robot/assets/templates/web/index.html.template
27
28 ${HOSTS_PREFIX}   vm
29 ${WEB_USER}       test
30 ${WEB_PASSWORD}
31
32 ${URLS_HTML}   html/index.html
33 ${CREDENTIALS_FILE}   /etc/lighttpd/authorization
34 #${CREDENTIALS_FILE}   authorization
35
36 *** Test Cases ***
37 Update RIC Page
38     [Tags]   UpdateWebPage
39     Run Keyword If   '${WEB_PASSWORD}' == ''   Fail   "WEB Password must not be empty"
40     Run Keyword If   '${WEB_PASSWORD}' != ''   Create File   ${CREDENTIALS_FILE}   ${WEB_USER}:${WEB_PASSWORD}
41
42 *** Keywords ***