-
-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added start_activity function and tests #267
Conversation
@bootstraponline I can't get any tests to pass. Can you take a look at this and see if there's anything I may have messed up? |
t 'start_activity' do | ||
wait { current_activity.must_equal '.ApiDemos' } | ||
start_activity 'io.appium.android.apis', '.accessibility.AccessibilityNodeProviderActivity' | ||
Test::Unit::Assertions::assert(current_activity.include? 'Node') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we're using minitest, not test unit.
current_activity.include?('Node').must_equal true
t 'start_activity' do | ||
wait { current_activity.must_equal '.ApiDemos' } | ||
start_activity 'io.appium.android.apis', '.accessibility.AccessibilityNodeProviderActivity' | ||
current_activity.include?('Node').must_equal true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wait { current_activity.include?('Node').must_equal true }
# start_activity 'com.example.app', '.Foo' | ||
# ``` | ||
add_endpoint_method(:start_activity, 'session/:session_id/appium/device/start_activity') do | ||
def start_activity(app_package, app_activity, app_wait_package='', app_wait_activity='') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a hash is cleaner.
# example usage
start_activity app_package: 'io.appium.android.apis', app_activity: '.accessibility.AccessibilityNodeProviderActivity'
# implementation
def start_activity(opts)
app_package = opts[:app_package]
raise 'app_package is required' unless app_package
app_activity = opts[:app_activity]
raise 'app_activity is required' unless opts[:app_activity]
app_wait_package = opts.fetch(:app_wait_package, '')
app_wait_activity = opts.fetch(:app_wait_activity, '')
unknown_opts = opts.keys - [:app_package, :app_activity, :app_wait_package, :app_wait_activity]
raise "Unknown options #{unknown_opts}" unless unknown_opts.empty?
execute :start_activity, {}, { appPackage: app_package, appActivity: app_activity,
appWaitPackage: app_wait_package, appWaitActivity: app_wait_activity }
end
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the pointers!
b753b35
to
af6d44c
Compare
@bootstraponline Updated |
# start_activity app_package: 'io.appium.android.apis', app_activity: '.accessibility.AccessibilityNodeProviderActivity' | ||
# ``` | ||
add_endpoint_method(:start_activity, 'session/:session_id/appium/device/start_activity') do | ||
def start_activity(opts) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the opts should be validated as well
raise 'opts must be a hash' unless opts.is_a? Hash
Updated with opts validation. |
Added start_activity function and tests
merged, thanks! |
yay! \o/ On Fri, Sep 12, 2014 at 1:42 PM, bootstraponline notifications@github.com
|
No description provided.