PortAudio.jl/test/runtests.jl

117 lines
4.3 KiB
Julia
Raw Permalink Normal View History

2014-07-01 03:24:29 +02:00
#!/usr/bin/env julia
using BaseTestNext
2016-03-20 05:28:56 +01:00
using PortAudio
using SampledSignals
# these test are currently set up to run on OSX
2014-07-01 03:24:29 +02:00
@testset "PortAudio Tests" begin
devs = PortAudio.devices()
i = findfirst(d -> d.maxinchans > 0, devs)
indev = i > 0 ? devs[i] : nothing
i = findfirst(d -> d.maxoutchans > 0, devs)
outdev = i > 0 ? devs[i] : nothing
i = findfirst(d -> d.maxoutchans > 0 && d.maxinchans > 0, devs)
duplexdev = i > 0 ? devs[i] : nothing
@testset "Reports version" begin
io = IOBuffer()
PortAudio.versioninfo(io)
result = takebuf_string(io)
# make sure this is the same version I tested with
@test result ==
"""PortAudio V19-devel (built Aug 6 2014 17:54:39)
Version Number: 1899
"""
end
@testset "PortAudio Callback works and doesn't allocate" begin
inbuf = rand(Float32, 2, 8)
outbuf = Array(Float32, 2, 8)
sinkbuf = rand(Float32, 2, 8)
sourcebuf = Array(Float32, 2, 8)
state = Ref(PortAudio.PortAudioPending)
work = Base.SingleAsyncWork(data -> nothing)
info = PortAudio.CallbackInfo(2, pointer(sourcebuf),
2, pointer(sinkbuf),
work.handle,
Ptr{PortAudio.BufferState}(pointer_from_objref(state)))
# handle any conversions here so they don't mess with the allocation
inptr = pointer(inbuf)
outptr = pointer(outbuf)
nframes = Culong(8)
flags = Culong(0)
infoptr = Ptr{PortAudio.CallbackInfo{Float32}}(pointer_from_objref(info))
ret = PortAudio.portaudio_callback(inptr, outptr, nframes, C_NULL, flags, infoptr)
@test isa(ret, Cint)
@test ret == PortAudio.paContinue
@test outbuf == sinkbuf
@test inbuf == sourcebuf
@test state[] == PortAudio.JuliaPending
# call again (underrun)
ret = PortAudio.portaudio_callback(inptr, outptr, nframes, C_NULL, flags, infoptr)
@test isa(ret, Cint)
@test ret == PortAudio.paContinue
@test outbuf == zeros(Float32, 2, 8)
# test allocation
state[] = PortAudio.PortAudioPending
alloc = @allocated PortAudio.portaudio_callback(inptr, outptr, nframes, C_NULL, flags, infoptr)
@test alloc == 0
# now test allocation in underrun state
alloc = @allocated PortAudio.portaudio_callback(inptr, outptr, nframes, C_NULL, flags, infoptr)
@test alloc == 0
end
@testset "Open Default Device" begin
stream = PortAudioStream()
buf = read(stream, 0.1s)
@test size(buf) == (round(Int, 0.1s * samplerate(stream)), nchannels(stream.source))
write(stream, buf)
close(stream)
end
@testset "Open Device by name" begin
stream = PortAudioStream("Built-in Microph", "Built-in Output")
buf = read(stream, 0.1s)
@test size(buf) == (round(Int, 0.1s * samplerate(stream)), nchannels(stream.source))
write(stream, buf)
io = IOBuffer()
show(io, stream)
@test takebuf_string(io) == """
PortAudio.PortAudioStream{Float32,SIUnits.SIQuantity{Int64,0,0,-1,0,0,0,0,0,0}}
Samplerate: 48000 s⁻¹
Buffer Size: 4096 frames
2 channel sink: "Built-in Output"
2 channel source: "Built-in Microph\""""
close(stream)
end
@testset "Error on wrong name" begin
@test_throws ErrorException PortAudioStream("foobarbaz")
end
# no way to check that the right data is actually getting read or written here,
# but at least it's not crashing.
@testset "Queued Writing" begin
stream = PortAudioStream()
buf = SampleBuf(rand(eltype(stream), 48000, nchannels(stream.sink))*0.1, samplerate(stream))
t1 = @async write(stream, buf)
t2 = @async write(stream, buf)
@test wait(t1) == 48000
@test wait(t2) == 48000
close(stream)
end
@testset "Queued Reading" begin
stream = PortAudioStream()
buf = SampleBuf(rand(eltype(stream), 48000, nchannels(stream.source)), samplerate(stream))
t1 = @async read!(stream, buf)
t2 = @async read!(stream, buf)
@test wait(t1) == 48000
@test wait(t2) == 48000
close(stream)
end
end