Testing techniques for mobile device applications

Size: px
Start display at page:

Download "Testing techniques for mobile device applications"

Transcription

1 MASARYK UNIVERSITY FACULTY OF INFORMATICS Testing techniques for mobile device applications DIPLOMA THESIS Bc. Radim Göth Brno, 2015

2 Declaration Hereby I declare, that this paper is my original authorial work, which I have worked out by my own. All sources, references and literature used or excerpted during elaboration of this work are properly cited and listed in complete reference to the due source. Brno, Bc. Radim Göth Advisor: Mgr. Petr Neugebauer, MBA II

3 Acknowledgement I would like to express my gratitude to my supervisor Mgr. Petr Neugebauer, MBA for the opportunity to develop this master thesis within the Y Soft Corporation and for useful comments and help during the thesis elaboration. Furthermore, I would like to thank Tomáš Kuba for consultations, support and advices. I am also very thankful to my family and close friends for their patience and support. III

4 Abstract This thesis investigates approaches for validation and verification of mobile applications. There is a description of mobile operating systems, application types and mobile test environment, followed by various techniques, tools and guidelines for mobile applications testing. Practical part of the thesis describes developing and testing mobile application SafeQ Terminal Demo for Y Soft Corporation. This application serves for demonstrating behavior of YSoft SafeQ on mobile devices. IV

5 Keywords Mobile application, testing, Android, ios, Windows Store, software quality, YSoft SafeQ. V

6 Contents 1 Introduction Mobile application development options Native applications Web applications Hybrid applications Mobile operating systems Android ios Windows & Windows Phone Mobile testing approaches and techniques Test equipment Real devices Simulators and emulators Mobile device cloud Summary Test levels Component testing Integration testing System testing Acceptance testing Test automation Continuous integration Mobile application qualities Reliability Interruptions Networks Transferability Installation OS updates Security Data storage Transport security Binary protection Usability

7 5.5 Performance Launch time Responsiveness Battery life Network usage efficiency Application store compliance Testing tools Experitest Ranorex Calabash & Xamarin Test Cloud Perfecto mobile IBM Mobile Quality Assurance Testing tools overview Automated validation tools Testing guidelines SafeQ Terminal Demo Motivation Analysis Stakeholders Requirements Solution design Functional requirements specification Non-functional requirements specification Architecture Functional testing Non-functional testing Performance Transferability Security Reliability Usability Windows Store compliance Conclusion Bibliography Appendix A User stories Appendix B SafeQ Terminal Demo screenshots

8 1 Introduction Mobile application testers and developers have to adapt to ever-changing mobile environment and market trends. Reported by Critercism [1], there are 2,582 manufacturer models, 106 mobile operating system versions and 691 mobile carriers. That results in enormous amount of distinct environment for testing. New technologies appear more often than ever before and they are immediately used for business. New mobile operating system was launched during the writing of this thesis 1. Cellular networks have improved from 3rd generation to 4th generation. Positioning services are now common as well as voice control and many others. Screen sizes varies between one and half inch on smartwatches and more than fifteen inches on tablet PCs. Computational power is still lower than traditional PC and developers have to always take power consumption into account. Nevertheless, smooth application behavior without delays or freezes on every available device is standard requirement. Large variety of devices and high demands makes mobile testing more interesting and difficult. In addition, smartphones or tablets are not suitable for long writing or some difficult tasks. For this reason mobile applications are much more challenging for designers and UX specialists. New versions of mobile operating systems come out more frequently than we are used to in case of personal computers, so even the project managers have difficulties in their jobs because they must reconcile release dates with OS updates. Word mobile gets different meaning in time. A decade ago, mobile device was represented by a laptop or feature phone. Now, laptops are not widely considered as a true mobile devices. There are other devices that are much more mobile like wearables or smartphones. On the other hand, applications that were originally designed for handhelds is now ordinarily installed into devices that are not mobile at all like televisions or information kiosks. We started to call them smart. New coming trend is one application suitable for all devices equipped with display smartwatches, smartphones, tablets, PCs or smart TVs. The differences between some of these devices are unrecognizable. Some smartphones are the same size as tablets and some tables, after connecting keyboard, are fully-fledged laptops. The reason for 1 3

9 using mobile applications on all of these devices is obvious one code and one layout for multiple devices. When mobile OS designers solved problems with different screen sizes and various hardware on smartphones, it was easy to use the same patterns on every kind of smart device. In the theoretical part we will be dealing with test environment, testing techniques and tools only for smartphone and tablet applications. Practical part describes development and testing of the mobile application SafeQ Terminal Demo for Y Soft Corporation. This application is targeting on Window Store and Windows Phone platforms and it is built on the top of the portable class library (PCL). Therefore, it can be used with a multiplatform framework Xamarin as a base for Android or ios SafeQ Terminal Demo applications. Because of that, whole thesis aims mainly to common testing techniques and tools which can be used independently of the target platform. 4

10 2 Mobile application development options Mobile applications can be developed in several ways. Determination of chosen option is important from testing perspective because many tools and test cases depend on approaches used for development. All testing techniques and tools mentioned in this thesis aims mainly on native or hybrid applications, which could be both downloaded from an application store. 2.1 Native applications These applications are often developed in platform specific SDK and languages which are commonly Java or C++ for Android, Objective-C or Swift for ios and C#, Visual Basic or C++ for Windows Phone. Native application can use all phone peripheral and resources like GPS, NFC, Bluetooth, accelerometer, compass, etc. It can access the contact list, gallery or user media files. These applications are usually installed and updated from the platform specific application store. Native applications are limited only by OS API and application store policies. They usually provide the best performance [2]. 2.2 Web applications This category refers to a standard web application developed using traditional web technologies (HTML, CSS, Javascript) and server-side code in Node.js, PHP, ASP.NET, etc. These web applications are suitable for browsing on smartphones or tablets and user needs a browser and Internet connection to use them. There are two main approaches to make the web application suitable for handheld devices. The first approach uses responsive design, which dynamically reorders page layout. This is supported with new features introduced in CSS 3 [3]. The second approach uses information from user HTTP request to determine whether client uses mobile web browser. If so, customer is redirected to the web site tailored for handhelds devices [4]. Even the web applications can use some device resources which are provided by the web browser in most cases, it is possible to use GPS, camera 5

11 or accelerometer, but cannot use NFC or Bluetooth [5]. Communication with other applications is also restricted on browser functionality. Because of that, web application cannot use phone contact list or messages. Web applications are not installed from application stores and they do not provide such a good performance as native. 2.3 Hybrid applications This is a mix of previous technologies. Hybrid applications are often built for multiple platforms so their main attribute and advantage is portability. There are several leading approaches how to build hybrid applications. The most often used cross-platform frameworks utilize web technologies [6]. The difference between this hybrid and web application is that the hybrid one has native application package and it is often installed from the platform specific application store. Widely used cross-platform frameworks provide container for running web application written usually in Javascript. This approach is used by Apache Cordova 2, but there are more frameworks working similarly. Using several Javascript libraries and Cordova API, it can be implemented gesture control, battery status check and some other platform dependent features [7]. Another approach to achieve transferability of mobile application is using Mono, which is multiplatform open source implementation of Microsoft.NET framework based on ECMA standards for C# and the Common Language Runtime [8]. The code is written in C# and is compiled to platform specific binaries using Mono or distributed along with Mono runtime library. One of the frameworks build on Mono is Xamarin, which will be discussed further in section 6.3. Hybrid applications are not fully platform independent, but most of them cover at least Android and ios [9]. The range of available APIs depend on used framework. In general, hybrid frameworks provide better and wider usage of device resources than web applications but less than native ones. If some new feature appears in OS update, it takes some time until hybrid framework developers implement it. Also quality of UI, security and performance are often worse than the native applications [10]

12 3 Mobile operating systems Good knowledge of mobile operation systems and application environment is essential for every mobile application tester. This chapter briefly presents the major mobile operating systems which are Android, ios, Windows and Windows Phone. 3.1 Android Android is the fastest growing OS in terms of popularity and the most widespread mobile operating system [11]. Android is owned and managed by the Open Handset Alliance industry consortium for creating hardware, software and telecommunication open standards for mobile devices. This consortium is led by Google [12]. Since Android is open source Linux-based project, most manufacturers and cellular carriers take advantage of that and modify the operating system to suit their hardware, increasing the complexity of the system 3. This fact, along with slow new version adoption 4, makes Android the most fragmented mobile OS, which increases test costs and complexity [13]. However, many different testing tools and frameworks target primarily Android due to its popularity Publishing The main channel for application distribution is Google Play, but users can also download applications from other stores like Samsung Apps or Amazon Store. Access to the Google Play Developer Console 5 is needed for publishing applications on Google Play. Registration is done via valid Gmail ID and costs $25. It is recommended to read the Google Play Launch Checklist before submitting an application to Google Play. This checklist helps developers to 3 There are 18,796 distinct Android devices in 2014 compared to 11,868 in 2013 [56]. Different devices owned by the users refers to device fragmentation. Different OS versions refers to platform fragmentation. 4 New Android OS version has to go through multiple levels of testing and approval with the various device manufacturers and the wireless services providers before it is delivered to the users [16]. Because of that, some users get the OS updates even several months after release

13 get application ready for publishing. There are information about the Google Play policies, recommendations for testing, design guidelines, and tips for other decisions that should be taken into consideration before submitting. Whole checklist can be found at the Google Play developer site [14]. Google uses fully automated approval process, which analyzes every new application or application update with Bouncer. Bouncer is program for detecting malicious applications and suspicious developer s accounts [15]. Google also relies on users, who can report misbehaving of applications, and every application can be remotely uninstalled by Google [16]. Whole approval process does not take much time. Application is usually ready to be downloaded from the store after only two hours which facilitates application updates [17]. 3.2 ios ios is mobile operating system developed and owned by Apple Inc. It is closed source, UNIX-like operation system based on Darwin (BSD) and OS X [18]. ios was originally developed for iphones, but now ios runs on ipad, ipod Touch or Apple TV. Other manufacturers are not licensed for using ios. Therefore, only Apple-made devices can run it. Most ios users (97%) have the ios version 7 or the latest 8 [19]. As a result, testing on all available devices is not as difficult as on Android. OS fragmentation is presented mainly by the different OS feature set (some features are not available on some devices) 6 [20]. On the other hand, Apple devices are one of the most expensive and their purchases increase testing costs. Standard integrated development environment (IDE) for native application is Xcode which can be installed only on Apple s operating system OS X Publishing App Store is the only one channel for an application distribution. To publish application on the App Store, Apple ID and ios developer account is required. Apple offers two types of accounts individual and enterprise. 6 E.g. Siri on ipad 2 8

14 In both cases, sign in fee costs $99 per annum. For identity verification of a company, it is necessary to have Dun & Bradstreet (D-U-N-S) number 7. Applications submitted to the App Store have to pass through one of the toughest approval processes. Application should meet the App Store Review Guidelines 8 and ios Human Interface Guidelines 9. It is obvious, that special emphasis is put on user privacy, look and feel, content and functionality [19]. Application on the App Store should be something useful or unique and meet the high requirements on quality. Whole application approval process takes between four and eleven days 10. During this process, application goes through the automatic and manual tests. If an application is rejected, developers will receive reasoning why which could be very useful feedback. 3.3 Windows & Windows Phone With Windows 8, Microsoft moved Windows OS towards to mobile devices. Windows 8.1, which is current version, is able to run on PCs and tablets with x86 or ARM 11 architecture. Moreover, Microsoft has operating system Windows Phone especially for smartphones. These two platforms are about to converge in Windows 10 which is currently in beta. Microsoft has two types of application projects Windows Store 8.1 applications for PCs or tablets and Windows Phone 8.1 applications for smartphones. These two projects share lot of APIs, tools and design principles. Therefore, they were partially merged to the Windows Universal Applications, which enables code sharing between Windows Store and Windows Phone applications projects. Microsoft is third in smartphone OS market share far beyond the Android and ios. Furthermore, most Windows Phone users have cheap low-end handhelds [21], which corresponds with the fact that 71% of Windows Phone applications are installed on low memory devices 12 [22] ehig/ Microsoft has special version for ARM devices called Windows RT. 12 Device with 512MB of memory or lower. 9

15 3.3.1 Publishing Windows Store and Windows Phone Store, are exclusive application distribution channels, which will be also merged into Universal Windows Store in Windows 10 [23]. Microsoft requires single developer account to the both stores. Developer account can be individual for $19 or company for $99, which enables greater access to device capabilities like enterprise authentication or access to software and hardware certificates. For store approval process, Microsoft chose slightly different approach than the others. The application content compliance is reviewed manually during the approval process but other tests are automated (security, technical compliance) [24]. Uploading application on Windows (Phone) Store is very similar to uploading application on Google Play which is described in The approval process is fast; applications are often approved within an hour [25]. 10

16 4 Mobile testing approaches and techniques 4.1 Test equipment In this chapter we will discuss another part of the mobile test environment real devices, simulators, emulators and test clouds. All of them have benefits and drawbacks. This chapter is based on [26], [27], [28] and personal experiences with mentioned equipement Real devices Testing on real devices is necessary for every mobile application. It gives the most realistic results and tester can perform all required test scenarios. On the other hand, it is extremely difficult and expensive to test application on all available devices. Advantages Real user experience to achieve trustworthy user testing, handling a real device is necessity. Interactions with sensors if tested application uses sensors (e.g. accelerometer, compass, camera or NFC), then tester has to operate device in his hands. Some emulators mimic behavior of these sensors but their results are not very realistic. Reliability passing all test cases on the real device gives us the best guarantee that user with the same device with same configuration will not have any issue. Disadvantages Variety of devices / costs testing on few real devices does not assure that the application will work on other devices. Buying new test devices is expensive. Mobile carrier limitations it is difficult to test how mobile application will perform on different mobile carrier because of different network infrastructure or prohibitions of some web pages Simulators and emulators Simulators and emulators are type of software that enables running another computer system on the host platform. They are available for each platform and often integrated into IDE like Android Studio, Xcode or Visual Studio. 11

17 There is a difference between simulator and emulator. Simulator imitates software behavior and uses all available resources from host computer like CPU, memory, network, etc. Testing on simulator can provide biased results because host computer can be much faster than the mobile device. Emulators provide more realistic results because they replicate target device more precisely. Processor speed, used memory or memory card presence, even the network connection type or signal strength can be set to create more realistic environment. There are lot of simulators and emulators on the market with different features and limitations. However, they all have some similar advantages and disadvantages. Advantages Costs standard emulators delivered with the SDKs are for free. Always up to date new version of emulator is always distributed with new version of SDK. Fast and simple to use application can be easily deployed and installed from IDE. Setting options location, screen size and resolution, connection type, camera, accelerometer, etc., can be simulated. Disadvantages Misleading test results emulators are not production environment and there is always a possibility that the application could behave slightly different on real device because of different hardware, network environment or software differences. Impossibility perform all test cases when working with a simulator, testing is limited to host computer resources and emulator features. Test applications that use NFC or compass is not typically possible as well as interruption of the application with incoming calls or SMS. Not very responsive some emulators are slow and animations or games are delayed. Long manual test cases can be protracted Mobile device cloud Successful testing of an application functionality on one device does not provide assurance across all others of the same operating system [27]. Mobile device test cloud is a service which enables to run automation or manual tests on hundreds of physical devices in the cloud. Providers of these 12

18 services have large variety of smartphones and tablets connected by USB cable in the rack. There are three common types of mobile device clouds available on the market public and private [26]. Devices in public cloud are always accessible over the Internet. They can be geographically spread to achieve different configurations with different mobile carriers. It is possible to rent time on the devices for automated or manual testing, but these devices are always shared with other users. This type of mobile devices cloud offers for example Perfecto Mobile (8.4) or Keynote Mobile Testing 13. In case of private cloud, providers usually detach requested devices for exclusive use, which increase security. Private cloud can be dedicated if the company does not have IT department, or located in-house in the customer VPN behind the corporate firewall. Example of private dedicated cloud is Soasta TouchTest. 14 SeeTest Cloud (6.1) is an example of the private in-house cloud. The main purpose of mobile device test clouds is to find bugs which appear only on some devices or some OS versions. It can reveal bugs that can be hidden from developers if they use emulators and only few physical devices. For example, UI thread overloading (which is common mistake) may occur like a short delay on physical testing device and on simulator, it could be imperceptible. But on older or low-end devices with low computational power, it can cause highly irresponsible user interface in the better case, freeze or crash in worse case. The next paragraphs summarize advantages and disadvantages based on [26] and my personal experience with testing applications in the cloud. Advantages Variety of devices testers can quickly reveal bugs or shortcomings that originate from using different hardware or software in the mobile devices. There is no need to upgrade and downgrade developer s physical devices to execute the tests on several OS versions. Developers

19 do not have to buy new devices, because cloud providers usually add them into their portfolio very quickly. Automation capabilities mobile device cloud providers take advantage of automated frameworks. Automated tests run simultaneously on many devices which boost testing efficiency. Testers can view the test recording (screens and actions) for each device in the interactive web portal. Disadvantages Costs this could be a blocker for small or mid-size companies that don t have their mobile solution as priority, because of high prices for mobile cloud services 15. Impossibility to do all test cases although tests are done on real devices, it is impossible to test compass, accelerometer, GPS or camera. Mobile device is mounted in a box so everything that depends on device movement is impossible. Security in case of public cloud, there are some security issues that are bounded with sending application package to the cloud. Application will be running in potentially unsecured environment where competitors also testing their apps. Not very responsive manual testing can be protracted due to network latency Summary The best testing strategy is to combine mentioned test equipment according to application requirements and size of the budget. Small or start-up companies, which develop several simple applications, do not often need the device cloud and can perform tests on physical devices and emulators. On the other hand, international companies with a broad portfolio of applications with critical functions (e.g. mobile banking applications) can leverage mobile application testing by their own private device cloud. 15 Xamarin test cloud starts at $1,000 per month for individuals. 14

20 4.2 Test levels Test levels introduced in this chapter are based on ISTQB 16 (International Software Testing Qualifications Board) with respect to mobile development. Each test level is corresponding to the specific development stage of V-model (Figure 1) Component testing Figure 1: V-model [29]. Definition: Component testing (also known as unit, module or program testing) searches for defects in, and verifies the functioning of, software modules, programs, objects, classes, etc., that are separately testable. [30] Unit testing of a native application for Android and Windows Phone is the same as unit testing of any other application written in Java or.net respectively. Developers can use popular unit and mocking frameworks like JUnit or Mockito for Android, or NUnit for Windows Phone. Tests can run locally (on Java virtual machine or.net CLR) and results are shown in IDE. In the case of Android, proper framework (e.g. Robotium 17 ) should be used because official Google s unit testing framework 18 requires running the unit tests on device or emulator. This approach is much slower than running the tests on Java virtual machine [31] AndroidTestCase html 15

21 Unit testing on ios is different. Apple devices using A-series processors based on ARM architecture, but Mac computers, on which are ios applications developed, runs on processors with x86 architecture. And because Objective-C is compiled language, ios simulator has to be used for running ARM targeted application on x86 Mac. Second option is to run the unit test on the real device. The previous enumeration of programming languages suggests that tests on this level are done by programmers Integration testing Definition: Integration testing tests interfaces between components, interactions with different parts of a system, such as the operating system, file system and hardware, and interfaces between systems. [30] ISTQB further distinguish integration between components of the system and integration between different systems. Therefore, the integration tests, as opposed to the unit tests, must run on the emulator or preferably on the real mobile device connected to the developer s computer or the integration server. As mentioned in the introduction, average application depends on six cloud services (five is median). Most common services are Facebook login, cloud data storage, web and monitoring services. These services are not always reliable; their integration and reaction on outages should be tested [1]. Integration tests are done by programmers or qualified quality assurance engineers System testing Definition: System testing should investigate functional and non-functional requirements of the system, and data quality characteristics. [30] Due to simulators and emulators limitations discussed in section 4.2, these tests should be performed on the real devices in real environment (network conditions, targeted OS versions). Tests on this level are prepared and executed by quality assurance engineers. 16

22 4.2.4 Acceptance testing Definition: Formal testing with respect to user needs, requirements, and business processes conducted to determine whether or not a system satisfies the acceptance criteria and to enable the user, customers or other authorized entity to determine whether or not to accept the system. [32] Acceptance testing is always conducted in production environment, i.e. intended devices, OS versions and networks, by the end users or stakeholders. Beta testing is a typical form of the acceptance testing. All three platforms supports beta testing in a similar manner an application package is uploaded to the store but is private. Access is granted only for users, who are added to the beta testing group simply by inserting their store ID or in developer portal 19. If the application is intended for public use, testing through crowd can be taken into consideration. Portals like utest 20 or TestBirds 21 are gathering mobile testers and distribute applications to them. It is an easy way how to get quick feedback before public release. 19 Android Developer Console, itunes TestFlight, Microsoft Dev Center

23 4.3 Test automation Test automation is defined as: The use of special software (separate from the software being tested) to control the execution of tests and the comparison of actual outcomes with predicted outcomes. [33] Automated tests can perform repetitive tasks which are difficult to test manually and then improve test efficiency and reduce costs. Mike Cohn introduced test automation pyramid in his book Succeeding with Agile [34], which divides automated tests into three levels by their purpose and express their expected quantity. It means that the software project should contains much more unit tests than UI tests. UI Service Unit Figure 2: Automation pyramid [34]. Unit test (discussed in section 4.2.1) forms the base of test automation and are also the foundation of the test-driven development. Service layer represents testing of a system on integration, service or API level (without user interface). Mike Cohn especially marked service tests that call APIs which are regularly used by the UI (view) layer. An example of automated tests on this layer are tests on view-models (8.3.1), which can perform single tasks regardless of the application user interface layer that is bind to the view-model properties. UI tests, which simulate user interaction with the software through the graphical user interface, are placed at the top of the pyramid. These tests are poorly maintainable and their creation is time consuming. UI test scripts can be written manually or recorded by the special software which speeds up their creation. Examples of UI automation software for mobile applications are SeeTest Automation (8.1) or Ranorex (8.2). 18

24 4.4 Continuous integration Martin Fowler has described continuous integration (CI) as follow [35]: Continuous Integration is software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible. CI is practice comes with the agile software development. It gives faster feedback to the developers and leveraging the test automation. It is widely used among the organizations with matured development process, which are typically use a build server for implementation of the CI. The continuous integration poses a challenge for the mobile application development, because many automated tests have to run on real devices. Therefore, application deployment and installation on the device should be also automated. The main tasks of build server role for mobile application development (based on [36], [37]) are: 1. Download the source codes from the repository. 2. Compile and inspect the source codes, create new binaries. 3. Connect to the device or emulator. 4. Execute the unit tests. 5. Set up external dependencies (databases, services, etc.). 6. Execute higher level tests (integration, service or UI tests). 7. Create the application package. 8. Create the report. After application passes all the tests run by the build server, application package along with the UI tests can be sent to the device cloud. Running the test on the device cloud is expensive (see table 2 in section 6.6) and often limited by maximum device testing hours and device reservation timeslots. Thus, automated tests on device cloud are not executed so often. Example of this process is shown in section 8.3 with Xamarin Test cloud. 19

25 5 Mobile application qualities Every application in any application store or marketplace has tens of direct competitors. To find an application that provides really unique functionality is almost impossible. Therefore, most applications fight for their users with quality. If the application does not match with user expectations on quality, it can be simply replaced by another application in matter of seconds. Testing increases software quality by finding defects, which are consequently fixed. Software quality is defined by ISO/IEC [38] as: Software quality is the degree to which the software product satisfies stated and implied needs when used under specified conditions. ISO/IEC also describe quality model which defines eight software internal and external quality characteristics. Figure 3: Software product quality model [38]. This chapter mentions five quality characteristics: reliability, transferability, security, usability and performance. These characteristics were chosen because they require specific testing approach for mobile applications [26]. Moreover, they are considered as the most important for mobile application success as implied from several publications [39] [40] [41]. 20

26 5.1 Reliability Interruptions Mobile application lifecycle differs from classic desktop one where operating with several open applications at the same time is normal (as well as minimizing, maximizing, switching between applications or running in background). Same operations are executed on mobile applications, but they are handled differently due to performance restrictions (such as low memory or battery power). Managing mobile application lifecycle in code is difficult and switching between application states (e.g. active, inactive, suspended, background) is potential source of faults. Moreover, mobile applications can be forced to immediately change its state (e.g. from active to background due to incoming call). To achieve the best reliability of the product, application under the test must be tested on various types of interruptions. Incoming call, SMS or MMS. Alerts or notifications from other applications or services. Loss of power, alerts on attaching or detaching charger. Cable insertion or removal for data transfer, Bluetooth triggered events. Network outage and recovery alerts. Media player interruptions. Lock, home or back button pressed. Auto lock. Memory card or SIM card insertion or removal. Testing application on every interruption in any time or any application state is impossible and unnecessary. Preferable procedure is to identify areas or situations where the application may crash after unpredictable interruption. These situations could happen when the application under the test: Handles high-performance task. Operates with sensors or camera. Switches between pages. Communicates over the network. 21

27 Test automation using mobile device cloud can accelerate this testing technique and increase the probability of bug exposing Networks A lot of mobile applications depend on the Internet connectivity. Moreover, some of them are only clients consuming web services. Week signal strength or switching between connection types frequently cause failures. Network based testing investigate misbehaving of an application that uses network connection and then, ensure the reliability of a product. Types of network-based tests are: Connection over different adapters (Wi-Fi, 3G, etc.). No network or airplane mode. Network interoperability. o Changing from Wi-Fi to 3G or 4G network and vice versa. o Switching between connection endpoints. Network fluctuations (signal strength or jitter) Network virtualization Test application under different network conditions is complicated; testers have to simulate network conditions in the laboratory environment or have to leave their offices and test the mobile application in real-life situations. Network-based testing on an emulator is easy and fast. Most of the emulators can switch connection type or simulate signal strength. But like any other test on the emulator, it is inaccuracy. Network virtualization via proxy is used for example by Experitest (6.1). Virtualization (proxy) server must be installed on local computer and each mobile device Wi-Fi adapter must be configured to use this server as proxy which governs the network conditions for devices. This type of network virtualization is convenient for testing reliability (if the application will handle network disruption) but it is useless for testing end user experience if the application under the test behaves differently on Wi-Fi and mobile network. Well-designed applications do not transfer large amounts of data while they are using mobile networks (if it is not necessary). 22 Some public device clouds can automate sending SMS, calls and push notifications to devices. 22

28 Therefore, if they are connected to the network virtualization proxy, which simulates 3G mobile network, they are actually connected through Wi-Fi and behave accordingly. 5.2 Transferability Transferability issues are the reasons why device test clouds exist. Almost every application tries to support large variety of devices to reach as many users as possible. However, platform and device fragmentation makes this task harder. If the user lost the data from application after OS update, if will certainly appear on the store as negative review Installation Installation testing checks if the application is installed correctly on device under specific conditions. Scenarios to test Installation on internal device memory. Installation on SD card with different settings (e.g. mass storage mode). Related testing Moving application from internal memory to SD card and vice versa. Uninstall application from internal memory and from SD card. These testing scenarios are suitable for automation on the device cloud. Simple smoke test can assure that the installation of the application on many different devices with different OS versions will be successfull. Note, that there are scenarios in which the application should not be installed. For example when the device does not have needed capability (e.g. missing NFC for contactless payment application) OS updates Mobile application developers get new versions of OS in advance to have a time to prepare their applications. OS updates are common cause of application crashes [42]. Test application after OS updates can be convenient on mobile test cloud, but many of them do not support test flow when application is installed on device with specific OS version and OS is consequently updated on higher version. 23

29 5.3 Security Data storage According to Hewlett Packard research, 75% of applications do not use proper encryption techniques when storing data or leave them unencrypted [43]. OWASP (Open Web Application Security Project) describes three common reasons for data leakage [44]: Developers often assume that no one will have access to application local data. Developers are not fully conversant with the operating system and unintentionally save the data to shared locations. Usage of week cryptographic algorithms. Basic test for data leakage is application footprint analysis, which contains these steps [45]: 1. Acquire rooted device 23 (to be able to access all folders and files). 2. Create a file system backup for future reference. 3. Setup directory monitoring tool to monitor mobile application folders. 4. Install the application. 5. Check created files, compare modified files with pre-installation backup in CompareDiff or TotalCommander. 6. Use the application or run the automated UI tests. 7. Check created files, compare modified files with post-installation backup. Folder monitoring tools can show all newly created or changed files. Subsequent analysis of these files verifies that all data was stored in proper locations and no sensitive information was stored unencrypted Transport security Cyber security company FireEye conducted a research on 1,000 most downloaded applications on Google Play. They found out that 73% of an applications, which use SSL/TSL to communicate with remote server, do not check certificates and 77% of an applications, which use WebKit 24, ignore SSL 23 Rooted or jail-broken device is device with cracked OS where user has root permissions. 24 User control for displaying web pages used by many cross-platform frameworks. 24

30 errors. Disrespect of basic security principles makes the application vulnerable to man-in-the-middle attack [46]. Previously mentioned study from Hewlett Packard states that 18% tested applications send user names and passwords over HTTP. It is important to note that lot of security issues of this type could be produced from third party libraries (e.g. analytical or advertising) [46]. Transport security testing should assure that the data are transported securely with proper use of cryptographic protocols Binary protection Binary protection is one of the most important and most underestimated part of mobile application security [43]. Android and Windows packages (APK, APPX) are actually ZIP archives and can be very easily downloaded from the stores and unpacked. Apple protects applications on the App Store with an encryption (Apple FairPlay Digital Rights Management) but this security feature could be very easily bypassed if the attacker has jail-broken device. Moreover, most of the Android and Windows applications have been developed in Java or C# respectively. These languages are translated to the intermediate languages which are higher abstraction than machine code with metadata, making it easier to decompile. ios source codes are compiled to native machine code with many optimizations. However, there are many tools developed specially for decompiling ios applications binaries. If the attackers manage to decompile binaries to readable source codes, they can find there vulnerabilities or information for another attacks. Applications, which do not have properly secured binaries, can be modified and published in the unofficial applications stores. However, protect binaries from reverse engineering can never be perfect, but techniques like code obfuscation, jail-break detection or checksum control can make reverse engineering complicated [47]. Tester can check if the application is protected from decompiling by widely used tools like dex2jar (Android), ClutchMod (ios) or.net reflector (Windows). 25

31 5.4 Usability About 26% of users abandon the application after first use and one of the main reason why users tend to immediately delete them is poor user experience [26]. Usability is quality in use defined by the ISO [38] as: The effectiveness, efficiency and satisfaction with which specified users achieve specified goals in particular environments. ISO also describes usability sub-characteristics likability and pleasure, which represent cognitive and emotional satisfaction. On the mobile application market, these attributes are more important than we are used to on desktop applications, because users very often leave reviews on usability on application store. Figure 4 shows the percentage of user reviews related to usability in Apple App Store in productivity category [40]. Figure 4: Review frequency [40]. User experience (UX) of the application differs by device and OS. UX will be different on mobile device with or without full hardware keyboard and Android users are accustomed to different UX patterns than the ios or Windows Phone users [40]. 5.5 Performance Performance requirements are also very important for mobile application market success. The most important key performance indicators are application launch time, UI responsiveness, memory footprint and battery life [48]. 26

32 5.5.1 Launch time Launch time refers to the time delay when application starts. According to the consumer expectations survey [41], the median of expected mobile application launch time is two seconds and 80% of respondents expect that the launch time will be three seconds or less. The App Quality Alliance 25 (AQuA) required to show message or progress bar if the launch time is longer than five seconds. The launch time should be measured by automated test script [48] Responsiveness Responsiveness means that the application GUI is able to react quickly without delays or freezes. Mobile users are always in hurry and nobody wants to wait for slow application. Application responsiveness is measured in milliseconds as time delay which takes rendering different application pages or controls. Delays between switching pages can be measured in code, by GUI automation tools or by the tools dedicated specially for this purpose Battery life Application should not overload CPU or network because high CPU or network load decrease the battery life. The best way how to measure battery life is to measure CPU, GPU and network usage with a special tools which can count how much the application drain the battery Network usage efficiency Network usage efficiency is one of the main performance criterion for mobile applications by AQuA. AQuA defines three basic network usage tests: Duplicated content application should cache frequently used downloadable content. Periodic transfers advertisement or analytics data may not overuse internet connection. Closing connections network transfers should be closed when the application is deactivated From my own experience best way how to measure application impact on battery is to combine mentioned measurements with beta testing, where tester use the application for a week as a common user would probably use it. After that period compare the application battery consumption with other commonly used applications in the OS settings. 27

33 AQuA also recommends to perform these tests with free AT&T Application Resource Optimizer (ARO) tool. ARO can collect network traffic while tester navigates through the application and automatically evaluate data wastage. 5.6 Application store compliance Certification testing is the final procedure before the application is uploaded on the application store. Tester have to assure that the application comply with all platform specific guidelines and will be approved to application store. This is very important mainly in the case of ios where approval process takes the longest time and any guidelines breach can significantly protract application release. Pre-publish procedure and testing (based on [49] [50] [51]): 1) Prepare assets for release Assure that application icons, promotional images and screenshots exist and have desired size and format. Prepare EULA, cryptographic keys and text describing application on the store. 2) Prepare application for release Clean the project from unneeded libraries, testing methods or debug settings. 3) Configure application manifest Define supported orientation and application capabilities (used resources, sensors, access to contact list, etc.). 4) Create signed application package applications have to be digitally signed by the developer s certificate. This certificate does not need to be signed by the certified authority; the self-signed certificate is sufficient. 5) Run automated validation tools Passing the automated validation tests is necessary to pass store approval process (in case of ios and Windows). 6) Prepare accessories or servers If the application cooperates with specific hardware accessories (e.g. wristband), consume web services or any other external resources, ensure that these resources are also ready for production. 7) Secure application package use tools for protecting application binaries from reverse engineering. 8) Test application for release perform both functional and nonfunctional tests to determine overall end user experience. 28

34 6 Testing tools Following tools were chosen to cover the most types of mobile testing tools that are available on the market and can be used to test YSoft SafeQ Demo application as well. 6.1 Experitest Experitest provides mobile application testing solution called SeeTest which consist of these components: SeeTest Automation tool for creating functional tests through GUI. SeeTest Cloud private mobile cloud solution. SeeTest Manual tool for connecting to mobile device in the cloud for manual testing. Network virtualization proxy server for simulating network conditions. SeeTest Automation and SeeTest Manual leverage tool called Silk Mobile developed by Borland. Advantage of Experitest over the Borland that Experitest provides also device test cloud solution. All components of SeeTest are very easy to install and use. It has very intuitive user interface, documentation is brief and clear. I was able to create and run SeeTest Automation script after watching five minutes long instructional video. However, for testing on ios, it is mandatory to acquire unlocking file from third-party company. It took whole week until I received the unlocking file for my device. This unlocking file, which is in fact side-loading key, must be acquired for each ios device separately. Problems with speed did not end. User actions recording is annoyingly slow because it must be performed on the computer. After connecting a device by USB cable to the computer (or connect device through the device cloud), the device screen is mirrored to the SeeTest window on the computer. In this window, tester performs recording actions and inputs via mouse and keyboard. After each action, tester must wait for the UI response which is delayed because of mirroring the screen. Recording the test scenario will be much better directly on device but this option is not supported. 29

35 Test execution is also really slow (sometimes slower than recording itself), but it can be executed in parallel on several devices. Recorded test script can be exported to many programming languages. Test scripts are easy to read, understand and change. SeeTest cloud is private it is solution for set up cloud from devices that company already owns. It is not a service where you can buy time for testing on multiple devices. Experitest was chosen for ability to record and play UI tests on Android, ios and Windows Phone on private device cloud. Tester must get used to slow action recording and slow test execution but everything else works well. 6.2 Ranorex Ranorex Studio is.net based tool for UI testing of mobile, desktop and web applications. It supports Android, ios and Windows 8.1. Ranorex Studio looks similarly to Visual Studio; this could be disadvantage for nonprogrammers because whole studio offers lot of options and functionality that is familiar only to programmers. Because of complexity of this tool, it took some time to learn all necessary. On the other hand, Ranorex Studio provides very good automation capabilities and features for organizing tests. Test scripts are generated to C# code and even if scripts are readable and understandable well, they do not have to be modified in code. Everything can be set up and adjusted via GUI. Script recording is fast and simple. Validation sections can be added during the recording with ease only by selecting GUI components and adjustment of validation criteria. Test recording of mobile applications on Android or ios can be performed right on the device, which can be connected wirelessly on the same subnet. However, recorded scripts were not always able to run for the first time. It was difficult to record test case and immediately play it because recorded scripts simply need some modifications. After using Ranorex for a while, I was able to identify some patterns in which recorded tests fail and prepare scripts better. Even though, test scripts are still error-prone. 30

36 Ranorex also providing capability for key-driven testing. Key-driven testing separates automation from the test case design. An application features can be tested separately by the independent automated scripts and labeled (e.g. StartApplication, Login, EndApplication, etc.). From these test scripts, QA engineer can easily compose test scenarios or acceptance tests right in the Ranorex Studio. 6.3 Calabash & Xamarin Test Cloud Xamarin is framework for mobile multiplatform development discussed in section 2.3. Beside developer tools, Xamarin offers sophisticated functional testing solution using Calabash. Calabash is UI acceptance driven test framework for Android and ios extending functionality of Ruby test framework Cucumber. Tests in Calabash (resp. Cucumber) can be written in natural language (using given-when-then conventions and Gherking grammar rules), which is easy to read even for non-technical QA engineers or business analyst. Xamarin Test cloud extends UI acceptance testing for the Xamarin applications. When the unit and Calabash tests passed on the emulator or real device connected to the build server, the build server creates an application package, which could be sent along with Calabash tests on the selected devices to the Test Cloud as shown in Figure 5. When the Calabash tests are finished on all selected devices in the cloud, interactive test report with a list of devices and passed/failed tests are shown on the web portal. Figure 5: Xamarin Test Cloud [37]. 31

37 6.4 Perfecto mobile Perfecto mobile is a public device cloud service with test automation and network virtualization capabilities. Tester can access hundreds of devices through web portal, Visual Studio or HP UFT extensions. After login to the web portal, tester can chose from large variety of smartphones and tablets with Android, ios and Windows Phone. Subsequently, device screen appears in the web browser and device is ready to use. Manual testing with Perfecto mobile through web interface is surprisingly fast. Difference in delays between Perfecto mobile and SeeTest, where the device is connected directly to the computer, is minimal. Manual testing offers various functions like calling on the testing phone or receiving SMS. There is also network virtualization with a basic settings and for devices with SIM card, mobile network data connection can be used to access the Internet. Unfortunately, Perfecto mobile trial version contains only manual testing. Sales representative, which I contacted, did not permit me the access to trial version with automation capabilities. 6.5 IBM Mobile Quality Assurance IBM offers solution for cloud mobile application development called Bluemix. Mobile Quality Assurance (MQA) is part of Bluemix, provided as Softwareas-a-Service capability for testing and validating mobile applications. The main features of MQA are in-application bug reporting, crash reporting and sentiment analysis. MQA has pre-production and postproduction libraries used for instrumenting the application. Adding these libraries to application is very easy almost without any code modification (around ten lines of code). Pre-production libraries allow in-application reporting testers can easily report issues right from the device, which simplify whole issue reporting process (e.g. uploading pictures to issue tracking system or record device information). Post production library serves mainly for reporting detailed information about crashes to the Bluemix portal. Advantage against some of the other mobile analytic services is that it does not require nearly any code modifications. 32

38 Sentiment analysis provides detailed information from the application store. It measures the application quality attributes like performance, UX elegance, pricing or satisfaction based on user reviews, which is not very accurate (in case of performance for example). On the other hand, user reviews and ratings are the only metrics that matters and it shows the quality of an application. MQA sentiment analysis can provide the same information even about other applications. Therefore, product management can compare their application with others. IBM MQA does not provide any test automation capabilities and cannot be connected with any application lifecycle management software which I considered as biggest disadvantage. 6.6 Testing tools overview It cannot be determine which testing tool is the best because it always depends on tested application. For a small low budget application for Android or ios I would use IBM MQA, leverage the beta testing and completely avoid the UI automated tests, which are difficult to maintain due to the fast changes in the application UI. For the large application projects with high budget and high demands on reliability and transferability, I would choose between Experitest and Perfecto mobile depend on what type of a device cloud I would need. Furthermore, I would not consider IBM MQA for these large projects because of its inability to integrate with the application life management tools, lot of manual tasks and no continuous integration support. On the other hand, if I decided to develop hybrid application with Xamarin framework, I would consider only the Xamarin testing solution which is sufficient for most of the application projects and it is difficult to test Xamarin application with other mentioned tools because of technical restrictions. 33

39 The following tables summarize information about testing tools. Experitest Ranorex Xamarin Test cloud Perfecto mobile IBM MQA Supported Android, Android, ios, Android, Android, Android, mobile OS ios, WP Windows ios, WP ios, WP ios Supported Native, Native, web, Hybrid Native, Native, application web, hybrid* web, web, types hybrid* hybrid* hybrid* Test automation UI tests UI test API tests UI tests No Device test cloud Private Private Public Public, private No CI support Yes Yes Yes Yes No Table 1: Test tools overview. *It depends on what cross-platform framework is used. Price Experitest Ranorex Xamarin Test cloud Perfecto Mobile IBM MQA $3,500/year for automation + $1,000/year for cloud $2,330 with one year maintenance $5 per device hour $15 per device hour $168 per application + $0.17 per device for monitoring Table 2: Test tool pricing. 6.7 Automated validation tools Windows and ios provide automated validation tools (Windows Certification Kit 27, itunes Connect Validation Tests 28 ) to speed up approval process. In case of Windows, application will not pass Windows Store approval process if it fails to pass this automated validation tests and ios application cannot even proceed to approval process on the App Store

40 Windows Certification Kit and itunes Connect Validation Tests are both running on the developer s computer. Their purpose is to increase the number of successful approval requests by testing the application before submitting. Windows Certification Kit tests security and performance, application capabilities, resources and contains many others static and dynamic tests. Android has similar tool called Lint. This tool is not intended to validate application before submitting to the application store, but contains static code analysis which is similar to some tests from Windows Certification Kit and itunes Connect. 35

41 7 Testing guidelines There are lot of aspects that should be considered at the beginning of application development lifecycle. No matter what software is being developed, questions like What is the purpose of the software product? or In what environment our software will be running? remains the same. However, some of them are special or closely related with mobile applications. Answers on these questions should be clarified before test activities started (based on [26], [52]): How the application was developed? (native, web, hybrid) What are the targeted operating systems? What is the range of supported OS versions? Is the user coverage public or enterprise? For enterprise applications, is there any list of devices approved by the company? For public applications, what is the targeted audience and application store category? Comprehensive checklist with similar questions can be found at [53]. It is a first step in mobile testing because testers must know what they are going to test. To summarize the previous chapters, I suggest the following mobile application testing guidelines (inspired by [54]): 1. Define test conditions (scope and priorities) and prepare test suites Start by preparing test cases based on functional and nonfunctional requirements and test design specification. Decide which tests will be running on the emulators and which on the real devices. 2. Determine what test cases will be automated Identify repetitive testing tasks suitable for automation. Identify test cases which are required to be executed on multiple devices. Identify test cases which cover basic functionality and will be easy to automate (e.g. smoke tests covering installation and login). 36

42 3. Prepare test environment and tools Acquire test devices and emulators. Select popular devices. Set up private test cloud or acquire public test cloud access (if device test cloud is needed). Setup devices and emulators. For emulators setup parameters (e.g. OS version, screen size, pixel density, memory, architecture, size of SD card memory) to reflect targeted devices. For real device update or downgrade OS to desired version. Clear the device from unneeded applications or install widely used application (e.g. Messenger or Twitter) based on what you want to test 29. Acquire software for support mobile testing (e.g. tools for UI automation, security or performance testing). Setup build server for continuous integration. 4. Functional testing Run automated tests on the build server. Perform manual tests on the selected devices. Support manual testing by in-application bug reporting tools. Consider how often the automated tests will be executed on the device cloud. 5. Usability testing Do not forget that usability is key factor to application success. Start testing usability with sketches and prototypes in early project phases. Test during the whole development process, test often. 6. Performance testing Test application for its responsiveness, resource usage and launch time. 7. Reliability testing Test if the application handles interruptions (7.1.1) correctly. 29 E.g. for reliability testing is better to test application on messy device running several background applications. 37

43 Test if the application handles network errors, fluctuations, airplane mode and switching between Wi-Fi and cellular networks. 8. Security testing Test application for data leakage and transport security. Test how hard is to decompile the application binaries. 9. Transferability testing Test if the application is able to run on supported devices and operating systems versions consider testing on public device cloud. Use developer previews of new operating systems and test application on new OS version before it goes public. 10. Other non-functional testing Test localization, accessibility and other tests related to the application. 11. Application store policies compliance testing Make sure that application complies with all platform specific guidelines and store policies. Prepare your application for release. Use automated validation tools. 12. Application monitoring Monitor application crashes, downloads and user behavior. Track user reviews and ratings on the application store. Measure application quality characteristics. This guideline is not comprehensive but captures the most important steps. Every application is different and requires different testing tools and approaches. 38

44 8 SafeQ Terminal Demo 8.1 Motivation YSoft SafeQ is server-based print management system for multifunctional printers (MFP). Functionality of SafeQ for a common user is shown the best on the MFP s terminal (display) itself. The problem is that MFPs are big, heavy and it is difficult to take them to the customer. SafeQ Terminal Demo is a mobile application that solves this problem. This mobile application is simply imitating the behavior of the real printer. 8.2 Analysis Stakeholders The main stakeholders of SafeQ Terminal Demo are: thesis supervisor and technical consultant (both from Y Soft), the developer (author of this thesis), Y Soft sales professionals and partners, management, CEO, employees, YSoft SafeQ users, potential Y Soft customers and MFPs vendors Requirements This part describes general requirements for the application, which should bring the unique values to the stakeholders. These initial requirements were: R1: Application shall mimic the YSoft SafeQ system on the Konica Minolta MFP. R1.1: Application shall contain Konica Minolta native and browser based terminal. R1.1: Application shall support print and scan workflows. R1.1: Application shall support billing codes and payment system. R2: Application shall be able to run on mobile devices. Mentioned requirements came from the thesis supervisor and technical consultant. Another requirement on application was originated from the author of this thesis who required Windows as a target platform. This requirement was not inconsistent with any other requirements or other stakeholder s expectations. 39

45 8.2.3 Solution design The first important thing is that MFPs have seven-inch display (or more) and hardware buttons around, which are also important for operating the MFP and should be presented in mobile application. This eliminates all smartphones with screen size smaller than six inches diagonally because controls would be too small to touch and poorly visible. Thus, the application should target mainly tablets. According to all requirements, SafeQ Terminal Demo was implemented as native Windows Store application, which is convenient because it can run on wide range of devices from PCs to low cost tablets. Konica Minolta (KM) MFP was chosen as a first vendor for implementing mobile demo application. Y Soft provides two versions of terminal for KM native YSoft SafeQ embedded terminal and browser-based YSoft SafeQ embedded terminal. An additional requirement emerged in the end of the development lifecycle in relation with decision to implement application for KM. R3: Application shall be available for all Y Soft supported MFPs vendors. It shall not be publicly available otherwise. This requirement was originated from the Y Soft management who was concerned that other MFPs vendors take this like a competitive advantage for Konica Minolta and violation of partnership agreement. But this requirement, which would have been a blocker, was changed in the end on this: R3 (modified): Application functionality shall be provided only for authorized persons and for others, nothing shall indicate that application is only for Konica Minolta Functional requirements specification Functional requirements for the application were written as a user stories with acceptance criteria in form of given-when-then. Example user story of the SafeQ Terminal Demo application is: 3 Story: Print all waiting jobs As a user I want to simulate print all waiting jobs In order to show how easy and quick is to print all waiting jobs with YSoft SafeQ 40

46 3.1 Scenario: Print all waiting jobs directly after login to the terminal Given user is on the login screen and has enabled Print All option When user logs in to the terminal And select billing code Than print progress window should appear with the list of printing jobs And all compatible jobs should be moved from waiting folder to the printed folder All user stories can be found in the appendix A Non-functional requirements specification N1: Transferability N1.1: Application must be able to run on Windows 8.1 and Windows RT 8.1. N1.2: User must be able to install application from the application store. N1.3: Application shall be installable from the Windows Store. N1.4: Application shall be updateable from the Windows Store N1.5: Application shall be uninstallable. N2: Compatibility N2.1: Application shall support these screen resolutions: 1280x800, 1366x768, 1920x1080. N2.2: Application shall be able to minimalized and maximized. N2.3: Application shall show the notifications from OS and other applications correctly. N2.4: Application shall comply with all Windows store policies. N3: Performance N3.1: Application shall launch in less than three seconds on device with 1.6GHz mobile processor. N3.2: Delays between different application screens shall be less than 300ms on device with 1.6GHz mobile processor. N3.3: Application shall use less than 15% of CPU on device with 1.6GHz mobile processor to maximize battery life. N3.4: Application shall consume less than 100MB of memory. N4: Usability N4.1: Application shall be controlled by the mouse or touch screen complementary. N4.2: Application shall offer remembering the login password. N4.3: Application shall support only the landscape orientation. 41

47 N4.4: Network errors, which cause loss of monitoring data, should not be presented to the user. N5: Security N5.1: Application shall transfer monitoring data with SLL. N5.2: Application shall require user authentication when the application is launched. N5.3: The authentication shall require only the password. N6: Reliability N6.1: Network errors, fluctuations and airplane mode shall not have any effect on the application. N6.2: Windows 8.1 update shall not have effect on the application N7: Maintainability N7.1: Application shall contain help page. N7.2: Terminal browser shall be reusable in applications for other vendors. N7.3: Application shall contain manual for side-loading installation (installation without Windows Store). N8: Other non-functional requirements N8.1: Terminal browser shall be prepared for localization (extensibility). N8.2: Application shall contain login screen (functional suitability). 8.3 Architecture Application architecture is divided into several assemblies. Core assembly is Windows portable library containing entity classes and majority of business logic. This portable library is written in C# and can be used on Android or ios as well, with multiplatform framework Xamarin described in paragraph 2.3. Another part is shared project which contains views and visual assets for the browser-based terminal. Shared project allows code and assets sharing across the compatible platforms. This shared project behaves like a common library but does not have its own assembly and then, it must be used within Windows or Windows Phone application project. Moreover, browser-based terminal is customizable it allows turn on or off payment system, billing codes or scan application. Therefore, implementation of Terminal Demo application for another MFP vendor (e.g. Xerox or Ricoh) can use this project, since the other vendors has only browser-based terminals. 42

48 Next two assemblies belong to the Windows and Windows Phone application. Dependencies between all assemblies are shown in the Figure MVVM Figure 6: Component Diagram. Model-View-ViewModel (MVVM) is architectural pattern separating user interface, application state and data. This pattern derives from Model-View- Controler (MVC). MVVM was developed to simplify event-driven programming. One of the biggest disadvantages of classic event-driven style was code behind the view, closely coupled with GUI. As the name suggest, MVVM consist of the three main parts: View is the user interface. Model represents data and business objects. View-Model connect view with model and holds application state. Model does not have to represent data directly. In many cases, model represents service layer which contains business logic and mediate data access. This approach is convenient if the application holds data in the 43

49 database or consumes them from web services. That is not a case of Terminal Demo. Therefore, the model holds data directly. In case of SafeQ Terminal Demo application, models and view-models are both written in C# and views in markup language XAML. GUI controls properties from view are declaratively bound to view-model properties. Every model implements interface INotifyPropertyChanged, which defines event OnPropertyChanged. Changes in model property are immediately propagated to view after rising that event with a property name. Changes in GUI are also propagated into model (e.g. user text inputs into string property of view-model). ObservableCollection type serves as source for binding collections. Piece of a class diagram from SafeQ Terminal Demo application for illustrating MVVM: Figure 7: MVVM. The biggest advantage of MVVM is testability. View-model code can be covered by unit tests; model (e.g IPrintJob from the Figure 7) can be simply mocked to separate the view-model. Most of the functionality in SafeQ Terminal Demo is handled in viewmodels, but not all. As it is apparent from description above, MVVM is mainly used for data manipulation. If the developer sticks with Windows design guidelines and uses standard patterns, it is easy to have clean views without code behind. SafeQ Terminal Demo is very specific application because it has to imitate the real software in MFP, which is not compliant with Windows Store design guidelines and there are no navigation patterns common for Windows Store or Windows Phone application. Therefore, I decided to handle navigation in view s code behind. It is easier and understandable with only few lines of code in each view, but it is hard to test. Solution with only MVVM would be problematic with difficult structure and more lines of code. On the other hand, it would be easier to test. The last point is that testing navigation from page to page in view-model would not be enough due to possible complexity of the design. View-model state does 44

50 not have to correspond to what user can see on the monitor, if the binding is incorrect. Thus, navigation should be tested manually or with UI automated scripts anyway. 8.4 Functional testing Most unit tests were designed to test view-models and some model classes like PrintJob.cs. Mocking framework MoqaLate 30 was used to isolate the code under the test. Automated UI tests were used because testing view-models cannot cover complex workflows. Ranorex (8.2) seemed to be very helpful and speeded up the creation of UI test for Windows Store applications. However, Ranorex trial license expires after 30 days, so the tests were developed in Microsoft test framework UI Coded tests 31. During the creation of UI tests by several tools (chapter 6) or with Microsoft Coded UI, I have observed several things: More bugs were found during the test creation than during the test execution. UI tests were hard to maintain. If the UI test fails, it was due to bug in the test (not in the application) in more than half of all cases. These findings are known already, but I also observed, that passed UI tests give me more subjective confidence in a product than unit or integration tests. 8.5 Non-functional testing Performance Most of the performance tests were conducted by the performance tools in Microsoft Visual Studio CPU usage Test steps: Set build configuration to Release mode (attached debugger can distort results)

51 Run the simulator. Deploy application to the simulator with CPU usage tool from Debug menu. Perform acceptance testing scenarios or identify sections when could be excessive CPU usage. o Possible improvement is to wait a second between each action to isolate events handle routines (it will be easier to determine which action cause CPU workload). Exit the application, stop measurement. Results are shown in the interactive chart. Under the chart is a list of methods running in selected time window and their CPU utilization. Self CPU refers to time spend in the particular method and total CPU refers to overall time to perform the method. Analysis Figure 8 shows the CPU usage in scenario 2.1 Print from waiting folder. First peaks in the CPU utilization chart were caused by startup routine. Next and the biggest peak, which is selected on the figure 8, is caused by initializing view-models after clicking on the go to the terminal button. Next peaks are small and keep CPU usage under the 10%. Improvements View-models initialization is already performed asynchronously by the method CreateVMs. Possible improvement could be to run this method immediately after application is launched to spread the peak when the application is waiting for the user action. Typical improvements implemented during the development were related with asynchronous method calls with this simple pattern: public async void ResetAllAppSetting() { await ResetAsync(); } private Task ResetAsync() { return Task.Run(() => { CreateVMs(); }); } 46

52 Figure 8: CPU usage. This improvement keeps the UI thread responsive. First application prototype without asynchronous calls freezes and sometimes the process was killed by the OS. Notes Tests were performed on two different PCs and simulator settings. First, tests run on clean simulator and computer where most unnecessary processes were disabled. Second, the same PC and the same simulator with several running applications and playing video. Test results were very similar, some actions were a bit faster on the clean computer but some of them were faster on the unclean one. Thus, other applications do not affect CPU usage tests conducted by Visual Studio Performance tools UI Responsiveness UI responsiveness tests were performed as the CPU tests, but with UI responsiveness tool. Figure 9 shows part of UI responsiveness test when user print from browser terminal. Meaning of the color bars in top chart is following: Blue bars show percentage of time spent on parsing XAML files. Orange bars show percentage of time spent in layout. Green bars show percentage of time spent in application code. Gray bars show percentage of time spent in other XAML services. 47

53 Figure 9: UI responsiveness before improvement. Selected part on the chart represents moment, when the user tap on print application button in browser-based terminal and browser with waiting jobs starts loading. This was identified as a place for improvement. Improvement Method, which causes slow UI response, also creates page with waiting jobs. Creating the view has to be performed in the UI thread. Chosen approach runs the problematic code in asynchronous task and the page creation is asynchronously dispatched to the UI thread. await this.dispatcher.runasync(windows.ui.core.coredispatcherpriority.low, () => { waitingjobspage = new JobListPage( ); }); This improvement results in nearly two times faster UI response. Figure 10 illustrates the same scenario after changes in code. 48

54 Figure 10: UI responsiveness with improvements Energy consumption Energy consumption tool for Visual Studio was not working properly, because after several tests, tool did not recognize that application uses Wi-Fi adapter for sending monitoring data. Nevertheless, energy consumption is computed mainly from CPU and network utilization, which are tested separately Memory Visual Studio Memory usage tool was used for tracing application heap. Test was performed as follow: 1) Deploy application to local machine in release mode with Memory usage tool. 2) Perform actions to complete chosen scenario (manually or with UI automation). a) Take a memory snapshot after each user action. b) When the number of allocated objects increase, try to force garbage collector. 49

55 Results Memory used by application was around 60 MB (Figure 11) and remained almost unchanged during several tested scenarios. Garbage collector seems to work properly and increasing or decreasing of allocated memory was always reasonable due to application nature Launch time Figure 11: Memory snapshots. Launch time was measured with a simple coded UI test and can be run from console by vstest.console.exe utility. Tests were performed fifteen times on two different devices. Results are shown in the following table 3. Device Processor memory average launch time Umax VisionBook 8Wi, tablet Intel BayTrail-T Quad- Core 1.8 GHz 1 GB 1.91 s Lenovo Flex2, laptop Intel Core i5 4200U 1.6 GHz Table 3: Launch times. 8 GB 1.35 s 50

56 Package size Unpacked APPX file should be tested on presents of unnecessary files. In the case shown on Figure 12, library Microsoft.Diagnostic was unintentionally leaved, because the source code was not properly cleaned from diagnostic methods used for testing. Figure 12: Package size. Package application size was 9,952 KB without any optimization and most space was occupied by visual assets. Possible improvement was to compress images because most of them were in PNG format. After converting most images to JPEG with compression ratio that was acceptable (images quality deterioration were not recognizable), package size shrinks to 4,292 KB Network performance Because Terminal Demo application contains monitoring service that uses the Internet connection, it must be tested on the network usage. Tests were performed with ARO and data collector for Windows Store applications and consistent with AQuA performance tests ID 1.2, 1.3 [55]. Test steps were following: 1) Set up test environment (x86 Windows 8 tablet, Java6, WinPcap, Netmon). 2) Open ARO and data collector for Windows 8. 3) Kill all tasks. 4) Start the application. a) Navigate to home screen (for test ID 1.2 periodic transfers) b) Navigate through the application for 20 minutes (for test ID 1.2 periodic transfers). 5) Stop ARO Data collector. 6) Open capture traffic (.pcap file) in ARO Data Analyzer and wait for the report. 51

Mobile Test Strategy. Shankar Garg. Senior Consultant - Testing

Mobile Test Strategy. Shankar Garg. Senior Consultant - Testing Mobile Test Strategy Shankar Garg Senior Consultant - Testing Scope of Mobile Testing Why Quality is important Challenges in Mobile Testing Best Practices for Mobile Test Strategy Mobile Testing Tools

More information

Mobile application testing is a process by which application software developed for hand held mobile devices is tested for its functionality,

Mobile application testing is a process by which application software developed for hand held mobile devices is tested for its functionality, Mobile Testing Mobile application testing is a process by which application software developed for hand held mobile devices is tested for its functionality, usability and consistency. A mobile application

More information

Following statistics will show you the importance of mobile applications in this smart era,

Following statistics will show you the importance of mobile applications in this smart era, www.agileload.com There is no second thought about the exponential increase in importance and usage of mobile applications. Simultaneously better user experience will remain most important factor to attract

More information

Syllabus Version 2.5_R (04.04.2016)

Syllabus Version 2.5_R (04.04.2016) Syllabus Version 2.5_R (04.04.2016) CMAP-F-Syllabus V2.5_EN, 04.04.2016 Page 1 of 15 0. Introduction to This Syllabus... 4 0.1 Purpose of this document... 4 0.2 Cognitive Levels of Knowledge... 4 0.3 The

More information

Mobile App Testing Guide. Basics of Mobile App Testing

Mobile App Testing Guide. Basics of Mobile App Testing 2015 Mobile App Testing Guide Basics of Mobile App Testing Introduction Technology is on peek, where each and every day we set a new benchmark. Those days are gone when computers were just a machine and

More information

Developing and deploying mobile apps

Developing and deploying mobile apps Developing and deploying mobile apps 1 Overview HTML5: write once, run anywhere for developing mobile applications 2 Native app alternative Android -- Java ios -- Objective-C Windows Mobile -- MS tools

More information

S ELEC T IONS F ROM DZON E S 2 01 5 GU ID E TO M OB ILE D E V E LO P M E N T 2015 EDITION R E S E AR C H PA RTNER SPOTLIGHT

S ELEC T IONS F ROM DZON E S 2 01 5 GU ID E TO M OB ILE D E V E LO P M E N T 2015 EDITION R E S E AR C H PA RTNER SPOTLIGHT DZONE.COM/RESEARCH S ELEC T IONS F ROM THE DZONE GUIDE TO MOBILE DEVELOPMENT 015 EDITION R E S E AR C H PA RTNER SPOTLIGHT DZON E S 01 5 GU ID E TO M OB ILE D E V E LO P M E N T 1 Key Research Findings

More information

Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system.

Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system. Chapter 1 Introduction to ios Development Objectives: Touch on the history of ios and the devices that support this operating system. Understand the different types of Apple Developer accounts. Introduce

More information

International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] ISSN: 2349-6495

International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] ISSN: 2349-6495 International Journal of Advanced Engineering Research and Science (IJAERS) Vol-2, Issue-11, Nov- 2015] Survey on Automation Testing Tools for Mobile Applications Dr.S.Gunasekaran 1, V. Bargavi 2 1 Department

More information

Image Area. White Paper. Best Practices in Mobile Application Testing. - Mohan Kumar, Manish Chauhan. www.infosys.com

Image Area. White Paper. Best Practices in Mobile Application Testing. - Mohan Kumar, Manish Chauhan. www.infosys.com Image Area White Paper Best Practices in Mobile Application Testing - Mohan Kumar, Manish Chauhan www.infosys.com Contents Introduction 3 QA Challenges in Mobile Application Testing 3 Device Variation

More information

Automated testing for Mobility New age applications require New age Mobility solutions

Automated testing for Mobility New age applications require New age Mobility solutions Automated testing for Mobility New age applications require New age Mobility solutions Executive Summary Today, mobile phone has transformed from its former role as a mere medium of communication to that

More information

Introduction to Android

Introduction to Android Introduction to Android Poll How many have an Android phone? How many have downloaded & installed the Android SDK? How many have developed an Android application? How many have deployed an Android application

More information

Syllabus Version 1.2.8.

Syllabus Version 1.2.8. Syllabus Version 1.2.8. 0. Introduction to This Syllabus... 4 0.1 Purpose of this Document... 4 0.2 Cognitive Level of Knowledge... 4 0.3 The Examination... 5 0.4 Business Outcome... 5 0.5 Specialization...

More information

White Paper Bridging the Essential Gap between Continuous Quality and Crowd Based Testing

White Paper Bridging the Essential Gap between Continuous Quality and Crowd Based Testing White Paper Bridging the Essential Gap between Continuous Quality and Crowd Based Testing 1 Contents Introduction... 3 Testing Lifecycle... 4 Testing typologies... 4 Functional Testing... 4 Manual vs.

More information

Addressing Mobile Load Testing Challenges. A Neotys White Paper

Addressing Mobile Load Testing Challenges. A Neotys White Paper Addressing Mobile Load Testing Challenges A Neotys White Paper Contents Introduction... 3 Mobile load testing basics... 3 Recording mobile load testing scenarios... 4 Recording tests for native apps...

More information

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013 Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone

More information

Developing Applications for ios

Developing Applications for ios Developing Applications for ios Lecture 1: Mobile Applications Development Radu Ionescu raducu.ionescu@gmail.com Faculty of Mathematics and Computer Science University of Bucharest Content Key concepts

More information

ADF Mobile Overview and Frequently Asked Questions

ADF Mobile Overview and Frequently Asked Questions ADF Mobile Overview and Frequently Asked Questions Oracle ADF Mobile Overview Oracle ADF Mobile is a Java and HTML5-based mobile application development framework that enables developers to build and extend

More information

Mobile App Testing Process INFLECTICA TECHNOLOGIES (P) LTD

Mobile App Testing Process INFLECTICA TECHNOLOGIES (P) LTD Mobile App Testing Process Mobile Application Testing Strategy EMULATOR QA team can perform most of the testing in a well-equipped test environment using device emulators with various options like ability

More information

White Paper. Bridging the essential gap between Mobile Cloud and crowd based testing. 1. Introduction. 2. Testing Lifecycle

White Paper. Bridging the essential gap between Mobile Cloud and crowd based testing. 1. Introduction. 2. Testing Lifecycle White Paper Bridging the essential gap between Mobile Cloud and crowd based testing 1. Introduction 2. Testing Lifecycle a. Testing typologies (Functional, Usability) b. Functional Testing: Manual

More information

Lee Barnes, CTO Utopia Solutions. Utopia Solutions

Lee Barnes, CTO Utopia Solutions. Utopia Solutions Mobile Technology Testing Are You Ready? Lee Barnes, CTO Utopia Solutions Agenda 1. Mobile Testing Challenges 2. Mobile Testing Practices 3. Mobile Test Automation 4. Summary and Q & A Mobile Testing Challenges

More information

Penetration Testing for iphone Applications Part 1

Penetration Testing for iphone Applications Part 1 Penetration Testing for iphone Applications Part 1 This article focuses specifically on the techniques and tools that will help security professionals understand penetration testing methods for iphone

More information

Kony Mobile Application Management (MAM)

Kony Mobile Application Management (MAM) Kony Mobile Application Management (MAM) Kony s Secure Mobile Application Management Feature Brief Contents What is Mobile Application Management? 3 Kony Mobile Application Management Solution Overview

More information

Choosing a Mobile Application Development Approach

Choosing a Mobile Application Development Approach ASEAN Journal of Management & Innovation Vol. 1 No. 1, 69 74 by Stamford International University DOI: 10.14456/ajmi..4 ajmi.stamford.edu Choosing a Mobile Application Development Approach Phyo Min Tun

More information

How to Choose Right Mobile Development Platform BROWSER, HYBRID, OR NATIVE

How to Choose Right Mobile Development Platform BROWSER, HYBRID, OR NATIVE How to Choose Right Mobile Development Platform BROWSER, HYBRID, OR NATIVE Solutions Introduction: Enterprises around the globe are mobilizing mission-critical services. Businesses get streamlined due

More information

WHITEPAPER. SECUREAUTH 2-FACTOR AS A SERVICE 2FaaS

WHITEPAPER. SECUREAUTH 2-FACTOR AS A SERVICE 2FaaS WHITEPAPER SECUREAUTH 2-FACTOR AS A SERVICE 2FaaS EXECUTIVE OVERVIEW 2-Factor as a Service (2FaaS) is a 100% cloud-hosted authentication solution that offers flexible security without compromising user

More information

WHITEPAPER BEST PRACTICES IN MOBILE APPLICATION TESTING

WHITEPAPER BEST PRACTICES IN MOBILE APPLICATION TESTING WHITEPAPER BEST PRACTICES IN MOBILE APPLICATION TESTING 1 The basic frame of software testers mind-set is attuned to check documentation, functionality, stability, API and performance and make sure that

More information

Sample Exam Foundation Level Syllabus. Mobile Tester

Sample Exam Foundation Level Syllabus. Mobile Tester Sample Exam Foundation Level Syllabus Mobile Tester September 2015 American Software Testing Qualifications Board Sample Exam Foundation Level Syllabus Mobile Tester MOB-1.2.1 (K2) Explain the expectations

More information

Building native mobile apps for Digital Factory

Building native mobile apps for Digital Factory DIGITAL FACTORY 7.0 Building native mobile apps for Digital Factory Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels

More information

How To Use Titanium Studio

How To Use Titanium Studio Crossplatform Programming Lecture 3 Introduction to Titanium http://dsg.ce.unipr.it/ http://dsg.ce.unipr.it/?q=node/37 alessandro.grazioli81@gmail.com 2015 Parma Outline Introduction Installation and Configuration

More information

Mobile Application Testing

Mobile Application Testing Mobile Application Testing Whitepaper Author: Scott Aziz Date: June 1, 2012 This whitepaper outlines the critical areas of testing needed to certify mobile enterprise applications Best practices from UST

More information

Mastering Mobile Web with 8 Key Rules. Mastering Mobile Web with 8 Key Rules www.mobilelabsinc.com

Mastering Mobile Web with 8 Key Rules. Mastering Mobile Web with 8 Key Rules www.mobilelabsinc.com Mastering Mobile Web with 8 Key Rules 1 2 Introduction When it comes to mobile web design and testing, mobility plays by a far different set of rules than the desktops of years past. Today we are challenged

More information

MENDIX FOR MOBILE APP DEVELOPMENT WHITE PAPER

MENDIX FOR MOBILE APP DEVELOPMENT WHITE PAPER MENDIX FOR MOBILE APP DEVELOPMENT WHITE PAPER TABLE OF CONTENTS Market Demand for Enterprise Mobile Mobile App Development Approaches Native Apps Mobile Web Apps Hybrid Apps Mendix Vision for Mobile App

More information

Point of View Mobii 925 - Android 4.2 Tablet PC. General notices for use... 2 Disclaimer... 2 Box Contents... 2

Point of View Mobii 925 - Android 4.2 Tablet PC. General notices for use... 2 Disclaimer... 2 Box Contents... 2 Table of Contents General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Buttons and connections... 3 1.2 Start up and shut down... 3 2.0 Introduction to Google Android

More information

Perfect Your Mobile App with Load Testing and Test Automation

Perfect Your Mobile App with Load Testing and Test Automation Wipro & Experitest Co-webinar: Perfect Your Mobile App with Load Testing and Test Automation June 2015 Speakers Guy Arieli CTO Experitest Sudheer Mohan Director - Mobility Certification & Automation Wipro

More information

Security Guide. BlackBerry Enterprise Service 12. for ios, Android, and Windows Phone. Version 12.0

Security Guide. BlackBerry Enterprise Service 12. for ios, Android, and Windows Phone. Version 12.0 Security Guide BlackBerry Enterprise Service 12 for ios, Android, and Windows Phone Version 12.0 Published: 2015-02-06 SWD-20150206130210406 Contents About this guide... 6 What is BES12?... 7 Key features

More information

Testing & Assuring Mobile End User Experience Before Production. Neotys

Testing & Assuring Mobile End User Experience Before Production. Neotys Testing & Assuring Mobile End User Experience Before Production Neotys Agenda Introduction The challenges Best practices NeoLoad mobile capabilities Mobile devices are used more and more At Home In 2014,

More information

Mobile App Testing is not something special

Mobile App Testing is not something special Mobile App Testing is not something special Simon Peter Schrijver TesT-PRO @simonsaysnomore p.schrijver@test-pro.nl simonsaysnomore.wordpress.com My career in Mobile (App) Testing Between 2006 and 2014

More information

Develop enterprise mobile applications with IBM Rational software

Develop enterprise mobile applications with IBM Rational software Develop enterprise mobile applications with IBM software Providing comprehensive mobile application development and lifecycle management solutions Highlights Helps streamline and optimize the software

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android with TouchDown GO!Enterprise MDM for Android, Version 3.x GO!Enterprise MDM for Android with TouchDown 1 Table

More information

Junos Pulse for Google Android

Junos Pulse for Google Android Junos Pulse for Google Android User Guide Release 4.0 October 2012 R1 Copyright 2012, Juniper Networks, Inc. Juniper Networks, Junos, Steel-Belted Radius, NetScreen, and ScreenOS are registered trademarks

More information

ESET Endpoint Security 6 ESET Endpoint Antivirus 6 for Windows

ESET Endpoint Security 6 ESET Endpoint Antivirus 6 for Windows ESET Endpoint Security 6 ESET Endpoint Antivirus 6 for Windows Products Details ESET Endpoint Security 6 protects company devices against most current threats. It proactively looks for suspicious activity

More information

WEB, HYBRID, NATIVE EXPLAINED CRAIG ISAKSON. June 2013 MOBILE ENGINEERING LEAD / SOFTWARE ENGINEER

WEB, HYBRID, NATIVE EXPLAINED CRAIG ISAKSON. June 2013 MOBILE ENGINEERING LEAD / SOFTWARE ENGINEER WEB, HYBRID, NATIVE EXPLAINED June 2013 CRAIG ISAKSON MOBILE ENGINEERING LEAD / SOFTWARE ENGINEER 701.235.5525 888.sundog fax: 701.235.8941 2000 44th St. S Floor 6 Fargo, ND 58103 www.sundoginteractive.com

More information

Native, Hybrid or Mobile Web Application Development

Native, Hybrid or Mobile Web Application Development Native, Hybrid or Mobile Web Application Development Learn more about the three approaches to mobile application development and the pros and cons of each method. White Paper Develop a Mobile Application

More information

Example of Standard API

Example of Standard API 16 Example of Standard API System Call Implementation Typically, a number associated with each system call System call interface maintains a table indexed according to these numbers The system call interface

More information

From Traditional Functional Testing to Enabling Continuous Quality in Mobile App Development

From Traditional Functional Testing to Enabling Continuous Quality in Mobile App Development From Traditional Functional Testing to Enabling Continuous Quality in Mobile App Development Introduction Today s developers are under constant pressure to launch killer apps and release enhancements as

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android

GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android GO!Enterprise MDM Device Application User Guide Installation and Configuration for Android GO!Enterprise MDM for Android, Version 3.x GO!Enterprise MDM for Android 1 Table of Contents GO!Enterprise MDM

More information

ORACLE ADF MOBILE DATA SHEET

ORACLE ADF MOBILE DATA SHEET ORACLE ADF MOBILE DATA SHEET PRODUCTIVE ENTERPRISE MOBILE APPLICATIONS DEVELOPMENT KEY FEATURES Visual and declarative development Java technology enables cross-platform business logic Mobile optimized

More information

The Anatomy of a Native App

The Anatomy of a Native App The Anatomy of a Native App 01 Defining Native Whether accessing order history during a sales call or checking a flight status, users expect information to be instantly accessible and presented in a way

More information

Introduction to IBM Worklight Mobile Platform

Introduction to IBM Worklight Mobile Platform Introduction to IBM Worklight Mobile Platform The Worklight Mobile Platform The Worklight Mobile Platform is an open, complete and advanced mobile application platform for HTML5, hybrid and native apps.

More information

Mobile Performance Testing Approaches and Challenges

Mobile Performance Testing Approaches and Challenges NOUS INFOSYSTEMS LEVERAGING INTELLECT Mobile Performance Testing Approaches and Challenges ABSTRACT Mobile devices are playing a key role in daily business functions as mobile devices are adopted by most

More information

Technology Services...Ahead of Times. Enterprise Application on ipad

Technology Services...Ahead of Times. Enterprise Application on ipad Technology Services...Ahead of Times Enterprise Application on ipad Diaspark, 60/2 Babu Labhchand Chhajlani Marg, Indore M.P. (India) 452009 Overview This white paper talks about the capabilities of ipad

More information

Point of View ProTab 3XXL IPS - Android 4.0 Tablet PC. Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents...

Point of View ProTab 3XXL IPS - Android 4.0 Tablet PC. Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents... Point of View ProTab 3XXL IPS - Android 4.0 Tablet PC English Contents Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Buttons and connections...

More information

http://ubiqmobile.com

http://ubiqmobile.com Mobile Development Made Easy! http://ubiqmobile.com Ubiq Mobile Serves Businesses, Developers and Wireless Service Providers Businesses Be among the first to enter the mobile market! - Low development

More information

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper

Network Licensing. White Paper 0-15Apr014ks(WP02_Network) Network Licensing with the CRYPTO-BOX. White Paper WP2 Subject: with the CRYPTO-BOX Version: Smarx OS PPK 5.90 and higher 0-15Apr014ks(WP02_Network).odt Last Update: 28 April 2014 Target Operating Systems: Windows 8/7/Vista (32 & 64 bit), XP, Linux, OS

More information

Sample Exam Foundation Level Syllabus. Mobile Tester

Sample Exam Foundation Level Syllabus. Mobile Tester Sample Exam Foundation Level Syllabus Mobile Tester September 2015 American Software Testing Qualifications Board Sample Exam Foundation Level Syllabus Mobile Tester 1. What types of testing are particularly

More information

Mobile Application Testing Challenges & Best Practices

Mobile Application Testing Challenges & Best Practices Mobile Application Testing Challenges & Best Practices SSQA Silicon Valley; Sept 11, 2012 1 Agenda Key Challenges in Mobile Application Testing Best Practices Test Automation Test Sourcing Q & A 2 Mobile

More information

"It's a Phone First! How to Test Your Five-star Mobile Apps"

It's a Phone First! How to Test Your Five-star Mobile Apps BW4 Concurrent Session 11/7/2012 10:15 AM "It's a Phone First! How to Test Your Five-star Mobile Apps" Presented by: Will Hurley Quality and Security Services Brought to you by: 340 Corporate Way, Suite

More information

Securely. Mobilize Any Business Application. Rapidly. The Challenge KEY BENEFITS

Securely. Mobilize Any Business Application. Rapidly. The Challenge KEY BENEFITS Mobilize Any Business Application. Rapidly. Securely. The Challenge Today's enterprises are increasingly leveraging mobility solutions to improve productivity, decrease response times and streamline operational

More information

Bell Mobile Device Management (MDM)

Bell Mobile Device Management (MDM) Bell MDM Technical FAQs 1 Bell Mobile Device Management (MDM) Frequently Asked Questions INTRODUCTION Bell Mobile Device Management provides business customers an all in one device administration tool

More information

Making Mobile a Reality

Making Mobile a Reality Making Mobile a Reality KIEFER CONSULTING CALIFORNIA DEPARTMENT OF TECHNOLOGY Introductions Scott Paterson California Department of Technology, Enterprise Solutions Harkeerat Toor Kiefer Consulting, Consultant

More information

Zenprise Device Manager 6.1.5

Zenprise Device Manager 6.1.5 Zenprise Device Manager 6.1.5 CLIENT GUIDE Rev 6.1.50 Introduction 2 ZENPRISE DEVICE MANAGER 6.1 CLIENT GUIDE 2011 Zenprise, Inc. All rights reserved. This manual, as well as the software described in

More information

Speed to Market in Mobile Development

Speed to Market in Mobile Development Speed to Market in Mobile Development Finding the right solution with continuous integration on real devices Tina Su, Director of Development, Intuit About me Nearly 20 years of industry experience in

More information

A Beginners Guide To Responsive, Mobile & Native Websites 2013 Enhance.ie.All Rights Reserved.

A Beginners Guide To Responsive, Mobile & Native Websites 2013 Enhance.ie.All Rights Reserved. A Beginners Guide To Responsive, Mobile & Native Websites 2013 Enhance.ie.All Rights Reserved. 1 The Mobile Web refers to access to the world wide web, i.e. the use of browser-based Internet services,

More information

Issues of Hybrid Mobile Application Development with PhoneGap: a Case Study of Insurance Mobile Application

Issues of Hybrid Mobile Application Development with PhoneGap: a Case Study of Insurance Mobile Application DATABASES AND INFORMATION SYSTEMS H.-M. Haav, A. Kalja and T. Robal (Eds.) Proc. of the 11th International Baltic Conference, Baltic DB&IS 2014 TUT Press, 2014 215 Issues of Hybrid Mobile Application Development

More information

Assignment # 1 (Cloud Computing Security)

Assignment # 1 (Cloud Computing Security) Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual

More information

Systems Manager Cloud Based Mobile Device Management

Systems Manager Cloud Based Mobile Device Management Datasheet Systems Manager Systems Manager Cloud Based Mobile Device Management Overview Meraki Systems Manager provides cloud-based over-the-air centralized management, diagnostics, and monitoring of the

More information

Testing Mobile Software

Testing Mobile Software Page 1 by Hans Schaefer Hans.Schaefer@ieee.org Some tips and tricks Some decisive test techniques 2014 Hans Schaefer Slide no. 1 What determines app success? The decisive fact: User experience Usability

More information

Middleware- Driven Mobile Applications

Middleware- Driven Mobile Applications Middleware- Driven Mobile Applications A motwin White Paper When Launching New Mobile Services, Middleware Offers the Fastest, Most Flexible Development Path for Sophisticated Apps 1 Executive Summary

More information

Enterprise Mobile Application Development: Native or Hybrid?

Enterprise Mobile Application Development: Native or Hybrid? Enterprise Mobile Application Development: Native or Hybrid? Enterprise Mobile Application Development: Native or Hybrid? SevenTablets 855-285-2322 Contact@SevenTablets.com http://www.seventablets.com

More information

Workshop on Android and Applications Development

Workshop on Android and Applications Development Workshop on Android and Applications Development Duration: 2 Days (8 hrs/day) Introduction: With over one billion devices activated, Android is an exciting space to make apps to help you communicate, organize,

More information

Kaspersky Lab Mobile Device Management Deployment Guide

Kaspersky Lab Mobile Device Management Deployment Guide Kaspersky Lab Mobile Device Management Deployment Guide Introduction With the release of Kaspersky Security Center 10.0 a new functionality has been implemented which allows centralized management of mobile

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

Mobile Application Testing

Mobile Application Testing Mobile Application Testing Mobile applications are booming,so mobile apps are big business, but with this hyper-growth comes the challenge of releasing apps that are stable on multiple portable devices

More information

MOBILIZING ORACLE APPLICATIONS ERP. An Approach for Building Scalable Mobility Solutions. A RapidValue Solutions Whitepaper

MOBILIZING ORACLE APPLICATIONS ERP. An Approach for Building Scalable Mobility Solutions. A RapidValue Solutions Whitepaper MOBILIZING ORACLE APPLICATIONS ERP An Approach for Building Scalable Mobility Solutions A RapidValue Solutions Whitepaper TABLE OF CONTENTS Executive Overview Typical Architecture for Mobilizing Oracle

More information

Mobile App Proposal 0-000-000-000. - Magazine company- email@address.com. January 12, y. Direct Contact. Email

Mobile App Proposal 0-000-000-000. - Magazine company- email@address.com. January 12, y. Direct Contact. Email Mobile App Proposal - Magazine company- January 12, y Direct Contact 0-000-000-000 Email email@address.com TABLE OF CONTENTS 1. Introduction 2. Project Overview & Objectives 3. About Newsboard 4. Analytics

More information

PEGA MOBILITY A PEGA PLATFORM WHITEPAPER

PEGA MOBILITY A PEGA PLATFORM WHITEPAPER PEGA MOBILITY A PEGA PLATFORM WHITEPAPER Background Mobile devices now outnumber computers as a means of connecting to the Internet. This new mobile ubiquity presents opportunities for the enterprise to

More information

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup Emmanuel Agu What is Android? Android is world s leading mobile operating system Google: Owns Android, maintains it, extends

More information

Cross-Platform Mobile Apps Solution

Cross-Platform Mobile Apps Solution Cross-Platform Mobile Apps Solution Prepared by Kevin Mullins CEO and Chief Developer Appracatappra, LLC. 709 Gale Street #8 Seabrook, TX 77586 kmullins@appracatappra.com http://appracatappra.com Table

More information

DevOps Best Practices for Mobile Apps. Sanjeev Sharma IBM Software Group

DevOps Best Practices for Mobile Apps. Sanjeev Sharma IBM Software Group DevOps Best Practices for Mobile Apps Sanjeev Sharma IBM Software Group Me 18 year in the software industry 15+ years he has been a solution architect with IBM Areas of work: o DevOps o Enterprise Architecture

More information

Gladinet Cloud Backup V3.0 User Guide

Gladinet Cloud Backup V3.0 User Guide Gladinet Cloud Backup V3.0 User Guide Foreword The Gladinet User Guide gives step-by-step instructions for end users. Revision History Gladinet User Guide Date Description Version 8/20/2010 Draft Gladinet

More information

ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET

ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET ORACLE MOBILE APPLICATION FRAMEWORK DATA SHEET PRODUCTIVE ENTERPRISE MOBILE APPLICATIONS DEVELOPMENT KEY FEATURES Visual and declarative development Mobile optimized user experience Simplified access to

More information

Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle

Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Introduction to Oracle Mobile Application Framework Raghu Srinivasan, Director Development Mobile and Cloud Development Tools Oracle Safe Harbor Statement The following is intended to outline our general

More information

01. Introduction of Android

01. Introduction of Android 01. Introduction of Android Goal Understand the concepts and features of the Android Install the complete Android development environment Find out the one-click install Android development environment

More information

Access Database Hosting. An introduction to Cloud Hosting Access databases from Your Office Anywhere

Access Database Hosting. An introduction to Cloud Hosting Access databases from Your Office Anywhere Access Database Hosting An introduction to Cloud Hosting Access databases from Your Office Anywhere Microsoft Access is a powerful way of creating bespoke database applications for either your own business

More information

Your guide to building great apps. Upgrade your skills and update your tools to create the next great app

Your guide to building great apps. Upgrade your skills and update your tools to create the next great app Your guide to building great apps Upgrade your skills and update your tools to create the next great app Introduction Visual Studio 2015 helps you turn great ideas into great business applications. Our

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

Kaspersky Security 10 for Mobile Implementation Guide

Kaspersky Security 10 for Mobile Implementation Guide Kaspersky Security 10 for Mobile Implementation Guide APPLICATION VERSION: 10.0 MAINTENANCE RELEASE 1 Dear User, Thank you for choosing our product. We hope that you will find this documentation useful

More information

Feature List for Kaspersky Security for Mobile

Feature List for Kaspersky Security for Mobile Feature List for Kaspersky Security for Mobile Contents Overview... 2 Simplified Centralized Deployment... 2 Mobile Anti-Malware... 3 Anti-Theft / Content Security... Error! Bookmark not defined. Compliance

More information

Enterprise Mobile App Management Essentials. Presented by Ryan Hope and John Nielsen

Enterprise Mobile App Management Essentials. Presented by Ryan Hope and John Nielsen Enterprise Mobile App Management Essentials Presented by Ryan Hope and John Nielsen 1 Mobile App Trends Global mobile app downloads to exceed 30B by 1016 US and Europe account for over 70% of the market

More information

Take full advantage of IBM s IDEs for end- to- end mobile development

Take full advantage of IBM s IDEs for end- to- end mobile development Take full advantage of IBM s IDEs for end- to- end mobile development ABSTRACT Mobile development with Rational Application Developer 8.5, Rational Software Architect 8.5, Rational Developer for zenterprise

More information

SYNCSHIELD FEATURES. Preset a certain task to be executed. specific time.

SYNCSHIELD FEATURES. Preset a certain task to be executed. specific time. SYNCSHIELD FEATURES This document describes the diversity of SyncShield features. Please note that many of the features require a certain platform version, often earlier software versions do not support

More information

MOBILE APPS. QA Testing for mobile applications

MOBILE APPS. QA Testing for mobile applications MOBILE APPS QA Testing for mobile applications How familiar are you with Apple devices? This question can be asked for apple devices as well as Android devices - depending on the company your interviewing

More information

Mobile Phones Operating Systems

Mobile Phones Operating Systems Mobile Phones Operating Systems José Costa Software for Embedded Systems Departamento de Engenharia Informática (DEI) Instituto Superior Técnico 2015-05-28 José Costa (DEI/IST) Mobile Phones Operating

More information

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide

BlackBerry Enterprise Service 10. Universal Device Service Version: 10.2. Administration Guide BlackBerry Enterprise Service 10 Universal Service Version: 10.2 Administration Guide Published: 2015-02-24 SWD-20150223125016631 Contents 1 Introduction...9 About this guide...10 What is BlackBerry

More information

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone User Guide Vodafone Mobile Wi-Fi R206-Z Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: Step 1 4 Getting started: Step 2 5 Mobile Wi-Fi

More information

Cross-Platform Development

Cross-Platform Development 2 Cross-Platform Development Cross-Platform Development The world of mobile applications has exploded over the past five years. Since 2007 the growth has been staggering with over 1 million apps available

More information

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone

User Guide Vodafone Mobile Wi-Fi R206-Z. Designed by Vodafone User Guide Vodafone Mobile Wi-Fi R206-Z Designed by Vodafone Welcome to the world of mobile communications 1 Welcome 2 Device overview 3 Getting started: Step 1 4 Getting started: Step 2 5 Mobile Wi-Fi

More information

Mobile Development Frameworks Overview. Understand the pros and cons of using different mobile development frameworks for mobile projects.

Mobile Development Frameworks Overview. Understand the pros and cons of using different mobile development frameworks for mobile projects. Mobile Development Frameworks Overview Understand the pros and cons of using different mobile development frameworks for mobile projects. Mobile Solution Frameworks One of the biggest technological decisions

More information

Continuous Integration (CI) for Mobile Applications

Continuous Integration (CI) for Mobile Applications Continuous Integration (CI) for Mobile Applications Author: Guy Arieli, CTO, Experitest Table of Contents: What Continuous Integration Adds to the Mobile Development Process 2 What is Continuous Integration?

More information