Testing the Bluetooth Features of Mobile Apps

Testing a mobile app with Bluetooth features is all about making sure that the app can connect to Bluetooth devices and that all Bluetooth-related features within the app work as expected.

In this article, I use a mobile app as an example that our team is working on. This app connects to a Bluetooth device using the Bluetooth Low Energy (BLE) protocol. It also supports simultaneous connections to multiple devices. Additionally, it includes a feature called ‘pairing’ (not to be confused with Classic Bluetooth pairing), so ‘pairing’ will be considered as part of app app-designed flow below. As a result of this, the app saves device IDs, allowing future access to them without scanning.

Before you start testing Bluetooth in your app, you need to understand the Bluetooth device you’ll be using, understand its functionalities, the data it collects and stores, and how the firmware works under different conditions. It would be helpful to get the details of the communication protocol from the firmware developer.

Here is some basic information about the most common Bluetooth modes available: 

  • Classic Bluetooth – Classic Bluetooth is primarily designed to transmit larger amounts of data at higher speeds over short distances between various devices, such as smartphones, laptops, speakers, hands-free devices, and other gadgets. It’s important to note that Classic Bluetooth consumes more power than the alternative mode of BLE.
  • Bluetooth Low Energy (BLE) – Bluetooth Low Energy (also known as Bluetooth Smart or Bluetooth Light) is a type of Bluetooth that doesn’t use much power. It’s great for small, low-energy devices like fitness trackers and smartwatches.

‘Pairing’ and Connecting

The process of testing a mobile app with Bluetooth functionality involves confirming that the app can interact with Bluetooth devices. To establish a successful connection with a Bluetooth device, you need to confirm the required permissions based on the platform.

On Android 11 and lower, Google requires that apps using Bluetooth must request Location permission. Android 12 or higher use Nearby Devices permission group. Bluetooth permission should be accepted on iOS.

To confirm that connections work as expected when the permission is granted, you’ll want to test the following:

  1. Verify that the app can successfully find, ‘pair’, and establish connections with a Bluetooth device. 
  2. Verify that the app can maintain stable connections when ‘paired’ with multiple devices.

It is possible for a user to deny the required permissions when prompted by the mobile application. In such cases, the app will not be able to perform certain actions related to Bluetooth functionality. To thoroughly test denied permissions you could try the following:

  1. How does the mobile app behave when the user denies permissions during the mobile app’s ‘pairing’ process with a Bluetooth device?
  2. After ‘pairing’, remove the permission in Settings and check if a connection can still be established.
  3. Enabling Location Services may be required for successful Bluetooth scanning on Android devices. Test the app’s behavior during and after the ‘pairing’ process when Location Services are turned off.

Transferring and Storing Data

BLE works like this: A device has services, and each service has characteristics. Each characteristic can have one or several types (read, write, notify). Any client, in our case a mobile app, can get a list of services and characteristics, and then:

  1. Send data to a write characteristic when needed.
  2. Read data from a read characteristic when needed.
  3. Subscribe to a notify characteristic and automatically receive new data when available.

The rest is the specifics of how the device and the app work, which can be organized in any way that suits your needs. You’ll want to test the app’s ability to send and receive data over Bluetooth connections, including the following:

  1. Is the data collected in real-time?
  2. If the Bluetooth device records and stores data, try collecting a large amount of data and then synchronizing it with the application during the next connection. Pay attention to how the data is displayed in the application.

Bluetooth Connection Range

You will need to test the way the app behaves at different distances between the mobile app and Bluetooth devices. Observe how the app handles connections when devices move in and out of range.

Reconnection and Interruptions

Test the app’s ability to automatically reconnect to Bluetooth devices after temporary disconnections. Verify that the app handles interruptions without crashing or losing data. The disconnection can be caused by one of the parties, or if the signal is lost:

  1. Different distances between the Bluetooth devices (move in and out of range)
  2. Use a Faraday bag to isolate your device
  3. Power Bluetooth device on/off
  4. Turn on/off Bluetooth on your mobile device
  5. Close/Reopen the app
  6. Sign out and then sign back into the app
  7. Restart the phone and then launch the app from the recently running apps

Background and Foreground Behavior

When the app is running in the foreground, it can actively communicate with Bluetooth devices and continuously receive real-time data from them without limitations. This data can then be instantly displayed to the user according to the app’s purpose.

Once an app is put into the background, its behavior might change depending on the platform. Most platforms restrict background processes to avoid power consumption and potential performance issues. Verify if the app can maintain Bluetooth connections and receive data while operating in the background.

Here are several verification options for online mode:

  1. Check the database to confirm if the background data was successfully sent to the server.
  2. Use another phone with the same account to run the app and receive updates.
  3. Use an HTTP debugging proxy server application to verify if the app sends the requests (e.g. Charles).

Updating the Firmware of the Bluetooth Device

Below, you’ll find testing notes to verify the firmware update functionality:

  1. Updating the device via the app should be possible when the devices are successfully connected to each other.
  2. Ensure that the app can retrieve data from the Bluetooth device about the current firmware version. You can also verify the version using other applications, such as nRF Connect and LightBlue. Please refer to the image below.
  3. How the mobile app interacts with the backend to display firmware update availability:
    • The current device version is either lower or the same as the version available on the server.
    • Additionally, it’s possible that your test device has a higher version than what’s on the server. For instance, this can occur if you’re using the app for Bluetooth Low Energy connectivity testing to update the firmware.
  4. How long does the download take, and how much time is required to complete the update?
  5. The device connection should automatically re-establish once the firmware update is completed (Users should observe a transition from ‘Device Connection Lost’ to ‘Device Connected.’ )
  6. How does the mobile app behave If the firmware downloading is interrupted (e.g., due to an interrupted internet connection or closing the app)?
  7. How does the mobile app behave If the firmware update process is interrupted (e.g., moving your device out of the Bluetooth range, turning off Bluetooth, or closing the app)?

Offline Mode

Make sure to test how the app works without the internet. This is an important part of the testing if the app supports it.

A Tip From Experience

If you expected to see the green icon indicating a connection, but instead you see the red icon, try using BLE apps to check if your test device is visible there. If it is, there’s a good chance that there’s a bug in the app. Try to recall the steps you took and check the app’s logs for errors, if they are built into the app.

Conclusion

Bluetooth is complicated, and there are a lot of things that can prevent it from working as expected. That is why testing a Bluetooth app is so crucial to make sure it works in all of the various situations that will come up in the real world. Doing so carefully and thoroughly helps ensure the app functions smoothly for all of your users.

Related Blog Posts

We hope you’ve found this to be helpful and are walking away with some new, useful insights. If you want to learn more, here are a couple of related articles that others also usually find to be interesting:

Manage Your Windows Applications With Winget

Winget, Microsoft’s native package manager for Windows 10 (version 1709 and later) and Windows 11, offers a streamlined CLI for efficient application management. This blog post introduces Winget’s installation and basic commands for installing, updating, and removing software. It highlights the tool’s ability to manage non-Winget-installed apps and explores curated package lists for batch installations. The post also recommends top Winget packages, noting some may require a paid subscription.

Read More

Our Gear Is Packed and We're Excited to Explore With You

Ready to come with us? 

Together, we can map your company’s software journey and start down the right trails. If you’re set to take the first step, simply fill out our contact form. We’ll be in touch quickly – and you’ll have a partner who is ready to help your company take the next step on its software journey. 

We can’t wait to hear from you! 

Main Contact

This field is for validation purposes and should be left unchanged.

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the form below. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

Montage Portal

Montage Furniture Services provides furniture protection plans and claims processing services to a wide selection of furniture retailers and consumers.

Project Background

Montage was looking to build a new web portal for both Retailers and Consumers, which would integrate with Dynamics CRM and other legacy systems. The portal needed to be multi tenant and support branding and configuration for different Retailers. Trailhead architected the new Montage Platform, including the Portal and all of it’s back end integrations, did the UI/UX and then delivered the new system, along with enhancements to DevOps and processes.

Logistics

We’ve logged countless miles exploring the tech world. In doing so, we gained the experience that enables us to deliver your unique software and systems architecture needs. Our team of seasoned tech vets can provide you with:

Custom App and Software Development

We collaborate with you throughout the entire process because your customized tech should fit your needs, not just those of other clients.

Cloud and Mobile Applications

The modern world demands versatile technology, and this is exactly what your mobile and cloud-based apps will give you.

User Experience and Interface (UX/UI) Design

We want your end users to have optimal experiences with tech that is highly intuitive and responsive.

DevOps

This combination of Agile software development and IT operations provides you with high-quality software at reduced cost, time, and risk.

Trailhead stepped into a challenging project – building our new web architecture and redeveloping our portals at the same time the business was migrating from a legacy system to our new CRM solution. They were able to not only significantly improve our web development architecture but our development and deployment processes as well as the functionality and performance of our portals. The feedback from customers has been overwhelmingly positive. Trailhead has proven themselves to be a valuable partner.

– BOB DOERKSEN, Vice President of Technology Services
at Montage Furniture Services

Technologies Used

When you hit the trails, it is essential to bring appropriate gear. The same holds true for your digital technology needs. That’s why Trailhead builds custom solutions on trusted platforms like .NET, Angular, React, and Xamarin.

Expertise

We partner with businesses who need intuitive custom software, responsive mobile applications, and advanced cloud technologies. And our extensive experience in the tech field allows us to help you map out the right path for all your digital technology needs.

  • Project Management
  • Architecture
  • Web App Development
  • Cloud Development
  • DevOps
  • Process Improvements
  • Legacy System Integration
  • UI Design
  • Manual QA
  • Back end/API/Database development

We partner with businesses who need intuitive custom software, responsive mobile applications, and advanced cloud technologies. And our extensive experience in the tech field allows us to help you map out the right path for all your digital technology needs.

Our Gear Is Packed and We're Excited to Explore with You

Ready to come with us? 

Together, we can map your company’s tech journey and start down the trails. If you’re set to take the first step, simply fill out the contact form. We’ll be in touch – and you’ll have a partner who cares about you and your company. 

We can’t wait to hear from you! 

Thank you for reaching out.

You’ll be getting an email from our team shortly. If you need immediate assistance, please call (616) 371-1037.