Skip to content

Commit 65072a9

Browse files
committed
Refs #21670: Increase timeouts
Signed-off-by: cferreiragonz <carlosferreira@eprosima.com>
1 parent 5728f36 commit 65072a9

4 files changed

Lines changed: 22 additions & 22 deletions

File tree

ddsrouter_test/compose/test_cases/repeater_tcp/compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
- cloud_edge_net
4242
volumes:
4343
- ./ddsrouter_cloud.yaml:/config.yaml
44-
command: ddsrouter -c /config.yaml --timeout 20
44+
command: ddsrouter -c /config.yaml --timeout 60
4545

4646
ddsrouter_edge_1:
4747
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -53,7 +53,7 @@ services:
5353
- edge_1_net
5454
volumes:
5555
- ./ddsrouter_edge_1.yaml:/config.yaml
56-
command: ddsrouter -c /config.yaml --timeout 20
56+
command: ddsrouter -c /config.yaml --timeout 60
5757

5858
pub_edge_1:
5959
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -73,7 +73,7 @@ services:
7373
- edge_1_net
7474
volumes:
7575
- ../../scripts:/scripts
76-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 20 --args "--domain 1 --samples 20 --reliable"
76+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 60 --args "--domain 1 --samples 20 --reliable"
7777

7878
ddsrouter_edge_2:
7979
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -85,7 +85,7 @@ services:
8585
- edge_2_net
8686
volumes:
8787
- ./ddsrouter_edge_2.yaml:/config.yaml
88-
command: ddsrouter -c /config.yaml --timeout 20
88+
command: ddsrouter -c /config.yaml --timeout 60
8989

9090
sub_edge_2:
9191
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -96,7 +96,7 @@ services:
9696
- edge_2_net
9797
volumes:
9898
- ../../scripts:/scripts
99-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 20 --args "--domain 2 --samples 20 --reliable"
99+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 60 --args "--domain 2 --samples 20 --reliable"
100100

101101
networks:
102102
edge_1_net:

ddsrouter_test/compose/test_cases/stress/repeater/reliable/compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ services:
6868
- ddsrouter_cloud.edge_2
6969
volumes:
7070
- ./ddsrouter_cloud.yaml:/config.yaml
71-
command: ddsrouter -c /config.yaml --timeout 20
71+
command: ddsrouter -c /config.yaml --timeout 60
7272

7373
ddsrouter_edge_1:
7474
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -80,7 +80,7 @@ services:
8080
- edge_1_net
8181
volumes:
8282
- ./ddsrouter_edge_1.yaml:/config.yaml
83-
command: ddsrouter -c /config.yaml --timeout 20
83+
command: ddsrouter -c /config.yaml --timeout 60
8484

8585
ddsrouter_edge_2:
8686
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -92,7 +92,7 @@ services:
9292
- edge_2_net
9393
volumes:
9494
- ./ddsrouter_edge_2.yaml:/config.yaml
95-
command: ddsrouter -c /config.yaml --timeout 20
95+
command: ddsrouter -c /config.yaml --timeout 60
9696

9797
# SUBSCRIBERS
9898
subscriber_reliable:
@@ -104,7 +104,7 @@ services:
104104
- edge_2_net
105105
volumes:
106106
- ../../../../scripts:/scripts
107-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 15 --allow-duplicates -1 --delay 1 --args "--samples 10 --domain 105 --name LargeDataTopic_reliable --reliable --keep-all --transient-local"
107+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --delay 1 --args "--samples 10 --domain 105 --name LargeDataTopic_reliable --reliable --keep-all --transient-local"
108108

109109
subscriber_1:
110110
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -115,7 +115,7 @@ services:
115115
- edge_2_net
116116
volumes:
117117
- ../../../../scripts:/scripts
118-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 10 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_1 --keep-last 10"
118+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_1 --keep-last 10"
119119

120120
subscriber_2:
121121
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -126,7 +126,7 @@ services:
126126
- edge_2_net
127127
volumes:
128128
- ../../../../scripts:/scripts
129-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 10 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_2 --keep-last 10"
129+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_2 --keep-last 10"
130130

131131

132132
subscriber_3:
@@ -138,7 +138,7 @@ services:
138138
- edge_2_net
139139
volumes:
140140
- ../../../../scripts:/scripts
141-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 10 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_3 --keep-last 10"
141+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_3 --keep-last 10"
142142

143143
# PUBLISHERS
144144
publisher_reliable:

ddsrouter_test/compose/test_cases/stress/simple/reliable/compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ services:
4848
- std_net
4949
volumes:
5050
- ./ddsrouter.yaml:/config.yaml
51-
command: ddsrouter -c /config.yaml --timeout 20
51+
command: ddsrouter -c /config.yaml --timeout 60
5252

5353

5454
# SUBSCRIBERS
@@ -59,7 +59,7 @@ services:
5959
- std_net
6060
volumes:
6161
- ../../../../scripts:/scripts
62-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 20 --delay 1 --args "--samples 10 --domain 105 --name LargeDataTopic_reliable --reliable --transient-local --keep-all"
62+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --delay 1 --args "--samples 10 --domain 105 --name LargeDataTopic_reliable --reliable --transient-local --keep-all"
6363

6464
subscriber_1:
6565
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -68,7 +68,7 @@ services:
6868
- std_net
6969
volumes:
7070
- ../../../../scripts:/scripts
71-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 20 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_1 --keep-last 10"
71+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_1 --keep-last 10"
7272

7373
subscriber_2:
7474
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -77,7 +77,7 @@ services:
7777
- std_net
7878
volumes:
7979
- ../../../../scripts:/scripts
80-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 20 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_2 --keep-last 10"
80+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_2 --keep-last 10"
8181

8282
subscriber_3:
8383
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -86,7 +86,7 @@ services:
8686
- std_net
8787
volumes:
8888
- ../../../../scripts:/scripts
89-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 20 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_3 --keep-last 10"
89+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 10 --timeout 60 --allow-duplicates -1 --args "--samples 10 --domain 105 --name LargeDataTopic_3 --keep-last 10"
9090

9191
# PUBLISHERS
9292
publisher_reliable:

ddsrouter_test/compose/test_cases/tcp/compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ services:
4040
- cloud_edge_net
4141
volumes:
4242
- ./ddsrouter_cloud.yaml:/config.yaml
43-
command: ddsrouter -c /config.yaml --timeout 12
43+
command: ddsrouter -c /config.yaml --timeout 30
4444

4545
ddsrouter_edge_1:
4646
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -52,7 +52,7 @@ services:
5252
- edge_1_net
5353
volumes:
5454
- ./ddsrouter_edge_1.yaml:/config.yaml
55-
command: ddsrouter -c /config.yaml --timeout 12
55+
command: ddsrouter -c /config.yaml --timeout 30
5656

5757
pub_edge_1:
5858
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -72,7 +72,7 @@ services:
7272
- edge_1_net
7373
volumes:
7474
- ../../scripts:/scripts
75-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 12 --args "--domain 1 --samples 20"
75+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 30 --args "--domain 1 --samples 20"
7676

7777
ddsrouter_edge_2:
7878
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -84,7 +84,7 @@ services:
8484
- edge_2_net
8585
volumes:
8686
- ./ddsrouter_edge_2.yaml:/config.yaml
87-
command: ddsrouter -c /config.yaml --timeout 12
87+
command: ddsrouter -c /config.yaml --timeout 30
8888

8989
sub_edge_2:
9090
image: ${DDSROUTER_COMPOSE_TEST_DOCKER_IMAGE}
@@ -95,7 +95,7 @@ services:
9595
- edge_2_net
9696
volumes:
9797
- ../../scripts:/scripts
98-
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 12 --args "--domain 2 --samples 20"
98+
command: python3 /scripts/execute_and_validate_subscriber.py --exe build/fastdds_configuration_example/configuration --samples 20 --timeout 30 --args "--domain 2 --samples 20"
9999

100100
networks:
101101
edge_1_net:

0 commit comments

Comments
 (0)