File tree 8 files changed +55
-4
lines changed
ios_tests/lib/ios/specs/common/command
8 files changed +55
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Release tags are https://github.com/appium/ruby_lib/releases .
5
5
6
6
## Unreleased
7
7
### 1. Enhancements
8
+ - Support ` start_logs_broadcast ` and ` stop_logs_broadcast ` for iOS
8
9
9
10
### 2. Bug fixes
10
11
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
- require_relative 'ws_logcat'
2
-
3
1
module Appium
4
2
module Android
5
3
module Command
@@ -31,7 +29,7 @@ def start_logs_broadcast(logcat_file = 'logcat.log')
31
29
@driver . execute_script 'mobile: startLogsBroadcast'
32
30
33
31
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 )
35
33
end
36
34
37
35
# Stop Android logcat broadcast websocket
Original file line number Diff line number Diff line change 16
16
require_relative 'common/touch_actions'
17
17
require_relative 'common/http_client'
18
18
require_relative 'common/device'
19
+ require_relative 'common/command'
19
20
20
21
# ios
21
22
require_relative 'ios/ios'
Original file line number Diff line number Diff line change
1
+ require_relative 'command/ws_logcat'
2
+
3
+ module Appium
4
+ module Common
5
+ module Command
6
+ # parent
7
+ end
8
+ end
9
+ end
Original file line number Diff line number Diff line change 1
1
module Appium
2
- module Android
2
+ module Common
3
3
module Command
4
4
class WsLogcat < ::Appium ::Core ::WebSocket
5
5
def initialize ( url :, output_file : 'logcat.log' )
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ def self.for(target)
14
14
target . extend Appium ::Ios ::Xcuitest ::Gesture
15
15
target . extend Appium ::Ios ::Xcuitest ::MultiAppHandler
16
16
target . extend Appium ::Ios ::Xcuitest ::Element
17
+ target . extend Appium ::Ios ::Xcuitest ::Command
17
18
end
18
19
end
19
20
end
Original file line number Diff line number Diff line change @@ -7,6 +7,32 @@ module Appium
7
7
module Ios
8
8
module Xcuitest
9
9
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
10
36
end
11
37
end
12
38
end
You can’t perform that action at this time.
0 commit comments