changeset in /hg/pulseaudio: 2008-10-08 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Wed Oct 8 07:38:25 PDT 2008
changeset a3a8e9e19967 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=a3a8e9e19967
description:
2008-10-08 Omair Majid <omajid at redhat.com>
* unittests/org/classpath/icedtea/pulseaudio/PulseAudioMixerTest.java
(testSynchronizationNotSupported): Checks that synchronization isnt
allowed by the mixer.
diffstat:
1 file changed, 37 insertions(+)
unittests/org/classpath/icedtea/pulseaudio/PulseAudioMixerTest.java | 37 ++++++++++
diffs (54 lines):
diff -r 96e885ef985c -r a3a8e9e19967 unittests/org/classpath/icedtea/pulseaudio/PulseAudioMixerTest.java
--- a/unittests/org/classpath/icedtea/pulseaudio/PulseAudioMixerTest.java Wed Oct 08 10:19:48 2008 -0400
+++ b/unittests/org/classpath/icedtea/pulseaudio/PulseAudioMixerTest.java Wed Oct 08 10:38:29 2008 -0400
@@ -45,6 +45,7 @@ import javax.sound.sampled.LineUnavailab
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.Mixer;
import javax.sound.sampled.Port;
+import javax.sound.sampled.SourceDataLine;
import javax.sound.sampled.TargetDataLine;
import org.junit.After;
@@ -366,6 +367,42 @@ public class PulseAudioMixerTest {
}
@Test
+ public void testSynchronizationNotSupported()
+ throws LineUnavailableException {
+ selectedMixer.open();
+
+ SourceDataLine line1 = (SourceDataLine) selectedMixer
+ .getLine(new Line.Info(SourceDataLine.class));
+ SourceDataLine line2 = (SourceDataLine) selectedMixer
+ .getLine(new Line.Info(SourceDataLine.class));
+ Line[] lines = { line1, line2 };
+
+ Assert.assertFalse(selectedMixer
+ .isSynchronizationSupported(lines, true));
+
+ Assert.assertFalse(selectedMixer.isSynchronizationSupported(lines,
+ false));
+
+ try {
+ selectedMixer.synchronize(lines, true);
+ Assert.fail("mixer shouldnt be able to synchronize lines");
+ } catch (IllegalArgumentException e) {
+
+ }
+
+ try {
+ selectedMixer.synchronize(lines, false);
+ Assert.fail("mixer shouldnt be able to synchronize lines");
+ } catch (IllegalArgumentException e) {
+
+ }
+
+ selectedMixer.close();
+
+ }
+
+ @Ignore
+ @Test
public void testLongWait() throws LineUnavailableException {
selectedMixer.open();
try {
More information about the distro-pkg-dev
mailing list