-
-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add wrappers for Android logcat broadcaster (#858)
* Add wrappers for Android logcat broadcaster * Address PR comments * Remove unused arguments * Tune execute args * Add missing dependencies * Add license headers * Rewrite the stuff using functional approach * Minimize the app to push log messages
- Loading branch information
1 parent
8cf79ea
commit 345676a
Showing
11 changed files
with
557 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 138 additions & 0 deletions
138
src/main/java/io/appium/java_client/android/ListensToLogcatMessages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.appium.java_client.android; | ||
|
||
import static io.appium.java_client.service.local.AppiumServiceBuilder.DEFAULT_APPIUM_PORT; | ||
import static org.openqa.selenium.remote.DriverCommand.EXECUTE_SCRIPT; | ||
|
||
import com.google.common.collect.ImmutableMap; | ||
|
||
import io.appium.java_client.ExecutesMethod; | ||
import io.appium.java_client.ws.StringWebSocketClient; | ||
import org.openqa.selenium.remote.RemoteWebDriver; | ||
|
||
import java.net.URI; | ||
import java.net.URISyntaxException; | ||
import java.util.Collections; | ||
import java.util.function.Consumer; | ||
|
||
public interface ListensToLogcatMessages extends ExecutesMethod { | ||
StringWebSocketClient logcatClient = new StringWebSocketClient(); | ||
|
||
/** | ||
* Start logcat messages broadcast via web socket. | ||
* This method assumes that Appium server is running on localhost and | ||
* is assigned to the default port (4723). | ||
*/ | ||
default void startLogcatBroadcast() { | ||
startLogcatBroadcast("localhost", DEFAULT_APPIUM_PORT); | ||
} | ||
|
||
/** | ||
* Start logcat messages broadcast via web socket. | ||
* This method assumes that Appium server is assigned to the default port (4723). | ||
* | ||
* @param host the name of the host where Appium server is running | ||
*/ | ||
default void startLogcatBroadcast(String host) { | ||
startLogcatBroadcast(host, DEFAULT_APPIUM_PORT); | ||
} | ||
|
||
/** | ||
* Start logcat messages broadcast via web socket. | ||
* | ||
* @param host the name of the host where Appium server is running | ||
* @param port the port of the host where Appium server is running | ||
*/ | ||
default void startLogcatBroadcast(String host, int port) { | ||
execute(EXECUTE_SCRIPT, ImmutableMap.of("script", "mobile: startLogsBroadcast", | ||
"args", Collections.emptyList())); | ||
final URI endpointUri; | ||
try { | ||
endpointUri = new URI(String.format("ws://%s:%s/ws/session/%s/appium/device/logcat", | ||
host, port, ((RemoteWebDriver) this).getSessionId())); | ||
} catch (URISyntaxException e) { | ||
throw new IllegalArgumentException(e); | ||
} | ||
logcatClient.connect(endpointUri); | ||
} | ||
|
||
/** | ||
* Adds a new log messages broadcasting handler. | ||
* Several handlers might be assigned to a single server. | ||
* Multiple calls to this method will cause such handler | ||
* to be called multiple times. | ||
* | ||
* @param handler a function, which accepts a single argument, which is the actual log message | ||
*/ | ||
default void addLogcatMessagesListener(Consumer<String> handler) { | ||
logcatClient.addMessageHandler(handler); | ||
} | ||
|
||
/** | ||
* Adds a new log broadcasting errors handler. | ||
* Several handlers might be assigned to a single server. | ||
* Multiple calls to this method will cause such handler | ||
* to be called multiple times. | ||
* | ||
* @param handler a function, which accepts a single argument, which is the actual exception instance | ||
*/ | ||
default void addLogcatErrorsListener(Consumer<Throwable> handler) { | ||
logcatClient.addErrorHandler(handler); | ||
} | ||
|
||
/** | ||
* Adds a new log broadcasting connection handler. | ||
* Several handlers might be assigned to a single server. | ||
* Multiple calls to this method will cause such handler | ||
* to be called multiple times. | ||
* | ||
* @param handler a function, which is executed as soon as the client is successfully | ||
* connected to the web socket | ||
*/ | ||
default void addLogcatConnectionListener(Runnable handler) { | ||
logcatClient.addConnectionHandler(handler); | ||
} | ||
|
||
/** | ||
* Adds a new log broadcasting disconnection handler. | ||
* Several handlers might be assigned to a single server. | ||
* Multiple calls to this method will cause such handler | ||
* to be called multiple times. | ||
* | ||
* @param handler a function, which is executed as soon as the client is successfully | ||
* disconnected from the web socket | ||
*/ | ||
default void addLogcatDisconnectionListener(Runnable handler) { | ||
logcatClient.addDisconnectionHandler(handler); | ||
} | ||
|
||
/** | ||
* Removes all existing logcat handlers. | ||
*/ | ||
default void removeAllLogcatListeners() { | ||
logcatClient.removeAllHandlers(); | ||
} | ||
|
||
/** | ||
* Stops logcat messages broadcast via web socket. | ||
*/ | ||
default void stopLogcatBroadcast() { | ||
execute(EXECUTE_SCRIPT, ImmutableMap.of("script", "mobile: stopLogsBroadcast", | ||
"args", Collections.emptyList())); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
src/main/java/io/appium/java_client/ws/CanHandleConnects.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.appium.java_client.ws; | ||
|
||
import java.util.List; | ||
|
||
public interface CanHandleConnects { | ||
|
||
/** | ||
* @return The list of web socket connection handlers. | ||
*/ | ||
List<Runnable> getConnectionHandlers(); | ||
|
||
/** | ||
* Register a new message handler. | ||
* | ||
* @param handler a callback function, which is going to be executed when web socket connection event arrives | ||
*/ | ||
default void addConnectionHandler(Runnable handler) { | ||
getConnectionHandlers().add(handler); | ||
} | ||
|
||
/** | ||
* Removes existing web socket connection handlers. | ||
*/ | ||
default void removeConnectionHandlers() { | ||
getConnectionHandlers().clear(); | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
src/main/java/io/appium/java_client/ws/CanHandleDisconnects.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.appium.java_client.ws; | ||
|
||
import java.util.List; | ||
|
||
public interface CanHandleDisconnects { | ||
|
||
/** | ||
* @return The list of web socket disconnection handlers. | ||
*/ | ||
List<Runnable> getDisconnectionHandlers(); | ||
|
||
/** | ||
* Register a new web socket disconnect handler. | ||
* | ||
* @param handler a callback function, which is going to be executed when web socket disconnect event arrives | ||
*/ | ||
default void addDisconnectionHandler(Runnable handler) { | ||
getDisconnectionHandlers().add(handler); | ||
} | ||
|
||
/** | ||
* Removes existing disconnection handlers. | ||
*/ | ||
default void removeDisconnectionHandlers() { | ||
getDisconnectionHandlers().clear(); | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
src/main/java/io/appium/java_client/ws/CanHandleErrors.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.appium.java_client.ws; | ||
|
||
import java.util.List; | ||
import java.util.function.Consumer; | ||
|
||
public interface CanHandleErrors { | ||
|
||
/** | ||
* @return The list of web socket error handlers. | ||
*/ | ||
List<Consumer<Throwable>> getErrorHandlers(); | ||
|
||
/** | ||
* Register a new error handler. | ||
* | ||
* @param handler a callback function, which accepts the received exception instance as a parameter | ||
*/ | ||
default void addErrorHandler(Consumer<Throwable> handler) { | ||
getErrorHandlers().add(handler); | ||
} | ||
|
||
/** | ||
* Removes existing error handlers. | ||
*/ | ||
default void removeErrorHandlers() { | ||
getErrorHandlers().clear(); | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
src/main/java/io/appium/java_client/ws/CanHandleMessages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.appium.java_client.ws; | ||
|
||
import java.util.List; | ||
import java.util.function.Consumer; | ||
|
||
public interface CanHandleMessages<T> { | ||
/** | ||
* @return The list of web socket message handlers. | ||
*/ | ||
List<Consumer<T>> getMessageHandlers(); | ||
|
||
/** | ||
* Register a new message handler. | ||
* | ||
* @param handler a callback function, which accepts the received message as a parameter | ||
*/ | ||
default void addMessageHandler(Consumer<T> handler) { | ||
getMessageHandlers().add(handler); | ||
} | ||
|
||
/** | ||
* Removes existing message handlers. | ||
*/ | ||
default void removeMessageHandlers() { | ||
getMessageHandlers().clear(); | ||
} | ||
} | ||
|
Oops, something went wrong.