class TestCursor[T] extends Cursor[T]
EXPERIMENTAL: Base class to implement test-only/mocked Cursor.
All functions failed future by default, make sure to override the required functions with appropriate results to execute the tests.
import scala.concurrent.{ ExecutionContext, Future } import reactivemongo.api.{ Cursor, TestCursor } final class MyTestCursor[T](h: T) extends TestCursor[T] { override def head(implicit ctx: ExecutionContext): Future[T] = Future.successful(h) } val cursor: Cursor[String] = new MyTestCursor("foo") def foo(implicit ec: ExecutionContext) { cursor.headOption // Future.failed by default cursor.head // Future.successful("foo") () }
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TestCursor
- Cursor
- CursorCompatAPI
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new TestCursor()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to any2stringadd[TestCursor[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (TestCursor[T], B)
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to ArrowAssoc[TestCursor[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
collect[M[_]](maxDocs: Int, err: ErrorHandler[M[T]])(implicit cbf: CanBuildFrom[M[_], T, M[T]], ec: ExecutionContext): Future[M[T]]
- Definition Classes
- TestCursor → CursorCompatAPI
-
def
ensuring(cond: (TestCursor[T]) ⇒ Boolean, msg: ⇒ Any): TestCursor[T]
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to Ensuring[TestCursor[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (TestCursor[T]) ⇒ Boolean): TestCursor[T]
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to Ensuring[TestCursor[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): TestCursor[T]
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to Ensuring[TestCursor[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): TestCursor[T]
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to Ensuring[TestCursor[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fold[A](z: ⇒ A, maxDocs: Int)(suc: (A, T) ⇒ A)(implicit ec: ExecutionContext): Future[A]
- Definition Classes
- Cursor
-
def
foldBulks[A](z: ⇒ A, maxDocs: Int)(suc: (A, Iterator[T]) ⇒ State[A], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]
- Definition Classes
- TestCursor → Cursor
-
def
foldBulksM[A](z: ⇒ A, maxDocs: Int)(suc: (A, Iterator[T]) ⇒ Future[State[A]], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]
- Definition Classes
- TestCursor → Cursor
-
def
foldWhile[A](z: ⇒ A, maxDocs: Int)(suc: (A, T) ⇒ State[A], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]
- Definition Classes
- TestCursor → Cursor
-
def
foldWhileM[A](z: ⇒ A, maxDocs: Int)(suc: (A, T) ⇒ Future[State[A]], err: ErrorHandler[A])(implicit ctx: ExecutionContext): Future[A]
- Definition Classes
- TestCursor → Cursor
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
head(implicit ctx: ExecutionContext): Future[T]
- Definition Classes
- TestCursor → Cursor
-
def
headOption(implicit ctx: ExecutionContext): Future[Option[T]]
- Definition Classes
- TestCursor → Cursor
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
peek[M[_]](maxDocs: Int)(implicit cbf: CanBuildFrom[M[_], T, M[T]], ec: ExecutionContext): Future[Result[M[T]]]
- Definition Classes
- TestCursor → CursorCompatAPI
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
→[B](y: B): (TestCursor[T], B)
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to ArrowAssoc[TestCursor[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Deprecated Value Members
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from TestCursor[T] to StringFormat[TestCursor[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.