Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test ports again #1732

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions zenoh-ext/tests/advanced.rs
yellowhatter marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async fn test_advanced_history() {

const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
const PEER1_ENDPOINT: &str = "tcp/localhost:47450";
const PEER1_ENDPOINT: &str = "tcp/localhost:27050";

const ADVANCED_HISTORY_KEYEXPR: &str = "test/advanced/history";

Expand Down Expand Up @@ -116,7 +116,7 @@ async fn test_advanced_retransmission() {
const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
const RECONNECT_SLEEP: Duration = Duration::from_secs(5);
const ROUTER_ENDPOINT: &str = "tcp/localhost:47451";
const ROUTER_ENDPOINT: &str = "tcp/localhost:27051";

const ADVANCED_RETRANSMISSION_KEYEXPR: &str = "test/advanced/retransmission";

Expand Down Expand Up @@ -245,7 +245,7 @@ async fn test_advanced_retransmission_periodic() {
const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
const RECONNECT_SLEEP: Duration = Duration::from_secs(8);
const ROUTER_ENDPOINT: &str = "tcp/localhost:47452";
const ROUTER_ENDPOINT: &str = "tcp/localhost:27052";

const ADVANCED_RETRANSMISSION_PERIODIC_KEYEXPR: &str = "test/advanced/retransmission/periodic";

Expand Down Expand Up @@ -367,7 +367,7 @@ async fn test_advanced_sample_miss() {
const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
const RECONNECT_SLEEP: Duration = Duration::from_secs(5);
const ROUTER_ENDPOINT: &str = "tcp/localhost:47453";
const ROUTER_ENDPOINT: &str = "tcp/localhost:27053";

const ADVANCED_SAMPLE_MISS_KEYEXPR: &str = "test/advanced/sample_miss";

Expand Down Expand Up @@ -488,7 +488,7 @@ async fn test_advanced_retransmission_sample_miss() {
const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
const RECONNECT_SLEEP: Duration = Duration::from_secs(5);
const ROUTER_ENDPOINT: &str = "tcp/localhost:47454";
const ROUTER_ENDPOINT: &str = "tcp/localhost:27054";

const ADVANCED_RETRANSMISSION_SAMPLE_MISS_KEYEXPR: &str =
"test/advanced/retransmission/sample_miss";
Expand Down Expand Up @@ -617,7 +617,7 @@ async fn test_advanced_late_joiner() {
const TIMEOUT: Duration = Duration::from_secs(60);
const SLEEP: Duration = Duration::from_secs(1);
const RECONNECT_SLEEP: Duration = Duration::from_secs(8);
const ROUTER_ENDPOINT: &str = "tcp/localhost:47455";
const ROUTER_ENDPOINT: &str = "tcp/localhost:27055";

const ADVANCED_LATE_JOINER_KEYEXPR: &str = "test/advanced/late_joiner";

Expand Down Expand Up @@ -724,7 +724,7 @@ async fn test_advanced_retransmission_heartbeat() {
const SLEEP: Duration = Duration::from_secs(1);
const RECONNECT_SLEEP: Duration = Duration::from_secs(5);
const HEARTBEAT_PERIOD: Duration = Duration::from_secs(4);
const ROUTER_ENDPOINT: &str = "tcp/localhost:27457";
const ROUTER_ENDPOINT: &str = "tcp/localhost:27056";

const ADVANCED_RETRANSMISSION_KEYEXPR: &str = "test/advanced/retransmission/heartbeat";

Expand Down