@@ -25,3 +25,67 @@ func TestNewCursorPaginator(t *testing.T) {
25
25
is .True (ok )
26
26
is .True (got .After (now ), "%v should be after %v" , got , now )
27
27
}
28
+
29
+ func TestCursorPaginator_Next_DateMode (t * testing.T ) {
30
+ is := assert .New (t )
31
+
32
+ var u * User
33
+ is .NoError (db .DropTableIfExists (u ).Error )
34
+ is .NoError (db .CreateTable (u ).Error )
35
+ ts := time .Unix (0 , 1548252003033986000 ) // non zero fractional part
36
+ is .NoError (db .Create (& User {DateCreation : ts }).Error )
37
+ is .NoError (db .Create (& User {DateCreation : ts .Add (time .Second )}).Error )
38
+
39
+ var users []User
40
+ s , err := NewGORMStore (db .Model (u ).Order ("date_creation" ), & users )
41
+ is .NoError (err )
42
+
43
+ v := url.Values {"limit" : []string {"1" }, "since" : []string {"1" }}
44
+ opts := NewOptions ()
45
+ opts .CursorOptions .Mode = DateModeCursor
46
+ opts .CursorOptions .DBName = "date_creation"
47
+ opts .CursorOptions .StructName = "DateCreation"
48
+ p , err := NewCursorPaginator (s , & http.Request {URL : & url.URL {RawQuery : v .Encode ()}}, opts )
49
+ is .NoError (err )
50
+ is .NoError (p .Page ())
51
+ is .Len (users , 1 )
52
+ is .Equal (1 , users [0 ].ID )
53
+
54
+ next := p .MakeNextURI ()
55
+ is .True (next .Valid )
56
+ // the next uri cursor is the timestamp of the last element incremented by one
57
+ is .Contains (next .String , strconv .FormatInt (users [0 ].DateCreation .Unix ()+ 1 , 10 ))
58
+ }
59
+
60
+ func TestCursorPaginator_Next_DateMode_Reverse (t * testing.T ) {
61
+ is := assert .New (t )
62
+
63
+ var u * User
64
+ is .NoError (db .DropTableIfExists (u ).Error )
65
+ is .NoError (db .CreateTable (u ).Error )
66
+ ts := time .Unix (0 , 1548252003033986000 ) // non zero fractional part
67
+ is .NoError (db .Create (& User {DateCreation : ts }).Error )
68
+ is .NoError (db .Create (& User {DateCreation : ts .Add (time .Second )}).Error )
69
+
70
+ var users []User
71
+ s , err := NewGORMStore (db .Model (u ).Order ("date_creation desc" ), & users )
72
+ is .NoError (err )
73
+
74
+ since := strconv .FormatInt (time .Now ().Unix (), 10 )
75
+ v := url.Values {"limit" : []string {"1" }, "since" : []string {since }}
76
+ opts := NewOptions ()
77
+ opts .CursorOptions .Mode = DateModeCursor
78
+ opts .CursorOptions .DBName = "date_creation"
79
+ opts .CursorOptions .StructName = "DateCreation"
80
+ opts .CursorOptions .Reverse = true
81
+ p , err := NewCursorPaginator (s , & http.Request {URL : & url.URL {RawQuery : v .Encode ()}}, opts )
82
+ is .NoError (err )
83
+ is .NoError (p .Page ())
84
+ is .Len (users , 1 )
85
+ is .Equal (2 , users [0 ].ID )
86
+
87
+ next := p .MakeNextURI ()
88
+ is .True (next .Valid )
89
+ // the next uri cursor is the timestamp of the last element
90
+ is .Contains (next .String , strconv .FormatInt (users [0 ].DateCreation .Unix (), 10 ))
91
+ }
0 commit comments