sui_graphql_rpc/types/cursor.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
use std::{fmt, ops::Deref, vec};
use async_graphql::{
connection::{CursorType, OpaqueCursor},
*,
};
use diesel::{
deserialize::FromSqlRow, query_builder::QueryFragment, sql_types::Untyped, QueryDsl,
QueryResult, QuerySource,
};
use diesel_async::methods::LoadQuery;
use fastcrypto::encoding::{Base64, Encoding};
use serde::{de::DeserializeOwned, Serialize};
use crate::{
config::ServiceConfig,
consistency::{Checkpointed, ConsistentIndexCursor},
data::{Conn, DbConnection, DieselBackend, DieselConn, Query},
error::Error,
raw_query::RawQuery,
};
/// Cursor that hides its value by encoding it as JSON and then Base64.
pub(crate) struct JsonCursor<C>(OpaqueCursor<C>);
/// Cursor that hides its value by encoding it as BCS and then Base64.
pub(crate) struct BcsCursor<C>(C);
/// Connection field parameters parsed into a single type that encodes the bounds of a single page
/// in a paginated response.
#[derive(Debug, Clone)]
pub(crate) struct Page<C> {
/// The exclusive lower bound of the page (no bound means start from the beginning of the
/// data-set).
after: Option<C>,
/// The exclusive upper bound of the page (no bound means continue to the end of the data-set).
before: Option<C>,
/// Maximum number of entries in the page.
limit: u64,
/// In case there are more than `limit` entries in the range described by `(after, before)`,
/// this field states whether the entries up to limit are taken fron the `Front` or `Back` of
/// that range.
end: End,
}
/// Whether the page is extracted from the beginning or the end of the range bounded by the cursors.
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
pub(crate) enum End {
Front,
Back,
}
/// Results from the database that are pointed to by cursors.
pub(crate) trait Paginated<C: CursorType>: Target<C> {
type Source: QuerySource;
/// Adds a filter to `query` to bound its result to be greater than or equal to `cursor`
/// (returning the new query).
fn filter_ge<ST, GB>(
cursor: &C,
query: Query<ST, Self::Source, GB>,
) -> Query<ST, Self::Source, GB>;
/// Adds a filter to `query` to bound its results to be less than or equal to `cursor`
/// (returning the new query).
fn filter_le<ST, GB>(
cursor: &C,
query: Query<ST, Self::Source, GB>,
) -> Query<ST, Self::Source, GB>;
/// Adds an `ORDER BY` clause to `query` to order rows according to their cursor values
/// (returning the new query). The `asc` parameter controls whether the ordering is ASCending
/// (`true`) or descending (`false`).
fn order<ST, GB>(asc: bool, query: Query<ST, Self::Source, GB>) -> Query<ST, Self::Source, GB>;
}
/// Results from the database that are pointed to by cursors. Equivalent to `Paginated`, but for a
/// `RawQuery`.
pub(crate) trait RawPaginated<C: CursorType>: Target<C> {
/// Adds a filter to `query` to bound its result to be greater than or equal to `cursor`
/// (returning the new query).
fn filter_ge(cursor: &C, query: RawQuery) -> RawQuery;
/// Adds a filter to `query` to bound its results to be less than or equal to `cursor`
/// (returning the new query).
fn filter_le(cursor: &C, query: RawQuery) -> RawQuery;
/// Adds an `ORDER BY` clause to `query` to order rows according to their cursor values
/// (returning the new query). The `asc` parameter controls whether the ordering is ASCending
/// (`true`) or descending (`false`).
fn order(asc: bool, query: RawQuery) -> RawQuery;
}
pub(crate) trait Target<C: CursorType> {
/// The cursor pointing at this target value, assuming it was read at `checkpoint_viewed_at`.
fn cursor(&self, checkpoint_viewed_at: u64) -> C;
}
/// Interface for dealing with cursors that may come from a scan-limit-ed query.
pub(crate) trait ScanLimited: Clone + PartialEq {
/// Whether the cursor was derived from a scan limit. Only applicable to the `startCursor` and
/// `endCursor` returned from a Connection's `PageInfo`, and indicates that the cursor may not
/// have a corresponding node in the result set.
fn is_scan_limited(&self) -> bool {
false
}
/// Returns a version of the cursor that is not scan limited.
fn unlimited(&self) -> Self {
self.clone()
}
}
impl<C> JsonCursor<C> {
pub(crate) fn new(cursor: C) -> Self {
JsonCursor(OpaqueCursor(cursor))
}
}
impl<C> BcsCursor<C> {
pub(crate) fn new(cursor: C) -> Self {
BcsCursor(cursor)
}
}
impl<C> Page<C> {
/// Convert connection parameters into a page. Entries for the page are drawn from the range
/// `(after, before)` (Both bounds are optional). The number of entries in the page is
/// controlled by `first` and `last`.
///
/// - Setting both is in an error.
/// - Setting `first` indicates that the entries are taken from the front of the range.
/// - Setting `last` indicates that the entries are taken from the end of the range.
/// - Setting neither defaults the limit to the default page size in `config`, taken from the
/// front of the range.
///
/// It is an error to set a limit on page size that is greater than the `config`'s max page
/// size.
pub(crate) fn from_params(
config: &ServiceConfig,
first: Option<u64>,
after: Option<C>,
last: Option<u64>,
before: Option<C>,
) -> Result<Self> {
let limits = &config.limits;
let page = match (first, after, last, before) {
(Some(_), _, Some(_), _) => return Err(Error::CursorNoFirstLast.extend()),
(limit, after, None, before) => Page {
after,
before,
limit: limit.unwrap_or(limits.default_page_size as u64),
end: End::Front,
},
(None, after, Some(limit), before) => Page {
after,
before,
limit,
end: End::Back,
},
};
if page.limit > limits.max_page_size as u64 {
return Err(Error::PageTooLarge(page.limit, limits.max_page_size).extend());
}
Ok(page)
}
/// A page that just limits the number of results, without applying any other bounds.
pub(crate) fn bounded(limit: u64) -> Self {
Page {
after: None,
before: None,
limit,
end: End::Front,
}
}
pub(crate) fn after(&self) -> Option<&C> {
self.after.as_ref()
}
pub(crate) fn before(&self) -> Option<&C> {
self.before.as_ref()
}
pub(crate) fn limit(&self) -> usize {
self.limit as usize
}
pub(crate) fn is_from_front(&self) -> bool {
matches!(self.end, End::Front)
}
pub(crate) fn end(&self) -> End {
self.end
}
}
impl<C> Page<C>
where
C: Checkpointed,
{
/// If cursors are provided, defer to the `checkpoint_viewed_at` in the cursor if they are
/// consistent. Otherwise, use the value from the parameter, or set to None. This is so that
/// paginated queries are consistent with the previous query that created the cursor.
pub(crate) fn validate_cursor_consistency(&self) -> Result<Option<u64>, Error> {
match (self.after(), self.before()) {
(Some(after), Some(before)) => {
if after.checkpoint_viewed_at() == before.checkpoint_viewed_at() {
Ok(Some(after.checkpoint_viewed_at()))
} else {
Err(Error::Client(
"The provided cursors are taken from different checkpoints and cannot be used together in the same query."
.to_string(),
))
}
}
// If only one cursor is provided, then we can directly use the checkpoint sequence
// number on it.
(Some(cursor), None) | (None, Some(cursor)) => Ok(Some(cursor.checkpoint_viewed_at())),
(None, None) => Ok(None),
}
}
}
impl Page<JsonCursor<ConsistentIndexCursor>> {
/// Treat the cursors of this Page as indices into a range [0, total). Validates that the
/// cursors of the page are consistent, and returns two booleans indicating whether there is a
/// previous or next page in the range, the `checkpoint_viewed_at` to set for consistency, and
/// an iterator of cursors within that Page.
#[allow(clippy::type_complexity)]
pub(crate) fn paginate_consistent_indices(
&self,
total: usize,
checkpoint_viewed_at: u64,
) -> Result<
Option<(
bool,
bool,
u64,
impl Iterator<Item = JsonCursor<ConsistentIndexCursor>>,
)>,
Error,
> {
let cursor_viewed_at = self.validate_cursor_consistency()?;
let checkpoint_viewed_at = cursor_viewed_at.unwrap_or(checkpoint_viewed_at);
let mut lo = self.after().map_or(0, |a| a.ix + 1);
let mut hi = self.before().map_or(total, |b| b.ix);
if hi <= lo {
return Ok(None);
} else if (hi - lo) > self.limit() {
if self.is_from_front() {
hi = lo + self.limit();
} else {
lo = hi - self.limit();
}
}
Ok(Some((
0 < lo,
hi < total,
checkpoint_viewed_at,
(lo..hi).map(move |ix| {
JsonCursor::new(ConsistentIndexCursor {
ix,
c: checkpoint_viewed_at,
})
}),
)))
}
}
impl<C: CursorType + ScanLimited + Eq + Clone + Send + Sync + 'static> Page<C> {
/// Treat the cursors of this page as upper- and lowerbound filters for a database `query`.
/// Returns two booleans indicating whether there is a previous or next page in the range,
/// followed by an iterator of values in the page, fetched from the database.
///
/// The values returned implement `Target<C>`, so are able to compute their own cursors.
///
/// `checkpoint_viewed_at` is a required parameter to and passed to each element to construct a
/// consistent cursor.
pub(crate) async fn paginate_query<T, Q, ST, GB>(
&self,
conn: &mut Conn<'_>,
checkpoint_viewed_at: u64,
query: Q,
) -> QueryResult<(bool, bool, impl Iterator<Item = T>)>
where
Q: Fn() -> Query<ST, T::Source, GB>,
Query<ST, T::Source, GB>: LoadQuery<'static, DieselConn, T>,
Query<ST, T::Source, GB>: QueryFragment<DieselBackend>,
<T as Paginated<C>>::Source: Send + 'static,
<<T as Paginated<C>>::Source as QuerySource>::FromClause: Send + 'static,
Q: Send + 'static,
T: Send + Paginated<C> + 'static,
ST: Send + 'static,
GB: Send + 'static,
{
let page = self.clone();
let query = move || {
let mut query = query();
if let Some(after) = page.after() {
query = T::filter_ge(after, query);
}
if let Some(before) = page.before() {
query = T::filter_le(before, query);
}
// Load extra rows to detect the existence of pages on either side.
query = query.limit(Page::limit(&page) as i64 + 2);
T::order(page.is_from_front(), query)
};
let results: Vec<T> = if self.limit() == 0 {
// Avoid the database roundtrip in the degenerate case.
vec![]
} else {
let mut results = conn.results(query).await?;
if !self.is_from_front() {
results.reverse();
}
results
};
Ok(self.paginate_results(
results.first().map(|f| f.cursor(checkpoint_viewed_at)),
results.last().map(|l| l.cursor(checkpoint_viewed_at)),
results,
))
}
/// This function is similar to `paginate_query`, but is specifically designed for handling
/// `RawQuery`. Treat the cursors of this page as upper- and lowerbound filters for a database
/// `query`. Returns two booleans indicating whether there is a previous or next page in the
/// range, followed by an iterator of values in the page, fetched from the database.
///
/// `checkpoint_viewed_at` is a required parameter to and passed to each element to construct a
/// consistent cursor.
pub(crate) async fn paginate_raw_query<T>(
&self,
conn: &mut Conn<'_>,
checkpoint_viewed_at: u64,
query: RawQuery,
) -> QueryResult<(bool, bool, impl Iterator<Item = T>)>
where
T: Send + RawPaginated<C> + FromSqlRow<Untyped, DieselBackend> + 'static,
{
let new_query = move || {
let query = self.apply::<T>(query.clone());
query.into_boxed()
};
let results: Vec<T> = if self.limit() == 0 {
// Avoid the database roundtrip in the degenerate case.
vec![]
} else {
let mut results: Vec<T> = conn.results(new_query).await?;
if !self.is_from_front() {
results.reverse();
}
results
};
Ok(self.paginate_results(
results.first().map(|f| f.cursor(checkpoint_viewed_at)),
results.last().map(|l| l.cursor(checkpoint_viewed_at)),
results,
))
}
/// Given the results of a database query, determine whether the result set has a previous and
/// next page and is consistent with the provided cursors. Slightly different logic applies
/// depending on whether the provided cursors stem from either tip of the response, or if they
/// were derived from a scan limit.
///
/// Returns two booleans indicating whether there is a previous or next page in the range,
/// followed by an iterator of values in the page, fetched from the database. The values
/// returned implement `Target<C>`, so are able to compute their own cursors.
fn paginate_results<T>(
&self,
f_cursor: Option<C>,
l_cursor: Option<C>,
results: Vec<T>,
) -> (bool, bool, impl Iterator<Item = T>)
where
T: Target<C> + Send + 'static,
{
// Detect whether the results imply the existence of a previous or next page.
let (prev, next, prefix, suffix) =
match (self.after(), f_cursor, l_cursor, self.before(), self.end) {
// Results came back empty, despite supposedly including the `after` and `before`
// cursors, so the bounds must have been invalid, no matter which end the page was
// drawn from.
(_, None, _, _, _) | (_, _, None, _, _) => {
return (false, false, vec![].into_iter());
}
// Page drawn from the front, and the cursor for the first element does not match
// `after`. If that cursor is not from a scan limit, then it must have appeared in
// the previous page, and should also be at the tip of the current page. This
// absence implies the bound was invalid, so we return an empty result.
(Some(a), Some(f), _, _, End::Front) if f != *a && !a.is_scan_limited() => {
return (false, false, vec![].into_iter());
}
// Similar to above case, but for back of results.
(_, _, Some(l), Some(b), End::Back) if l != *b && !b.is_scan_limited() => {
return (false, false, vec![].into_iter());
}
// From here onwards, we know that the results are non-empty. In the forward
// pagination scenario, the presence of a previous page is determined by whether a
// cursor supplied on the end the page is being drawn from is found in the first
// position. The presence of a next page is determined by whether we have more
// results than the provided limit, and/ or if the end cursor element appears in the
// result set.
(after, Some(f), Some(l), before, End::Front) => {
let has_previous_page = after.is_some_and(|a| a.unlimited() == f);
let prefix = has_previous_page as usize;
// If results end with the before cursor, we will at least need to trim one element
// from the suffix and we trim more off the end if there is more after applying the
// limit.
let mut suffix = before.is_some_and(|b| b.unlimited() == l) as usize;
suffix += results.len().saturating_sub(self.limit() + prefix + suffix);
let has_next_page = suffix > 0;
(has_previous_page, has_next_page, prefix, suffix)
}
// Symmetric to the previous case, but drawing from the back.
(after, Some(f), Some(l), before, End::Back) => {
// There is a next page if the last element of the results matches the `before`.
// This last element will get pruned from the result set.
let has_next_page = before.is_some_and(|b| b.unlimited() == l);
let suffix = has_next_page as usize;
let mut prefix = after.is_some_and(|a| a.unlimited() == f) as usize;
prefix += results.len().saturating_sub(self.limit() + prefix + suffix);
let has_previous_page = prefix > 0;
(has_previous_page, has_next_page, prefix, suffix)
}
};
// If after trimming, we're going to return no elements, then forget whether there's a
// previous or next page, because there will be no start or end cursor for this page to
// anchor on.
if results.len() == prefix + suffix {
return (false, false, vec![].into_iter());
}
// We finally made it -- trim the prefix and suffix rows from the result and send it!
let mut results = results.into_iter();
if prefix > 0 {
results.nth(prefix - 1);
}
if suffix > 0 {
results.nth_back(suffix - 1);
}
(prev, next, results)
}
pub(crate) fn apply<T>(&self, mut query: RawQuery) -> RawQuery
where
T: RawPaginated<C>,
{
if let Some(after) = self.after() {
query = T::filter_ge(after, query);
}
if let Some(before) = self.before() {
query = T::filter_le(before, query);
}
query = T::order(self.is_from_front(), query);
query.limit(self.limit() as i64 + 2)
}
}
#[Scalar(name = "String", visible = false)]
impl<C> ScalarType for JsonCursor<C>
where
C: Send + Sync,
C: Serialize + DeserializeOwned,
{
fn parse(value: Value) -> InputValueResult<Self> {
let Value::String(s) = value else {
return Err(InputValueError::expected_type(value));
};
Ok(JsonCursor(OpaqueCursor::decode_cursor(&s)?))
}
/// Just check that the value is a string, as we'll do more involved tests during parsing.
fn is_valid(value: &Value) -> bool {
matches!(value, Value::String(_))
}
fn to_value(&self) -> Value {
Value::String(self.0.encode_cursor())
}
}
#[Scalar(name = "String", visible = false)]
impl<C> ScalarType for BcsCursor<C>
where
C: Send + Sync,
C: Serialize + DeserializeOwned,
{
fn parse(value: Value) -> InputValueResult<Self> {
let Value::String(s) = value else {
return Err(InputValueError::expected_type(value));
};
Ok(Self::decode_cursor(&s)?)
}
/// Just check that the value is a string, as we'll do more involved tests during parsing.
fn is_valid(value: &Value) -> bool {
matches!(value, Value::String(_))
}
fn to_value(&self) -> Value {
Value::String(self.encode_cursor())
}
}
/// Wrapping implementation of `CursorType` directly forwarding to `OpaqueCursor`.
impl<C> CursorType for JsonCursor<C>
where
C: Send + Sync,
C: Serialize + DeserializeOwned,
{
type Error = <OpaqueCursor<C> as CursorType>::Error;
fn decode_cursor(s: &str) -> Result<Self, Self::Error> {
Ok(JsonCursor(OpaqueCursor::decode_cursor(s)?))
}
fn encode_cursor(&self) -> String {
self.0.encode_cursor()
}
}
impl<C> CursorType for BcsCursor<C>
where
C: Send + Sync,
C: Serialize + DeserializeOwned,
{
type Error = <OpaqueCursor<C> as CursorType>::Error;
fn decode_cursor(s: &str) -> Result<Self, Self::Error> {
let data = Base64::decode(s)?;
Ok(Self(bcs::from_bytes(&data)?))
}
fn encode_cursor(&self) -> String {
let value = bcs::to_bytes(&self.0).unwrap_or_default();
Base64::encode(value)
}
}
impl<C> Deref for JsonCursor<C> {
type Target = C;
fn deref(&self) -> &Self::Target {
self.0.deref()
}
}
impl<C> Deref for BcsCursor<C> {
type Target = C;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<C: fmt::Debug> fmt::Debug for JsonCursor<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", *self.0)
}
}
impl<C: fmt::Debug> fmt::Debug for BcsCursor<C> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl<C: Clone> Clone for JsonCursor<C> {
fn clone(&self) -> Self {
JsonCursor::new(self.0 .0.clone())
}
}
impl<C: Clone> Clone for BcsCursor<C> {
fn clone(&self) -> Self {
BcsCursor::new(self.0.clone())
}
}
impl<C: PartialEq> PartialEq for JsonCursor<C> {
fn eq(&self, other: &Self) -> bool {
self.deref() == other.deref()
}
}
impl<C: PartialEq> PartialEq for BcsCursor<C> {
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
impl<C: Eq> Eq for JsonCursor<C> {}
impl<C: Eq> Eq for BcsCursor<C> {}
#[cfg(test)]
mod tests {
use super::*;
use expect_test::expect;
#[test]
fn test_default_page() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> =
Page::from_params(&config, None, None, None, None).unwrap();
let expect = expect![[r#"
Page {
after: None,
before: None,
limit: 20,
end: Front,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_prefix_page() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> =
Page::from_params(&config, None, Some(JsonCursor::new(42)), None, None).unwrap();
let expect = expect![[r#"
Page {
after: Some(
42,
),
before: None,
limit: 20,
end: Front,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_prefix_page_limited() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> =
Page::from_params(&config, Some(10), Some(JsonCursor::new(42)), None, None).unwrap();
let expect = expect![[r#"
Page {
after: Some(
42,
),
before: None,
limit: 10,
end: Front,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_suffix_page() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> =
Page::from_params(&config, None, None, None, Some(JsonCursor::new(42))).unwrap();
let expect = expect![[r#"
Page {
after: None,
before: Some(
42,
),
limit: 20,
end: Front,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_suffix_page_limited() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> =
Page::from_params(&config, None, None, Some(10), Some(JsonCursor::new(42))).unwrap();
let expect = expect![[r#"
Page {
after: None,
before: Some(
42,
),
limit: 10,
end: Back,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_between_page_prefix() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> = Page::from_params(
&config,
Some(10),
Some(JsonCursor::new(40)),
None,
Some(JsonCursor::new(42)),
)
.unwrap();
let expect = expect![[r#"
Page {
after: Some(
40,
),
before: Some(
42,
),
limit: 10,
end: Front,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_between_page_suffix() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> = Page::from_params(
&config,
None,
Some(JsonCursor::new(40)),
Some(10),
Some(JsonCursor::new(42)),
)
.unwrap();
let expect = expect![[r#"
Page {
after: Some(
40,
),
before: Some(
42,
),
limit: 10,
end: Back,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_between_page() {
let config = ServiceConfig::default();
let page: Page<JsonCursor<u64>> = Page::from_params(
&config,
None,
Some(JsonCursor::new(40)),
None,
Some(JsonCursor::new(42)),
)
.unwrap();
let expect = expect![[r#"
Page {
after: Some(
40,
),
before: Some(
42,
),
limit: 20,
end: Front,
}"#]];
expect.assert_eq(&format!("{page:#?}"));
}
#[test]
fn test_err_first_and_last() {
let config = ServiceConfig::default();
let err = Page::<JsonCursor<u64>>::from_params(&config, Some(1), None, Some(1), None)
.unwrap_err();
let expect = expect![[r#"
Error {
message: "'first' and 'last' must not be used together",
extensions: Some(
ErrorExtensionValues(
{
"code": String(
"BAD_USER_INPUT",
),
},
),
),
}"#]];
expect.assert_eq(&format!("{err:#?}"));
}
#[test]
fn test_err_page_too_big() {
let config = ServiceConfig::default();
let too_big = config.limits.max_page_size as u64 + 1;
let err = Page::<JsonCursor<u64>>::from_params(&config, Some(too_big), None, None, None)
.unwrap_err();
let expect = expect![[r#"
Error {
message: "Connection's page size of 51 exceeds max of 50",
extensions: Some(
ErrorExtensionValues(
{
"code": String(
"BAD_USER_INPUT",
),
},
),
),
}"#]];
expect.assert_eq(&format!("{err:#?}"));
}
}