Sha256: 6f4e6157985226434cc1aad63489b404e971fdc81488c52e83a3522ea7fee861

Contents?: true

Size: 1.8 KB

Versions: 6

Compression:

Stored size: 1.8 KB

Contents

activity org.ruboto.test_app.StackActivity

setup do |activity|
  start = Time.now
  loop do
    @text_view = activity.findViewById(42)
    break if @text_view || (Time.now - start > 60)
    sleep 1
  end
  assert @text_view
end

# ANDROID: 10, PLATFORM: 0.5.3,      JRuby: 1.7.3          '[28, 33, 46, 63]' expected, but got '[43, 48, 45, 62]'
# ANDROID: 10, PLATFORM: 0.5.4,      JRuby: 1.7.3          '[28, 33, 45, 62]' expected, but got '[28, 33, 44, 61]'
# ANDROID: 16, PLATFORM: 0.5.6,      JRuby: 1.7.3          '[28, 33, 45, 62]' expected, but got '[28, 33, 44, 61]'
# ANDROID: 16, PLATFORM: 0.6.0,      JRuby: 9000.dev       '[28, 33, 45, 62]' expected, but got '[28, 33, 45, 63]'
# ANDROID: 15, PLATFORM: STANDALONE, JRuby: 1.7.0          '[28, 33, 51, 68]' expected, but got '[28, 33, 47, 64]'
test('stack depth') do |activity|
  os_offset = {
      10 => [0, 0, -1, -1],
      13 => [1, 1, 0, 0],
  }[android.os.Build::VERSION::SDK_INT] || [0, 0, 0, 0]
  jruby_offset = {
      /^1\.7/ => [0, 0, 0, -1],
      /^9000/ => [0, 0, 0, 0],
      // => [0, 0, 0, 0],
  }.find { |k, v| org.jruby.runtime.Constants::VERSION =~ k }[1]
  version_message ="ANDROID: #{android.os.Build::VERSION::SDK_INT}, PLATFORM: #{org.ruboto.JRubyAdapter.uses_platform_apk ? org.ruboto.JRubyAdapter.platform_version_name : 'STANDALONE'}, JRuby: #{org.jruby.runtime.Constants::VERSION}"
  assert_equal [28 + os_offset[0] + jruby_offset[0],
                33 + os_offset[1] + jruby_offset[1],
                44 + os_offset[2] + jruby_offset[2],
                62 + os_offset[3] + jruby_offset[3]], [
                   activity.find_view_by_id(42).text.to_i,
                   activity.find_view_by_id(43).text.to_i,
                   activity.find_view_by_id(44).text.to_i,
                   activity.find_view_by_id(45).text.to_i], version_message
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruboto-1.1.2 test/activity/stack_activity_test.rb
ruboto-1.1.1 test/activity/stack_activity_test.rb
ruboto-1.1.0 test/activity/stack_activity_test.rb
ruboto-1.0.3 test/activity/stack_activity_test.rb
ruboto-1.0.2 test/activity/stack_activity_test.rb
ruboto-1.0.1 test/activity/stack_activity_test.rb