blob: a50fc1686c54126e890f69376676bd3f5dc7a4a3 (
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
89
90
91
|
#!/bin/bash
TC_ONELINE_DESCR="Maximum number of 1MB SFTP files during 24h, 700 PNFs. 100 new files per event."
. ../common/testcase_common.sh $1 $2
#### TEST BEGIN ####
clean_containers
export DR_TC="--tc normal"
export DR_REDIR_TC="--tc normal"
export MR_TC="--tc1200"
export BC_TC=""
export NUM_FTPFILES="1500"
export NUM_PNFS="700"
export FILE_SIZE="1MB"
export FTP_TYPE="SFTP"
log_sim_settings
start_simulators
mr_equal ctr_requests 0 60
dr_equal ctr_published_files 0 60
mr_print tc_info
dr_print tc_info
drr_print tc_info
start_dfc
# 24h MR sim execution time since first poll, should be reached withing 24h +1h margion
mr_contain_str exe_time_first_poll 1440: $((60*60*24+3600))
# stop event delivery
mr_print stop
# wait for MR sim values to stabilize
sleep_wait 30
# Requirement number of files, 100 new files in first event for each PNF, then 1 new file per PNF in the
# remaining polls up to 24h. This is the minimum number of published files for the test
TARGET_REQUIRMENT_FILES=$((70000+700*95))
#Calculate targets based on the number of of unique files delivered from MR sim
TARGET_FILES=$(mr_read ctr_unique_files)
TARGET_EVENTS=$((TARGET_FILES/100))
TARGET_VOLUME=$((TARGET_FILES*1000000))
#Maximum number of configured FTP files, if DFC download more than this then the NUM_FTPSFILES need to be increased.
MAX_FILES=$((NUM_FTPFILE*NUM_PNFS))
#Wait remaining time upto 15 min for DFC to download all consumed events
sleep_wait 870
#At least the requiment number of file shall be published
dr_greater ctr_published_files $TARGET_REQUIRMENT_FILES
#If greater then MAX_FILES then more FTP files need to be configured
mr_less ctr_ctr_unique_files MAX_FILES
#Test that all files from polled events has been downloaded etc
dr_equal ctr_published_files $TARGET_FILES
mr_equal ctr_events $TARGET_EVENTS
mr_equal ctr_unique_PNFs 700
dr_equal ctr_publish_query $TARGET_FILES
dr_equal ctr_publish_query_published 0
dr_equal ctr_publish_query_not_published $TARGET_FILES
dr_equal ctr_publish_req $TARGET_FILES
dr_equal ctr_publish_req_redirect $TARGET_FILES
dr_equal ctr_publish_req_published 0
dr_equal ctr_published_files $TARGET_FILES
drr_equal ctr_publish_requests $TARGET_FILES
drr_equal ctr_publish_responses $TARGET_FILES
drr_equal dwl_volume $TARGET_VOLUME
print_all
check_dfc_log
#### TEST COMPLETE ####
store_logs END
print_result
|