SlideShare a Scribd company logo
Oh you test?
cool test bro
Paul Blundell
@blundell_apps
blog.blundellapps.com github.com/blundell
AutoTrader
- Define different types of testing
- Clarify testing & naming
- Benefits of each type of testing
- Codez available to help you
- Some architecture hints & tips
Abstract
Test Types
- Unit Tests
- Integration Tests
- Functional Tests
- Acceptance Tests
- Mutation Tests
- Vendor Tests
- Fuzz Tests
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Test a single block of code / function
- Test independently from collaborators
- Only test against interface definitions
- New behaviour : new unit test
Unit Tests - What
@Test
public void testGetLastPathSegmentReturnsFilename() {
SecureUrl secureUrl = new SecureUrl(
"http://test.com/some/random/url/filename.mp4");
String lastPathSegment = secureUrl.getLastPathSegment();
assertThat(lastPathSegment).isEqualTo("filename.mp4");
}
Unit Tests - Example
- Daily development work
- Allow for continuous refactoring
- Test Driven Development
- Documentation for legacy developers
Unit Tests - When
Unit Tests - Where
- All building blocks
- All levels of an application architecture
- Help pinpoint a place of failure
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Highlight UI issues
- Guarantee combined system integrity
- Prove integration of components
Unit Tests - Won’t
- Interaction between two or more classes
- Use real objects
- Can use threads
- Can access database
Integration Tests - What
@Test(expected = IllegalStateException.class)
public void testFindFragmentWithUnknownTagResourceIdThrowsError() {
Activity activity = Robolectric.buildActivity(Activity.class).get();
FragmentManager fM = activity.getFragmentManager();
Resources resources = activity.getResources();
TaskFragmentFinder finder = new TaskFragmentFinder(resources);
finder.findTaskFragment(fM, UNKNOWN_TASK_ID);
}
Integration Tests - Example
- Ensure parity of collaboration between objects
- Testing expected changes - db schema
- Testing environment integration
Integration Tests - When
- All building blocks
- Interactions between layers
- Help pinpoint integration issues
Integration Tests - Where
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Highlight UI issues
- Show specific code block of failure
- Give instant feedback
- Hard to diagnose some failures
- Full system confidence
Integration Tests - Won’t
- Whole system, nearly end to end
- Don’t care about intermediary steps
- Slower to run
- Mostly controller driven
Functional Tests - What
public void testShowsFilmInformationAfterApiCallFinished() {
String expectedTitle = "Swimming Pool";
startFilmActivity();
onData(is(instanceOf(Film.class)))
.atPosition(FIRST)
.onChildView(withId(R.id.film_text_view_title))
.check(matches(allOf(isDisplayed(),
withText(equalToIgnoringCase(expectedTitle)))));
}
Functional Tests - Example
- Evaluate expectation of sum of the parts
- Confirming feature completion
- TDD Keep you focused
- Confidence in features of system
Functional Tests - When
- Span whole architecture
- Touching live systems
- Above integrated components
Functional Tests - Where
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Show specific broken units of code
- Lack of knowledge of the details
- Give quick feedback for specific problems
Functional Tests - Won’t
- Black box tests
- From user perspective
- Specialised form of functional tests
- Model the final complete system
Acceptance Tests - What
public void testRotationInBrowseScreenMaintainsActionBar() {
swipeToBrowseScreen();
Activity activity = rotate(this);
assertActionBarOpen(activity);
}
private void assertActionBarOpen(Activity activity) {
assertTrue("Expected ActionBar open but was closed.",
activity.getActionBar().isShowing());
}
Acceptance Tests - Example
- User interface is integrated
- TDD feedback loop
- Capturing differences across devices
- Screenshots for greater feedback
Acceptance Tests - When
- Span whole architecture
- Touching live systems
- Above integrated components
Acceptance Tests - Where
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Run very fast
- No feedback upon cause (just symptoms)
- Help day-to-day incremental improvements
Acceptance Tests - Won’t
- Mutate the state of your code
- Insert faults in your software
- Unit tests are ran
- Tests fail “mutant is killed” thumbs up
- Tests pass “mutant survived” thumbs down
Mutation Tests - What
Oh so you test? - A guide to testing on Android from Unit to Mutation
Mutation Tests - Example
if (a == b) {
// do something
}
will be mutated to
if (a != b) {
// do something
}
Different
Mutators:
if (a == b) {
// do something
}
will be mutated to
if (true) {
// do something
}
public int method(int i) {
i++;
return i;
}
will be mutated to
public int method(int i) {
i--;
return i;
}
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Find holes in your test suite
- Depends on % code coverage
- Confidence in your unit tests
- Complexity of your problem is high
Mutation Tests - When
- Outside of your code
- Around your test suite
- Not written yourself but configured
- Configuration is key
Mutation Tests - Where
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Give any confidence in working software
- Show collaboration between objects
- Prove if the application actually works
- Help at all without unit tests
Mutation Tests - Won’t
- can be unit, integration, functional
- learn how 3rd
party libraries work
- confirming understanding
- safety net for outside changes
Vendor Tests - What
@Test
public void setAndGetActiveSessionAreTrustworthy() {
Session.setActiveSession(mockFacebookSession);
FacebookSession session = Session.getActiveSession();
assertThat(mockFacebookSession).isEqualTo(session);
}
Vendor Tests - Example
- Incorporating 3rd party library
- Not beneficial to add retrospectively
- Replacing libraries with confidence
- Wanting to ‘in house’ a library feature
Vendor Tests - When
- Around your 3rd party libraries
- One off test
- Suite inside unit tests
Vendor Tests - Where
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Confirm your domain code
- Replace unit, integration or acceptance tests
- Adds overhead to development
Vendor Tests - Won’t
- Feeding your software random data
- Wait to see what breaks
- It is not logical
- Android = Application Exerciser Monkey
- Combinatory with other tools
Fuzz Tests - What
adb shell monkey -p com.your.package.name -v 50000
Fuzz Tests - Example
// Allowing start of Intent { act=mubi.intent.action.ON_BOARD cmp=com.mubi/.onboard.OnboardActivity } in package com.
mubi
:Sending Touch (ACTION_DOWN): 0:(1091.0,659.0)
:Sending Touch (ACTION_UP): 0:(1085.1356,667.17145)
:Sending Touch (ACTION_DOWN): 0:(467.0,404.0)
:Sending Touch (ACTION_UP): 0:(472.5769,398.45746)
// CRASH: com.mubi (pid 754)
// Short Msg: java.lang.IllegalStateException
// Long Msg: java.lang.IllegalStateException: Fragment WatchFragment{413d0d98} is not currently in the FragmentManager
// Build Label: google/nakasi/grouper:4.1.1/JRO03H/405518:user/release-keys
// Build Changelist: 405518
// Build Time: 1364293068000
// java.lang.IllegalStateException: Fragment WatchFragment{413d0d98} is not currently in the FragmentManager
// at android.app.FragmentManagerImpl.saveFragmentInstanceState(FragmentManager.java:586)
// at android.support.v13.app.FragmentStatePagerAdapter.destroyItem(FragmentStatePagerAdapter.java:140)
// at android.support.v4.view.ViewPager.setAdapter(ViewPager.java:413)
// at com.mubi.onboard.OnboardActivity.updateViewPager(OnboardActivity.java:139)
// at com.mubi.onboard.OnboardActivity.onRetrieved(OnboardActivity.java:132)
// at com.mubi.onboard.OnboardTaskFragment$3.run(OnboardTaskFragment.java:77)
// at android.os.Handler.handleCallback(Handler.java:725)
// at android.os.Handler.dispatchMessage(Handler.java:92)
// at android.os.Looper.loop(Looper.java:137)
// at android.app.ActivityThread.main(ActivityThread.java:5195)
// at java.lang.reflect.Method.invokeNative(Native Method)
// at java.lang.reflect.Method.invoke(Method.java:511)
// at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
// at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
// at com.android.internal.os.ZygoteInit.main(Native Method)
// at dalvik.system.NativeStart.main(Native Method)
//
** Monkey aborted due to error.
Events injected: 4191
- From the beginning
- Thin slice (UI)
- Continuous integration, faster feedback
- Identifying differences across Android versions
- Highlight refactoring effort
Fuzz Tests - When
- Black box testing
- On top of your application (Android)
- Custom fuzz testing - input level
- Continuous integration
Fuzz Tests - Where
Oh so you test? - A guide to testing on Android from Unit to Mutation
- Prove application is running correctly
- Only reports crashes
- Highlights quality rather than bugs
- Not a replacement for unit, integration etc
Fuzz Tests - Won’t
Helpers / Libraries
- Brief overview
- What test types it benefits
- Any positives
- Any negatives
Mockito
//mock creation
List mockedList = mock(List.class);
//using mock object - doesn’t throw exceptions
mockedList.add(“one”);
//selective & explicit verification
verify(mockList).add(“one”);
Mockito is a mocking framework that tastes really good. It lets you write beautiful tests with clean
& simple API. Mockito doesn't give you a hangover because the tests are very readable and they
produce clean verification errors.
- Unit Tests : mocking dependencies
- Integration Tests : questionable use
Fest
FEST is a collection of libraries, whose mission is to simplify software testing.
No more confusion about the order of the "expected" and "actual" values. Our assertions are very
readable as well: they read very close to plain English, making it easier for non-technical people
to read test code.
Regular JUnit:
assertEquals(View.GONE, view.getVisibility());
Regular FEST:
assertThat(view.getVisibility()).isEqualTo(View.GONE);
FEST Android:
assertThat(view).isGone(); - Unit Tests
- Integration Tests
- Functional Tests
- Acceptance Tests : anywhere you do assertions
improving readability
“Robolectric is a unit test framework that de-fangs the Android SDK jar so you can test-drive the
development of your Android app. Tests run inside the JVM on your workstation in seconds. “
Robolectric
@RunWith(RobolectricTestRunner.class)
public class ViewingQueryTaskTest {
@Test
public void testAlwaysClosesCursor() {
viewingQueryTask.run();
verify(mockCursor).close();
}
}
- Unit tests : for day to day activity including TDD
- Integration tests : to handle Android
- Positive : speed vs on device tests
- Negative : the rabbit hole
“Robotium is an Android test automation framework. Robotium makes it easy to write powerful
and robust automatic black-box UI tests. With the support of Robotium, test case developers can
write functional and user acceptance test scenarios, spanning multiple Android activities.“
Robotium
- Functional tests : check when you click a button the
shared preferences are updated
- Acceptance tests : ensure features have been
completed and take screenshots for feedback
public class EditorTest extends ActivityInstrumentationTestCase2<EditorActivity> {
private Solo solo;
public void setUp() throws Exception {
solo = new Solo(getInstrumentation(), getActivity());
}
public void testFileExtensionIsInMenu() {
solo.sendKey(Solo.MENU);
solo.clickOnText("More");
solo.clickOnText("Preferences");
solo.clickOnText("Edit File Extensions");
Assert.assertTrue(solo.searchText("rtf"));
}
}
Use Espresso to write concise, beautiful, and reliable Android UI tests
Espresso tests state expectations, interactions, and assertions clearly without the distraction of boilerplate
content, custom infrastructure, or messy implementation details getting in the way.
Espresso
public void testSayHello() {
onView(withId(R.id.name_field).perform(typeText("Dave"));
onView(withId(R.id.greet_button)).perform(click());
onView(withText("Hello Dave!")).check(matches(isDisplayed()));
}
- Functional tests : check when you click a button the shared
preferences are updated
- Acceptance tests : ensure features have been completed, doesn’t
support screenshots as an API but you can still do it
http://tiny.cc/disableAnim
http://tiny.cc/espressoScreenshot
The Monkey is a program that runs on your emulator or device and generates pseudo-random
streams of user events such as clicks, touches, or gestures, as well as a number of system-level
events. You can use the Monkey to stress-test applications that you are developing, in a random
yet repeatable manner.
UI Exerciser Monkey
adb shell monkey -p com.your.package.name -v
50000
- Fuzz tests : as already discussed allows you to test input events
Don’t get the Application Exerciser Monkey & the Monkey Runner mixed
up.
App Ex Monkey – Fuzz Testing
Monkey Runner – Android device control using Python scripts
The uiautomator testing framework lets you test your user interface (UI) efficiently by
creating automated functional UI testcases that can be run against your app on one or more
devices.
UI Automator
extend UIAutomatorTestCase
UIObject & UISelector
Min SDK 16 Jelly Bean
adb shell uiautomator runtest MyTests.jar -c com.example.MyApp
Tests are in the jar, and the package is the package of the app under test.
- Acceptance tests : acts just like a user.
Architecture Empower / Encumber
- Allows for separation of concerns
- Java only module
- Directed testing
- Encapsulating change
- Reuse
Modules / Modularity Empowers
- Readable & flexible CI builds
- Flavors, build types
- Swapping out whole components
- Greater range of testing flexibility
Gradle Empowers
- Test reliability
- Test speed
- Data integrity
Mock Services Empower
- Hexagonal architecture
- Insulates system from outside dependencies
- Empowers testing
- Disconnect from platform requirements
Ports & Adapters Empower
S.O.L.I.D Empowers
- Quality of your code reflects quality of your
tests
- Object Oriented programming lends itself to
quality testing
- TDD
- Static methods are evil
Low Code Quality Encumbers
- Framework lock in
- Google Play services
- Android code examples
- Activity life cycle
Android (frameworks) Encumber
- Believe in testing
- Believe in clean code
- Software craftsmanship
- TDD
- Be energetic
- Enjoy it
YOU Empower || Encumber
Monkey Runner
Spoon
Jmock
Hexagonal Architecture
Contract Tests
Others
Groovy Tests
Static analysis tools
Charles
cURL
Postman
Google sizes (small medium large)
We are hiring developers
Online Blogs
Martin Fowler http://martinfowler.com/tags/testing.html
JB Rainsberger http://blog.thecodewhisperer.com/
Kevin Rutherford http://silkandspinach.net/
Robert Martin https://sites.google.com/site/unclebobconsultingllc/blogs-by-robert-martin
References
More Info
Android Fuzz Tests http://developer.android.com/tools/help/monkey.html
Hardcore Fuzz Tests http://www.ibm.com/developerworks/library/j-fuzztest/index.html
Vendor Tests https://www.youtube.com/watch?v=47nuBTRB51c#t=23m34s
Mutation Tests http://pitest.org/
Google Testing Opinion http://googletesting.blogspot.co.uk/2010/12/test-sizes.html
Mockito https://code.google.com/p/mockito/
Mocking Frameworks http://blogs.telerik.com/skimedic/posts/13-07-23/top-5-reasons-to-use-a-mocking-framework
Android Fest https://github.com/square/fest-android
Robolectric http://robolectric.org/
Robotium https://code.google.com/p/robotium/
Espresso https://code.google.com/p/android-test-kit/wiki/Espresso
UI Automator http://developer.android.com/tools/help/uiautomator/index.html
SOLID Principles http://www.its-on-the-internet-so-it-must-be-true.com/2012/06/solid-principles.html
Paul Blundell
Questions?
@blundell_apps

More Related Content

PDF
Unit Testing
PPT
Unit testing with java
PPTX
Principles and patterns for test driven development
PPTX
Junit4&testng presentation
ODP
Testing In Java
PDF
Unit testing, principles
PDF
How and what to unit test
PPTX
Introduction to testing with MSTest, Visual Studio, and Team Foundation Serve...
Unit Testing
Unit testing with java
Principles and patterns for test driven development
Junit4&testng presentation
Testing In Java
Unit testing, principles
How and what to unit test
Introduction to testing with MSTest, Visual Studio, and Team Foundation Serve...

What's hot (20)

PPTX
Refactoring Legacy Web Forms for Test Automation
ODP
Test ng
PDF
An Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
PPT
Testing and Mocking Object - The Art of Mocking.
PDF
Software Testing
PPTX
Unit Testing in Java
ODP
Embrace Unit Testing
PPT
Automated Unit Testing
PPTX
Codeception
PDF
Clean Unit Test Patterns
PPTX
.Net Unit Testing with Visual Studio 2010
PPTX
Testing for Android: When, Where, and How to Successfully Use Test Automation
PDF
Workshop unit test
PPTX
Unit Tests And Automated Testing
DOCX
Test driven development and unit testing with examples in C++
PPTX
Unit Testing Android Applications
PPT
Google mock for dummies
PDF
Unit Test + Functional Programming = Love
PDF
Apache maven, a software project management tool
Refactoring Legacy Web Forms for Test Automation
Test ng
An Introduction to JUnit 5 and how to use it with Spring boot tests and Mockito
Testing and Mocking Object - The Art of Mocking.
Software Testing
Unit Testing in Java
Embrace Unit Testing
Automated Unit Testing
Codeception
Clean Unit Test Patterns
.Net Unit Testing with Visual Studio 2010
Testing for Android: When, Where, and How to Successfully Use Test Automation
Workshop unit test
Unit Tests And Automated Testing
Test driven development and unit testing with examples in C++
Unit Testing Android Applications
Google mock for dummies
Unit Test + Functional Programming = Love
Apache maven, a software project management tool
Ad

Viewers also liked (20)

PDF
PPTX
Judge my gym - GymBabes Walkthrough
PPT
Justice ,justice shall you pursue
PPTX
Kesetimbangan kimia
PPTX
Rumus kima & persamaan kimia
PPTX
Rumus kima & persamaan kimia
PPTX
Rumus kima & persamaan kimia
PPTX
Y U NO CRAFTSMAN
PPT
Phoenix presentation
PPT
Roditelskoe sobranie 11klassy
PPTX
Open house2
PPT
Entrepreneurship from a regional market perspective
PDF
Panduan microsoft word_20071
PDF
Survival of the Continuist
PPTX
สอบปฏิบัติ
PPTX
школа – дом, в котором наше детство
DOC
Fundamentals of relationship marketing a relationship-perspective_chapter1 se...
PDF
A paixão de nosso senhor jesus cristo v. ii
PPTX
Open Closed Principle kata
PPTX
An easy way to automate complex UI
Judge my gym - GymBabes Walkthrough
Justice ,justice shall you pursue
Kesetimbangan kimia
Rumus kima & persamaan kimia
Rumus kima & persamaan kimia
Rumus kima & persamaan kimia
Y U NO CRAFTSMAN
Phoenix presentation
Roditelskoe sobranie 11klassy
Open house2
Entrepreneurship from a regional market perspective
Panduan microsoft word_20071
Survival of the Continuist
สอบปฏิบัติ
школа – дом, в котором наше детство
Fundamentals of relationship marketing a relationship-perspective_chapter1 se...
A paixão de nosso senhor jesus cristo v. ii
Open Closed Principle kata
An easy way to automate complex UI
Ad

Similar to Oh so you test? - A guide to testing on Android from Unit to Mutation (20)

PDF
An introduction to unit testing
PPTX
Presentation
PPTX
Test-Driven Development
PPTX
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
PPT
Unit testing php-unit - phing - selenium_v2
PPT
Testing Options in Java
PPT
Testing And Drupal
PPTX
Unit testing using Munit Part 1
ODP
Grails unit testing
PDF
TDD Workshop UTN 2012
PPTX
Skillwise Unit Testing
PDF
Into The Box 2018 | Assert control over your legacy applications
PPS
Why Unit Testingl
PPS
Why Unit Testingl
PPS
Why unit testingl
PPTX
Unit tests and TDD
PDF
Modern Python Testing
PPTX
Coldbox developer training – session 4
PDF
Unit testing - A&BP CC
PPTX
Angular Unit Testing
An introduction to unit testing
Presentation
Test-Driven Development
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Unit testing php-unit - phing - selenium_v2
Testing Options in Java
Testing And Drupal
Unit testing using Munit Part 1
Grails unit testing
TDD Workshop UTN 2012
Skillwise Unit Testing
Into The Box 2018 | Assert control over your legacy applications
Why Unit Testingl
Why Unit Testingl
Why unit testingl
Unit tests and TDD
Modern Python Testing
Coldbox developer training – session 4
Unit testing - A&BP CC
Angular Unit Testing

More from Paul Blundell (12)

PDF
In 10 mins a software crafting journey
PDF
The Novoda Craft University
PPTX
Android Things - Solid Foundations
PPTX
Http Caching for the Android Aficionado
PPTX
My perspective on MVP and architecture discussions
PPTX
Java Patterns - Strategy
PDF
Google I/O 2015 Android & Tech Announcements
PDF
Android Jam - Services & Notifications - Udacity Lesson 6
PDF
Android Jam - Loaders - Udacity Lesson 4c
PDF
Android Jam - ContentProviders - Udacity Lesson 4b
PPTX
Android Jam - Activity Lifecycle & Databases - Udacity Lesson 4a
PPTX
Jenkins project based authorization
In 10 mins a software crafting journey
The Novoda Craft University
Android Things - Solid Foundations
Http Caching for the Android Aficionado
My perspective on MVP and architecture discussions
Java Patterns - Strategy
Google I/O 2015 Android & Tech Announcements
Android Jam - Services & Notifications - Udacity Lesson 6
Android Jam - Loaders - Udacity Lesson 4c
Android Jam - ContentProviders - Udacity Lesson 4b
Android Jam - Activity Lifecycle & Databases - Udacity Lesson 4a
Jenkins project based authorization

Recently uploaded (20)

PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Classroom Observation Tools for Teachers
PDF
Insiders guide to clinical Medicine.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
master seminar digital applications in india
PPTX
Pharma ospi slides which help in ospi learning
PDF
RMMM.pdf make it easy to upload and study
PPTX
Institutional Correction lecture only . . .
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
Final Presentation General Medicine 03-08-2024.pptx
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
human mycosis Human fungal infections are called human mycosis..pptx
Microbial disease of the cardiovascular and lymphatic systems
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Classroom Observation Tools for Teachers
Insiders guide to clinical Medicine.pdf
VCE English Exam - Section C Student Revision Booklet
2.FourierTransform-ShortQuestionswithAnswers.pdf
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPH.pptx obstetrics and gynecology in nursing
master seminar digital applications in india
Pharma ospi slides which help in ospi learning
RMMM.pdf make it easy to upload and study
Institutional Correction lecture only . . .
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
O5-L3 Freight Transport Ops (International) V1.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx

Oh so you test? - A guide to testing on Android from Unit to Mutation

  • 1. Oh you test? cool test bro
  • 3. - Define different types of testing - Clarify testing & naming - Benefits of each type of testing - Codez available to help you - Some architecture hints & tips Abstract
  • 4. Test Types - Unit Tests - Integration Tests - Functional Tests - Acceptance Tests - Mutation Tests - Vendor Tests - Fuzz Tests
  • 6. - Test a single block of code / function - Test independently from collaborators - Only test against interface definitions - New behaviour : new unit test Unit Tests - What
  • 7. @Test public void testGetLastPathSegmentReturnsFilename() { SecureUrl secureUrl = new SecureUrl( "http://test.com/some/random/url/filename.mp4"); String lastPathSegment = secureUrl.getLastPathSegment(); assertThat(lastPathSegment).isEqualTo("filename.mp4"); } Unit Tests - Example
  • 8. - Daily development work - Allow for continuous refactoring - Test Driven Development - Documentation for legacy developers Unit Tests - When
  • 9. Unit Tests - Where - All building blocks - All levels of an application architecture - Help pinpoint a place of failure
  • 11. - Highlight UI issues - Guarantee combined system integrity - Prove integration of components Unit Tests - Won’t
  • 12. - Interaction between two or more classes - Use real objects - Can use threads - Can access database Integration Tests - What
  • 13. @Test(expected = IllegalStateException.class) public void testFindFragmentWithUnknownTagResourceIdThrowsError() { Activity activity = Robolectric.buildActivity(Activity.class).get(); FragmentManager fM = activity.getFragmentManager(); Resources resources = activity.getResources(); TaskFragmentFinder finder = new TaskFragmentFinder(resources); finder.findTaskFragment(fM, UNKNOWN_TASK_ID); } Integration Tests - Example
  • 14. - Ensure parity of collaboration between objects - Testing expected changes - db schema - Testing environment integration Integration Tests - When
  • 15. - All building blocks - Interactions between layers - Help pinpoint integration issues Integration Tests - Where
  • 17. - Highlight UI issues - Show specific code block of failure - Give instant feedback - Hard to diagnose some failures - Full system confidence Integration Tests - Won’t
  • 18. - Whole system, nearly end to end - Don’t care about intermediary steps - Slower to run - Mostly controller driven Functional Tests - What
  • 19. public void testShowsFilmInformationAfterApiCallFinished() { String expectedTitle = "Swimming Pool"; startFilmActivity(); onData(is(instanceOf(Film.class))) .atPosition(FIRST) .onChildView(withId(R.id.film_text_view_title)) .check(matches(allOf(isDisplayed(), withText(equalToIgnoringCase(expectedTitle))))); } Functional Tests - Example
  • 20. - Evaluate expectation of sum of the parts - Confirming feature completion - TDD Keep you focused - Confidence in features of system Functional Tests - When
  • 21. - Span whole architecture - Touching live systems - Above integrated components Functional Tests - Where
  • 23. - Show specific broken units of code - Lack of knowledge of the details - Give quick feedback for specific problems Functional Tests - Won’t
  • 24. - Black box tests - From user perspective - Specialised form of functional tests - Model the final complete system Acceptance Tests - What
  • 25. public void testRotationInBrowseScreenMaintainsActionBar() { swipeToBrowseScreen(); Activity activity = rotate(this); assertActionBarOpen(activity); } private void assertActionBarOpen(Activity activity) { assertTrue("Expected ActionBar open but was closed.", activity.getActionBar().isShowing()); } Acceptance Tests - Example
  • 26. - User interface is integrated - TDD feedback loop - Capturing differences across devices - Screenshots for greater feedback Acceptance Tests - When
  • 27. - Span whole architecture - Touching live systems - Above integrated components Acceptance Tests - Where
  • 29. - Run very fast - No feedback upon cause (just symptoms) - Help day-to-day incremental improvements Acceptance Tests - Won’t
  • 30. - Mutate the state of your code - Insert faults in your software - Unit tests are ran - Tests fail “mutant is killed” thumbs up - Tests pass “mutant survived” thumbs down Mutation Tests - What
  • 32. Mutation Tests - Example if (a == b) { // do something } will be mutated to if (a != b) { // do something } Different Mutators: if (a == b) { // do something } will be mutated to if (true) { // do something } public int method(int i) { i++; return i; } will be mutated to public int method(int i) { i--; return i; }
  • 34. - Find holes in your test suite - Depends on % code coverage - Confidence in your unit tests - Complexity of your problem is high Mutation Tests - When
  • 35. - Outside of your code - Around your test suite - Not written yourself but configured - Configuration is key Mutation Tests - Where
  • 37. - Give any confidence in working software - Show collaboration between objects - Prove if the application actually works - Help at all without unit tests Mutation Tests - Won’t
  • 38. - can be unit, integration, functional - learn how 3rd party libraries work - confirming understanding - safety net for outside changes Vendor Tests - What
  • 39. @Test public void setAndGetActiveSessionAreTrustworthy() { Session.setActiveSession(mockFacebookSession); FacebookSession session = Session.getActiveSession(); assertThat(mockFacebookSession).isEqualTo(session); } Vendor Tests - Example
  • 40. - Incorporating 3rd party library - Not beneficial to add retrospectively - Replacing libraries with confidence - Wanting to ‘in house’ a library feature Vendor Tests - When
  • 41. - Around your 3rd party libraries - One off test - Suite inside unit tests Vendor Tests - Where
  • 43. - Confirm your domain code - Replace unit, integration or acceptance tests - Adds overhead to development Vendor Tests - Won’t
  • 44. - Feeding your software random data - Wait to see what breaks - It is not logical - Android = Application Exerciser Monkey - Combinatory with other tools Fuzz Tests - What
  • 45. adb shell monkey -p com.your.package.name -v 50000 Fuzz Tests - Example // Allowing start of Intent { act=mubi.intent.action.ON_BOARD cmp=com.mubi/.onboard.OnboardActivity } in package com. mubi :Sending Touch (ACTION_DOWN): 0:(1091.0,659.0) :Sending Touch (ACTION_UP): 0:(1085.1356,667.17145) :Sending Touch (ACTION_DOWN): 0:(467.0,404.0) :Sending Touch (ACTION_UP): 0:(472.5769,398.45746) // CRASH: com.mubi (pid 754) // Short Msg: java.lang.IllegalStateException // Long Msg: java.lang.IllegalStateException: Fragment WatchFragment{413d0d98} is not currently in the FragmentManager // Build Label: google/nakasi/grouper:4.1.1/JRO03H/405518:user/release-keys // Build Changelist: 405518 // Build Time: 1364293068000 // java.lang.IllegalStateException: Fragment WatchFragment{413d0d98} is not currently in the FragmentManager // at android.app.FragmentManagerImpl.saveFragmentInstanceState(FragmentManager.java:586) // at android.support.v13.app.FragmentStatePagerAdapter.destroyItem(FragmentStatePagerAdapter.java:140) // at android.support.v4.view.ViewPager.setAdapter(ViewPager.java:413) // at com.mubi.onboard.OnboardActivity.updateViewPager(OnboardActivity.java:139) // at com.mubi.onboard.OnboardActivity.onRetrieved(OnboardActivity.java:132) // at com.mubi.onboard.OnboardTaskFragment$3.run(OnboardTaskFragment.java:77) // at android.os.Handler.handleCallback(Handler.java:725) // at android.os.Handler.dispatchMessage(Handler.java:92) // at android.os.Looper.loop(Looper.java:137) // at android.app.ActivityThread.main(ActivityThread.java:5195) // at java.lang.reflect.Method.invokeNative(Native Method) // at java.lang.reflect.Method.invoke(Method.java:511) // at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795) // at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562) // at com.android.internal.os.ZygoteInit.main(Native Method) // at dalvik.system.NativeStart.main(Native Method) // ** Monkey aborted due to error. Events injected: 4191
  • 46. - From the beginning - Thin slice (UI) - Continuous integration, faster feedback - Identifying differences across Android versions - Highlight refactoring effort Fuzz Tests - When
  • 47. - Black box testing - On top of your application (Android) - Custom fuzz testing - input level - Continuous integration Fuzz Tests - Where
  • 49. - Prove application is running correctly - Only reports crashes - Highlights quality rather than bugs - Not a replacement for unit, integration etc Fuzz Tests - Won’t
  • 50. Helpers / Libraries - Brief overview - What test types it benefits - Any positives - Any negatives
  • 51. Mockito //mock creation List mockedList = mock(List.class); //using mock object - doesn’t throw exceptions mockedList.add(“one”); //selective & explicit verification verify(mockList).add(“one”); Mockito is a mocking framework that tastes really good. It lets you write beautiful tests with clean & simple API. Mockito doesn't give you a hangover because the tests are very readable and they produce clean verification errors. - Unit Tests : mocking dependencies - Integration Tests : questionable use
  • 52. Fest FEST is a collection of libraries, whose mission is to simplify software testing. No more confusion about the order of the "expected" and "actual" values. Our assertions are very readable as well: they read very close to plain English, making it easier for non-technical people to read test code. Regular JUnit: assertEquals(View.GONE, view.getVisibility()); Regular FEST: assertThat(view.getVisibility()).isEqualTo(View.GONE); FEST Android: assertThat(view).isGone(); - Unit Tests - Integration Tests - Functional Tests - Acceptance Tests : anywhere you do assertions improving readability
  • 53. “Robolectric is a unit test framework that de-fangs the Android SDK jar so you can test-drive the development of your Android app. Tests run inside the JVM on your workstation in seconds. “ Robolectric @RunWith(RobolectricTestRunner.class) public class ViewingQueryTaskTest { @Test public void testAlwaysClosesCursor() { viewingQueryTask.run(); verify(mockCursor).close(); } } - Unit tests : for day to day activity including TDD - Integration tests : to handle Android - Positive : speed vs on device tests - Negative : the rabbit hole
  • 54. “Robotium is an Android test automation framework. Robotium makes it easy to write powerful and robust automatic black-box UI tests. With the support of Robotium, test case developers can write functional and user acceptance test scenarios, spanning multiple Android activities.“ Robotium - Functional tests : check when you click a button the shared preferences are updated - Acceptance tests : ensure features have been completed and take screenshots for feedback public class EditorTest extends ActivityInstrumentationTestCase2<EditorActivity> { private Solo solo; public void setUp() throws Exception { solo = new Solo(getInstrumentation(), getActivity()); } public void testFileExtensionIsInMenu() { solo.sendKey(Solo.MENU); solo.clickOnText("More"); solo.clickOnText("Preferences"); solo.clickOnText("Edit File Extensions"); Assert.assertTrue(solo.searchText("rtf")); } }
  • 55. Use Espresso to write concise, beautiful, and reliable Android UI tests Espresso tests state expectations, interactions, and assertions clearly without the distraction of boilerplate content, custom infrastructure, or messy implementation details getting in the way. Espresso public void testSayHello() { onView(withId(R.id.name_field).perform(typeText("Dave")); onView(withId(R.id.greet_button)).perform(click()); onView(withText("Hello Dave!")).check(matches(isDisplayed())); } - Functional tests : check when you click a button the shared preferences are updated - Acceptance tests : ensure features have been completed, doesn’t support screenshots as an API but you can still do it http://tiny.cc/disableAnim http://tiny.cc/espressoScreenshot
  • 56. The Monkey is a program that runs on your emulator or device and generates pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events. You can use the Monkey to stress-test applications that you are developing, in a random yet repeatable manner. UI Exerciser Monkey adb shell monkey -p com.your.package.name -v 50000 - Fuzz tests : as already discussed allows you to test input events Don’t get the Application Exerciser Monkey & the Monkey Runner mixed up. App Ex Monkey – Fuzz Testing Monkey Runner – Android device control using Python scripts
  • 57. The uiautomator testing framework lets you test your user interface (UI) efficiently by creating automated functional UI testcases that can be run against your app on one or more devices. UI Automator extend UIAutomatorTestCase UIObject & UISelector Min SDK 16 Jelly Bean adb shell uiautomator runtest MyTests.jar -c com.example.MyApp Tests are in the jar, and the package is the package of the app under test. - Acceptance tests : acts just like a user.
  • 59. - Allows for separation of concerns - Java only module - Directed testing - Encapsulating change - Reuse Modules / Modularity Empowers
  • 60. - Readable & flexible CI builds - Flavors, build types - Swapping out whole components - Greater range of testing flexibility Gradle Empowers
  • 61. - Test reliability - Test speed - Data integrity Mock Services Empower
  • 62. - Hexagonal architecture - Insulates system from outside dependencies - Empowers testing - Disconnect from platform requirements Ports & Adapters Empower
  • 64. - Quality of your code reflects quality of your tests - Object Oriented programming lends itself to quality testing - TDD - Static methods are evil Low Code Quality Encumbers
  • 65. - Framework lock in - Google Play services - Android code examples - Activity life cycle Android (frameworks) Encumber
  • 66. - Believe in testing - Believe in clean code - Software craftsmanship - TDD - Be energetic - Enjoy it YOU Empower || Encumber
  • 67. Monkey Runner Spoon Jmock Hexagonal Architecture Contract Tests Others Groovy Tests Static analysis tools Charles cURL Postman Google sizes (small medium large)
  • 68. We are hiring developers
  • 69. Online Blogs Martin Fowler http://martinfowler.com/tags/testing.html JB Rainsberger http://blog.thecodewhisperer.com/ Kevin Rutherford http://silkandspinach.net/ Robert Martin https://sites.google.com/site/unclebobconsultingllc/blogs-by-robert-martin References More Info Android Fuzz Tests http://developer.android.com/tools/help/monkey.html Hardcore Fuzz Tests http://www.ibm.com/developerworks/library/j-fuzztest/index.html Vendor Tests https://www.youtube.com/watch?v=47nuBTRB51c#t=23m34s Mutation Tests http://pitest.org/ Google Testing Opinion http://googletesting.blogspot.co.uk/2010/12/test-sizes.html Mockito https://code.google.com/p/mockito/ Mocking Frameworks http://blogs.telerik.com/skimedic/posts/13-07-23/top-5-reasons-to-use-a-mocking-framework Android Fest https://github.com/square/fest-android Robolectric http://robolectric.org/ Robotium https://code.google.com/p/robotium/ Espresso https://code.google.com/p/android-test-kit/wiki/Espresso UI Automator http://developer.android.com/tools/help/uiautomator/index.html SOLID Principles http://www.its-on-the-internet-so-it-must-be-true.com/2012/06/solid-principles.html