如何模拟 BitmapFactory:方法 decodeFile
How to mock BitmapFactory: Method decodeFile
我有一个程序可以从存储区中保存的全尺寸图像创建缩略图。我正在尝试使用 mockito 测试该功能,但它给了我以下错误:
java.lang.RuntimeException:android.graphics.BitmapFactory 中的方法 decodeFile 未被模拟
//已解决(更新代码)
我是 运行 第一次使用 mockito 进行单元测试,有人可以建议我做错了什么(我知道确实在做)。我还使用 ExifInterface 提取与图像关联的元数据,但它再次给我同样的错误:
java.lang.RuntimeException:android.media.ExifInterface 中的方法 getAttribute 未被模拟。
这里是 MainActivity class :(我是 运行 方法)。
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initValue();
}
public void initValue()
{
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
Bitmap thumbnail = createThumbnailFromBitmap("/storage/emulator/0/demo/abcd", 100, 100);
try {
ExifInterface exifInterface = new ExifInterface("/storage/emulator/0/demo/abcd");
String jsonData = exifInterface.getAttribute("UserComment");
try {
JSONObject rootJson = new JSONObject(jsonData);
dateList.add(rootJson.getString("captured"));
}
catch(JSONException e)
{
}
}
catch(Exception e)
{
System.out.println("exception "+e);
}
}
private Bitmap createThumbnailFromBitmap(String filePath, int width, int height){
return ThumbnailUtils.extractThumbnail(BitmapFactory.decodeFile(filePath), width, height);
}
}
我的测试class:
@RunWith(PowerMockRunner.class)
@PrepareForTest({BitmapFactory.class ,ThumbnailUtils.class})
public class initValueTest {
@Mock
private Bitmap bitmap;
@Test
public void initValueTest()
{
PowerMockito.mockStatic(BitmapFactory.class);
PowerMockito.mockStatic(ThumbnailUtils.class);
when(BitmapFactory.decodeFile(anyString())).thenReturn(bitmap);
MainActivity mainActivity = new MainActivity();
mainActivity.initValue();
}
}
感谢你们的帮助。如果我做错了什么,请原谅。
您可以:
- 使用 power mock 模拟静态方法 decodeFile。看看码头吧here
- 将位图解码逻辑提取到单独的class,提取接口并提供
运行 时间的不同实施。
我有一个程序可以从存储区中保存的全尺寸图像创建缩略图。我正在尝试使用 mockito 测试该功能,但它给了我以下错误:
java.lang.RuntimeException:android.graphics.BitmapFactory 中的方法 decodeFile 未被模拟
//已解决(更新代码)
我是 运行 第一次使用 mockito 进行单元测试,有人可以建议我做错了什么(我知道确实在做)。我还使用 ExifInterface 提取与图像关联的元数据,但它再次给我同样的错误: java.lang.RuntimeException:android.media.ExifInterface 中的方法 getAttribute 未被模拟。
这里是 MainActivity class :(我是 运行 方法)。
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initValue();
}
public void initValue()
{
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
Bitmap thumbnail = createThumbnailFromBitmap("/storage/emulator/0/demo/abcd", 100, 100);
try {
ExifInterface exifInterface = new ExifInterface("/storage/emulator/0/demo/abcd");
String jsonData = exifInterface.getAttribute("UserComment");
try {
JSONObject rootJson = new JSONObject(jsonData);
dateList.add(rootJson.getString("captured"));
}
catch(JSONException e)
{
}
}
catch(Exception e)
{
System.out.println("exception "+e);
}
}
private Bitmap createThumbnailFromBitmap(String filePath, int width, int height){
return ThumbnailUtils.extractThumbnail(BitmapFactory.decodeFile(filePath), width, height);
}
}
我的测试class:
@RunWith(PowerMockRunner.class)
@PrepareForTest({BitmapFactory.class ,ThumbnailUtils.class})
public class initValueTest {
@Mock
private Bitmap bitmap;
@Test
public void initValueTest()
{
PowerMockito.mockStatic(BitmapFactory.class);
PowerMockito.mockStatic(ThumbnailUtils.class);
when(BitmapFactory.decodeFile(anyString())).thenReturn(bitmap);
MainActivity mainActivity = new MainActivity();
mainActivity.initValue();
}
}
感谢你们的帮助。如果我做错了什么,请原谅。
您可以:
- 使用 power mock 模拟静态方法 decodeFile。看看码头吧here
- 将位图解码逻辑提取到单独的class,提取接口并提供 运行 时间的不同实施。