2020-06-08 03:29:51 +03:00
|
|
|
package ranges_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
2021-08-17 13:06:32 +03:00
|
|
|
|
|
|
|
"github.com/wader/fq/pkg/ranges"
|
2020-06-08 03:29:51 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|