/frameworks_base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/MediaPlayerStopStateUnitTest.java

https://code.google.com/ · Java · 63 lines · 27 code · 7 blank · 29 comment · 0 complexity · 6de47b7e71ee198ffb9bec6bb8eb4bed MD5 · raw file

  1. /*
  2. * Copyright (C) 2008 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.android.mediaframeworktest.unit;
  17. import android.media.MediaPlayer;
  18. import android.test.AndroidTestCase;
  19. import android.test.suitebuilder.annotation.LargeTest;
  20. /**
  21. * Unit test class to test the set of valid and invalid states that
  22. * MediaPlayer.stop() method can be called.
  23. */
  24. public class MediaPlayerStopStateUnitTest extends AndroidTestCase implements MediaPlayerMethodUnderTest {
  25. private MediaPlayerStateUnitTestTemplate mTestTemplate = new MediaPlayerStateUnitTestTemplate();
  26. /**
  27. * 1. It is valid to call stop() in the following states:
  28. * {Prepared, Started, Stopped, Paused, PlaybackCompleted}.
  29. * 2. It is invalid to call stop() in the following states:
  30. * {Idle, Initialized, Error}
  31. *
  32. * @param stateErrors the MediaPlayerStateErrors to check against.
  33. */
  34. public void checkStateErrors(MediaPlayerStateErrors stateErrors) {
  35. // Valid states.
  36. assertTrue(!stateErrors.errorInStartedState);
  37. assertTrue(!stateErrors.errorInStartedStateAfterPause);
  38. assertTrue(!stateErrors.errorInStoppedState);
  39. assertTrue(!stateErrors.errorInPreparedState);
  40. assertTrue(!stateErrors.errorInPreparedStateAfterStop);
  41. assertTrue(!stateErrors.errorInPlaybackCompletedState);
  42. assertTrue(!stateErrors.errorInPausedState);
  43. // Invalid states.
  44. assertTrue(!stateErrors.errorInIdleState); // noError() won't be called
  45. assertTrue(stateErrors.errorInIdleStateAfterReset);
  46. assertTrue(stateErrors.errorInInitializedState);
  47. assertTrue(stateErrors.errorInErrorState);
  48. }
  49. public void invokeMethodUnderTest(MediaPlayer player) {
  50. player.stop();
  51. }
  52. @LargeTest
  53. public void testStop() {
  54. mTestTemplate.runTestOnMethod(this);
  55. }
  56. }