衆所周知在Android中一共有兩種測試。java
androidTest
文件夾。test
文件夾。Espresso
就是在android平臺上常常用於儀器化測試的框架。android
Espresso
主要由下述三個部分組成:git
ViewMatcher
: 在當前View層級去匹配指定的View。ViewActions
: 執行View的某些行爲,好比onClick
事件。ViewAssertions
: 檢查View的某些狀態,好比顯示與否。在AppModule
的build.gradle
中添加依賴:github
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation 'androidx.test:core:1.2.0'
複製代碼
在AppModle
的build.gradle
的android.defaultConfig
中添加下面的配置:
(此設置在建立項目時會被默認的添加上去)框架
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
複製代碼
在androidTest
文件夾中建立測試類,按照建議在起名時最好在尾部加上AndroidTest
。 由於須要用到AndroidJunit4
, 因此在class的上部加上@RunWith(AndroidUnit4.class)
。還有須要建立TestRule
變量,建立方法以下。
還有在每一個測試方法的上部須要添加@Test
。佈局
@RunWith(AndroidJUnit4.class)
public class MainActivityUITest {
@Rule
public ActivityTestRule<MainActivity> rule = new ActivityTestRule<>(MainActivity.class);
@Test
public void checkMainActivity() {
}
}
複製代碼
匹配獲取View的方法是Espresso.onView
。爲了找到指定的View,須要用到ViewMatcher
的withId
和withText
方法。測試
引入withId
方法:gradle
import static androidx.test.espresso.matcher.ViewMatchers.withId;
複製代碼
獲取View:動畫
Espresso.onView(withId(R.id.editView))
複製代碼
引入withText
方法:ui
import static androidx.test.espresso.matcher.ViewMatchers.withText;
複製代碼
獲取View:
Espresso.onView(withText("hello"))
複製代碼
執行某些事件,好比點擊事件等等時須要用到ViewActions
中的方法。 首先,不要忘了引入ViewActions
中的方法。
import static androidx.test.espresso.action.ViewActions.*;
複製代碼
經常使用的有如下幾種。
click()
:點擊closeSoftKeyboard()
:收起鍵盤typeText(String stringToBeTyped)
: 輸入文本swipeLeft()
:向左滑swipeRight()
:向右滑swipeDown()
:向下滑swipeUp()
:向上滑doubleClick()
:雙擊longClick()
:長按pressKey(int keyCode)
:按指定按鍵總體代碼以下:
Espresso.onView(withId(R.id.editText)).perform(typeText("hello"),closeSoftKeyboard());
Espresso.onView(withId(R.id.btnSend)).perform(click());
複製代碼
咱們對View進行了一系列的操做之後就須要判斷是否符合咱們的預期。固然這也是在儀器化測試的關鍵所在。 咱們須要用到ViewAssertions
的方法來進行檢查。 首先引入ViewAssertions
的方法。
import static androidx.test.espresso.assertion.ViewAssertions.*;
複製代碼
對View的檢查咱們使用check
方法,裏面傳入ViewAssertions
中maches
方法便可。雖說的有點繞,可是看了代碼就立刻明白了。
Espresso.onView(withId(R.id.textViewInSecond)).check(matches(withText("hello")));
複製代碼
若是在佈局中有RecyclerView
,此時要測試裏面的內容會變得複雜一點。 首先引入外部方法:
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
複製代碼
測試方法方法以下:
// 獲取spinner中選項數據
String[] arrays = rule.getActivity().getResources().getStringArray(R.array.spinner);
for (int i = 0; i < arrays.length; i++) {
Espresso.onView(withId(R.id.spinner)).perform(click());
Espresso.onData(is(arrays[i])).perform(click());
Espresso.onView(withId(R.id.textViewInSecondTwo)).check(matches(withText(containsString(arrays[i]))));
}
複製代碼
Esspresso.onData(Matcher<? extends Object> dataMatcher)
是經過綁定數據來獲取指定元素,onData
只適用於Adapter
,不適用於RecyclerView
。
onView
和onData
的區別onView
: 要測試的元素必須在可在視圖內,好比RecyclerView
的第11條不可見,那就不能選第11條元素進行測試,否則會報錯。
onData
: 能夠指定屏幕外的元素,若是選定的是屏幕外元素,框架會移動到指定元素上,而後進行指定的哦後續操做。
除了手動的寫Espresso測試代碼之外,也能夠經過UI讓框架自動生成測試代碼。
左邊是測試記錄,也就是待會會生成的代碼,右邊是被測試一塊兒的界面。在右邊界面中點擊元素,可添加ViewAssertions
,如上圖所示。
這裏有一個注意點,就是系統動畫會對UI測試產生影響。因此在進行測試時須要把窗口動畫縮放
,過分動畫縮放
,動畫程序時長縮放
關閉掉。以下圖。
github: github.com/HyejeanMOON…