blob: 712a7586f53f8de813f221f98e4b48054a0593cf [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
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
17package com.android.mediaframeworktest.unit;
18
19import android.media.MediaRecorder;
20import android.test.AndroidTestCase;
Yu Shan Emily Lau3e7b3c02009-03-24 22:20:13 -070021import android.test.suitebuilder.annotation.MediumTest;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.test.suitebuilder.annotation.Suppress;
23
24/**
25 * Unit test class to test the set of valid and invalid states that
26 * MediaRecorder.setOutputFile() method can be called.
27 */
28public class MediaRecorderSetOutputFileStateUnitTest extends AndroidTestCase implements MediaRecorderMethodUnderTest {
29 private MediaRecorderStateUnitTestTemplate mTestTemplate = new MediaRecorderStateUnitTestTemplate();
30 /**
31 * 1. It is valid to call setOutputFile() in the following states:
32 * {DataSourceConfigured, Initial, Initialized, Prepared, Recording, Error}.
33 * 2. It is invalid to call setOutputFile() in the following states:
34 * {}
35 *
36 * @param stateErrors the MediaRecorderStateErrors to check against.
37 */
38 public void checkStateErrors(MediaRecorderStateErrors stateErrors) {
39 // Valid states.
40 assertTrue(!stateErrors.errorInDataSourceConfiguredState);
41 assertTrue(!stateErrors.errorInPreparedState);
42 assertTrue(!stateErrors.errorInRecordingState);
43 assertTrue(!stateErrors.errorInErrorState);
44 assertTrue(!stateErrors.errorInInitialState);
45 assertTrue(!stateErrors.errorInInitialStateAfterReset);
46 assertTrue(!stateErrors.errorInInitialStateAfterStop);
47 assertTrue(!stateErrors.errorInInitializedState);
48 }
49
50 public void invokeMethodUnderTest(MediaRecorder recorder) {
51 recorder.setOutputFile(MediaRecorderStateUnitTestTemplate.RECORD_OUTPUT_PATH);
52 }
53
Yu Shan Emily Lau3e7b3c02009-03-24 22:20:13 -070054 @MediumTest
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055 public void testSetOutputFile() {
56 mTestTemplate.runTestOnMethod(this);
57 }
58
59 @Override
60 public String toString() {
61 return "setOutputFile()";
62 }
63}