Here are some simple examples to learn unit testing android code using robolectric quickly.
Robolectric examples :
C.Karthik's Dev Blog
Software Engineer
Thursday, April 25, 2013
Wednesday, April 24, 2013
Android - Robolectric - Unit testing request location updates (LocationManager)
Here is the android code to register for network, GPS and passive location updates on activity create
Android Code to test :
To test the above code,
1) First you need to create a mock location
2) Get the ShadowLocationManager using the robolectric's shadowOf method
3) This shadow Object has a method called 'simulateLocation' to mock a location update.
4) Now we can assert the actual value obtained by the listener with the expected value
Robolectric Test :
Android Code to test :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends Activity implements LocationListener { | |
private Location latestLocation; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.main_layout); | |
initLocationListener(); | |
} | |
private void initLocationListener() { | |
LocationManager locationManager = (LocationManager) | |
getSystemService(Context.LOCATION_SERVICE); | |
List<String> allProviders = locationManager.getAllProviders(); | |
for (String provider : allProviders) { | |
locationManager.requestLocationUpdates(provider, 0, 0, this); | |
} | |
} | |
@Override | |
public void onLocationChanged(Location location) { | |
latestLocation = location; | |
} | |
public Location latestLocation() { | |
return latestLocation; | |
} | |
@Override | |
public void onStatusChanged(String s, int i, Bundle bundle) {} | |
@Override | |
public void onProviderDisabled(String s) {} | |
@Override | |
public void onProviderEnabled(String s) {} | |
} |
To test the above code,
1) First you need to create a mock location
2) Get the ShadowLocationManager using the robolectric's shadowOf method
3) This shadow Object has a method called 'simulateLocation' to mock a location update.
4) Now we can assert the actual value obtained by the listener with the expected value
Robolectric Test :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(RobolectricTestRunner.class) | |
public class MainActivityTest { | |
private MainActivity mainActivity; | |
@Before | |
public void setUp() { | |
mainActivity = new MainActivity(); | |
mainActivity.onCreate(null); | |
} | |
@Test | |
public void shouldReturnTheLatestLocation() { | |
LocationManager locationManager = (LocationManager) | |
Robolectric.application.getSystemService(Context.LOCATION_SERVICE); | |
ShadowLocationManager shadowLocationManager = shadowOf(locationManager); | |
Location expectedLocation = location(NETWORK_PROVIDER, 12.0, 20.0); | |
shadowLocationManager.simulateLocation(expectedLocation); | |
Location actualLocation = mainActivity.latestLocation(); | |
assertEquals(expectedLocation, actualLocation); | |
} | |
private Location location(String provider, double latitude, double longitude) { | |
Location location = new Location(provider); | |
location.setLatitude(latitude); | |
location.setLongitude(longitude); | |
location.setTime(System.currentTimeMillis()); | |
return location; | |
} | |
} |
Saturday, April 20, 2013
Android - Robolectric - Unit testing start of an activity
Here is the android code to start an activity on click of a button
Android Code to test :
To test the above code,
1) First, You can call button's performClick to simulate a click event
2) Now, Get the shadowActivity using the robolectric's shadowOf method
3) This shadow Object has all the methods to test an activity
4) We can get the next started activity's Intent, using the getNextStartedActivity() method and assert it
Robolectric Test :
Android Code to test :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends Activity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.main_layout); | |
} | |
public void onButtonClick(View v) { | |
startActivity(new Intent(this, SecondActivity.class)); | |
} | |
} |
To test the above code,
1) First, You can call button's performClick to simulate a click event
2) Now, Get the shadowActivity using the robolectric's shadowOf method
3) This shadow Object has all the methods to test an activity
4) We can get the next started activity's Intent, using the getNextStartedActivity() method and assert it
Robolectric Test :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(RobolectricTestRunner.class) | |
public class MainActivityTest { | |
private MainActivity mainActivity; | |
private Button button; | |
@Before | |
public void setUp() { | |
mainActivity = new MainActivity(); | |
mainActivity.onCreate(null); | |
button = (Button) mainActivity.findViewById(R.id.open_button); | |
} | |
@Test | |
public void shouldStartTheSecondActivityOnButtonClick() throws Exception { | |
ShadowActivity shadowActivity = shadowOf(mainActivity); | |
button.performClick(); | |
Intent startedIntent = shadowActivity.getNextStartedActivity(); | |
assertThat(startedIntent.getComponent().getClassName(), | |
equalTo(SecondActivity.class.getName())); | |
} | |
} |
Monday, April 15, 2013
Android - Robolectric- Unit testing send SMS
Sending SMS in android is so simple, you just have to get the default SMSManager and call the sendTextMessage
Android Code :
Testing the above code is even simpler,
1) Get the shadowSMSManager
2) From it, we can get the lastSentTextMessageParams, which has the details abt the last sent SMS.
3) Assert with the expected values
Robolectric Test :
Android Code :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void sendSMS(String phoneNumber, String message) { | |
SmsManager smsManager = SmsManager.getDefault(); | |
smsManager.sendTextMessage(phoneNumber, null, message, null, null); | |
} |
Testing the above code is even simpler,
1) Get the shadowSMSManager
2) From it, we can get the lastSentTextMessageParams, which has the details abt the last sent SMS.
3) Assert with the expected values
Robolectric Test :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void shouldSendSMSToTheGivenPhoneNumber() { | |
String message = "Android is cool"; | |
String phoneNumber = "123-123-1222"; | |
smsTestActivity.sendSMS(phoneNumber, message); | |
ShadowSmsManager shadowSmsManager = shadowOf(SmsManager.getDefault()); | |
ShadowSmsManager.TextSmsParams lastSentTextMessageParams = shadowSmsManager.getLastSentTextMessageParams(); | |
assertEquals(phoneNumber, lastSentTextMessageParams.getDestinationAddress()); | |
assertEquals(message, lastSentTextMessageParams.getText()); | |
} |
Sunday, April 14, 2013
Android - Robolectric - Unit testing setContentView
Normally the first thing we do in an Activity is to set the content view to a layout xml.
For example consider the below TestActivity, onCreate it sets its contentView to test_layout.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TestActivity extends Activity { | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.test_layout); | |
} | |
} |
And the test_layout.xml is (Note : id of the root element android:id="@+id/test_layout_root")
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:id="@+id/test_layout_root" | |
android:layout_height="match_parent" | |
android:layout_width="wrap_content" | |
... | |
... | |
</TableLayout> |
In the robolectric test, we need to get the activity's content view id and assert it with the layout id
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(RobolectricTestRunner.class) | |
public class TestActivityTest { | |
private TestActivity testActivity; | |
@Before | |
public void setup() { | |
testActivity = new TestActivity(); | |
testActivity.onCreate(null); | |
} | |
@Test | |
public void shouldSetTheTestLayoutOnCreate() { | |
assertEquals(R.id.test_layout_root, shadowOf(testActivity).getContentView().getId()); | |
} | |
} |
Subscribe to:
Posts (Atom)