blob: 21603dc0d1aa5b3d746380270722f460c61e614b (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
*** Settings ***
Documentation 5G Bulk PM Usecase functionality
Library RequestsLibrary
Library OperatingSystem
Library Collections
Library String
Library DateTime
Library SSHLibrary
Library JSONLibrary
Library Process
Library ONAPLibrary.JSON
Library ONAPLibrary.Utilities
Resource ../../resources/usecases/5gbulkpm_interface.robot
Suite Setup Send File Ready Event to VES Collector and Deploy all DCAE Applications test org.3GPP.32.435#measCollec V10
Suite Teardown Usecase Teardown
*** Variables ***
${DFC_ERROR_GREP_COMMAND_SANS} kubectl logs $(kubectl get pods -n onap | grep datafile-collector | awk '{print $1}' | grep -v NAME) --all-containers -n onap --since=15s | grep "Certificate for .* subject alternative names: .*wrong-cert"
*** Test Cases ***
SFTP Server based bulk PM test, no SFTP Server know host veryfication on DFC side
[Tags] 5gbulkpm 5gbulkpm_sftp 5gbulkpm_cust_pm_validate
[Documentation]
... This test case triggers successful bulk pm upload from SFTP server without SFTP server host verification in DFC known host file.
... Known host verification is turned off on DFC
Uploading PM Files to xNF SFTP Server
Sending File Ready Event to VES Collector
Verifying 3GPP Perf VES Content On PERFORMANCE_MEASUREMENTS Topic
SFTP Server based bulk PM test, successful SFTP Server known host verification on DFC side
[Tags] 5gbulkpm 5gbulkpm_sftp
[Documentation]
... This test case triggers successful bulk pm upload from SFTP server with SFTP server host verification in DFC known host file.
... Known host verification is turned on DFC and to know host is added SFTP server entry
Setting KNOWN_HOSTS_FILE_PATH Environment Variable in DFC
Uploading PM Files to xNF SFTP Server
Sending File Ready Event to VES Collector
Verifying 3GPP Perf VES Content On PERFORMANCE_MEASUREMENTS Topic
Checking DFC Logs After KNOWN_HOSTS_FILE_PATH Env Variable Added
SFTP Server based bulk PM test, not successful SFTP Server know host verification on DFC side
[Tags] 5gbulkpm 5gbulkpm_sftp
[Documentation]
... This test case triggers unsuccessful bulk pm upload from SFTP server with SFTP server host verification in DFC known host file.
... Known host verification is turned on DFC and to know host is added wrong SFTP server entry
Changing SFTP Server RSA Key in DFC
Uploading PM Files to xNF SFTP Server
Sending File Ready Event to VES Collector
Checking DFC Logs After KNOWN_HOSTS_FILE_PATH Env Variable Added
HTTPS Server based bulk PM test (correct server certificate - correct SANs), successful HTTPS server certificate verification on DFC side
[Tags] 5gbulkpm 5gbulkpm_https
[Documentation]
... This test case triggers successful bulk pm upload from HTTPS server using CMPv2 Certificate-based authentication
... Both HTTPS server and DFC have correct certs with correct SAN-s.
... DFC has turned on hostname verification option, verifies HTTPS server host name and downloads pm file from HTTPS server.
Change DFC httpsHostnameVerify configuration in Consul true
Uploading PM Files to xNF HTTPS Server https-server
Sending File Ready Event to VES Collector Over VES Client https-server
Verifying 3GPP Perf VES Content On PERFORMANCE_MEASUREMENTS Topic
HTTPS Server based bulk PM test (wrong server certificate - wrong SANs), unsuccessful validation on DFC side due to turned on host checking
[Tags] 5gbulkpm 5gbulkpm_https
[Documentation]
... This test case triggers unsuccessful bulk pm upload from HTTPS server using CMPv2 Certificate-based authentication
... HTTPS server has incorrect cert with wrong correct SAN-s. DFC has turned on hostname verification option.
... DFC verifies HTTPS server host name against SAN-s and closes connection.
Change DFC httpsHostnameVerify configuration in Consul true
Uploading PM Files to xNF HTTPS Server https-server-wrong-sans
Sending File Ready Event to VES Collector Over VES Client https-server-wrong-sans
Wait Until Keyword Succeeds 60 sec 5 sec Check DFC logs ${DFC_ERROR_GREP_COMMAND_SANS}
HTTPS Server based bulk PM test (wrong server certificate - wrong SANs), successful validation on DFC side due to turned off host checking
[Tags] 5gbulkpm 5gbulkpm_https
[Documentation]
... This test case triggers successful bulk pm upload from HTTPS server using CMPv2 Certificate-based authentication
... HTTPS server has incorrect cert with wrong correct SAN-s. DFC has turned off hostname verification option.
... DFC does not verify HTTPS server host name against SAN-s and downloads pm file from HTTPS server.
Change DFC httpsHostnameVerify configuration in Consul false
Uploading PM Files to xNF HTTPS Server https-server-wrong-sans
Sending File Ready Event to VES Collector Over VES Client https-server-wrong-sans
Verifying 3GPP Perf VES Content On PERFORMANCE_MEASUREMENTS Topic
|