Skip to content

Commit 9dfa0b9

Browse files
authoredNov 7, 2017
refactor: replace core directory to core library (#718)
* replace core directory to core library * add recording related command tests * remove source_window * remove current app * remove unused rubocop rule * remove some test code * remove unnecessary tests since they'be already tested in core * remove the core library related tests
1 parent 04a6f45 commit 9dfa0b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+9
-2731
lines changed
 

‎android_tests/lib/android/specs/android/helper.rb

-32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# rubocop:disable Metrics/LineLength
2-
31
# rake android[android/helper]
42
describe 'android/helper' do
53
t 'tags' do
@@ -78,34 +76,4 @@ def id_value
7876
t 'ids' do
7977
wait { ids('android:id/text1').length.must_equal 12 }
8078
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
11179
end

‎android_tests/lib/android/specs/common/command.rb

-65
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.