play.api.test

FakeApplication

case class FakeApplication(path: File = new java.io.File("."), classloader: ClassLoader = ..., additionalPlugins: Seq[String] = immutable.this.Nil, withoutPlugins: Seq[String] = immutable.this.Nil, additionalConfiguration: Map[String, _] = ..., withGlobal: Option[GlobalSettings] = scala.None, withRoutes: PartialFunction[(String, String), Handler] = ...) extends Application with WithDefaultConfiguration with WithDefaultGlobal with WithDefaultPlugins with Product with Serializable

Source
Fakes.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, WithDefaultPlugins, WithDefaultGlobal, WithDefaultConfiguration, Application, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FakeApplication
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. WithDefaultPlugins
  7. WithDefaultGlobal
  8. WithDefaultConfiguration
  9. Application
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FakeApplication(path: File = new java.io.File("."), classloader: ClassLoader = ..., additionalPlugins: Seq[String] = immutable.this.Nil, withoutPlugins: Seq[String] = immutable.this.Nil, additionalConfiguration: Map[String, _] = ..., withGlobal: Option[GlobalSettings] = scala.None, withRoutes: PartialFunction[(String, String), Handler] = ...)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val additionalConfiguration: Map[String, _]

  7. val additionalPlugins: Seq[String]

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val classloader: ClassLoader

    The application's classloader

    The application's classloader

    Definition Classes
    FakeApplicationApplication
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def configuration: Configuration

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def getExistingFile(relativePath: String): Option[File]

    Retrieves a file relative to the application root path.

    Retrieves a file relative to the application root path. This method returns an Option[File], using None if the file was not found.

    Note that it is up to you to manage the files in the application root path in production. By default, there will be nothing available in the application root path.

    For example, to retrieve some deployment specific data file:

    val myDataFile = application.getExistingFile("data/data.xml")
    relativePath

    the relative path of the file to fetch

    returns

    an existing file

    Definition Classes
    Application
  16. def getFile(relativePath: String): File

    Retrieves a file relative to the application root path.

    Retrieves a file relative to the application root path.

    Note that it is up to you to manage the files in the application root path in production. By default, there will be nothing available in the application root path.

    For example, to retrieve some deployment specific data file:

    val myDataFile = application.getFile("data/data.xml")
    relativePath

    relative path of the file to fetch

    returns

    a file instance; it is not guaranteed that the file exists

    Definition Classes
    Application
  17. lazy val global: GlobalSettings

    Definition Classes
    FakeApplicationWithDefaultGlobalApplication
  18. lazy val initialConfiguration: Configuration

    Attributes
    protected
    Definition Classes
    WithDefaultConfiguration
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def loadRoutes: Option[core.Router.Routes]

    Attributes
    protected
    Definition Classes
    Application
  21. val mode: Mode.Value

    Dev, Prod or Test

    Dev, Prod or Test

    Definition Classes
    FakeApplicationApplication
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. val path: File

    The absolute path hosting this application, mainly used by the getFile(path) helper method

    The absolute path hosting this application, mainly used by the getFile(path) helper method

    Definition Classes
    FakeApplicationApplication
  26. def plugin[T](implicit ct: ClassTag[T]): Option[T]

    Retrieves a plugin of type T.

    Retrieves a plugin of type T.

    For example, to retrieve the DBPlugin instance:

    val dbPlugin = application.plugin[DBPlugin].map(_.api).getOrElse(sys.error("problem with the plugin"))
    T

    the plugin type

    returns

    The plugin instance used by this application.

    Definition Classes
    Application
    Exceptions thrown
    Error

    if no plugins of type T are loaded by this application.

  27. def plugin[T](pluginClass: Class[T]): Option[T]

    Retrieves a plugin of type T.

    Retrieves a plugin of type T.

    For example, retrieving the DBPlugin instance:

    val dbPlugin = application.plugin(classOf[DBPlugin])
    T

    the plugin type

    pluginClass

    the plugin’s class

    returns

    the plugin instance, wrapped in an option, used by this application

    Definition Classes
    Application
    Exceptions thrown
    Error

    if no plugins of type T are loaded by this application

  28. def pluginClasses: Seq[String]

    Definition Classes
    FakeApplicationWithDefaultPlugins
  29. lazy val plugins: Seq[Plugin]

    The plugins list used by this application.

    The plugins list used by this application.

    Plugin classes must extend play.api.Plugin and are automatically discovered by searching for all play.plugins files in the classpath.

    A play.plugins file contains a list of plugin classes to be loaded, and sorted by priority:

    100:play.api.i18n.MessagesPlugin
    200:play.api.db.DBPlugin
    250:play.api.cache.BasicCachePlugin
    300:play.db.ebean.EbeanPlugin
    400:play.db.jpa.JPAPlugin
    500:play.api.db.evolutions.EvolutionsPlugin
    1000:play.api.libs.akka.AkkaPlugin
    10000:play.api.GlobalPlugin
    Definition Classes
    WithDefaultPlugins
    See also

    play.api.Plugin

  30. def resource(name: String): Option[URL]

    Scans the application classloader to retrieve a resource.

    Scans the application classloader to retrieve a resource.

    The conf directory is included on the classpath, so this may be used to look up resources, relative to the conf directory.

    For example, to retrieve the conf/logger.xml configuration file:

    val maybeConf = application.resource("logger.xml")
    name

    the absolute name of the resource (from the classpath root)

    returns

    the resource URL, if found

    Definition Classes
    Application
  31. def resourceAsStream(name: String): Option[InputStream]

    Scans the application classloader to retrieve a resource’s contents as a stream.

    Scans the application classloader to retrieve a resource’s contents as a stream.

    The conf directory is included on the classpath, so this may be used to look up resources, relative to the conf directory.

    For example, to retrieve the conf/logger.xml configuration file:

    val maybeConf = application.resourceAsStream("logger.xml")
    name

    the absolute name of the resource (from the classpath root)

    returns

    a stream, if found

    Definition Classes
    Application
  32. lazy val routes: Option[core.Router.Routes]

    Definition Classes
    FakeApplicationApplication
  33. val sources: None.type

    The SourceMapper used to retrieve source code displayed in error pages

    The SourceMapper used to retrieve source code displayed in error pages

    Definition Classes
    FakeApplicationApplication
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  35. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. val withGlobal: Option[GlobalSettings]

  39. val withRoutes: PartialFunction[(String, String), Handler]

  40. val withoutPlugins: Seq[String]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from WithDefaultPlugins

Inherited from WithDefaultGlobal

Inherited from WithDefaultConfiguration

Inherited from Application

Inherited from AnyRef

Inherited from Any

Ungrouped