mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-25 09:18:54 -05:00
FileRecord improvement: unit test for the rescue program
This commit is contained in:
parent
38aa1a8e77
commit
bfb7583544
@ -55,5 +55,11 @@ You will usually find a `golang` package in your distribution. For example in Ub
|
|||||||
|
|
||||||
In this directory just do `go build`
|
In this directory just do `go build`
|
||||||
|
|
||||||
|
<h3>Unit testing</h3>
|
||||||
|
|
||||||
|
Unit test (very simple) is located in `rescuesdriq_test.go`. It uses the [Go Convey](https://github.com/smartystreets/goconvey) framework. You should first install it with:
|
||||||
|
`go get github.com/smartystreets/goconvey`
|
||||||
|
|
||||||
|
You can run unit test from command line with: `go test`
|
||||||
|
|
||||||
|
Or with the Go Convey server that you start from this directory with: `$GOPATH/bin/goconvey` where `$GOPATH` is the path to your go installation.
|
||||||
|
@ -1,18 +1,17 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
|
||||||
"fmt"
|
|
||||||
"bufio"
|
"bufio"
|
||||||
"io"
|
|
||||||
"os"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"time"
|
"flag"
|
||||||
|
"fmt"
|
||||||
"hash/crc32"
|
"hash/crc32"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
type HeaderStd struct {
|
type HeaderStd struct {
|
||||||
SampleRate uint32
|
SampleRate uint32
|
||||||
CenterFrequency uint64
|
CenterFrequency uint64
|
||||||
@ -22,7 +21,6 @@ type HeaderStd struct {
|
|||||||
CRC32 uint32
|
CRC32 uint32
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func check(e error) {
|
func check(e error) {
|
||||||
if e != nil {
|
if e != nil {
|
||||||
panic(e)
|
panic(e)
|
||||||
@ -35,7 +33,7 @@ func analyze(r *bufio.Reader) HeaderStd {
|
|||||||
if err != nil && err != io.EOF {
|
if err != nil && err != io.EOF {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
if (n != 32) {
|
if n != 32 {
|
||||||
panic("Header too small")
|
panic("Header too small")
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,7 +60,7 @@ func setCRC(header *HeaderStd) {
|
|||||||
header.CRC32 = crc32.ChecksumIEEE(bin_buf.Bytes()[0:28])
|
header.CRC32 = crc32.ChecksumIEEE(bin_buf.Bytes()[0:28])
|
||||||
}
|
}
|
||||||
|
|
||||||
func getCRC(header *HeaderStd) uint32 {
|
func GetCRC(header *HeaderStd) uint32 {
|
||||||
var bin_buf bytes.Buffer
|
var bin_buf bytes.Buffer
|
||||||
header.Filler = 0
|
header.Filler = 0
|
||||||
binary.Write(&bin_buf, binary.LittleEndian, header)
|
binary.Write(&bin_buf, binary.LittleEndian, header)
|
||||||
@ -76,7 +74,7 @@ func printHeader(header *HeaderStd) {
|
|||||||
tm := time.Unix(header.StartTimestamp, 0)
|
tm := time.Unix(header.StartTimestamp, 0)
|
||||||
fmt.Println("Start :", tm)
|
fmt.Println("Start :", tm)
|
||||||
fmt.Println("CRC32 :", header.CRC32)
|
fmt.Println("CRC32 :", header.CRC32)
|
||||||
fmt.Println("CRC32 OK :", getCRC(header))
|
fmt.Println("CRC32 OK :", GetCRC(header))
|
||||||
}
|
}
|
||||||
|
|
||||||
func copyContent(reader *bufio.Reader, writer *bufio.Writer, blockSize uint) {
|
func copyContent(reader *bufio.Reader, writer *bufio.Writer, blockSize uint) {
|
||||||
@ -128,7 +126,7 @@ func main() {
|
|||||||
check(err)
|
check(err)
|
||||||
// close fi on exit and check for its returned error
|
// close fi on exit and check for its returned error
|
||||||
defer func() {
|
defer func() {
|
||||||
err := fi.Close();
|
err := fi.Close()
|
||||||
check(err)
|
check(err)
|
||||||
}()
|
}()
|
||||||
// make a read buffer
|
// make a read buffer
|
||||||
@ -150,7 +148,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
} else if flagSeen["ts"] {
|
} else if flagSeen["ts"] {
|
||||||
t, err := time.Parse(time.RFC3339, *timeStr)
|
t, err := time.Parse(time.RFC3339, *timeStr)
|
||||||
if (err == nil) {
|
if err == nil {
|
||||||
headerOrigin.StartTimestamp = t.Unix()
|
headerOrigin.StartTimestamp = t.Unix()
|
||||||
} else {
|
} else {
|
||||||
fmt.Println("Incorrect time specified. Defaulting to now")
|
fmt.Println("Incorrect time specified. Defaulting to now")
|
||||||
@ -170,7 +168,7 @@ func main() {
|
|||||||
check(err)
|
check(err)
|
||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
err := fo.Close();
|
err := fo.Close()
|
||||||
check(err)
|
check(err)
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
26
rescuesdriq/rescuesdriq_test.go
Normal file
26
rescuesdriq/rescuesdriq_test.go
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
. "github.com/smartystreets/goconvey/convey"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSpec(t *testing.T) {
|
||||||
|
|
||||||
|
// Only pass t into top-level Convey calls
|
||||||
|
Convey("Given a header structure", t, func() {
|
||||||
|
var header HeaderStd
|
||||||
|
header.SampleRate = 75000
|
||||||
|
header.CenterFrequency = 435000000
|
||||||
|
header.StartTimestamp = 1539083921
|
||||||
|
header.SampleSize = 16
|
||||||
|
header.Filler = 0
|
||||||
|
|
||||||
|
crc32 := GetCRC(&header)
|
||||||
|
|
||||||
|
Convey("The CRC32 value should be 2294957931", func() {
|
||||||
|
So(crc32, ShouldEqual, 2294957931)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user