編寫 android 測試單元該做的和不該做的事
一個新聞 APP 應該會有以下這些 activity。
- 語言選擇 - 當用戶第一次打開軟件, 他必須至少選擇一種語言。選擇後,選項保存在共享偏好中,用戶跳轉到新聞列表 activity。
- 新聞列表 - 當用戶來到新聞列表 activity,將發送一個包含語言參數的請求到服務器,並將服務器返回的內容顯示在 recycler view 上(包含有新聞列表的 id, news_list)。 如果共享偏好中未存語言參數,或者服務器沒有返回一個成功消息, 就會彈出一個錯誤對話框並且 recycler view 將不可見。如果用戶隻選擇了一種語言,新聞列表 activity 有個 “Change your Language” 的按鈕,或者如果用戶選擇多種語言,則按鈕為 “Change your Languages” 。 (我對天發誓這是一個虛構的 APP 軟件)
- 新聞細節 - 如同名字所述, 當用戶點選新聞列表項時將啟動這個 activity。
這個 APP 功能已經足夠,,讓我們深入研究下為新聞列表 activity 編寫的測試用例。 這是我第一次寫的代碼。
/*Click on the first news item.It should open NewsDetailActivity*/@Testpublic void testClickOnAnyNewsItem() {onView(allOf(withId(R.id.news_list), isDisplayed())).perform(RecyclerViewActions.actionOnItemAtPosition(1, click()));intended(hasComponent(NewsDetailsActivity.class.getName()));}/*** To test the correct text on the button*/@Testpublic void testChangeLanguageFeature() {int count = UserPreferenceUtil.getSelectedLanguagesCount();if (count == 1) {onView(withText("Choose your Language")).check(matches(isDisplayed()));} else if (count > 1) {onView(withText("Choose your Languages")).check(matches(isDisplayed()));}?}
仔細想想測試什麼
在第一個測試用例 testClickOnAnyNewsItem(), 如果服務器沒有返回成功信息,測試用例將會返回失敗,因為 recycler view 是不可見的。但是這個測試用例的目的並非如此。不管該用例為 PASS 還是 FAIL,它的最低要求是 recycler view 總是可見的, 如果因某種原因,recycler view 不可見,那麼測試用例不應視為 FAILED。正確的測試代碼應該像下麵這個樣子。
/*Click on any news item.It should open NewsDetailActivity*/@Testpublic void testClickOnAnyNewsItem() {try {/*To test this case, we need to have recyclerView present. If we don't have therecyclerview present either due to the presence of error_screen, then we should considerthis test case successful. The test case should be unsuccesful only when we click on anews item and it doesn't open NewsDetail activity*/ViewInteraction viewInteraction = onView(withId(R.id.news_list));viewInteraction.check(matches(isDisplayed()));} catch (NoMatchingViewException e) {return;} catch (AssertionFailedError e) {return;} //在這裏我們確信,news_list的 recyclerview 對用戶是可見的。 onView(allOf(withId(R.id.news_list), isDisplayed())).perform(RecyclerViewActions.actionOnItemAtPosition(1, click()));intended(hasComponent(NewsDetailsActivity.class.getName()));}}
一個測試用例本身應該是完整的
當我開始測試, 我通常按如下順序測試 activity:
- 語言選擇
- 新聞列表
- 新聞細節
因為我首先測試語言選擇 activity,在測試 NewsList activity 之前,總有一種語言已經是選擇好了的。但是當我先測試新聞列表 activity 時,測試用例開始返回錯誤信息。原因很簡單 - 沒有選擇語言,recycler view 不會顯示。注意, 測試用例的執行順序不能影響測試結果。 因此在運行測試用例之前, 語言選項必須是保存在共享偏好中的。在本例中,測試用例獨立於語言選擇 activity 的測試。
@Rulepublic ActivityTestRule activityTestRule =new ActivityTestRule(TopicsActivity.class, false, false);/*Click on any news item.It should open NewsDetailActivity*/@Testpublic void testClickOnAnyNewsItem() {UserPreferenceUtil.saveUserPrimaryLanguage("english");Intent intent = new Intent();activityTestRule.launchActivity(intent);try {ViewInteraction viewInteraction = onView(withId(R.id.news_list));viewInteraction.check(matches(isDisplayed()));} catch (NoMatchingViewException e) {return;} catch (AssertionFailedError e) {return;}onView(allOf(withId(R.id.news_list), isDisplayed())).perform(RecyclerViewActions.actionOnItemAtPosition(1, click()));intended(hasComponent(NewsDetailsActivity.class.getName()));?}
在測試用例中避免使用條件代碼
現在在第二個測試用例 testChangeLanguageFeature() 中,我們獲取到用戶選擇語言的個數,基於這個數目,我們寫了 if-else 條件來進行測試。 但是 if-else 條件應該寫在你的代碼當中,而不是測試代碼裏。每一個條件應該單獨測試。 因此,在本例中,不是隻寫一條測試用例,而是要寫如下兩個測試用例。
/*** To test the correct text on the button when only one language is selected.*/@Testpublic void testChangeLanguageFeatureForSingeLanguage() {//Other initializationsUserPreferenceUtil.saveSelectedLanguagesCount(1);Intent intent = new Intent();activityTestRule.launchActivity(intent);onView(withText("Choose your Language")).check(matches(isDisplayed()));}/*** To test the correct text on the button when more than one language is selected.*/@Testpublic void testChangeLanguageFeatureForMultipleLanguages() {//Other initializationsUserPreferenceUtil.saveSelectedLanguagesCount(5); //Write anything greater than 1.Intent intent = new Intent();activityTestRule.launchActivity(intent);onView(withText("Choose your Languages")).check(matches(isDisplayed()));}
測試用例應該獨立於外部因素
在大多數應用中,我們與外部網絡或者數據庫進行交互。一個測試用例運行時可以向服務器發送一個請求,並獲取成功或失敗的返回信息。但是不能因從服務器獲取到失敗信息,就認為測試用例沒有通過。這樣想這個問題 - 如果測試用例失敗,然後我們修改客戶端代碼,以便測試用例通過。 但是在本例中, 我們要在客戶端進行任何更改嗎?- NO。
但是你應該也無法完全避免要測試網絡請求和響應。由於服務器是一個外部代理,我們可以設想一個場景,發送一些可能導致程序崩潰的錯誤響應。因此,你寫的測試用例應該覆蓋所有可能來自服務器的響應,甚至包括服務器決不會發出的響應。這樣可以覆蓋所有代碼,並能保證應用可以處理所有響應,而不會崩潰。
正確的編寫測試用例與編寫這些測試代碼同等重要。
原文發布時間為:2017-02-12
本文來自雲棲社區合作夥伴“Linux中國”
最後更新:2017-05-26 09:02:07