summaryrefslogtreecommitdiff
path: root/jasmine-test-framework/src/main/scala/org/scalajs/jasminetest/TestSuiteContext.scala
blob: 827eefda07073143a2e8b45eb2093934ba10b71e (plain) (blame)
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
/*                     __                                               *\
**     ________ ___   / /  ___      __ ____  Scala.js Test Framework    **
**    / __/ __// _ | / /  / _ | __ / // __/  (c) 2013, LAMP/EPFL        **
**  __\ \/ /__/ __ |/ /__/ __ |/_// /_\ \    http://scala-js.org/       **
** /____/\___/_/ |_/____/_/ | |__/ /____/                               **
**                          |/____/                                     **
\*                                                                      */


package org.scalajs.jasminetest

trait TestSuiteContext {
  def describe(title: String)(test: => Unit): Unit
  def it(title: String)(test: => Unit): Unit
  def xdescribe(title: String)(test: => Unit): Unit
  def xit(title: String)(test: => Unit): Unit

  def when(tag: String): TestSuiteContext =
    if (JasmineTestFramework.hasTag(tag)) this
    else new TestSuiteContext.IgnoredContext(this)

  def whenAll(tags: String*): TestSuiteContext =
    if (tags.forall(JasmineTestFramework.hasTag)) this
    else new TestSuiteContext.IgnoredContext(this)

  def whenAny(tags: String*): TestSuiteContext =
    if (tags.exists(JasmineTestFramework.hasTag)) this
    else new TestSuiteContext.IgnoredContext(this)

  def unless(tag: String): TestSuiteContext =
    if (!JasmineTestFramework.hasTag(tag)) this
    else new TestSuiteContext.IgnoredContext(this)

  def unlessAll(tags: String*): TestSuiteContext =
    if (!tags.forall(JasmineTestFramework.hasTag)) this
    else new TestSuiteContext.IgnoredContext(this)

  def unlessAny(tags: String*): TestSuiteContext =
    if (!tags.exists(JasmineTestFramework.hasTag)) this
    else new TestSuiteContext.IgnoredContext(this)
}

object TestSuiteContext {
  private class IgnoredContext(
      baseContext: TestSuiteContext) extends TestSuiteContext {
    def describe(title: String)(test: => Unit): Unit =
      baseContext.xdescribe(title)(test)
    def it(title: String)(test: => Unit): Unit =
      baseContext.xit(title)(test)
    def xdescribe(title: String)(test: => Unit): Unit =
      baseContext.xdescribe(title)(test)
    def xit(title: String)(test: => Unit): Unit =
      baseContext.xit(title)(test)
  }
}