mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 02:26:26 +05:00
Move pagination tests to the appropriate file
This commit is contained in:
committed by
Dan Christian Bogos
parent
da80005a60
commit
3ff0a3fafb
@@ -18,7 +18,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
package utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"reflect"
|
||||
"testing"
|
||||
"time"
|
||||
@@ -263,188 +262,3 @@ func TestNewAttrReloadCacheWithOptsFromMap(t *testing.T) {
|
||||
t.Errorf("Expected %+v \n, received %+v", ToJSON(mp), ToJSON(rplyM))
|
||||
}
|
||||
}
|
||||
|
||||
func TestAPITPDataPaginate(t *testing.T) {
|
||||
var in []string
|
||||
|
||||
if rcv, err := Paginate(in, 2, 2, 6); err != nil {
|
||||
t.Error(err)
|
||||
} else if rcv != nil {
|
||||
t.Error("expected nil return")
|
||||
}
|
||||
|
||||
in = []string{"FLTR_1", "FLTR_2", "FLTR_3", "FLTR_4", "FLTR_5", "FLTR_6", "FLTR_7",
|
||||
"FLTR_8", "FLTR_9", "FLTR_10", "FLTR_11", "FLTR_12", "FLTR_13", "FLTR_14",
|
||||
"FLTR_15", "FLTR_16", "FLTR_17", "FLTR_18", "FLTR_19", "FLTR_20"}
|
||||
|
||||
exp := []string{"FLTR_7", "FLTR_8"}
|
||||
if rcv, err := Paginate(in, 2, 6, 9); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, exp) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", exp, rcv)
|
||||
}
|
||||
|
||||
exp = []string{"FLTR_19", "FLTR_20"}
|
||||
if rcv, err := Paginate(in, 0, 18, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, exp) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", exp, rcv)
|
||||
}
|
||||
|
||||
if rcv, err := Paginate(in, 0, 0, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, in) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", in, rcv)
|
||||
}
|
||||
|
||||
experr := `SERVER_ERROR: maximum number of items exceeded`
|
||||
if _, err := Paginate(in, 0, 0, 19); err == nil || err.Error() != experr {
|
||||
t.Error(err)
|
||||
}
|
||||
|
||||
if rcv, err := Paginate(in, 25, 18, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, exp) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", exp, rcv)
|
||||
}
|
||||
|
||||
var expOut []string
|
||||
if rcv, err := Paginate(in, 2, 22, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, expOut) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", expOut, rcv)
|
||||
}
|
||||
|
||||
if _, err := Paginate(in, 2, 4, 5); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
if _, err := Paginate(in, 0, 18, 19); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
type pag struct {
|
||||
limit int
|
||||
offset int
|
||||
maxItems int
|
||||
}
|
||||
|
||||
func testName(p pag) string {
|
||||
return fmt.Sprintf("limit:<%d>, offset:<%d>, maxItems:<%d>", p.limit, p.offset, p.maxItems)
|
||||
}
|
||||
|
||||
func TestPagination(t *testing.T) {
|
||||
in := []string{"FLTR_1", "FLTR_2", "FLTR_3", "FLTR_4", "FLTR_5"}
|
||||
experr := "SERVER_ERROR: maximum number of items exceeded"
|
||||
cases := []struct {
|
||||
p pag
|
||||
err string
|
||||
}{
|
||||
{pag{limit: 0, offset: 0, maxItems: 1}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 1}, ""},
|
||||
{pag{limit: 0, offset: 1, maxItems: 1}, experr},
|
||||
{pag{limit: 0, offset: 0, maxItems: 2}, experr},
|
||||
{pag{limit: 0, offset: 1, maxItems: 2}, experr},
|
||||
{pag{limit: 0, offset: 2, maxItems: 2}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 2}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 2}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 2}, ""},
|
||||
{pag{limit: 0, offset: 0, maxItems: 3}, experr},
|
||||
{pag{limit: 0, offset: 1, maxItems: 3}, experr},
|
||||
{pag{limit: 0, offset: 2, maxItems: 3}, experr},
|
||||
{pag{limit: 0, offset: 3, maxItems: 3}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 3}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 3}, ""},
|
||||
{pag{limit: 1, offset: 2, maxItems: 3}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 3}, ""},
|
||||
{pag{limit: 2, offset: 1, maxItems: 3}, ""},
|
||||
{pag{limit: 3, offset: 0, maxItems: 3}, ""},
|
||||
{pag{limit: 0, offset: 0, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 1, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 2, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 3, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 4, maxItems: 4}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 4}, ""},
|
||||
{pag{limit: 1, offset: 2, maxItems: 4}, ""},
|
||||
{pag{limit: 1, offset: 3, maxItems: 4}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 2, offset: 1, maxItems: 4}, ""},
|
||||
{pag{limit: 2, offset: 2, maxItems: 4}, ""},
|
||||
{pag{limit: 3, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 3, offset: 1, maxItems: 4}, ""},
|
||||
{pag{limit: 4, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 0, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 3, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 4, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 5, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 3, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 4, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 3, maxItems: 5}, ""},
|
||||
{pag{limit: 3, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 3, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 3, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 4, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 4, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 5, offset: 0, maxItems: 5}, ""},
|
||||
}
|
||||
|
||||
for _, c := range cases {
|
||||
t.Run(testName(c.p), func(t *testing.T) {
|
||||
_, err := Paginate(in, c.p.limit, c.p.offset, c.p.maxItems)
|
||||
if err != nil {
|
||||
if c.err == "" {
|
||||
t.Error("did not expect error")
|
||||
}
|
||||
} else if c.err != "" {
|
||||
t.Errorf("expected error")
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestAPITPDataGetPaginateOpts(t *testing.T) {
|
||||
opts := map[string]interface{}{
|
||||
PageLimitOpt: 1.3,
|
||||
PageOffsetOpt: 4,
|
||||
PageMaxItemsOpt: "5",
|
||||
}
|
||||
|
||||
if limit, offset, maxItems, err := GetPaginateOpts(opts); err != nil {
|
||||
t.Error(err)
|
||||
} else if limit != 1 {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", 1, limit)
|
||||
} else if offset != 4 {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", 4, offset)
|
||||
} else if maxItems != 5 {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", 5, maxItems)
|
||||
}
|
||||
|
||||
opts[PageMaxItemsOpt] = false
|
||||
experr := `cannot convert field<bool>: false to int`
|
||||
if _, _, _, err := GetPaginateOpts(opts); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
opts[PageOffsetOpt] = struct{}{}
|
||||
experr = `cannot convert field<struct {}>: {} to int`
|
||||
if _, _, _, err := GetPaginateOpts(opts); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
opts[PageLimitOpt] = true
|
||||
experr = `cannot convert field<bool>: true to int`
|
||||
if _, _, _, err := GetPaginateOpts(opts); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1505,3 +1505,188 @@ func TestFibDuration(t *testing.T) {
|
||||
t.Error("Expecting: 2, received ", tmp())
|
||||
}
|
||||
}
|
||||
|
||||
func TestCoreUtilsPaginate(t *testing.T) {
|
||||
var in []string
|
||||
|
||||
if rcv, err := Paginate(in, 2, 2, 6); err != nil {
|
||||
t.Error(err)
|
||||
} else if rcv != nil {
|
||||
t.Error("expected nil return")
|
||||
}
|
||||
|
||||
in = []string{"FLTR_1", "FLTR_2", "FLTR_3", "FLTR_4", "FLTR_5", "FLTR_6", "FLTR_7",
|
||||
"FLTR_8", "FLTR_9", "FLTR_10", "FLTR_11", "FLTR_12", "FLTR_13", "FLTR_14",
|
||||
"FLTR_15", "FLTR_16", "FLTR_17", "FLTR_18", "FLTR_19", "FLTR_20"}
|
||||
|
||||
exp := []string{"FLTR_7", "FLTR_8"}
|
||||
if rcv, err := Paginate(in, 2, 6, 9); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, exp) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", exp, rcv)
|
||||
}
|
||||
|
||||
exp = []string{"FLTR_19", "FLTR_20"}
|
||||
if rcv, err := Paginate(in, 0, 18, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, exp) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", exp, rcv)
|
||||
}
|
||||
|
||||
if rcv, err := Paginate(in, 0, 0, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, in) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", in, rcv)
|
||||
}
|
||||
|
||||
experr := `SERVER_ERROR: maximum number of items exceeded`
|
||||
if _, err := Paginate(in, 0, 0, 19); err == nil || err.Error() != experr {
|
||||
t.Error(err)
|
||||
}
|
||||
|
||||
if rcv, err := Paginate(in, 25, 18, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, exp) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", exp, rcv)
|
||||
}
|
||||
|
||||
var expOut []string
|
||||
if rcv, err := Paginate(in, 2, 22, 50); err != nil {
|
||||
t.Error(err)
|
||||
} else if !reflect.DeepEqual(rcv, expOut) {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", expOut, rcv)
|
||||
}
|
||||
|
||||
if _, err := Paginate(in, 2, 4, 5); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
if _, err := Paginate(in, 0, 18, 19); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
type pag struct {
|
||||
limit int
|
||||
offset int
|
||||
maxItems int
|
||||
}
|
||||
|
||||
func testName(p pag) string {
|
||||
return fmt.Sprintf("limit:<%d>, offset:<%d>, maxItems:<%d>", p.limit, p.offset, p.maxItems)
|
||||
}
|
||||
|
||||
func TestCoreUtilsPagination(t *testing.T) {
|
||||
in := []string{"FLTR_1", "FLTR_2", "FLTR_3", "FLTR_4", "FLTR_5"}
|
||||
experr := "SERVER_ERROR: maximum number of items exceeded"
|
||||
cases := []struct {
|
||||
p pag
|
||||
err string
|
||||
}{
|
||||
{pag{limit: 0, offset: 0, maxItems: 1}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 1}, ""},
|
||||
{pag{limit: 0, offset: 1, maxItems: 1}, experr},
|
||||
{pag{limit: 0, offset: 0, maxItems: 2}, experr},
|
||||
{pag{limit: 0, offset: 1, maxItems: 2}, experr},
|
||||
{pag{limit: 0, offset: 2, maxItems: 2}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 2}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 2}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 2}, ""},
|
||||
{pag{limit: 0, offset: 0, maxItems: 3}, experr},
|
||||
{pag{limit: 0, offset: 1, maxItems: 3}, experr},
|
||||
{pag{limit: 0, offset: 2, maxItems: 3}, experr},
|
||||
{pag{limit: 0, offset: 3, maxItems: 3}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 3}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 3}, ""},
|
||||
{pag{limit: 1, offset: 2, maxItems: 3}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 3}, ""},
|
||||
{pag{limit: 2, offset: 1, maxItems: 3}, ""},
|
||||
{pag{limit: 3, offset: 0, maxItems: 3}, ""},
|
||||
{pag{limit: 0, offset: 0, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 1, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 2, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 3, maxItems: 4}, experr},
|
||||
{pag{limit: 0, offset: 4, maxItems: 4}, experr},
|
||||
{pag{limit: 1, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 4}, ""},
|
||||
{pag{limit: 1, offset: 2, maxItems: 4}, ""},
|
||||
{pag{limit: 1, offset: 3, maxItems: 4}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 2, offset: 1, maxItems: 4}, ""},
|
||||
{pag{limit: 2, offset: 2, maxItems: 4}, ""},
|
||||
{pag{limit: 3, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 3, offset: 1, maxItems: 4}, ""},
|
||||
{pag{limit: 4, offset: 0, maxItems: 4}, ""},
|
||||
{pag{limit: 0, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 3, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 4, maxItems: 5}, ""},
|
||||
{pag{limit: 0, offset: 5, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 3, maxItems: 5}, ""},
|
||||
{pag{limit: 1, offset: 4, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 2, offset: 3, maxItems: 5}, ""},
|
||||
{pag{limit: 3, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 3, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 3, offset: 2, maxItems: 5}, ""},
|
||||
{pag{limit: 4, offset: 0, maxItems: 5}, ""},
|
||||
{pag{limit: 4, offset: 1, maxItems: 5}, ""},
|
||||
{pag{limit: 5, offset: 0, maxItems: 5}, ""},
|
||||
}
|
||||
|
||||
for _, c := range cases {
|
||||
t.Run(testName(c.p), func(t *testing.T) {
|
||||
_, err := Paginate(in, c.p.limit, c.p.offset, c.p.maxItems)
|
||||
if err != nil {
|
||||
if c.err == "" {
|
||||
t.Error("did not expect error")
|
||||
}
|
||||
} else if c.err != "" {
|
||||
t.Errorf("expected error")
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestAPITPDataGetPaginateOpts(t *testing.T) {
|
||||
opts := map[string]interface{}{
|
||||
PageLimitOpt: 1.3,
|
||||
PageOffsetOpt: 4,
|
||||
PageMaxItemsOpt: "5",
|
||||
}
|
||||
|
||||
if limit, offset, maxItems, err := GetPaginateOpts(opts); err != nil {
|
||||
t.Error(err)
|
||||
} else if limit != 1 {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", 1, limit)
|
||||
} else if offset != 4 {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", 4, offset)
|
||||
} else if maxItems != 5 {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", 5, maxItems)
|
||||
}
|
||||
|
||||
opts[PageMaxItemsOpt] = false
|
||||
experr := `cannot convert field<bool>: false to int`
|
||||
if _, _, _, err := GetPaginateOpts(opts); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
opts[PageOffsetOpt] = struct{}{}
|
||||
experr = `cannot convert field<struct {}>: {} to int`
|
||||
if _, _, _, err := GetPaginateOpts(opts); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
|
||||
opts[PageLimitOpt] = true
|
||||
experr = `cannot convert field<bool>: true to int`
|
||||
if _, _, _, err := GetPaginateOpts(opts); err == nil || err.Error() != experr {
|
||||
t.Errorf("expected: <%+v>, \nreceived: <%+v>", experr, err)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user