SlideShare a Scribd company logo
1 of 49
Download to read offline
Особенности тестирования
приложения на Android
➔Specific functional
➔Performance
➔Device park
selection
Mykhailo Zhelieznov
QC Eng. at SoftServe
Agenda:
● Specific functional:
○ Application installation
○ Network access
○ Animation, Video, Audio
○ GUI testing
● Performance
● Device park
Application installation
Application installation
It’s important to check application
installation, especially if it saves some
specific data on device or registers to the
server
Application installation
Device preparation
● Cleared device (after factory reset)
● Device with existing user’s data (apps installed,
additional user’s data - documents, pictures,
music etc.)
● Device OS upgrade
Application installation
● Settings > Backup and restore >
Factory reset
● Reboot to recovery mode - Volume Down
+ Power (depends on Vendor) > wipe
data/factory reset
How to clear the device:
Application installation
Ways of application installing
● System apps, installed when system is initialized
● Install apps from Google Play Store
● Install apps using adb, "adb install xxx.apk"
● Copy xxxapp.apk to sdcard, browse the .apk file
from your phone, double click, the app would be
installed.
Application installation
What can be wrong while installing app?
● At least check installer is not corrupted
● Check requested permissions
● Check if application starts
● Check if all necessary data created. It
can be pictures (e.g. WallPapers app),
sounds, data base, other specific data
saved in specific directory (need to be
checked with developers)
Application installation
Other cases
● Check that Uninstalling works correct:
○ all necessary data is removed from device
○ application is unregistered from server
● Check that reinstalling of the same app doesn’t produce
any issues
● New version of application can be available, check that
upgrade successfully executes (this can be done in
combination of OS upgrade)
Note: system apps
& administrators
can’t be removed,
just stopped but
not always
Application installation
Clear application data
As you use applications, they start storing
files for reference later. These files are stored
in an app "cache."
Settings > Applications > Select app
(depends on vendor)
1
Clearing app data is a little more drastic.
You're wiping the cache, but also clearing
any and all settings that go along with that
app.
2
Application installation
‘Closing’ apps
Removing an entry in recent tasks will kill any
background processes that exist for the process. It
won't directly causes services to stop
For stop is a complete kill of the app -- all processes
are killed, all services stopped, all notifications
removed, all alarms removed, etc. The app is not
allowed to launch again until explicitly requested.
1
2
Network access
Need to check each connection type and
switches between them
Network access
Disconnected WiFi Edge 3G AirPlane
Disconnected x x x x
WiFi x x x x
Edge x x x x
3G x x x x
AirPlane x x x x
20 elementary cases is just a beginning
State transitions / use cases, depended
on requirements
Network access
●Disconnected > Edge > WiFi > Edge > WiFi >
AirPlane mode > Disconnected > Wifi …
●Edge > Disconnected > AirPlane mode > Edge ...
● Downloading is in progress > connection type changed
● Wait for WiFi access before doing large data transfers, since
WiFi transfers maximize battery usage compared to transfers
over 3G or EDGE
● Cached files should be refreshed if they were changed on
server. This can be done by manual downloading of resources
or by Server push event
● Push event is received just after device back online.
Downloading resume after device back online
Network access
Caching, downloads for offline work
Network access
● Downloaded data should be valid, encrypted if necessary
(files, push events etc.)
Animation, Video, Audio
Can be triggered:
● By user’s action
○ Swipe, scroll
○ Button press
○ Tap on screen
○ Device rotate
○ Change settings
● On timeout
● By event / push message receiving
Animation, Video, Audio
Can be interrupted (paused / stopped):
● By the same reasons they triggers (previous slide)
● By incoming / outcoming call / sms
● Status bar / menu opening, popup appearing
● Low power resource
● App move to BG > FG
● Lock / Unlock device
● If Audio / Video is playing in BG - it can be
interrupted by other applications sounds
● Audio - headphones disconnection
● Video - full screen enter / exit
Animation, Video, Audio
The best way to test the accuracy of Animation /
Video / Audio - is simply watch / listen and compare
with requirements. Additional tools can help to
detect if playing started / paused, but won’t detect
the incorrect displaying / sounding
Animation, Video, Audio
Graphical user interface
testing
You can make a screenshot from your screen
and then use any image editor which shows
cursor location to calculate the sizes in pixel
GUI testing
Developer options can make your life much easy. Use next of them
for GUI testing:
GUI testing
● Pointer location ● Show layout bounds
Dump view hierarchy for UI Automator + Show layout bounds GUI testing
140
580
A virtual pixel unit that you should use when defining UI layout, to express layout
dimensions or position in a density-independent way.
The density-independent pixel is equivalent to one physical pixel on a 160 dpi screen,
which is the baseline density assumed by the system for a "medium" density screen. At
runtime, the system transparently handles any scaling of the dp units, as necessary,
based on the actual density of the screen in use. The conversion of dp units to screen
pixels is simple:
px = dp * (dpi / 160).
For example, on a 240 dpi screen, 1 dp equals 1.5 physical pixels. You should always use
dp units when defining your application's UI, to ensure proper display of your UI on
screens with different densities.
GUI testing
Density-independent pixel (dp)
● find it in your device tech specification
● get display info using ADB:
○ $ adb shell dumpsys display
○ find ‘density’ in command output:
GUI testing
How to get your device density (Dots per inch)?
Performance
Performance
● Note the time of action, e.g.:
○ application starting time
○ screen switch
○ list download / scroll
○ any action triggered by user (for ex. on button press)
● Repeat same test few more times (e.g. 10) and calculate the
average for better accuracy
● On different Android versions performance can be different as on
the devices with a different characteristics
● ~100 switches between screens / ~100 screen rotates /
application move BG then FG
● Load / Create a lot of files at once
Simple performance tests
Performance
Over and above you can use a simply ADB
command-line tool to execute the actions by
incredible scenario - like Monkey.
The basic syntax is:
$ adb shell monkey [options] <event-count>
For example, if your application package is com.myapp
and you want to generate 1000 gestures, with a delay of
500ms between each event, you have to use this
command:
$ adb shell monkey -p com.myapp --throttle 500 -v
1000
Simple performance tests
Performance
We can check the RAM usage without
any additional tools
● Go to Settings > Apps > Running
Consumption of resources
Performance
We can check Power Consumption the
same way we did for RAM checking
● Go to Settings > Battery
Consumption of resources
Consumption of resources
If you want a bit better tool with the same intuitive interface - go to Google Play store and find the
App which will show all the data you need in the way you like (e.g. Simply System Monitor)
Performance
Performance
If power consumption is really important
for you - buy additional hardware and
software e.g. Monsoon Power Monitor
Consumption of resources
Device park
Device park
Android has a really big problem due to fragmentation of
different vendors with different hardware and software
installations as well as customized user interfaces.
Device park
1. Watches
2. Smart glasses
3. Home Appliances
4. Cars
5. Homes
6. Cameras
7. Smart TVs
8. DECT phones
9. Game consoles
10. Mirrors (you read that right)
Android Everywhere: 10 Types of Devices That Android Is
Making Better
Device park
Gather as much information as possible and allowed about the devices
of your end users:
● Devices types
● Densities
● Android versions
● Vendors
● Architectures
Gether the statistic
Device park
Google devices:
● Uses original Android
● First receives latest Factory Images
● Easy to install previous versions of operating system
Google Nexus - Always new
Device park
Use cloud device storages
Performance
???
Viewing heap usage for a process
DDMS allows you to view how much heap memory a process is using. This information is
useful in tracking heap usage at a certain point of time during the execution of your
application.
To view heap usage for a process:
1. In the Devices tab, select the process that you want to see the heap information for.
2. Click the Update Heap button to enable heap information for the process.
3. In the Heap tab, click Cause GC to invoke garbage collection, which enables the
collection of heap data. When the operation completes, you will see a group of object
types and the memory that has been allocated for each type. You can click Cause GC
again to refresh the data.
???
Viewing heap usage for a process
???
DDMS provides a feature to track objects that are being allocated to memory and to see which
classes and threads are allocating the objects. This allows you to track, in real time, where
objects are being allocated when you perform certain actions in your application. This
information is valuable for assessing memory usage that can affect application performance.
To track memory allocation of objects:
1. In the Devices tab, select the process that you want to enable allocation tracking for.
2. In the Allocation Tracker tab, click the Start Tracking button to begin allocation
tracking. At this point, anything you do in your application will be tracked.
3. Click Get Allocations to see a list of objects that have been allocated since you clicked
on the Start Tracking button. You can click on Get Allocations again to append to the
list new objects that that have been allocated.
4. To stop tracking or to clear the data and start over, click the Stop Tracking button.
Tracking memory allocation of objects
???Tracking memory allocation of objects
???
Examining thread information
Threads tab in DDMS shows you the currently running threads for a selected
process.
1. In the Devices tab, select the process that you want to examine the threads
for.
2. Click the Update Threads button.
3. In the Threads tab, you can view the thread information for the selected
process.
???Examining thread information
???
Method profiling is a means to track certain metrics about a method, such as number of calls,
execution time, and time spent executing the method.
To start method profiling:
1. On the Devices tab, select the process that you want to enable method profiling for.
2. Click the Start Method Profiling button.
3. Interact with your application to start the methods that you want to profile.
4. Click the Stop Method Profiling button. DDMS stops profiling your application and
opens Traceview with the method profiling information that was collected between the
time you clicked on Start Method Profiling and Stop Method Profiling.
Starting method profiling
???Starting method profiling

More Related Content

What's hot

Input & output kimberly galea
Input & output   kimberly galeaInput & output   kimberly galea
Input & output kimberly galeaJosianne Sacco
 
Introduction To Computers
Introduction To ComputersIntroduction To Computers
Introduction To ComputersDoug Baldwin
 
Computer systems cisco - corey bush
Computer systems   cisco - corey bushComputer systems   cisco - corey bush
Computer systems cisco - corey bushCoreyBush
 
5 parts of a computer
5 parts of a computer5 parts of a computer
5 parts of a computerdaniel
 
Parts of the computer
Parts of the computerParts of the computer
Parts of the computerkahanekd
 
Configuring input and output devices
Configuring input and output devicesConfiguring input and output devices
Configuring input and output devicesMajane Padua
 
Introduction To Computers
Introduction To ComputersIntroduction To Computers
Introduction To Computersbaldwind1976
 
Input & Output Devices
Input & Output DevicesInput & Output Devices
Input & Output DevicesImran Zakir
 
Computer basics--basic comp-oper
Computer basics--basic comp-operComputer basics--basic comp-oper
Computer basics--basic comp-operNidhi Khandelwal
 
Digital literacy 1 a basic terms powerpoint
Digital literacy 1 a basic terms powerpointDigital literacy 1 a basic terms powerpoint
Digital literacy 1 a basic terms powerpointmrspetty19
 
Input and output devices
Input and output devices Input and output devices
Input and output devices sajuthomas123
 
Shawn's Top 5 Favorite Utilites
Shawn's Top 5 Favorite UtilitesShawn's Top 5 Favorite Utilites
Shawn's Top 5 Favorite UtilitesShawn Keller
 
Input output display devices
Input output display devicesInput output display devices
Input output display devicesAnkita Sharma
 
Operating system
Operating systemOperating system
Operating systemkhair20
 
3. Component of computer - System Unit ( CSI-321)
3. Component of computer - System Unit  ( CSI-321) 3. Component of computer - System Unit  ( CSI-321)
3. Component of computer - System Unit ( CSI-321) ghayour abbas
 
Input and Output Devices of Computers (Powerpoint Presentation)
Input and Output Devices of Computers (Powerpoint Presentation)Input and Output Devices of Computers (Powerpoint Presentation)
Input and Output Devices of Computers (Powerpoint Presentation)Anjenette Columnas
 
Manage basic computer configurations
Manage basic computer configurationsManage basic computer configurations
Manage basic computer configurationslynettecallaghan
 

What's hot (20)

Input & output kimberly galea
Input & output   kimberly galeaInput & output   kimberly galea
Input & output kimberly galea
 
Introduction To Computers
Introduction To ComputersIntroduction To Computers
Introduction To Computers
 
Part 1 learning computer basics
Part 1 learning computer basicsPart 1 learning computer basics
Part 1 learning computer basics
 
Computer systems cisco - corey bush
Computer systems   cisco - corey bushComputer systems   cisco - corey bush
Computer systems cisco - corey bush
 
5 parts of a computer
5 parts of a computer5 parts of a computer
5 parts of a computer
 
Parts of the computer
Parts of the computerParts of the computer
Parts of the computer
 
Configuring input and output devices
Configuring input and output devicesConfiguring input and output devices
Configuring input and output devices
 
Parts of Computer
Parts of ComputerParts of Computer
Parts of Computer
 
Introduction To Computers
Introduction To ComputersIntroduction To Computers
Introduction To Computers
 
Input & Output Devices
Input & Output DevicesInput & Output Devices
Input & Output Devices
 
Computer basics--basic comp-oper
Computer basics--basic comp-operComputer basics--basic comp-oper
Computer basics--basic comp-oper
 
Basic Computer Training
Basic Computer TrainingBasic Computer Training
Basic Computer Training
 
Digital literacy 1 a basic terms powerpoint
Digital literacy 1 a basic terms powerpointDigital literacy 1 a basic terms powerpoint
Digital literacy 1 a basic terms powerpoint
 
Input and output devices
Input and output devices Input and output devices
Input and output devices
 
Shawn's Top 5 Favorite Utilites
Shawn's Top 5 Favorite UtilitesShawn's Top 5 Favorite Utilites
Shawn's Top 5 Favorite Utilites
 
Input output display devices
Input output display devicesInput output display devices
Input output display devices
 
Operating system
Operating systemOperating system
Operating system
 
3. Component of computer - System Unit ( CSI-321)
3. Component of computer - System Unit  ( CSI-321) 3. Component of computer - System Unit  ( CSI-321)
3. Component of computer - System Unit ( CSI-321)
 
Input and Output Devices of Computers (Powerpoint Presentation)
Input and Output Devices of Computers (Powerpoint Presentation)Input and Output Devices of Computers (Powerpoint Presentation)
Input and Output Devices of Computers (Powerpoint Presentation)
 
Manage basic computer configurations
Manage basic computer configurationsManage basic computer configurations
Manage basic computer configurations
 

Similar to Mobile Saturday. Тема 2. Особенности тестирования приложения на Android: Specific functional, Performance, Device park selection. (Михаил Железнов)

Android Mobile Application Testing: Specific Functional, Performance, Device ...
Android Mobile Application Testing: Specific Functional, Performance, Device ...Android Mobile Application Testing: Specific Functional, Performance, Device ...
Android Mobile Application Testing: Specific Functional, Performance, Device ...SoftServe
 
Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...
Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...
Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...rickschwar
 
3 App Compat Win7
3 App Compat Win73 App Compat Win7
3 App Compat Win7llangit
 
Monitoring of computers
Monitoring of computers Monitoring of computers
Monitoring of computers carlosrudy_45
 
Optimize and speed up windows 7
Optimize and speed up windows 7Optimize and speed up windows 7
Optimize and speed up windows 7Power Admin LLC
 
Desarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookDesarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookSoftware Guru
 
AVG PC TuneUp Whitepaper 2015
AVG PC TuneUp Whitepaper 2015AVG PC TuneUp Whitepaper 2015
AVG PC TuneUp Whitepaper 2015AVG Technologies
 
Basic Computer Skills.pptx
Basic Computer Skills.pptxBasic Computer Skills.pptx
Basic Computer Skills.pptxChandniK7
 
Mobile App Security Testing
Mobile App Security TestingMobile App Security Testing
Mobile App Security TestingSarwar Jahan M
 
Windows Debugging Tools - JavaOne 2013
Windows Debugging Tools - JavaOne 2013Windows Debugging Tools - JavaOne 2013
Windows Debugging Tools - JavaOne 2013MattKilner
 
Mobile applicationtesting
Mobile applicationtesting Mobile applicationtesting
Mobile applicationtesting L ESHWAR
 
The Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User Guide
The Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User GuideThe Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User Guide
The Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User Guidemanualsheet
 
MobileApplicationTesting.pptx
MobileApplicationTesting.pptxMobileApplicationTesting.pptx
MobileApplicationTesting.pptxCbhaSlide
 
Optimizing Apps for Better Performance
Optimizing Apps for Better PerformanceOptimizing Apps for Better Performance
Optimizing Apps for Better PerformanceElif Boncuk
 
Prokonmanual 140505223324-phpapp01
Prokonmanual 140505223324-phpapp01Prokonmanual 140505223324-phpapp01
Prokonmanual 140505223324-phpapp01tuanpham234
 
Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin...
 Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin... Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin...
Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin...manualsheet
 
Smart Printing Technical Presentation
Smart Printing Technical PresentationSmart Printing Technical Presentation
Smart Printing Technical PresentationJohnTileyITQ
 

Similar to Mobile Saturday. Тема 2. Особенности тестирования приложения на Android: Specific functional, Performance, Device park selection. (Михаил Железнов) (20)

Android Mobile Application Testing: Specific Functional, Performance, Device ...
Android Mobile Application Testing: Specific Functional, Performance, Device ...Android Mobile Application Testing: Specific Functional, Performance, Device ...
Android Mobile Application Testing: Specific Functional, Performance, Device ...
 
Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...
Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...
Samsung Developer's Conference - Maximize App Performance while Minimizing Ba...
 
3 App Compat Win7
3 App Compat Win73 App Compat Win7
3 App Compat Win7
 
Android by Swecha
Android by SwechaAndroid by Swecha
Android by Swecha
 
Monitoring of computers
Monitoring of computers Monitoring of computers
Monitoring of computers
 
Windows 8 Client Part 2 "The Application internals for IT-Pro's"
Windows 8 Client Part 2 "The Application internals for IT-Pro's"  Windows 8 Client Part 2 "The Application internals for IT-Pro's"
Windows 8 Client Part 2 "The Application internals for IT-Pro's"
 
Optimize and speed up windows 7
Optimize and speed up windows 7Optimize and speed up windows 7
Optimize and speed up windows 7
 
Desarrollo con AIR para Playbook
Desarrollo con AIR para PlaybookDesarrollo con AIR para Playbook
Desarrollo con AIR para Playbook
 
AVG PC TuneUp Whitepaper 2015
AVG PC TuneUp Whitepaper 2015AVG PC TuneUp Whitepaper 2015
AVG PC TuneUp Whitepaper 2015
 
Basic Computer Skills.pptx
Basic Computer Skills.pptxBasic Computer Skills.pptx
Basic Computer Skills.pptx
 
Mobile App Security Testing
Mobile App Security TestingMobile App Security Testing
Mobile App Security Testing
 
Windows Debugging Tools - JavaOne 2013
Windows Debugging Tools - JavaOne 2013Windows Debugging Tools - JavaOne 2013
Windows Debugging Tools - JavaOne 2013
 
Mobile applicationtesting
Mobile applicationtesting Mobile applicationtesting
Mobile applicationtesting
 
The Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User Guide
The Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User GuideThe Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User Guide
The Samsung Notebook M 11.6" (NP110S1K-K01US) User Manual PDF / User Guide
 
MobileApplicationTesting.pptx
MobileApplicationTesting.pptxMobileApplicationTesting.pptx
MobileApplicationTesting.pptx
 
Optimizing Apps for Better Performance
Optimizing Apps for Better PerformanceOptimizing Apps for Better Performance
Optimizing Apps for Better Performance
 
Prokonmanual 140505223324-phpapp01
Prokonmanual 140505223324-phpapp01Prokonmanual 140505223324-phpapp01
Prokonmanual 140505223324-phpapp01
 
Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin...
 Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin... Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin...
Samsung Notebook 3 15.6" (NP300E5K-L04US) User Manual PDF and Troubleshootin...
 
Smart Printing Technical Presentation
Smart Printing Technical PresentationSmart Printing Technical Presentation
Smart Printing Technical Presentation
 
Mobile Application Testing
Mobile Application TestingMobile Application Testing
Mobile Application Testing
 

More from GoIT

Вирусный рекрутинг в GoIT
Вирусный рекрутинг в GoITВирусный рекрутинг в GoIT
Вирусный рекрутинг в GoITGoIT
 
Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)
Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)
Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)GoIT
 
Mobile Saturday. Тема 4. Автоматизация тестирования верстки (Александр Хотем...
Mobile Saturday. Тема 4. Автоматизация тестирования верстки  (Александр Хотем...Mobile Saturday. Тема 4. Автоматизация тестирования верстки  (Александр Хотем...
Mobile Saturday. Тема 4. Автоматизация тестирования верстки (Александр Хотем...GoIT
 
Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)
Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)
Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)GoIT
 
Програма розвитку IT-галузі WinnerOS 8 сентября 2015
Програма розвитку IT-галузі WinnerOS 8 сентября 2015Програма розвитку IT-галузі WinnerOS 8 сентября 2015
Програма розвитку IT-галузі WinnerOS 8 сентября 2015GoIT
 
Почему Tech Skills недостаточно, чтобы найти работу в IT
Почему Tech Skills недостаточно, чтобы найти работу в ITПочему Tech Skills недостаточно, чтобы найти работу в IT
Почему Tech Skills недостаточно, чтобы найти работу в ITGoIT
 
Вебинар по Frontend: Профессия Frontend разработчика
Вебинар по Frontend: Профессия Frontend  разработчикаВебинар по Frontend: Профессия Frontend  разработчика
Вебинар по Frontend: Профессия Frontend разработчикаGoIT
 
CEO GoIT at PechaKuchaNight - ІT Education.
CEO GoIT at PechaKuchaNight - ІT Education.CEO GoIT at PechaKuchaNight - ІT Education.
CEO GoIT at PechaKuchaNight - ІT Education.GoIT
 
Бесплатный вебинар по QA Александра Кузняка от проекта GoIT
Бесплатный вебинар по QA Александра Кузняка от проекта GoITБесплатный вебинар по QA Александра Кузняка от проекта GoIT
Бесплатный вебинар по QA Александра Кузняка от проекта GoITGoIT
 
GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?
GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?
GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?GoIT
 
Есть ли жизнь без ООП? Суть ООП для новичков
 Есть ли жизнь без ООП? Суть ООП для новичков Есть ли жизнь без ООП? Суть ООП для новичков
Есть ли жизнь без ООП? Суть ООП для новичковGoIT
 
Java: Clean Coding как стиль жизни [25.04.15]
Java: Clean Coding как стиль жизни [25.04.15]Java: Clean Coding как стиль жизни [25.04.15]
Java: Clean Coding как стиль жизни [25.04.15]GoIT
 
QA Automation Battle: Java vs Python vs Ruby [09.04.2015]
QA Automation Battle: Java vs Python vs Ruby [09.04.2015]QA Automation Battle: Java vs Python vs Ruby [09.04.2015]
QA Automation Battle: Java vs Python vs Ruby [09.04.2015]GoIT
 
Frontend в режиме реального времени [05.03.15]
Frontend в режиме реального времени [05.03.15]Frontend в режиме реального времени [05.03.15]
Frontend в режиме реального времени [05.03.15]GoIT
 
Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...
Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...
Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...GoIT
 
GoIT Club:"Вторая" документация в тестировании ПО от Алексея Фёдорова
GoIT Club:"Вторая" документация в тестировании ПО от Алексея ФёдороваGoIT Club:"Вторая" документация в тестировании ПО от Алексея Фёдорова
GoIT Club:"Вторая" документация в тестировании ПО от Алексея ФёдороваGoIT
 
Мифы автоматизации от Олега Татарчука (19.02.2015)
Мифы автоматизации от Олега Татарчука (19.02.2015)Мифы автоматизации от Олега Татарчука (19.02.2015)
Мифы автоматизации от Олега Татарчука (19.02.2015)GoIT
 
Виды QA: Всё что вы не знали и боялись спростить
Виды QA: Всё что вы не знали и боялись спроститьВиды QA: Всё что вы не знали и боялись спростить
Виды QA: Всё что вы не знали и боялись спроститьGoIT
 
Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков
 Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков
Встреча "Front-end: на старт, внимание, разработка!", Сергей ПузанковGoIT
 
GoITclub Release
GoITclub ReleaseGoITclub Release
GoITclub ReleaseGoIT
 

More from GoIT (20)

Вирусный рекрутинг в GoIT
Вирусный рекрутинг в GoITВирусный рекрутинг в GoIT
Вирусный рекрутинг в GoIT
 
Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)
Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)
Mobile Saturday. Тема 5. Особенности операционной системы iOS (Ольга Макаревич)
 
Mobile Saturday. Тема 4. Автоматизация тестирования верстки (Александр Хотем...
Mobile Saturday. Тема 4. Автоматизация тестирования верстки  (Александр Хотем...Mobile Saturday. Тема 4. Автоматизация тестирования верстки  (Александр Хотем...
Mobile Saturday. Тема 4. Автоматизация тестирования верстки (Александр Хотем...
 
Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)
Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)
Mobile Saturday. Тема1 - Особенности ОС Android (Иван Мурзак)
 
Програма розвитку IT-галузі WinnerOS 8 сентября 2015
Програма розвитку IT-галузі WinnerOS 8 сентября 2015Програма розвитку IT-галузі WinnerOS 8 сентября 2015
Програма розвитку IT-галузі WinnerOS 8 сентября 2015
 
Почему Tech Skills недостаточно, чтобы найти работу в IT
Почему Tech Skills недостаточно, чтобы найти работу в ITПочему Tech Skills недостаточно, чтобы найти работу в IT
Почему Tech Skills недостаточно, чтобы найти работу в IT
 
Вебинар по Frontend: Профессия Frontend разработчика
Вебинар по Frontend: Профессия Frontend  разработчикаВебинар по Frontend: Профессия Frontend  разработчика
Вебинар по Frontend: Профессия Frontend разработчика
 
CEO GoIT at PechaKuchaNight - ІT Education.
CEO GoIT at PechaKuchaNight - ІT Education.CEO GoIT at PechaKuchaNight - ІT Education.
CEO GoIT at PechaKuchaNight - ІT Education.
 
Бесплатный вебинар по QA Александра Кузняка от проекта GoIT
Бесплатный вебинар по QA Александра Кузняка от проекта GoITБесплатный вебинар по QA Александра Кузняка от проекта GoIT
Бесплатный вебинар по QA Александра Кузняка от проекта GoIT
 
GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?
GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?
GoITeens: Дети, которые изменят мир. Как воспитать будущих IT гениев?
 
Есть ли жизнь без ООП? Суть ООП для новичков
 Есть ли жизнь без ООП? Суть ООП для новичков Есть ли жизнь без ООП? Суть ООП для новичков
Есть ли жизнь без ООП? Суть ООП для новичков
 
Java: Clean Coding как стиль жизни [25.04.15]
Java: Clean Coding как стиль жизни [25.04.15]Java: Clean Coding как стиль жизни [25.04.15]
Java: Clean Coding как стиль жизни [25.04.15]
 
QA Automation Battle: Java vs Python vs Ruby [09.04.2015]
QA Automation Battle: Java vs Python vs Ruby [09.04.2015]QA Automation Battle: Java vs Python vs Ruby [09.04.2015]
QA Automation Battle: Java vs Python vs Ruby [09.04.2015]
 
Frontend в режиме реального времени [05.03.15]
Frontend в режиме реального времени [05.03.15]Frontend в режиме реального времени [05.03.15]
Frontend в режиме реального времени [05.03.15]
 
Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...
Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...
Встреча Quality built in @Spotify от Андрея Дзыни : как стать лучшим тестиров...
 
GoIT Club:"Вторая" документация в тестировании ПО от Алексея Фёдорова
GoIT Club:"Вторая" документация в тестировании ПО от Алексея ФёдороваGoIT Club:"Вторая" документация в тестировании ПО от Алексея Фёдорова
GoIT Club:"Вторая" документация в тестировании ПО от Алексея Фёдорова
 
Мифы автоматизации от Олега Татарчука (19.02.2015)
Мифы автоматизации от Олега Татарчука (19.02.2015)Мифы автоматизации от Олега Татарчука (19.02.2015)
Мифы автоматизации от Олега Татарчука (19.02.2015)
 
Виды QA: Всё что вы не знали и боялись спростить
Виды QA: Всё что вы не знали и боялись спроститьВиды QA: Всё что вы не знали и боялись спростить
Виды QA: Всё что вы не знали и боялись спростить
 
Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков
 Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков
Встреча "Front-end: на старт, внимание, разработка!", Сергей Пузанков
 
GoITclub Release
GoITclub ReleaseGoITclub Release
GoITclub Release
 

Mobile Saturday. Тема 2. Особенности тестирования приложения на Android: Specific functional, Performance, Device park selection. (Михаил Железнов)

  • 1. Особенности тестирования приложения на Android ➔Specific functional ➔Performance ➔Device park selection Mykhailo Zhelieznov QC Eng. at SoftServe
  • 2. Agenda: ● Specific functional: ○ Application installation ○ Network access ○ Animation, Video, Audio ○ GUI testing ● Performance ● Device park
  • 4. Application installation It’s important to check application installation, especially if it saves some specific data on device or registers to the server
  • 5. Application installation Device preparation ● Cleared device (after factory reset) ● Device with existing user’s data (apps installed, additional user’s data - documents, pictures, music etc.) ● Device OS upgrade
  • 6. Application installation ● Settings > Backup and restore > Factory reset ● Reboot to recovery mode - Volume Down + Power (depends on Vendor) > wipe data/factory reset How to clear the device:
  • 7. Application installation Ways of application installing ● System apps, installed when system is initialized ● Install apps from Google Play Store ● Install apps using adb, "adb install xxx.apk" ● Copy xxxapp.apk to sdcard, browse the .apk file from your phone, double click, the app would be installed.
  • 8. Application installation What can be wrong while installing app? ● At least check installer is not corrupted ● Check requested permissions ● Check if application starts ● Check if all necessary data created. It can be pictures (e.g. WallPapers app), sounds, data base, other specific data saved in specific directory (need to be checked with developers)
  • 9. Application installation Other cases ● Check that Uninstalling works correct: ○ all necessary data is removed from device ○ application is unregistered from server ● Check that reinstalling of the same app doesn’t produce any issues ● New version of application can be available, check that upgrade successfully executes (this can be done in combination of OS upgrade) Note: system apps & administrators can’t be removed, just stopped but not always
  • 10. Application installation Clear application data As you use applications, they start storing files for reference later. These files are stored in an app "cache." Settings > Applications > Select app (depends on vendor) 1 Clearing app data is a little more drastic. You're wiping the cache, but also clearing any and all settings that go along with that app. 2
  • 11. Application installation ‘Closing’ apps Removing an entry in recent tasks will kill any background processes that exist for the process. It won't directly causes services to stop For stop is a complete kill of the app -- all processes are killed, all services stopped, all notifications removed, all alarms removed, etc. The app is not allowed to launch again until explicitly requested. 1 2
  • 13. Need to check each connection type and switches between them Network access Disconnected WiFi Edge 3G AirPlane Disconnected x x x x WiFi x x x x Edge x x x x 3G x x x x AirPlane x x x x 20 elementary cases is just a beginning
  • 14. State transitions / use cases, depended on requirements Network access ●Disconnected > Edge > WiFi > Edge > WiFi > AirPlane mode > Disconnected > Wifi … ●Edge > Disconnected > AirPlane mode > Edge ...
  • 15. ● Downloading is in progress > connection type changed ● Wait for WiFi access before doing large data transfers, since WiFi transfers maximize battery usage compared to transfers over 3G or EDGE ● Cached files should be refreshed if they were changed on server. This can be done by manual downloading of resources or by Server push event ● Push event is received just after device back online. Downloading resume after device back online Network access Caching, downloads for offline work
  • 16. Network access ● Downloaded data should be valid, encrypted if necessary (files, push events etc.)
  • 18. Can be triggered: ● By user’s action ○ Swipe, scroll ○ Button press ○ Tap on screen ○ Device rotate ○ Change settings ● On timeout ● By event / push message receiving Animation, Video, Audio
  • 19. Can be interrupted (paused / stopped): ● By the same reasons they triggers (previous slide) ● By incoming / outcoming call / sms ● Status bar / menu opening, popup appearing ● Low power resource ● App move to BG > FG ● Lock / Unlock device ● If Audio / Video is playing in BG - it can be interrupted by other applications sounds ● Audio - headphones disconnection ● Video - full screen enter / exit Animation, Video, Audio
  • 20. The best way to test the accuracy of Animation / Video / Audio - is simply watch / listen and compare with requirements. Additional tools can help to detect if playing started / paused, but won’t detect the incorrect displaying / sounding Animation, Video, Audio
  • 22. You can make a screenshot from your screen and then use any image editor which shows cursor location to calculate the sizes in pixel GUI testing
  • 23. Developer options can make your life much easy. Use next of them for GUI testing: GUI testing ● Pointer location ● Show layout bounds
  • 24. Dump view hierarchy for UI Automator + Show layout bounds GUI testing 140 580
  • 25. A virtual pixel unit that you should use when defining UI layout, to express layout dimensions or position in a density-independent way. The density-independent pixel is equivalent to one physical pixel on a 160 dpi screen, which is the baseline density assumed by the system for a "medium" density screen. At runtime, the system transparently handles any scaling of the dp units, as necessary, based on the actual density of the screen in use. The conversion of dp units to screen pixels is simple: px = dp * (dpi / 160). For example, on a 240 dpi screen, 1 dp equals 1.5 physical pixels. You should always use dp units when defining your application's UI, to ensure proper display of your UI on screens with different densities. GUI testing Density-independent pixel (dp)
  • 26. ● find it in your device tech specification ● get display info using ADB: ○ $ adb shell dumpsys display ○ find ‘density’ in command output: GUI testing How to get your device density (Dots per inch)?
  • 28. Performance ● Note the time of action, e.g.: ○ application starting time ○ screen switch ○ list download / scroll ○ any action triggered by user (for ex. on button press) ● Repeat same test few more times (e.g. 10) and calculate the average for better accuracy ● On different Android versions performance can be different as on the devices with a different characteristics ● ~100 switches between screens / ~100 screen rotates / application move BG then FG ● Load / Create a lot of files at once Simple performance tests
  • 29. Performance Over and above you can use a simply ADB command-line tool to execute the actions by incredible scenario - like Monkey. The basic syntax is: $ adb shell monkey [options] <event-count> For example, if your application package is com.myapp and you want to generate 1000 gestures, with a delay of 500ms between each event, you have to use this command: $ adb shell monkey -p com.myapp --throttle 500 -v 1000 Simple performance tests
  • 30. Performance We can check the RAM usage without any additional tools ● Go to Settings > Apps > Running Consumption of resources
  • 31. Performance We can check Power Consumption the same way we did for RAM checking ● Go to Settings > Battery Consumption of resources
  • 32. Consumption of resources If you want a bit better tool with the same intuitive interface - go to Google Play store and find the App which will show all the data you need in the way you like (e.g. Simply System Monitor) Performance
  • 33. Performance If power consumption is really important for you - buy additional hardware and software e.g. Monsoon Power Monitor Consumption of resources
  • 35. Device park Android has a really big problem due to fragmentation of different vendors with different hardware and software installations as well as customized user interfaces.
  • 36. Device park 1. Watches 2. Smart glasses 3. Home Appliances 4. Cars 5. Homes 6. Cameras 7. Smart TVs 8. DECT phones 9. Game consoles 10. Mirrors (you read that right) Android Everywhere: 10 Types of Devices That Android Is Making Better
  • 37. Device park Gather as much information as possible and allowed about the devices of your end users: ● Devices types ● Densities ● Android versions ● Vendors ● Architectures Gether the statistic
  • 38. Device park Google devices: ● Uses original Android ● First receives latest Factory Images ● Easy to install previous versions of operating system Google Nexus - Always new
  • 39. Device park Use cloud device storages
  • 40.
  • 42. ??? Viewing heap usage for a process DDMS allows you to view how much heap memory a process is using. This information is useful in tracking heap usage at a certain point of time during the execution of your application. To view heap usage for a process: 1. In the Devices tab, select the process that you want to see the heap information for. 2. Click the Update Heap button to enable heap information for the process. 3. In the Heap tab, click Cause GC to invoke garbage collection, which enables the collection of heap data. When the operation completes, you will see a group of object types and the memory that has been allocated for each type. You can click Cause GC again to refresh the data.
  • 43. ??? Viewing heap usage for a process
  • 44. ??? DDMS provides a feature to track objects that are being allocated to memory and to see which classes and threads are allocating the objects. This allows you to track, in real time, where objects are being allocated when you perform certain actions in your application. This information is valuable for assessing memory usage that can affect application performance. To track memory allocation of objects: 1. In the Devices tab, select the process that you want to enable allocation tracking for. 2. In the Allocation Tracker tab, click the Start Tracking button to begin allocation tracking. At this point, anything you do in your application will be tracked. 3. Click Get Allocations to see a list of objects that have been allocated since you clicked on the Start Tracking button. You can click on Get Allocations again to append to the list new objects that that have been allocated. 4. To stop tracking or to clear the data and start over, click the Stop Tracking button. Tracking memory allocation of objects
  • 46. ??? Examining thread information Threads tab in DDMS shows you the currently running threads for a selected process. 1. In the Devices tab, select the process that you want to examine the threads for. 2. Click the Update Threads button. 3. In the Threads tab, you can view the thread information for the selected process.
  • 48. ??? Method profiling is a means to track certain metrics about a method, such as number of calls, execution time, and time spent executing the method. To start method profiling: 1. On the Devices tab, select the process that you want to enable method profiling for. 2. Click the Start Method Profiling button. 3. Interact with your application to start the methods that you want to profile. 4. Click the Stop Method Profiling button. DDMS stops profiling your application and opens Traceview with the method profiling information that was collected between the time you clicked on Start Method Profiling and Stop Method Profiling. Starting method profiling