Update DFC tests to use file based conifg
[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 FTPES. 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="FTPES"
25 export FTP_FILE_PREFIXES="A"
26 export NUM_FTP_SERVERS=5
27
28 log_sim_settings
29
30 start_simulators
31
32 dfc_config_app   0                                    "../simulator-group/dfc_configs/c12_feed2_PM.yaml"
33
34 mr_equal            ctr_requests                         0 60
35 dr_equal            ctr_published_files                  0 60
36
37 mr_print            tc_info
38 dr_print            tc_info
39 drr_print           tc_info
40
41 start_dfc           0
42
43 # 72h MR sim execution time since first poll, should be reached withing 72h + 1h margin
44 mr_contain_str      exe_time_first_poll                  4320: $((60*60*24*3+3600))
45
46 # Requirement number of files, 100 new files in first event for each PNF, then 1 new file per PNF in the
47 # remaining 15 min polls up to 72h. This is the minimum number of published files for the test
48 TARGET_REQUIRMENT_FILES=$((70000+700*95+700*96+700*96))
49
50 #Make sure target is reached within 72h + a reasonable tolerance
51 mr_greater         ctr_unique_files                      $((TARGET_REQUIRMENT_FILES-1)) 1800
52
53 # stop event delivery
54 mr_print            stop
55 # wait for MR sim values to stabilize
56 sleep_wait          30
57
58 #Calculate targets based on the number of of unique files delivered from MR sim
59 TARGET_FILES=$(mr_read ctr_unique_files)
60 TARGET_EVENTS=$((TARGET_FILES-70000+700))  #First event from a PNF is 100 new files, remaining events contains 1 new file
61 TARGET_VOLUME=$((TARGET_FILES*1000000))
62
63 #Maximum number of configured FTP files, if DFC reach this then the NUM_FTPSFILES need to be increased.
64 MAX_FILES=$((NUM_FTPFILES*NUM_PNFS))
65
66 #Wait remaining time upto 15 min for DFC to download all consumed events
67 sleep_wait          870
68
69 #At least the requiment number of file shall be published
70 dr_greater          ctr_published_files                  $((TARGET_REQUIRMENT_FILES-1))
71
72 #If greater then MAX_FILES then more FTP files need to be configured
73 mr_less             ctr_unique_files                     $MAX_FILES
74
75
76 #Test that all files from polled events has been downloaded etc
77
78 dr_equal            ctr_published_files                  $TARGET_FILES
79
80 mr_equal            ctr_events                           $TARGET_EVENTS
81
82 mr_equal            ctr_unique_PNFs                      700
83
84 dr_equal            ctr_publish_query                    $TARGET_FILES
85 dr_equal            ctr_publish_query_bad_file_prefix    0
86 dr_equal            ctr_publish_query_published          0
87 dr_equal            ctr_publish_query_not_published      $TARGET_FILES
88 dr_equal            ctr_publish_req                      $TARGET_FILES
89 dr_equal            ctr_publish_req_bad_file_prefix      0
90 dr_equal            ctr_publish_req_redirect             $TARGET_FILES
91 dr_equal            ctr_publish_req_published            0
92 dr_equal            ctr_published_files                  $TARGET_FILES
93 dr_equal            ctr_double_publish                   0
94
95 drr_equal           ctr_publish_requests                 $TARGET_FILES
96 drr_equal           ctr_publish_requests_bad_file_prefix 0
97 drr_equal           ctr_publish_responses                $TARGET_FILES
98
99 drr_equal           dwl_volume                           $TARGET_VOLUME
100
101 print_all
102
103 check_dfc_logs
104
105 #### TEST COMPLETE ####
106
107 store_logs          END
108
109 print_result