Module: Calabash::Cucumber::Core

Included in:
KeyboardHelpers, Location, Operations, TestsHelpers, WaitHelpers
Defined in:
lib/calabash-cucumber/core.rb

Constant Summary collapse

DATA_PATH =
File.expand_path(File.dirname(__FILE__))
CAL_HTTP_RETRY_COUNT =
3
RETRYABLE_ERRORS =
[Errno::ECONNREFUSED, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::ETIMEDOUT]

Instance Method Summary collapse

Instance Method Details

#backdoor(sel, arg) ⇒ Object



435
436
437
438
439
440
441
442
443
444
445
446
# File 'lib/calabash-cucumber/core.rb', line 435

def backdoor(sel, arg)
  json = {
      :selector => sel,
      :arg => arg
  }
  res = http({:method => :post, :path => 'backdoor'}, json)
  res = JSON.parse(res)
  if res['outcome'] != 'SUCCESS'
    screenshot_and_raise "backdoor #{json} failed because: #{res['reason']}\n#{res['details']}"
  end
  res['result']
end

#background(secs) ⇒ Object



237
238
239
# File 'lib/calabash-cucumber/core.rb', line 237

def background(secs)
  set_user_pref("__calabash_action", {:action => :background, :duration => secs})
end

#calabash_exitObject



448
449
450
451
452
453
454
455
456
# File 'lib/calabash-cucumber/core.rb', line 448

def calabash_exit
  # Exiting the app shuts down the HTTP connection and generates ECONNREFUSED,
  # which needs to be suppressed.
  begin
    http(:path => 'exit', :retryable_errors => RETRYABLE_ERRORS - [Errno::ECONNREFUSED])
  rescue Errno::ECONNREFUSED
    []
  end
end

#cell_swipe(options = {}) ⇒ Object



137
138
139
# File 'lib/calabash-cucumber/core.rb', line 137

def cell_swipe(options={})
  playback("cell_swipe", options)
end

#client_versionObject



28
29
30
# File 'lib/calabash-cucumber/core.rb', line 28

def client_version
  Calabash::Cucumber::VERSION
end

#current_rotationObject

Current position of home button



193
194
195
# File 'lib/calabash-cucumber/core.rb', line 193

def current_rotation
  @current_rotation
end

#http(options, data = nil) ⇒ Object



495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File 'lib/calabash-cucumber/core.rb', line 495

def http(options, data=nil)
  options[:uri] = url_for(options[:path])
  options[:method] = options[:method] || :get
  if data
    if options[:raw]
      options[:body] = data
    else
      options[:body] = data.to_json
    end
  end
  res = make_http_request(options)
  res.force_encoding("UTF-8") if res.respond_to?(:force_encoding)
  res
end

#init_request(url) ⇒ Object



573
574
575
576
577
578
579
580
581
582
# File 'lib/calabash-cucumber/core.rb', line 573

def init_request(url)
  http = HTTPClient.new
  http.connect_timeout = 15
  http.send_timeout = 15
  http.receive_timeout = 15
  if ENV['DEBUG_HTTP'] and (ENV['DEBUG_HTTP'] != "0")
    http.debug_dev = $stdout
  end
  http
end

#interpolate(recording, options = {}) ⇒ Object



380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
# File 'lib/calabash-cucumber/core.rb', line 380

def interpolate(recording, options={})
  data = load_playback_data(recording)

  post_data = %Q|{"events":"#{data}"|
  post_data<< %Q|,"start":"#{escape_quotes(options[:start])}"| if options[:start]
  post_data<< %Q|,"end":"#{escape_quotes(options[:end])}"| if options[:end]
  post_data<< %Q|,"offset_start":#{options[:offset_start].to_json}| if options[:offset_start]
  post_data<< %Q|,"offset_end":#{options[:offset_end].to_json}| if options[:offset_end]
  post_data << "}"

  res = http({:method => :post, :raw => true, :path => 'interpolate'}, post_data)

  res = JSON.parse(res)
  if res['outcome'] != 'SUCCESS'
    screenshot_and_raise "interpolate failed because: #{res['reason']}\n#{res['details']}"
  end
  res['results']
end

#load_playback_data(recording_name, options = {}) ⇒ Object



323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/calabash-cucumber/core.rb', line 323

def load_playback_data(recording_name, options={})
  os = options["OS"] || ENV["OS"]
  device = options["DEVICE"] || ENV["DEVICE"] || "iphone"

  unless os
    major = Calabash::Cucumber::SimulatorHelper.ios_major_version
    unless major
      raise <<EOF
    Unable to determine iOS major version
    Most likely you have updated your calabash-cucumber client
    but not your server. Please follow closely:

https://github.com/calabash/calabash-ios/wiki/B1-Updating-your-Calabash-iOS-version

    If you are running version 0.9.120+ then please report this message as a bug.
EOF
    end
    os = "ios#{major}"
  end

  rec_dir = ENV['PLAYBACK_DIR'] || "#{Dir.pwd}/playback"

  recording = recording_name_for(recording_name, os, device)
  data = load_recording(recording, rec_dir)

  if data.nil? and os=="ios6"
    recording = recording_name_for(recording_name, "ios5", device)
  end

  data = load_recording(recording, rec_dir)

  if data.nil?
    screenshot_and_raise "Playback not found: #{recording} (searched for #{recording} in #{Dir.pwd}, #{rec_dir}, #{DATA_PATH}/resources"
  end

  data
end

#load_recording(recording, rec_dir) ⇒ Object



309
310
311
312
313
314
315
316
317
318
319
320
321
# File 'lib/calabash-cucumber/core.rb', line 309

def load_recording(recording, rec_dir)
  data = nil
  if (File.exists?(recording))
    data = File.read(recording)
  elsif (File.exists?("features/#{recording}"))
    data = File.read("features/#{recording}")
  elsif (File.exists?("#{rec_dir}/#{recording}"))
    data = File.read("#{rec_dir}/#{recording}")
  elsif (File.exists?("#{DATA_PATH}/resources/#{recording}"))
    data = File.read("#{DATA_PATH}/resources/#{recording}")
  end
  data
end

#macro(txt) ⇒ Object



12
13
14
15
16
17
18
# File 'lib/calabash-cucumber/core.rb', line 12

def macro(txt)
  if self.respond_to? :step
    step(txt)
  else
    Then txt
  end
end

#make_http_request(options) ⇒ Object



523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
# File 'lib/calabash-cucumber/core.rb', line 523

def make_http_request(options)
  body = nil
  retryable_errors = options[:retryable_errors] || RETRYABLE_ERRORS
  CAL_HTTP_RETRY_COUNT.times do |count|
    begin
      if not @http
        @http = init_request(options)
      end
      if options[:method] == :post
        body = @http.post(options[:uri], options[:body]).body
      else
        body = @http.get(options[:uri], options[:body]).body
      end
      break
    rescue HTTPClient::TimeoutError, HTTPClient::KeepAliveDisconnected => e
      if count < CAL_HTTP_RETRY_COUNT-1
        @http.reset_all
        @http=nil
        STDOUT.write "Waiting 5 secs before retry...\n"
        sleep(5)
        STDOUT.write "Retrying.. #{e.class}: (#{e})\n"
        STDOUT.flush

      else
        puts "Failing... #{e.class}"
        raise e
      end

    rescue Exception => e
      if retryable_errors.include?(e)
        if count < CAL_HTTP_RETRY_COUNT-1
          sleep(0.5)
          @http.reset_all
          @http=nil
          STDOUT.write "Retrying.. #{e.class}: (#{e})\n"
          STDOUT.flush

        else
          puts "Failing... #{e.class}"
          raise e
        end
      else
        raise e
      end
    end
  end

  body
end

#map(query, method_name, *method_args) ⇒ Object



458
459
460
461
462
463
464
465
466
467
468
469
470
471
# File 'lib/calabash-cucumber/core.rb', line 458

def map(query, method_name, *method_args)
  operation_map = {
      :method_name => method_name,
      :arguments => method_args
  }
  res = http({:method => :post, :path => 'map'},
             {:query => query, :operation => operation_map})
  res = JSON.parse(res)
  if res['outcome'] != 'SUCCESS'
    screenshot_and_raise "map #{query}, #{method_name} failed because: #{res['reason']}\n#{res['details']}"
  end

  res['results']
end

#move_wheel(opts = {}) ⇒ Object



251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'lib/calabash-cucumber/core.rb', line 251

def move_wheel(opts={})
  q = opts[:query] || "pickerView"
  wheel = opts[:wheel] || 0
  dir = opts[:dir] || :down

  raise "Wheel index must be non negative" if wheel < 0
  raise "Only up and down supported :dir (#{dir})" unless [:up, :down].include?(dir)

  if ENV['OS'] == "ios4"
    playback "wheel_#{dir}", :query => "#{q} pickerTable index:#{wheel}"
  else
    playback "wheel_#{dir}", :query => "#{q} pickerTableView index:#{wheel}"
  end

end

#perform(*args) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/calabash-cucumber/core.rb', line 32

def perform(*args)
  if args.length == 1
    #simple selector
    hash = args.first
    q = hash[:on]
    hash = hash.dup
    hash.delete(:on)
    args = [hash]
  elsif args.length == 2
    q = args[1][:on]
    if args[0].is_a? Hash
      args = [args[0]]
    else
      args = args[0]
    end
  end
  map(q, :query, *args)
end

#picker(opts = {:query => "pickerView", :action => :texts}) ⇒ Object



267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/calabash-cucumber/core.rb', line 267

def picker(opts={:query => "pickerView", :action => :texts})
  raise "Not implemented" unless opts[:action] == :texts

  q = opts[:query]

  check_element_exists(q)

  comps = query(q, :numberOfComponents).first
  row_counts = []
  texts = []
  comps.times do |i|
    row_counts[i] = query(q, :numberOfRowsInComponent => i).first
    texts[i] = []
  end

  row_counts.each_with_index do |row_count, comp|
    row_count.times do |i|
      #view = query(q,[{:viewForRow => 0}, {:forComponent => 0}],:accessibilityLabel).first
      spec = [{:viewForRow => i}, {:forComponent => comp}]
      view = query(q, spec).first
      if view
        txt = query(q, spec, :accessibilityLabel).first
      else
        txt = query(q, :delegate, [{:pickerView => :view},
                                   {:titleForRow => i},
                                   {:forComponent => comp}]).first
      end
      texts[comp] << txt
    end
  end
  texts
end

#pinch(in_out, options = {}) ⇒ Object



184
185
186
187
188
189
190
# File 'lib/calabash-cucumber/core.rb', line 184

def pinch(in_out, options={})
  file = "pinch_in"
  if in_out.to_sym==:out
    file = "pinch_out"
  end
  playback(file, options)
end

#playback(recording, options = {}) ⇒ Object



361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
# File 'lib/calabash-cucumber/core.rb', line 361

def playback(recording, options={})
  data = load_playback_data(recording)

  post_data = %Q|{"events":"#{data}"|
  post_data<< %Q|,"query":"#{escape_quotes(options[:query])}"| if options[:query]
  post_data<< %Q|,"offset":#{options[:offset].to_json}| if options[:offset]
  post_data<< %Q|,"reverse":#{options[:reverse]}| if options[:reverse]
  post_data<< %Q|,"prototype":"#{options[:prototype]}"| if options[:prototype]
  post_data << "}"

  res = http({:method => :post, :raw => true, :path => 'play'}, post_data)

  res = JSON.parse(res)
  if res['outcome'] != 'SUCCESS'
    screenshot_and_raise "playback failed because: #{res['reason']}\n#{res['details']}"
  end
  res['results']
end

#prepare_dialog_action(opts = {:dialog => nil, :answer => "Ok"}) ⇒ Object



241
242
243
244
245
246
247
248
249
# File 'lib/calabash-cucumber/core.rb', line 241

def prepare_dialog_action(opts={:dialog => nil, :answer => "Ok"})
  if opts[:dialog].nil? || opts[:dialog].length < 1
    raise ":dialog must be specified as a non-empty string (used as regexp to match dialog text)"
  end
  txt = opts[:answer] || 'Ok'
  set_user_pref("__calabash_action", {:action => :dialog,
                                      :text => opts[:dialog],
                                      :answer => txt})
end

#query(uiquery, *args) ⇒ Object



20
21
22
# File 'lib/calabash-cucumber/core.rb', line 20

def query(uiquery, *args)
  map(uiquery, :query, *args)
end

#query_all(uiquery, *args) ⇒ Object



51
52
53
54
55
# File 'lib/calabash-cucumber/core.rb', line 51

def query_all(uiquery, *args)
  puts "query_all is deprecated. Use the new all/visible feature."
  puts "see: https://github.com/calabash/calabash-ios/wiki/05-Query-syntax"
  map("all #{uiquery}", :query, *args)
end

#record_beginObject



399
400
401
# File 'lib/calabash-cucumber/core.rb', line 399

def record_begin
  http({:method => :post, :path => 'record'}, {:action => :start})
end

#record_end(file_name) ⇒ Object



403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# File 'lib/calabash-cucumber/core.rb', line 403

def record_end(file_name)
  res = http({:method => :post, :path => 'record'}, {:action => :stop})
  File.open("_recording.plist", 'wb') do |f|
    f.write res
  end

  device = ENV['DEVICE'] || 'iphone'
  os = ENV['OS']

  unless os
    major = Calabash::Cucumber::SimulatorHelper.ios_major_version
    unless major
      raise <<EOF
    Unable to determine iOS major version
    Most likely you have updated your calabash-cucumber client
    but not your server. Please follow closely:

https://github.com/calabash/calabash-ios/wiki/B1-Updating-your-Calabash-iOS-version

    If you are running version 0.9.120+ then please report this message as a bug.
EOF
    end
    os = "ios#{major}"
  end

  file_name = "#{file_name}_#{os}_#{device}.base64"
  system("/usr/bin/plutil -convert binary1 -o _recording_binary.plist _recording.plist")
  system("openssl base64 -in _recording_binary.plist -out #{file_name}")
  system("rm _recording.plist _recording_binary.plist")
  file_name
end

#recording_name_for(recording_name, os, device) ⇒ Object



300
301
302
303
304
305
306
# File 'lib/calabash-cucumber/core.rb', line 300

def recording_name_for(recording_name, os, device)
  if !recording_name.end_with? ".base64"
    "#{recording_name}_#{os}_#{device}.base64"
  else
    recording_name
  end
end

#rotate(dir) ⇒ Object



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/calabash-cucumber/core.rb', line 197

def rotate(dir)
  @current_rotation = @current_rotation || :down
  rotate_cmd = nil
  case dir
    when :left then
      if @current_rotation == :down
        rotate_cmd = "left_home_down"
        @current_rotation = :right
      elsif @current_rotation == :right
        rotate_cmd = "left_home_right"
        @current_rotation = :up
      elsif @current_rotation == :left
        rotate_cmd = "left_home_left"
        @current_rotation = :down
      elsif @current_rotation == :up
        rotate_cmd = "left_home_up"
        @current_rotation = :left
      end
    when :right then
      if @current_rotation == :down
        rotate_cmd = "right_home_down"
        @current_rotation = :left
      elsif @current_rotation == :left
        rotate_cmd = "right_home_left"
        @current_rotation = :up
      elsif @current_rotation == :right
        rotate_cmd = "right_home_right"
        @current_rotation = :down
      elsif @current_rotation == :up
        rotate_cmd = "right_home_up"
        @current_rotation = :right
      end
  end

  if rotate_cmd.nil?
    screenshot_and_raise "Does not support rotating #{dir} when home button is pointing #{@current_rotation}"
  end
  playback("rotate_#{rotate_cmd}")
end

#scroll(uiquery, direction) ⇒ Object



141
142
143
144
145
# File 'lib/calabash-cucumber/core.rb', line 141

def scroll(uiquery, direction)
  views_touched=map(uiquery, :scroll, direction)
  screenshot_and_raise "could not find view to scroll: '#{uiquery}', args: #{direction}" if views_touched.empty?
  views_touched
end

#scroll_to_cell(options = {:query => "tableView", :row => 0, :section => 0, :scroll_position => :top, :animate => true}) ⇒ Object



155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'lib/calabash-cucumber/core.rb', line 155

def scroll_to_cell(options={:query => "tableView",
                            :row => 0,
                            :section => 0,
                            :scroll_position => :top,
                            :animate => true})
  uiquery = options[:query] || "tableView"
  row = options[:row]
  sec = options[:section]
  if row.nil? or sec.nil?
    raise "You must supply both :row and :section keys to scroll_to_cell"
  end

  args = []
  if options.has_key?(:scroll_position)
    args << options[:scroll_position]
  else
    args << "top"
  end
  if options.has_key?(:animate)
    args << options[:animate]
  end
  views_touched=map(uiquery, :scrollToRow, row.to_i, sec.to_i, *args)

  if views_touched.empty? or views_touched.member? "<VOID>"
    screenshot_and_raise "Unable to scroll: '#{uiquery}' to: #{options}"
  end
  views_touched
end

#scroll_to_row(uiquery, number) ⇒ Object



147
148
149
150
151
152
153
# File 'lib/calabash-cucumber/core.rb', line 147

def scroll_to_row(uiquery, number)
  views_touched=map(uiquery, :scrollToRow, number)
  if views_touched.empty? or views_touched.member? "<VOID>"
    screenshot_and_raise "Unable to scroll: '#{uiquery}' to: #{number}"
  end
  views_touched
end

#send_uia_command(opts = {}) ⇒ Object



484
485
486
# File 'lib/calabash-cucumber/core.rb', line 484

def send_uia_command(opts ={})
  RunLoop.send_command(opts[:device] ||@ios_device, opts[:command])
end

#server_versionObject



24
25
26
# File 'lib/calabash-cucumber/core.rb', line 24

def server_version
  JSON.parse(http(:path => 'version'))
end

#start_app_in_background(path = nil, sdk = nil, version = 'iphone', args = nil) ⇒ Object



474
475
476
477
478
479
480
481
482
# File 'lib/calabash-cucumber/core.rb', line 474

def start_app_in_background(path=nil, sdk = nil, version = 'iphone', args = nil)

  if path.nil?
    path = ENV['APP_BUNDLE_PATH'] || (defined?(APP_BUNDLE_PATH) && APP_BUNDLE_PATH)
  end
  app_bundle_path = Calabash::Cucumber::SimulatorHelper.app_bundle_or_raise(path)

  @ios_device = RunLoop.run(:app => app_bundle_path)
end

#stop_background_app(stop_spec = nil) ⇒ Object



488
489
490
491
492
# File 'lib/calabash-cucumber/core.rb', line 488

def stop_background_app(stop_spec = nil)

  @ios_device = RunLoop.stop(stop_spec || @ios_device)

end

#swipe(dir, options = {}) ⇒ Object



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/calabash-cucumber/core.rb', line 92

def swipe(dir, options={})
  dir = dir.to_sym
  @current_rotation = @current_rotation || :down
  if @current_rotation == :left
    case dir
      when :left then
        dir = :down
      when :right then
        dir = :up
      when :up then
        dir = :left
      when :down then
        dir = :right
      else
    end
  end
  if @current_rotation == :right
    case dir
      when :left then
        dir = :up
      when :right then
        dir = :down
      when :up then
        dir = :right
      when :down then
        dir = :left
      else
    end
  end
  if @current_rotation == :up
    case dir
      when :left then
        dir = :right
      when :right then
        dir = :left
      when :up then
        dir = :down
      when :down then
        dir = :up
      else
    end
  end
  playback("swipe_#{dir}", options)
end

#touch(uiquery, options = {}) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/calabash-cucumber/core.rb', line 57

def touch(uiquery, options={})
  if (uiquery.is_a?(Array))
    raise "No elements to touch in array" if uiquery.empty?
    uiquery = uiquery.first
  end
  if (uiquery.is_a?(Hash))
    offset_x = 0
    offset_y = 0
    if options[:offset]
      offset_x += options[:offset][:x] || 0
      offset_y += options[:offset][:y] || 0
    end
    x = offset_x
    y = offset_y
    rect = uiquery["rect"] || uiquery[:rect]
    if rect
      x += rect['center_x'] || rect[:center_x] || rect[:x] || 0
      y += rect['center_y'] || rect[:center_y] || rect[:y] || 0
    else
      x += uiquery['center_x'] || uiquery[:center_x] || uiquery[:x] || 0
      y += uiquery['center_y'] || uiquery[:center_y] || uiquery[:y] || 0
    end

    options[:offset] = {:x => x, :y => y}
    return touch(nil, options)
  end

  options[:query] = uiquery
  views_touched = playback("touch", options)
  unless uiquery.nil?
    screenshot_and_raise "could not find view to touch: '#{uiquery}', args: #{options}" if views_touched.empty?
  end
  views_touched
end

#url_for(verb) ⇒ Object



511
512
513
514
515
516
517
518
519
520
521
# File 'lib/calabash-cucumber/core.rb', line 511

def url_for(verb)
  url = URI.parse(ENV['DEVICE_ENDPOINT']|| "http://localhost:37265")
  path = url.path
  if path.end_with? "/"
    path = "#{path}#{verb}"
  else
    path = "#{path}/#{verb}"
  end
  url.path = path
  url
end