RadioSettings

Differences between revisions 8 and 9
Revision 8 as of 2014-09-22 08:24:03
Size: 3435
Editor: 192
Comment:
Revision 9 as of 2014-11-17 20:02:25
Size: 4038
Editor: 209-6-88-107
Comment: added missing test case ( storage ) from gdoc
Deletions are marked like this. Additions are marked like this.
Line 72: Line 72:

== 3. Check storage of technology preference ==

=== Purpose ===
This test case verifies that the modem stores the radio technology preference between restarts.

Steps:
{{{
- set-tech-preference gsm
- get-tech-preference
# Check that the current technology is “gsm”
- Power off and then on the phone
- get-tech-preference
# Check that the current technology is “gsm”
- set-tech-preference any
- get-tech-preference
# Check that the current technology is “any”
- Power off and then on the phone
- get-tech-preference
# Check that the current technology is “any”
}}}


Radio Settings Tests

Note - Supported radio settings are modem dependant. Response to setting attempt of unsupported technology preference varies between different modems. Modem can either respond with error code or subtly change the setting to value it considers to be close of the requested setting. Also storing responsability of preference may vary between modems. This means that value might be different than what was set with certain modems after bootup. These tests assume that test setup supports edge, hspa, umts and gsm.

1. Verify Interface Availablility / Tech Preference

Purpose

This test case ensures the presence of the org.ofono.RadioSettings interface.

Steps:

1. Run script list-modems. 
2. Check that listed interfaces include org.ofono.RadioSettings with properties 
   TechnologyPreference, ModemTechnologies and FastDormancy. Exact values of properties depend about the 
   previous usage of the tested card, used operator, contract and modem.  

Automation Status

Automation of the RadioSettings tests is currently blocked on improvements to the emulator's telephony support.

2. Change technology preference

Purpose

This test case verifies that we can change the radio technology preference.

Steps:

1. Run script set-tech-preference umts
2. Run script get-tech-preference
4. Check that the current technology is “umts”. 
5. Run script list-modems
6. The output of the Technology/Bearer properties must eventually have one of the following values:
       [ org.ofono.NetworkRegistration ]
         Technology = [umts|hspa]
       [ org.ofono.ConnectionManager ]
         Bearer = [umts|hsdpa|hsupa|hspa]
   Note that technology change is not immediate. It takes some time to drop out of old
   network and connect to another. 
7. Run script set-tech-preference gsm
8. Run script get-tech-preference
9. Check that the current technology is “gsm”
10. Run test script list-modems
11. The output of the Technology/Bearer properties must be one of the following values:
       [ org.ofono.NetworkRegistration ]
         Technology = [gsm|edge]
       [ org.ofono.ConnectionManager ]
         Bearer = [gsm|edge]
    Also here note that technology change is not immediate. It takes some time to drop out 
    of old network and connect to another. 
12. Run test script set-tech-preference any
13. Run test script get-tech-preference
14. Check that the current technology is “any”. Note that with "any" preference values given by  
    NetworkRegistration and ConnectionManager interfaces depend about modem and available network support. 
    Note that if modem supports data-only LTE running the list-modems makes it to drop to umts or gsm. In 
    that case only way to verify the result with existing scripts is to run monitor-ofono on the background. 

Automation Status

Automation of the RadioSettings tests is currently blocked on improvements to the emulator's telephony support.

3. Check storage of technology preference

Purpose

This test case verifies that the modem stores the radio technology preference between restarts.

Steps:

- set-tech-preference gsm
- get-tech-preference
# Check that the current technology is “gsm”
- Power off and then on the phone
- get-tech-preference
# Check that the current technology is “gsm”
- set-tech-preference any
- get-tech-preference
# Check that the current technology is “any”
- Power off and then on the phone
- get-tech-preference
# Check that the current technology is “any”

Process/Merges/TestPlans/ofono/RadioSettings (last edited 2016-07-07 06:07:29 by alfonsosanchezbeato)