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

Filter by destination port before asserting #7691

Merged
merged 1 commit into from
Feb 24, 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
6 changes: 3 additions & 3 deletions ios/MullvadVPNUITests/RelayTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,12 @@ class RelayTests: LoggedInWithTimeUITestCase {
.tapDisconnectButton()
let capturedStreams = stopPacketCapture()

// The capture will contain several streams where `other_addr` contains the IP the device connected to
// One stream will be for the source port, the other for the destination port
let streamFromPeeerToRelay = try XCTUnwrap(
capturedStreams
.filter { $0.destinationAddress == connectedToIPAddress }.first
capturedStreams.filter { $0.destinationAddress == connectedToIPAddress && $0.destinationPort == 80 }.first
)

XCTAssertTrue(streamFromPeeerToRelay.destinationPort == 80)
XCTAssertTrue(streamFromPeeerToRelay.transportProtocol == .TCP)
}

Expand Down
Loading