Update DFC tests to use file based conifg
[integration.git] / test / mocks / datafilecollector-testharness / auto-test / MaxFiles1MB_FTPS_24h.sh
1 #!/bin/bash
2
3 TC_ONELINE_DESCR="Maximum number of 1MB FTPES files during 24h, 700 PNFs. 100 new files per event."
4
5 . ../common/testcase_common.sh $1 $2
6
7 #### TEST BEGIN ####
8
9 clean_containers
10
11 export MR_TC="--tc2200"
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="4000"
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 # 24h MR sim execution time since first poll, should be reached withing 24h +1h margin
44 mr_contain_str      exe_time_first_poll                  1440: $((60*60*24+3600))
45 # stop event delivery
46 mr_print            stop
47 # wait for MR sim values to stabilize
48 sleep_wait          30
49
50 # Requirement number of files, 100 new files in first event for each PNF, then 1 new file per PNF in the
51 # remaining polls up to 24h. This is the minimum number of published files for the test
52 TARGET_REQUIRMENT_FILES=$((70000+700*95))
53
54 #Calculate targets based on the number of of unique files delivered from MR sim
55 TARGET_FILES=$(mr_read ctr_unique_files)
56 TARGET_EVENTS=$((TARGET_FILES/100))
57 TARGET_VOLUME=$((TARGET_FILES*1000000))
58
59 #Maximum number of configured FTP files, if DFC reach this then the NUM_FTPSFILES need to be increased.
60 MAX_FILES=$((NUM_FTPFILES*NUM_PNFS))
61
62 #Wait remaining time upto 15 min for DFC to download all consumed events
63 sleep_wait          870
64
65 #At least the requiment number of file shall be published
66 dr_greater          ctr_published_files                  $TARGET_REQUIRMENT_FILES
67
68 #If greater then MAX_FILES then more FTP files need to be configured
69 mr_less             ctr_unique_files                     $MAX_FILES
70
71
72 #Test that all files from polled events has been downloaded etc
73
74 dr_equal            ctr_published_files                  $TARGET_FILES
75
76 mr_equal            ctr_events                           $TARGET_EVENTS
77
78 mr_equal            ctr_unique_PNFs                      700
79
80 dr_equal            ctr_publish_query                    $TARGET_FILES
81 dr_equal            ctr_publish_query_bad_file_prefix    0
82 dr_equal            ctr_publish_query_published          0
83 dr_equal            ctr_publish_query_not_published      $TARGET_FILES
84 dr_equal            ctr_publish_req                      $TARGET_FILES
85 dr_equal            ctr_publish_req_bad_file_prefix      0
86 dr_equal            ctr_publish_req_redirect             $TARGET_FILES
87 dr_equal            ctr_publish_req_published            0
88 dr_equal            ctr_published_files                  $TARGET_FILES
89 dr_equal            ctr_double_publish                   0
90
91 drr_equal           ctr_publish_requests                 $TARGET_FILES
92 drr_equal           ctr_publish_requests_bad_file_prefix 0
93 drr_equal           ctr_publish_responses                $TARGET_FILES
94
95 drr_equal           dwl_volume                           $TARGET_VOLUME
96
97 print_all
98
99 check_dfc_logs
100
101 #### TEST COMPLETE ####
102
103 store_logs          END
104
105 print_result