This repository has been archived by the owner on Jan 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwriter_test.go
109 lines (87 loc) · 3.02 KB
/
writer_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// {{{ Copyright (c) Paul R. Tagliamonte <[email protected]>, 2020
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE. }}}
package sdr_test
import (
"sync"
"testing"
"github.com/stretchr/testify/assert"
"hz.tools/sdr"
)
func TestMultiWriterU8(t *testing.T) {
wg := sync.WaitGroup{}
pipeReader1, pipeWriter1 := sdr.Pipe(0, sdr.SampleFormatU8)
pipeReader2, pipeWriter2 := sdr.Pipe(0, sdr.SampleFormatU8)
readAll := func(t *testing.T, r sdr.Reader) {
defer wg.Done()
buf := make(sdr.SamplesU8, 1024)
i, err := sdr.ReadFull(r, buf)
assert.NoError(t, err)
assert.Equal(t, 1024, i)
}
go readAll(t, pipeReader1)
go readAll(t, pipeReader2)
wg.Add(2)
buf := make(sdr.SamplesU8, 1024)
buf[0][0] = 0xFF
buf[1][1] = 0xFF
mw, err := sdr.MultiWriter(pipeWriter1, pipeWriter2)
assert.NoError(t, err)
i, err := mw.Write(buf)
assert.NoError(t, err)
assert.Equal(t, 1024, i)
wg.Wait()
}
func TestMultiWriterFormatMismatch(t *testing.T) {
_, pipeWriter1 := sdr.Pipe(0, sdr.SampleFormatU8)
_, pipeWriter2 := sdr.Pipe(0, sdr.SampleFormatC64)
_, err := sdr.MultiWriter(pipeWriter1, pipeWriter2)
assert.Equal(t, sdr.ErrSampleFormatMismatch, err)
}
func TestMultiWriterRateMismatch(t *testing.T) {
_, pipeWriter1 := sdr.Pipe(0, sdr.SampleFormatU8)
_, pipeWriter2 := sdr.Pipe(1024, sdr.SampleFormatU8)
_, err := sdr.MultiWriter(pipeWriter1, pipeWriter2)
assert.Error(t, err)
}
func TestWriterWithCloser(t *testing.T) {
_, pipeWriter := sdr.Pipe(1.8e6, sdr.SampleFormatC64)
closeCalled := false
wc := sdr.WriterWithCloser(pipeWriter, func() error {
closeCalled = true
return pipeWriter.Close()
})
wc.Close()
assert.True(t, closeCalled)
}
func TestDiscard(t *testing.T) {
for _, sf := range map[string]sdr.SampleFormat{
"C64": sdr.SampleFormatC64,
"I16": sdr.SampleFormatI16,
"U8": sdr.SampleFormatU8,
} {
w := sdr.Discard(0, sdr.SampleFormatC64)
b, err := sdr.MakeSamples(sf, 1024*32)
assert.NoError(t, err)
i, err := w.Write(b)
assert.NoError(t, err)
assert.Equal(t, 1024*32, i)
}
}
// vim: foldmethod=marker