view unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLineTest.java @ 125:3c5c586cf5f3

2008-09-16 Omair Majid <omajid@redhat.com> * src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java (getLine): Throw the exception with a more meaningful description. * src/java/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLine.java (drain): Implemented drain. Blocks while the TargetDataLine remains started. * unittests/org/classpath/icedtea/pulseaudio/PulseAudioTargetDataLineTest.java (testIsActiveAndIsOpen): Fixed thinko. Now tests a TargetDataLine instead of a SourceDataLine. (testDrain): New function. Tests if drain() blocks between calls to start() and stop(). (testStartedStopped): Removed call to drain. Instead wait a bit. (tearDown): Clean up a bit more if possible.
author Omair Majid <omajid@redhat.com>
date Tue, 16 Sep 2008 14:05:45 -0400
parents cd7041f7a655
children da120992e52b
line wrap: on
line source

/* PulseAudioTargetDataLineTest.java
   Copyright (C) 2008 Red Hat, Inc.

This file is part of IcedTea.

IcedTea is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 2.

IcedTea is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with IcedTea; see the file COPYING.  If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version.
 */

package org.classpath.icedtea.pulseaudio;

import java.io.File;
import java.io.IOException;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.Line;
import javax.sound.sampled.LineEvent;
import javax.sound.sampled.LineListener;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.Mixer;
import javax.sound.sampled.TargetDataLine;
import javax.sound.sampled.UnsupportedAudioFileException;

import junit.framework.JUnit4TestAdapter;

import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

public class PulseAudioTargetDataLineTest {

	private Mixer mixer;
	private TargetDataLine targetDataLine;

	AudioFormat aSupportedFormat = new AudioFormat(
			AudioFormat.Encoding.PCM_UNSIGNED, 44100f, 8, 1, 1, 10, true);

	public static junit.framework.Test suite() {
		return new JUnit4TestAdapter(PulseAudioTargetDataLineTest.class);
	}

	@Before
	public void setUp() throws LineUnavailableException {
		Mixer.Info[] mixerInfos = AudioSystem.getMixerInfo();
		Mixer.Info wantedMixerInfo = null;
		for (Mixer.Info mixerInfo : mixerInfos) {
			if (mixerInfo.getName().contains("PulseAudio")) {
				wantedMixerInfo = mixerInfo;
			}
		}
		Assert.assertNotNull(wantedMixerInfo);
		mixer = AudioSystem.getMixer(wantedMixerInfo);
		Assert.assertNotNull(mixer);
		mixer.open();
		targetDataLine = null;

	}

	@Test
	public void testOpenClose() throws LineUnavailableException {
		targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
				TargetDataLine.class));
		Assert.assertNotNull(targetDataLine);
		targetDataLine.open();
		targetDataLine.close();
	}

	@Test
	public void testIsActiveAndIsOpen() throws LineUnavailableException {

		TargetDataLine line = (TargetDataLine) mixer.getLine(new DataLine.Info(
				TargetDataLine.class, aSupportedFormat, 1000));

		Assert.assertFalse(line.isActive());
		Assert.assertFalse(line.isOpen());
		line.open();
		Assert.assertTrue(line.isOpen());
		Assert.assertFalse(line.isActive());
		line.start();
		Assert.assertTrue(line.isOpen());
		Assert.assertTrue(line.isActive());
		line.stop();
		Assert.assertTrue(line.isOpen());
		Assert.assertFalse(line.isActive());
		line.close();
		Assert.assertFalse(line.isOpen());
		Assert.assertFalse(line.isActive());

	}

	@Test
	public void testOpenEvents() throws LineUnavailableException {
		targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
				TargetDataLine.class));
		Assert.assertNotNull(targetDataLine);

		LineListener openListener = new LineListener() {
			private int calledCount = 0;

			@Override
			public void update(LineEvent event) {
				Assert.assertEquals(LineEvent.Type.OPEN, event.getType());
				calledCount++;
				Assert.assertEquals(1, calledCount);
			}

		};

		targetDataLine.addLineListener(openListener);
		targetDataLine.open();
		targetDataLine.removeLineListener(openListener);
		targetDataLine.close();

	}

	@Test
	public void testDrain() throws LineUnavailableException,
			InterruptedException {
		System.out
				.println("This test checks that drain() on a start()ed TargetDataLine hangs");

		targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
				TargetDataLine.class));
		Assert.assertNotNull(targetDataLine);

		targetDataLine.open();
		targetDataLine.start();

		Thread th = new Thread(new Runnable() {

			@Override
			public void run() {
				targetDataLine.drain();
			}

		});

		th.start();

		th.join(5000);

		if (!th.isAlive()) {
			targetDataLine.stop();
			th.join();
			targetDataLine.close();
			Assert.fail("drain() on a opened TargetDataLine should hang");
		}
	}

	@Test
	public void testCloseEvents() throws LineUnavailableException {
		targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
				TargetDataLine.class));
		Assert.assertNotNull(targetDataLine);

		LineListener closeListener = new LineListener() {
			private int calledCount = 0;

			@Override
			public void update(LineEvent event) {
				Assert.assertEquals(LineEvent.Type.CLOSE, event.getType());
				calledCount++;
				Assert.assertEquals(1, calledCount);
			}

		};

		targetDataLine.open();
		targetDataLine.addLineListener(closeListener);
		targetDataLine.close();
		targetDataLine.removeLineListener(closeListener);

	}

	int started = 0;
	int stopped = 0;

	@Test
	public void testStartedStopped() throws LineUnavailableException,
			UnsupportedAudioFileException, IOException, InterruptedException {

		File soundFile = new File("testsounds/startup.wav");
		AudioInputStream audioInputStream = AudioSystem
				.getAudioInputStream(soundFile);
		AudioFormat audioFormat = audioInputStream.getFormat();

		TargetDataLine line;
		line = (TargetDataLine) mixer.getLine(new DataLine.Info(
				TargetDataLine.class, audioFormat));
		Assert.assertNotNull(line);

		started = 0;
		stopped = 0;

		line.open(audioFormat);

		LineListener startStopListener = new LineListener() {

			@Override
			public void update(LineEvent event) {
				if (event.getType() == LineEvent.Type.START) {
					started++;
					Assert.assertEquals(1, started);
				}

				if (event.getType() == LineEvent.Type.STOP) {
					System.out.println("Stopped event");
					stopped++;
					Assert.assertEquals(1, stopped);
				}
			}

		};

		line.addLineListener(startStopListener);

		line.start();

		Thread.sleep(100);

		line.stop();
		line.close();

		Assert.assertEquals(1, started);
		Assert.assertEquals(1, stopped);

		started = 0;
		stopped = 0;

	}

	@Test
	public void testMixerKnowsAboutOpenLines() throws LineUnavailableException {
		targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
				TargetDataLine.class));

		Assert.assertEquals(0, mixer.getTargetLines().length);
		targetDataLine.open();
		Assert.assertEquals(1, mixer.getTargetLines().length);
		targetDataLine.close();
		Assert.assertEquals(0, mixer.getTargetLines().length);

	}

	@Test
	public void testAllTargetLinesClosed() {
		Assert.assertEquals(0, mixer.getTargetLines().length);

	}

	@Test
	public void testTargetLineHasNoControls() throws LineUnavailableException {
		targetDataLine = (TargetDataLine) mixer.getLine(new Line.Info(
				TargetDataLine.class));

		targetDataLine.open();

		Assert.assertEquals(0, targetDataLine.getControls().length);

		targetDataLine.close();
	}

	@After
	public void tearDown() {
		if (targetDataLine != null) {
			if (targetDataLine.isActive()) {
				targetDataLine.stop();
			}

			if (targetDataLine.isOpen()) {
				targetDataLine.close();
			}
		}

		if (mixer.isOpen()) {
			mixer.close();
		}
	}

}