mirror of https://bitbucket.org/ausocean/av.git
65 lines
2.0 KiB
Go
65 lines
2.0 KiB
Go
|
/*
|
||
|
NAME
|
||
|
lex_test.go
|
||
|
|
||
|
AUTHOR
|
||
|
Trek Hopton <trek@ausocean.org>
|
||
|
|
||
|
LICENSE
|
||
|
This file is Copyright (C) 2019 the Australian Ocean Lab (AusOcean)
|
||
|
|
||
|
It is free software: you can redistribute it and/or modify them
|
||
|
under the terms of the GNU General Public License as published by the
|
||
|
Free Software Foundation, either version 3 of the License, or (at your
|
||
|
option) any later version.
|
||
|
|
||
|
It is distributed in the hope that it will be useful, but WITHOUT
|
||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
||
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
||
|
*/
|
||
|
|
||
|
package codecutil
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"io"
|
||
|
"strconv"
|
||
|
"testing"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
var lexTests = []struct {
|
||
|
data []byte
|
||
|
t time.Duration
|
||
|
n int
|
||
|
fail bool
|
||
|
}{
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Millisecond, 4, false},
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Millisecond, 3, false},
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Duration(0), 2, false},
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Duration(0), 1, false},
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Nanosecond, 0, true},
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Millisecond, -1, true},
|
||
|
{[]byte{0x10, 0x00, 0xf3, 0x45, 0xfe, 0xd2, 0xaa, 0x4e}, time.Millisecond, 15, false},
|
||
|
}
|
||
|
|
||
|
func TestLexBytes(t *testing.T) {
|
||
|
for i, tt := range lexTests {
|
||
|
t.Run(strconv.Itoa(i), func(t *testing.T) {
|
||
|
dst := bytes.NewBuffer([]byte{})
|
||
|
err := LexBytes(dst, bytes.NewReader(tt.data), tt.t, tt.n)
|
||
|
if err != nil && err != io.EOF {
|
||
|
if !tt.fail {
|
||
|
t.Errorf("unexpected error: %v", err.Error())
|
||
|
}
|
||
|
} else if !bytes.Equal(dst.Bytes(), tt.data) {
|
||
|
t.Errorf("data before and after lex are not equal: want %v, got %v", tt.data, dst.Bytes())
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|