mirror of
https://github.com/wader/fq.git
synced 2024-11-23 18:56:52 +03:00
39 lines
851 B
Go
39 lines
851 B
Go
|
package ranges_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"fq/pkg/ranges"
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRangeGaps(t *testing.T) {
|
||
|
testCases := []struct {
|
||
|
total string
|
||
|
ranges string
|
||
|
expected string
|
||
|
}{
|
||
|
{"0:0", "", "0:0"},
|
||
|
{"0:10", "", "0:10"},
|
||
|
|
||
|
{"0:10", "0:10", ""},
|
||
|
{"0:10", "0:0", "0:10"},
|
||
|
|
||
|
{"0:10", "1:9", "0:1"},
|
||
|
{"0:10", "0:9", "9:1"},
|
||
|
|
||
|
{"0:10", "1:1 8:1", "0:1 2:6 9:1"},
|
||
|
{"0:10", "1:1 2:5 8:1", "0:1 9:1"},
|
||
|
{"0:10", "1:1 2:8 8:2", "0:1"},
|
||
|
{"0:10", "0:4 2:8 8:2", ""},
|
||
|
}
|
||
|
for _, tC := range testCases {
|
||
|
t.Run(fmt.Sprintf("%v_%v_%v", tC.total, tC.ranges, tC.expected), func(t *testing.T) {
|
||
|
actual := ranges.Gaps(ranges.RangeFromString(tC.total), ranges.SliceFromString(tC.ranges))
|
||
|
if !reflect.DeepEqual(ranges.SliceFromString(tC.expected), actual) {
|
||
|
t.Errorf("expected %v, got %v", tC.expected, actual)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|