Skip to content

Commit 9a8356b

Browse files
authored
Add syslog websocket ios re (#777)
* add syslog broadcast for ios * make websocker wrapper common commands * update changelog
1 parent 7a5a12c commit 9a8356b

File tree

8 files changed

+55
-4
lines changed

8 files changed

+55
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release tags are https://github.com/appium/ruby_lib/releases .
55

66
## Unreleased
77
### 1. Enhancements
8+
- Support `start_logs_broadcast` and `stop_logs_broadcast` for iOS
89

910
### 2. Bug fixes
1011

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# rake ios[common/command/command]
2+
describe 'common/command/command' do
3+
t 'command' do
4+
File.delete 'syslog.log' if File.exist? 'syslog.log'
5+
6+
# A number of systemlog is quite small than Android.
7+
# It only checks the commands works fine.
8+
start_logs_broadcast
9+
sleep 5
10+
assert stop_logs_broadcast.nil?
11+
12+
assert File.exist?('syslog.log') if File.exist? 'syslog.log'
13+
assert File.size?('syslog.log') if File.exist? 'syslog.log'
14+
end
15+
end

lib/appium_lib/android/common/command/command.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require_relative 'ws_logcat'
2-
31
module Appium
42
module Android
53
module Command
@@ -31,7 +29,7 @@ def start_logs_broadcast(logcat_file = 'logcat.log')
3129
@driver.execute_script 'mobile: startLogsBroadcast'
3230

3331
socket_url = "ws://#{URI.parse(server_url).host}:#{@core.port}/ws/session/#{@driver.session_id}/appium/device/logcat"
34-
@logcat_client = Command::WsLogcat.new(url: socket_url, output_file: logcat_file)
32+
@logcat_client = ::Appium::Common::Command::WsLogcat.new(url: socket_url, output_file: logcat_file)
3533
end
3634

3735
# Stop Android logcat broadcast websocket

lib/appium_lib/appium.rb

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
require_relative 'common/touch_actions'
1717
require_relative 'common/http_client'
1818
require_relative 'common/device'
19+
require_relative 'common/command'
1920

2021
# ios
2122
require_relative 'ios/ios'

lib/appium_lib/common/command.rb

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
require_relative 'command/ws_logcat'
2+
3+
module Appium
4+
module Common
5+
module Command
6+
# parent
7+
end
8+
end
9+
end

lib/appium_lib/android/common/command/ws_logcat.rb lib/appium_lib/common/command/ws_logcat.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Appium
2-
module Android
2+
module Common
33
module Command
44
class WsLogcat < ::Appium::Core::WebSocket
55
def initialize(url:, output_file: 'logcat.log')

lib/appium_lib/ios/xcuitest/bridge.rb

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def self.for(target)
1414
target.extend Appium::Ios::Xcuitest::Gesture
1515
target.extend Appium::Ios::Xcuitest::MultiAppHandler
1616
target.extend Appium::Ios::Xcuitest::Element
17+
target.extend Appium::Ios::Xcuitest::Command
1718
end
1819
end
1920
end

lib/appium_lib/ios/xcuitest/command.rb

+26
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ module Appium
77
module Ios
88
module Xcuitest
99
module Command
10+
# Starts iOS syslog broadcast websocket
11+
#
12+
# @param [String] syslog_file A file path to write messages from a syslog WebSocket client
13+
#
14+
# @example
15+
#
16+
# start_logs_broadcast 'outputfile.log' #=> #<Appium::Android::Command::WsLogcat:...>
17+
#
18+
def start_logs_broadcast(syslog_file = 'syslog.log')
19+
@driver.execute_script 'mobile: startLogsBroadcast'
20+
21+
socket_url = "ws://#{URI.parse(server_url).host}:#{@core.port}/ws/session/#{@driver.session_id}/appium/device/syslog"
22+
@logcat_client = ::Appium::Common::Command::WsLogcat.new(url: socket_url, output_file: syslog_file)
23+
end
24+
25+
# Stop iOS syslog broadcast websocket
26+
#
27+
# @example
28+
#
29+
# stop_logs_broadcast #=> nil
30+
#
31+
def stop_logs_broadcast
32+
@logcat_client.close
33+
34+
@driver.execute_script 'mobile: stopLogsBroadcast'
35+
end
1036
end
1137
end
1238
end

0 commit comments

Comments
 (0)