BjornMagnussonXA | a79a043 | 2019-07-17 08:26:50 +0000 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | |
| 3 | TC_ONELINE_DESCR="25 events for each 4 feeds with 100 1MB files per event from one PNF using SFTP, 1 change id with no feed, 1 change with one feed and two change id to one feed." |
| 4 | |
| 5 | . ../common/testcase_common.sh $1 $2 |
| 6 | |
| 7 | #### TEST BEGIN #### |
| 8 | |
| 9 | clean_containers |
| 10 | |
| 11 | export MR_TC="--tc111" |
| 12 | export MR_GROUPS="OpenDcae-c12:PM_MEAS_FILES:CTR_MEAS_FILES:LOG_FILES:TEMP_FILES" |
| 13 | export MR_FILE_PREFIX_MAPPING="PM_MEAS_FILES:A,CTR_MEAS_FILES:B,LOG_FILES:C,TEMP_FILES:D" |
| 14 | |
| 15 | export DR_TC="--tc normal" |
| 16 | export DR_FEEDS="2:B,3:C:D" |
| 17 | |
| 18 | export DR_REDIR_TC="--tc normal" |
| 19 | export DR_REDIR_FEEDS="2:B,3:C:D" |
| 20 | |
| 21 | export NUM_FTPFILES="200" |
| 22 | export NUM_PNFS="1" |
| 23 | export FILE_SIZE="1MB" |
| 24 | export FTP_TYPE="SFTP" |
| 25 | export FTP_FILE_PREFIXES="A,B,C,D" |
| 26 | export NUM_FTP_SERVERS=1 |
| 27 | |
| 28 | log_sim_settings |
| 29 | |
| 30 | start_simulators |
| 31 | |
| 32 | consul_config_app 0 "../simulator-group/consul/c12_feed2_CTR_feed3_LOG_TEMP.json" |
| 33 | consul_config_dmaap 0 "../simulator-group/consul/dmaap_feed1_2_3_4.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 | dr_equal ctr_published_files 588 2000 |
| 45 | dr_equal ctr_published_files/2 196 |
| 46 | dr_equal ctr_published_files/3 392 |
| 47 | sleep_wait 30 |
| 48 | |
| 49 | dr_equal ctr_published_files 588 |
| 50 | dr_equal ctr_published_files/2 196 |
| 51 | dr_equal ctr_published_files/3 392 |
| 52 | |
| 53 | mr_greater ctr_requests 100 |
| 54 | |
| 55 | mr_equal ctr_events 100 |
| 56 | mr_equal ctr_unique_files 784 |
| 57 | mr_equal ctr_unique_PNFs 1 |
| 58 | |
| 59 | dr_equal ctr_publish_query 588 |
| 60 | dr_equal ctr_publish_query/2 196 |
| 61 | dr_equal ctr_publish_query/3 392 |
| 62 | dr_equal ctr_publish_query_bad_file_prefix 0 |
| 63 | dr_equal ctr_publish_query_published 0 |
| 64 | dr_equal ctr_publish_query_not_published 588 |
| 65 | dr_equal ctr_publish_query_not_published/2 196 |
| 66 | dr_equal ctr_publish_query_not_published/3 392 |
| 67 | dr_equal ctr_publish_req 588 |
| 68 | dr_equal ctr_publish_req/2 196 |
| 69 | dr_equal ctr_publish_req/3 392 |
| 70 | dr_equal ctr_publish_req_bad_file_prefix 0 |
| 71 | dr_equal ctr_publish_req_redirect 588 |
| 72 | dr_equal ctr_publish_req_redirect/2 196 |
| 73 | dr_equal ctr_publish_req_redirect/3 392 |
| 74 | dr_equal ctr_publish_req_published 0 |
| 75 | dr_equal ctr_published_files 588 |
| 76 | dr_equal ctr_published_files/2 196 |
| 77 | dr_equal ctr_published_files/3 392 |
| 78 | dr_equal ctr_double_publish 0 |
| 79 | |
| 80 | drr_equal ctr_publish_requests 588 |
| 81 | drr_equal ctr_publish_requests/2 196 |
| 82 | drr_equal ctr_publish_requests/3 392 |
| 83 | drr_equal ctr_publish_requests_bad_file_prefix 0 |
| 84 | drr_equal ctr_publish_responses 588 |
| 85 | drr_equal ctr_publish_responses/2 196 |
| 86 | drr_equal ctr_publish_responses/3 392 |
| 87 | |
| 88 | drr_equal dwl_volume 588000000 |
| 89 | drr_equal dwl_volume/2 196000000 |
| 90 | drr_equal dwl_volume/3 392000000 |
| 91 | |
| 92 | check_dfc_logs |
| 93 | |
| 94 | #### TEST COMPLETE #### |
| 95 | |
| 96 | print_all |
| 97 | |
| 98 | store_logs END |
| 99 | |
| 100 | print_result |