mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
125 lines
3.0 KiB
Go
125 lines
3.0 KiB
Go
// Copyright 2024 The Ebitengine 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 convert_test
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"math/rand" // TODO: Use math/rand/v2 when the minimum supported version becomes Go 1.22.
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
"unsafe"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/audio/internal/convert"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
code := m.Run()
|
|
// Tests in this package often fails on GitHub Actions due to unfinished goroutines.
|
|
// That's mysterious, but to avoid this, sleep for a while before exiting.
|
|
time.Sleep(200 * time.Millisecond)
|
|
os.Exit(code)
|
|
}
|
|
|
|
func randInt16s(n int) []int16 {
|
|
r := make([]int16, n)
|
|
for i := range r {
|
|
r[i] = int16(rand.Intn(1<<16) - (1 << 15))
|
|
}
|
|
return r
|
|
}
|
|
|
|
func TestFloat32(t *testing.T) {
|
|
type testCase struct {
|
|
Name string
|
|
In []int16
|
|
}
|
|
cases := []testCase{
|
|
{
|
|
Name: "empty",
|
|
In: nil,
|
|
},
|
|
{
|
|
Name: "-1, 0, 1",
|
|
In: []int16{-32768, 0, 32767},
|
|
},
|
|
{
|
|
Name: "8 0s",
|
|
In: []int16{0, 0, 0, 0, 0, 0, 0, 0},
|
|
},
|
|
{
|
|
Name: "random 256 values",
|
|
In: randInt16s(256),
|
|
},
|
|
{
|
|
Name: "random 65536 values",
|
|
In: randInt16s(65536),
|
|
},
|
|
}
|
|
for _, c := range cases {
|
|
c := c
|
|
t.Run(c.Name, func(t *testing.T) {
|
|
for _, seek := range []bool{false, true} {
|
|
seek := seek
|
|
name := "nonseek"
|
|
if seek {
|
|
name = "seek"
|
|
}
|
|
t.Run(name, func(t *testing.T) {
|
|
// Note that unsafe.SliceData is available as of Go 1.20.
|
|
var in, out []byte
|
|
if len(c.In) > 0 {
|
|
outF32 := make([]float32, len(c.In))
|
|
for i := range c.In {
|
|
outF32[i] = float32(c.In[i]) / (1 << 15)
|
|
}
|
|
in = unsafe.Slice((*byte)(unsafe.Pointer(&c.In[0])), len(c.In)*2)
|
|
out = unsafe.Slice((*byte)(unsafe.Pointer(&outF32[0])), len(outF32)*4)
|
|
}
|
|
r := convert.NewFloat32BytesReaderFromInt16BytesReader(bytes.NewReader(in)).(io.ReadSeeker)
|
|
var got []byte
|
|
for {
|
|
var buf [97]byte
|
|
n, err := r.Read(buf[:])
|
|
got = append(got, buf[:n]...)
|
|
if err != nil {
|
|
if err != io.EOF {
|
|
t.Fatal(err)
|
|
}
|
|
break
|
|
}
|
|
if seek {
|
|
// Shifting by incomplete bytes should not affect the result.
|
|
for i := 0; i < 4; i++ {
|
|
if _, err := r.Seek(int64(i), io.SeekCurrent); err != nil {
|
|
if err != io.EOF {
|
|
t.Fatal(err)
|
|
}
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
want := out
|
|
if !bytes.Equal(got, want) {
|
|
t.Errorf("got: %v, want: %v", got, want)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|