|
1 |
| -# rubocop:disable Metrics/LineLength |
2 |
| - |
3 | 1 | # rake android[android/helper]
|
4 | 2 | describe 'android/helper' do
|
5 | 3 | t 'tags' do
|
@@ -78,34 +76,4 @@ def id_value
|
78 | 76 | t 'ids' do
|
79 | 77 | wait { ids('android:id/text1').length.must_equal 12 }
|
80 | 78 | end
|
81 |
| - |
82 |
| - t '_parse_current_app_line' do |
83 |
| - # test values from appium's test/unit/adb-specs.js |
84 |
| - expected = [ |
85 |
| - # api 16 line |
86 |
| - ['mFocusedApp=AppWindowToken{417ee228 token=Token{41602f78 ActivityRecord{41798a08 io.appium.android.apis/.ApiDemos}}}', |
87 |
| - 'io.appium.android.apis', |
88 |
| - '.ApiDemos'], |
89 |
| - # api 18 line |
90 |
| - ['mFocusedApp=AppWindowToken{41744660 token=Token{41ac7198 ActivityRecord{41af55c8 u0 io.appium.android.apis/.ApiDemos}}}', |
91 |
| - 'io.appium.android.apis', |
92 |
| - '.ApiDemos'], |
93 |
| - # api 19 |
94 |
| - ['mFocusedApp=AppWindowToken{b40af858 token=Token{b3e2ce38 ActivityRecord{b3eb47d8 u0 io.appium.android.apis/.ApiDemos t6}}}', |
95 |
| - 'io.appium.android.apis', |
96 |
| - '.ApiDemos'], |
97 |
| - # api 16 selendroid |
98 |
| - ['mFocusedApp=AppWindowToken{4157a2c8 token=Token{41582628 ActivityRecord{415821f0 com.android.launcher/com.android.launcher2.Launcher}}}', |
99 |
| - 'com.android.launcher', |
100 |
| - 'com.android.launcher2.Launcher'] |
101 |
| - ] |
102 |
| - |
103 |
| - expected.each do |line, package, activity| |
104 |
| - parsed = _parse_current_app_line(line) |
105 |
| - raise "failed to parse #{line}" if parsed.nil? |
106 |
| - parsed.package.must_equal package |
107 |
| - parsed.activity.must_equal activity |
108 |
| - parsed.am_start.must_equal package + '/' + activity |
109 |
| - end |
110 |
| - end |
111 | 79 | end
|
0 commit comments