123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- // Copyright 2018 The Ebiten Authors
- //
- // 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 audio_test
- import (
- "bytes"
- "io"
- "runtime"
- "testing"
- "time"
- "github.com/hajimehoshi/ebiten/v2/audio"
- )
- var context *audio.Context
- func setup() {
- context = audio.NewContext(44100)
- }
- func teardown() {
- audio.ResetContextForTesting()
- context = nil
- }
- // Issue #746
- func TestGC(t *testing.T) {
- setup()
- defer teardown()
- p, _ := context.NewPlayer(bytes.NewReader(make([]byte, 4)))
- got := audio.PlayersCountForTesting()
- if want := 0; got != want {
- t.Errorf("PlayersCountForTesting(): got: %d, want: %d", got, want)
- }
- p.Play()
- got = audio.PlayersCountForTesting()
- if want := 1; got != want {
- t.Errorf("PlayersCountForTesting() after Play: got: %d, want: %d", got, want)
- }
- runtime.KeepAlive(p)
- p = nil
- runtime.GC()
- for i := 0; i < 10; i++ {
- got = audio.PlayersCountForTesting()
- if want := 0; got == want {
- return
- }
- if err := audio.UpdateForTesting(); err != nil {
- t.Error(err)
- }
- // 200[ms] should be enough all the bytes are consumed.
- // TODO: This is a dirty hack. Would it be possible to use virtual time?
- time.Sleep(200 * time.Millisecond)
- }
- t.Errorf("time out")
- }
- // Issue #853
- func TestSameSourcePlayers(t *testing.T) {
- setup()
- defer teardown()
- src := bytes.NewReader(make([]byte, 4))
- p0, err := context.NewPlayer(src)
- if err != nil {
- t.Fatal(err)
- }
- p1, err := context.NewPlayer(src)
- if err != nil {
- t.Fatal(err)
- }
- // As the player does not play yet, error doesn't happen.
- if err := audio.UpdateForTesting(); err != nil {
- t.Error(err)
- }
- p0.Play()
- p1.Play()
- if err := audio.UpdateForTesting(); err == nil {
- t.Errorf("got: nil, want: an error")
- }
- }
- func TestPauseBeforeInit(t *testing.T) {
- setup()
- defer teardown()
- src := bytes.NewReader(make([]byte, 4))
- p, err := context.NewPlayer(src)
- if err != nil {
- t.Fatal(err)
- }
- p.Play()
- p.Pause()
- p.Play()
- if err := audio.UpdateForTesting(); err != nil {
- t.Error(err)
- }
- }
- type emptySource struct{}
- func (emptySource) Read(buf []byte) (int, error) {
- return len(buf), nil
- }
- func TestNonSeekableSource(t *testing.T) {
- if runtime.GOOS == "js" {
- t.Skip("infinite steams in tests cannot be treated well on browsers")
- }
- setup()
- defer teardown()
- p, err := context.NewPlayer(emptySource{})
- if err != nil {
- t.Fatal(err)
- }
- p.Play()
- p.Pause()
- if err := audio.UpdateForTesting(); err != nil {
- t.Error(err)
- }
- }
- type uncomparableSource []int
- func (uncomparableSource) Read(buf []byte) (int, error) {
- return 0, io.EOF
- }
- // Issue #3039
- func TestUncomparableSource(t *testing.T) {
- setup()
- defer teardown()
- p, err := context.NewPlayer(uncomparableSource{})
- if err != nil {
- t.Fatal(err)
- }
- p.Play()
- p.Pause()
- if err := audio.UpdateForTesting(); err != nil {
- t.Error(err)
- }
- }
|