blob: 31d9f2ca44d1a7345e65f4760650cb51aaaa5817 [file] [log] [blame]
/*
* Copyright (C) 2009 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.provider.cts;
import com.android.cts.stub.R;
import dalvik.annotation.TestLevel;
import dalvik.annotation.TestTargetClass;
import dalvik.annotation.TestTargetNew;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.provider.MediaStore;
import android.provider.MediaStore.Video;
import android.provider.MediaStore.Video.VideoColumns;
import android.test.InstrumentationTestCase;
import java.util.ArrayList;
@TestTargetClass(MediaStore.Video.class)
public class MediaStore_VideoTest extends InstrumentationTestCase {
private static final String TEST_VIDEO_3GP = "testVideo.3gp";
private ArrayList<Uri> mRowsAdded;
private Context mContext;
private ContentResolver mContentResolver;
private FileCopyHelper mHelper;
@Override
protected void tearDown() throws Exception {
for (Uri row : mRowsAdded) {
mContentResolver.delete(row, null, null);
}
mHelper.clear();
super.tearDown();
}
@Override
protected void setUp() throws Exception {
super.setUp();
mContext = getInstrumentation().getTargetContext();
mContentResolver = mContext.getContentResolver();
mHelper = new FileCopyHelper(mContext);
mRowsAdded = new ArrayList<Uri>();
}
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "query",
args = {ContentResolver.class, Uri.class, String[].class}
)
public void testQuery() {
ContentValues values = new ContentValues();
String valueOfData = mHelper.copy(R.raw.testvideo, TEST_VIDEO_3GP);
values.put(VideoColumns.DATA, valueOfData);
Uri newUri = mContentResolver.insert(Video.Media.INTERNAL_CONTENT_URI, values);
if (!Video.Media.INTERNAL_CONTENT_URI.equals(newUri)) {
mRowsAdded.add(newUri);
}
Cursor c = Video.query(mContentResolver, newUri, new String[] { VideoColumns.DATA });
assertEquals(1, c.getCount());
c.moveToFirst();
assertEquals(valueOfData, c.getString(c.getColumnIndex(VideoColumns.DATA)));
c.close();
}
}