blob: a05698de5893be91358fa7197f3974959d6de299 [file] [log] [blame]
/*
* Copyright (C) 2016 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.media.cts;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.content.Context;
import android.media.AudioDeviceInfo;
import android.media.AudioManager;
import android.media.AudioRouting;
import android.test.AndroidTestCase;
import android.util.Log;
import com.android.compatibility.common.util.CtsAndroidTestCase;
import com.android.ndkaudio.AudioPlayer;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
public class AudioPlayRoutingNative extends AndroidTestCase {
private static final String TAG = "AudioPlayRoutingNative";
private AudioManager mAudioManager;
static {
System.loadLibrary("ndkaudioLib");
}
@Override
protected void setUp() throws Exception {
super.setUp();
// get the AudioManager
mAudioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
assertNotNull(mAudioManager);
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
}
//
// Tests
//
// Test a basic Aquire/Release cycle on the default player.
public void testAquireDefaultProxy() throws Exception {
AudioPlayer player = new AudioPlayer();
player.ClearLastSLResult();
player.RealizePlayer();
player.RealizeRoutingProxy();
AudioRouting routingObj = player.GetRoutingInterface();
assertNotNull(routingObj);
// Not allowed to acquire twice
routingObj = player.GetRoutingInterface();
assertNull(routingObj);
assertTrue(player.GetLastSLResult() != 0);
player.ReleaseRoutingInterface(routingObj);
assertTrue(player.GetLastSLResult() == 0);
}
// Test an Aquire before the OpenSL ES player is Realized.
public void testAquirePreRealizeDefaultProxy() throws Exception {
AudioPlayer player = new AudioPlayer();
player.ClearLastSLResult();
player.RealizeRoutingProxy();
assertTrue(player.GetLastSLResult() == 0);
AudioRouting routingObj = player.GetRoutingInterface();
assertTrue(player.GetLastSLResult() == 0);
assertNotNull(routingObj);
player.RealizePlayer();
assertTrue(player.GetLastSLResult() == 0);
player.ReleaseRoutingInterface(routingObj);
assertTrue(player.GetLastSLResult() == 0);
}
// Test actually setting the routing through the enumerated devices.
public void testRouting() {
AudioPlayer player = new AudioPlayer();
player.ClearLastSLResult();
player.RealizePlayer();
player.RealizeRoutingProxy();
AudioRouting routingObj = player.GetRoutingInterface();
assertNotNull(routingObj);
AudioDeviceInfo[] deviceList;
deviceList = mAudioManager.getDevices(AudioManager.GET_DEVICES_OUTPUTS);
assertTrue(deviceList != null);
for (AudioDeviceInfo devInfo : deviceList) {
assertTrue(routingObj.setPreferredDevice(devInfo));
}
player.ReleaseRoutingInterface(routingObj);
assertTrue(player.GetLastSLResult() == 0);
}
}