-
-
Notifications
You must be signed in to change notification settings - Fork 186
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
Xcuitestrunner over tunnel (iOS 17) #301
Conversation
Hello @diegoperini does this works now? |
Any updates on this , i see when you try to start the webdriveragent it hangs, you have comment that piece of code there, that still to figure out. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revisit the log.Info
calls as well, most of them should be debug, or could be removed completely
@@ -123,6 +123,33 @@ func NewConnection(device ios.DeviceEntry, serviceName string) (*Connection, err | |||
return dtxConnection, nil | |||
} | |||
|
|||
// NewTunnelConnection connects and starts reading from a Dtx based service on the device, using tunnel interface instead of usbmuxd | |||
func NewTunnelConnection(device ios.DeviceEntry, serviceName string) (*Connection, error) { | |||
conn, err := ios.ConnectToServiceTunnelIface(device, serviceName) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
everything except this line is a duplicate of NewLockdownConnection
. This can be handled in a better way to have less duplication.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DTX connection part is now under its own function.
@dmissmann I reviewed all info logs to see which ones can be debug logs instead. I also renamed stuff you point out in the review comments. Could you please take a second look to current state of the PR? |
No description provided.