blob: 52eca56d5e83463cf9ea543ec74162de3a2f2ddc [file] [log] [blame]
/*
* Copyright (C) 2015 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.security.cts;
import android.security.cts.R;
import android.content.res.AssetFileDescriptor;
import android.content.res.Resources;
import android.media.MediaMetadataRetriever;
import android.platform.test.annotations.AsbSecurityTest;
import com.android.sts.common.util.StsExtraBusinessLogicTestCase;
import java.io.IOException;
import org.junit.Before;
import org.junit.After;
import static org.junit.Assert.*;
import androidx.test.runner.AndroidJUnit4;
import org.junit.runner.RunWith;
import org.junit.Test;
@RunWith(AndroidJUnit4.class)
public class MediaMetadataRetrieverTest extends StsExtraBusinessLogicTestCase {
protected Resources mResources;
protected MediaMetadataRetriever mRetriever;
@Before
protected void setUp() throws Exception {
mResources = getContext().getResources();
mRetriever = new MediaMetadataRetriever();
}
@After
protected void tearDown() throws Exception {
mRetriever.release();
}
protected void setDataSourceFd(int resid) {
try {
AssetFileDescriptor afd = mResources.openRawResourceFd(resid);
mRetriever.setDataSource(afd.getFileDescriptor(), afd.getStartOffset(), afd.getLength());
afd.close();
} catch (Exception e) {
fail("Unable to open file");
}
}
@Test
@AsbSecurityTest(cveBugId = 24623447)
public void testID3v2EmbeddedPicture() {
setDataSourceFd(R.raw.id3v2_3_extended_header_overflow_padding);
assertEquals("EmbeddedPicture was other than expected null array",
null, mRetriever.getEmbeddedPicture());
}
}