【问题标题】:Test wait to VideoView finish to start new activity robolectric 3测试等待 VideoView 完成以开始新的活动 robolectric 3
【发布时间】:2015-07-19 21:38:51
【问题描述】:

我必须测试一个有视频的屏幕启动画面,视频持续时间为 11 秒,视频结束后开始其他活动。

我有以下测试类:

public class ScreenSplashTest {

  private ShadowActivity screenSplash;
  private ShadowVideoView videoView;

  @Before
  public void setUp(){
      ScreenSplash screenSplashActivity = Robolectric.buildActivity(ScreenSplash.class).create().get();
      screenSplash = Shadows.shadowOf(screenSplashActivity);
      VideoView videoViewWidget = (VideoView)screenSplash.findViewById(R.id.videoViewSplash);
      videoView = Shadows.shadowOf(videoViewWidget);
  }

  @Test
  public void activityStarts_VideoStartsToPlay() throws Exception{
      assertTrue(videoView.isPlaying());
  }
  @Test
  public void whenVideoFinish_StartsChooseTeamActivity() throws Exception{
      videoView.stopPlayback();
      Intent nextActivity = screenSplash.getNextStartedActivity();
      assertEquals(nextActivity.getComponent().getClassName(), ChooseTeamActivity.class.getName());
  }
}

这是我的 ScreenSplash 活动:

public class ScreenSplash extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_screen_splash);
        getSupportActionBar().hide();
        this.getWindow().getDecorView().setBackgroundColor(0xffffff);

        VideoView videoView = (VideoView) findViewById(R.id.videoViewSplash);

        Uri videoFile = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.splash);
        videoView.setVideoURI(videoFile);

        videoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
            @Override
            public void onCompletion(MediaPlayer mediaPlayer) {
                Intent i = new Intent(getApplicationContext(), ChooseTeamActivity.class);
                startActivity(i);
            }
        });

        videoView.start();
    }
  }

问题是如何为这段代码编写测试?

【问题讨论】:

    标签: java android unit-testing robolectric


    【解决方案1】:

    可以从ShadowVideoView的getOnCompletionListener中获取MediaPlayer.OnCompletionListener,然后调用它的onCompletion方法。您可以模拟 MediaPlayer 对象。 一个可能的代码sn-p:

         assertTrue(videoView.isPlaying());
         MediaPlayer.OnCompletionListener completionListener = videoView.getOnCompletionListener();
         completionListener.onCompletion(mock(MediaPlayer.class));
         Intent intent = screenSplash.getNextStartedActivity();
         assertNull(intent);
         assertEquals(ChooseTeamActivity.class.getName(), intent.getComponent().getClassName());
    

    这种方法就能测试上面的代码。如果您正在考虑实际完整播放视频,然后执行侦听器代码,那么这种方法将不符合单元测试方法。我们测试编写代码的功能,而不是底层框架。 在这种情况下,您的测试代码应该测试一个有效的 URI,检查它是否正在播放以及监听器是否执行了所需的操作。 通过 MediaPlayer 对象测试监听器也将是对底层 android 代码的测试,而不仅仅是您的代码。

    【讨论】:

    • 哦,谢谢你 :) 我非常不喜欢单元测试谢谢指导
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-03-30
    • 1970-01-01
    • 2020-01-31
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多