f221ac5f5376b263db5503e57563418ad08949c9
[integration.git] / test / mocks / datafilecollector-testharness / auto-test / Stability1MB_FTPS_72h.sh
1 #!/bin/bash
2
3 TC_ONELINE_DESCR="Stabilty over 72hours, 700 PNFs over FTPS. All new files (100) in first event from PNF, then one new 1 new file per event."
4
5 . ../common/testcase_common.sh $1 $2
6
7 #### TEST BEGIN ####
8
9 clean_containers
10
11 export MR_TC="--tc2300"
12 export MR_GROUPS="OpenDcae-c12:PM_MEAS_FILES"
13 export MR_FILE_PREFIX_MAPPING="PM_MEAS_FILES:A"
14
15 export DR_TC="--tc normal"
16 export DR_FEEDS="2:A"
17
18 export DR_REDIR_TC="--tc normal"
19 export DR_REDIR_FEEDS="2:A"
20
21 export NUM_FTPFILES="1000"
22 export NUM_PNFS="700"
23 export FILE_SIZE="1MB"
24 export FTP_TYPE="FTPS"
25 export FTP_FILE_PREFIXES="A"
26 export NUM_FTP_SERVERS=5
27
28 log_sim_settings
29
30 start_simulators
31
32 consul_config_app   0                                    "../simulator-group/consul/c12_feed2_PM.json"
33 consul_config_dmaap 0                                    "../simulator-group/consul/dmaap_feed2.json"
34
35 mr_equal            ctr_requests                         0 60
36 dr_equal            ctr_published_files                  0 60
37
38 mr_print            tc_info
39 dr_print            tc_info
40 drr_print           tc_info
41
42 start_dfc           0
43
44 # 72h MR sim execution time since first poll, should be reached withing 72h + 1h margin
45 mr_contain_str      exe_time_first_poll                  4320: $((60*60*24*3+3600))
46
47 # Requirement number of files, 100 new files in first event for each PNF, then 1 new file per PNF in the
48 # remaining 15 min polls up to 72h. This is the minimum number of published files for the test
49 TARGET_REQUIRMENT_FILES=$((70000+700*95+700*96+700*96))
50
51 #Make sure target is reached within 72h + a reasonable tolerance
52 mr_greater         ctr_unique_files                      $((TARGET_REQUIRMENT_FILES-1)) 1800
53
54 # stop event delivery
55 mr_print            stop
56 # wait for MR sim values to stabilize
57 sleep_wait          30
58
59 #Calculate targets based on the number of of unique files delivered from MR sim
60 TARGET_FILES=$(mr_read ctr_unique_files)
61 TARGET_EVENTS=$((TARGET_FILES-70000+700))  #First event from a PNF is 100 new files, remaining events contains 1 new file
62 TARGET_VOLUME=$((TARGET_FILES*1000000))
63
64 #Maximum number of configured FTP files, if DFC reach this then the NUM_FTPSFILES need to be increased.
65 MAX_FILES=$((NUM_FTPFILE*NUM_PNFS))
66
67 #Wait remaining time upto 15 min for DFC to download all consumed events
68 sleep_wait          870
69
70 #At least the requiment number of file shall be published
71 dr_greater          ctr_published_files                  $((TARGET_REQUIRMENT_FILES-1))
72
73 #If greater then MAX_FILES then more FTP files need to be configured
74 mr_less             ctr_unique_files                     $MAX_FILES
75
76
77 #Test that all files from polled events has been downloaded etc
78
79 dr_equal            ctr_published_files                  $TARGET_FILES
80
81 mr_equal            ctr_events                           $TARGET_EVENTS
82
83 mr_equal            ctr_unique_PNFs                      700
84
85 dr_equal            ctr_publish_query                    $TARGET_FILES
86 dr_equal            ctr_publish_query_bad_file_prefix    0
87 dr_equal            ctr_publish_query_published          0
88 dr_equal            ctr_publish_query_not_published      $TARGET_FILES
89 dr_equal            ctr_publish_req                      $TARGET_FILES
90 dr_equal            ctr_publish_req_bad_file_prefix      0
91 dr_equal            ctr_publish_req_redirect             $TARGET_FILES
92 dr_equal            ctr_publish_req_published            0
93 dr_equal            ctr_published_files                  $TARGET_FILES
94 dr_equal            ctr_double_publish                   0
95
96 drr_equal           ctr_publish_requests                 $TARGET_FILES
97 drr_equal           ctr_publish_requests_bad_file_prefix 0
98 drr_equal           ctr_publish_responses                $TARGET_FILES
99
100 drr_equal           dwl_volume                           $TARGET_VOLUME
101
102 print_all
103
104 check_dfc_logs
105
106 #### TEST COMPLETE ####
107
108 store_logs          END
109
110 print_result