Class SnapshotStoreSpec

  • All Implemented Interfaces:
    CapabilityFlags, MayVerb, OptionalTests, SnapshotStoreCapabilityFlags, TestKitBase, java.io.Serializable, org.scalactic.Explicitly, org.scalactic.Tolerance, org.scalactic.TripleEquals, org.scalactic.TripleEqualsSupport, org.scalatest.Alerting, org.scalatest.Assertions, org.scalatest.BeforeAndAfterAll, org.scalatest.BeforeAndAfterEach, org.scalatest.Documenting, org.scalatest.Informing, org.scalatest.matchers.dsl.MatcherWords, org.scalatest.matchers.should.Matchers, org.scalatest.Notifying, org.scalatest.Suite, org.scalatest.SuiteMixin, org.scalatest.TestRegistration, org.scalatest.TestSuite, org.scalatest.verbs.CanVerb, org.scalatest.verbs.MustVerb, org.scalatest.verbs.ShouldVerb, org.scalatest.wordspec.AnyWordSpecLike
    Direct Known Subclasses:
    JavaSnapshotStoreSpec

    public abstract class SnapshotStoreSpec
    extends PluginSpec
    implements MayVerb, OptionalTests, SnapshotStoreCapabilityFlags
    This spec aims to verify custom akka-persistence SnapshotStore implementations. Plugin authors are highly encouraged to include it in their plugin's test suites.

    In case your journal plugin needs some kind of setup or teardown, override the beforeAll or afterAll methods (don't forget to call super in your overridden methods).

    For a Java and JUnit consumable version of the TCK please refer to JavaSnapshotStoreSpec.

    See Also:
    JavaSnapshotStoreSpec, Serialized Form
    • Constructor Detail

      • SnapshotStoreSpec

        public SnapshotStoreSpec​(com.typesafe.config.Config config)
    • Method Detail

      • config

        public static com.typesafe.config.Config config()
      • beforeEach

        protected void beforeEach()
        Specified by:
        beforeEach in interface org.scalatest.BeforeAndAfterEach
        Overrides:
        beforeEach in class PluginSpec
      • snapshotStore

        public ActorRef snapshotStore()
      • writeSnapshots

        public scala.collection.immutable.Seq<SnapshotMetadata> writeSnapshots()
      • snapshotByteSizeLimit

        public int snapshotByteSizeLimit()
        The limit defines a number of bytes persistence plugin can support to store the snapshot. If plugin does not support persistence of the snapshots of 10000 bytes or may support more than default size, the value can be overridden by the SnapshotStoreSpec implementation with a note in a plugin documentation.