summaryrefslogblamecommitdiff
path: root/test/files/jvm/try-type-tests.scala
blob: 962afbd30fc0affec18f3627d3ae904dbba70a06 (plain) (tree)
1
2
3
4
5




                                         













































                                                             
                                      





















































































                                                                    

 

           
                  
                
 
import scala.util.{Try, Success, Failure}

// tests the basic combinators on Try
trait TryStandard {

  def testForeachSuccess(): Unit = {
    val t = Success(1)
    var res = 0
    t.foreach(x => res = x * 10)
    assert(res == 10)
  }

  def testForeachFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    t.foreach(x => assert(false))
  }

  def testFlatMapSuccess(): Unit = {
    val t = Success(1)
    val n = t.flatMap(x => Try(x * 10))
    assert(n.get == 10)
  }

  def testFlatMapFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    val n = t.flatMap{ x => assert(false); Try(()) }
  }

  def testMapSuccess(): Unit = {
    val t = Success(1)
    val n = t.map(x => x * 10)
    assert(n.get == 10)
  }

  def testMapFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    val n = t.map(x => assert(false))
  }

  def testFilterSuccessTrue(): Unit = {
    val t = Success(1)
    val n = t.filter(x => x > 0)
    assert(n.get == 1)
  }

  def testFilterSuccessFalse(): Unit = {
    val t = Success(1)
    val n = t.filter(x => x < 0)
    n match {
      case Success(v) => assert(false)
      case Failure(e: NoSuchElementException) => assert(true)
      case _          => assert(false)
    }
  }

  def testFilterFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    val n = t.filter{ x => assert(false); true }
  }

  def testRescueSuccess(): Unit = {
    val t = Success(1)
    t.recoverWith{ case x => assert(false); Try(()) }
  }

  def testRescueFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    val n = t.recoverWith{ case x => Try(1) }
    assert(n.get == 1)
  }

  def testRecoverSuccess(): Unit = {
    val t = Success(1)
    t.recover{ case x => assert(false); 99 }
  }

  def testRecoverFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    val n = t.recover{ case x => 1 }
    assert(n.get == 1)
  }

  def testFlattenSuccess(): Unit = {
    val f = Failure(new Exception("foo"))
    val t = Success(f)
    assert(t.flatten == f)
  }

  def testFailedSuccess(): Unit = {
    val t = Success(1)
    val n = t.failed
    n match {
      case Failure(e: UnsupportedOperationException) => assert(true)
      case _ => assert(false)
    }
  }

  def testFailedFailure(): Unit = {
    val t = Failure(new Exception("foo"))
    val n = t.failed
    n match {
      case Success(e: Exception) => assert(true)
      case _ => assert(false)
    }
  }

  def testSuccessTransform(): Unit = {
    val s = Success(1)
    val succ = (x: Int) => Success(x * 10)
    val fail = (x: Throwable) => Success(0)
    assert(s.transform(succ, fail).get == 10)
  }

  def testFailureTransform(): Unit = {
    val f = Failure(new Exception("foo"))
    val succ = (x: Int) => Success(x * 10)
    val fail = (x: Throwable) => Success(0)
    assert(f.transform(succ, fail).get == 0)
  }

  testForeachSuccess()
  testForeachFailure()
  testFlatMapSuccess()
  testFlatMapFailure()
  testMapSuccess()
  testMapFailure()
  testFilterSuccessTrue()
  testFilterSuccessFalse()
  testFilterFailure()
  testRescueSuccess()
  testRescueFailure()
  testRecoverSuccess()
  testRecoverFailure()
  testFlattenSuccess()
  testFailedSuccess()
  testFailedFailure()
  testSuccessTransform()
  testFailureTransform()
}

object Test
extends App
with TryStandard {
  System.exit(0)
}