Skip to content
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

Merged
merged 1 commit into from
Sep 12, 2014

Conversation

0x1mason
Copy link
Contributor

No description provided.

@0x1mason
Copy link
Contributor Author

@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')
Copy link
Member

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
Copy link
Member

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='')
Copy link
Member

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the pointers!

@0x1mason
Copy link
Contributor Author

@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)
Copy link
Member

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

@0x1mason
Copy link
Contributor Author

Updated with opts validation.

bootstraponline added a commit that referenced this pull request Sep 12, 2014
Added start_activity function and tests
@bootstraponline bootstraponline merged commit 4569b0e into appium:master Sep 12, 2014
@bootstraponline
Copy link
Member

merged, thanks!

@0x1mason
Copy link
Contributor Author

yay! \o/

On Fri, Sep 12, 2014 at 1:42 PM, bootstraponline notifications@github.com
wrote:

merged, thanks!


Reply to this email directly or view it on GitHub
#267 (comment).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants