光滑代码中的竞争条件

时间:2015-06-28 07:46:47

标签: scala slick slick-3.0

我已经在specs2中编写了这个光滑的DAO及其单元测试。

我的代码有竞争条件。当我运行相同的测试时,我得到不同的输出。

即使在我执行Await.result(future,Duration.Inf)的两个函数中也存在竞争条件

DAO

package com.example
import slick.backend.DatabasePublisher
import slick.driver.H2Driver.api._

import scala.concurrent.ExecutionContext.Implicits.global
import slick.jdbc.meta._
import scala.concurrent._
import ExecutionContext.Implicits.global
import scala.concurrent.duration._

case class Person(id: Int, firstname: String, lastname: String)

class People(tag: Tag) extends Table[Person](tag, "PEOPLE") {
  def id = column[Int]("PERSON_ID", O.PrimaryKey)
  def firstname = column[String]("PERSON_FIRST_NAME")
  def lastname = column[String]("PERSON_LAST_NAME")
  def * = (id, firstname, lastname) <> (Person.tupled, Person.unapply _)
}

object PersonDAO {

  private def createList(numRows: Int) : List[Person] = {
    def recFunc(counter: Int, result: List[Person]) : List[Person] = {
      counter match {
        case x if x <= numRows => recFunc(counter + 1, Person(counter, "test" + counter, "user" + counter) :: result)
        case _ => result
      }
    }
    recFunc(1, List[Person]())
  }

  val db = Database.forConfig("test1")
  val people = TableQuery[People]

  def createAndPopulate(numRows: Int) = {
    val action1 = people.schema.create
    val action2 = people ++= Seq(createList(numRows) : _* )
    val combined = db.run(action1 andThen action2)

    val future1 = combined.map { result =>
      result map {x => 
        println(s"number of rows inserted $x")
        x
      }
    }
    Await.result(future1, Duration.Inf).getOrElse(0)
  }

  def printAll() = {
    val a = people.result
    val b = db.run(a)
    val y = b map { result => 
      result map {x => x}
    }
    val z = Await.result(y, Duration.Inf)
    println(z)
    println(z.length)
    z
  }
}

单元测试

import org.specs2.mutable._
import com.example._

class HelloSpec extends Specification {
  "This usecase " should {
    "should insert rows " in {
      val x = PersonDAO.createAndPopulate(100)
      x === 100
    }
  }

  "This usecase " should {
    "return 100 rows" in {
      val x = PersonDAO.printAll()
      val y = PersonDAO.printAll()      
      y.length === 100
    }
  }
}

当我使用activator test运行相同的代码时,我会在不同的运行中看到两种不同类型的输出

  1. 有时代码会出现异常

    插入的行数100 [info] HelloSpec [信息] [info]这个用例应该 [info] +应插入行 [信息] [info]这个用例应该 [info]!返回100行 [错误] JdbcSQLException ::表PEOPLE未找到; SQL语句: [错误]选择x2。&#34; PERSON_ID&#34;,x2。&#34; PERSON_FIRST_NAME&#34;,x2。&#34; PERSON_LAST_NAME&#34;来自&#34; PEOPLE&#34; x2 [42S02-60](Message.java:84) [error] org.h2.message.Message.getSQLException(Message.java:84) [error] org.h2.message.Message.getSQLException(Message.java:88) [error] org.h2.message.Message.getSQLException(Message.java:66)

  2. 有时第一个函数调用返回0行,第二个函数调用返回100个值

    SLF4J:无法加载类&#34; org.slf4j.impl.StaticLoggerBinder&#34;。 SLF4J:默认为无操作(NOP)记录器实现 SLF4J:有关详细信息,请参阅http://www.slf4j.org/codes.html#StaticLoggerBinder。 插入的行数100 向量() 0 矢量(人(100,test100,user100),人(99,test99,user99),人(98,test98,user98),人(97,test97,user97),人(96,test96,user96),人(95 ,test95,user95),Person(94,test94,user94),Person(93,test93,user93),Person(92,test92,user92),Person(91,test91,user91),Person(90,test90,user90) ,人(89,test89,user89),人(88,test88,user88),人(87,test87,user87),人

  3. 我不明白为什么我的代码有这些竞争条件,因为我阻止了每种方法的未来。

1 个答案:

答案 0 :(得分:1)

您假设两个测试用例应该是串行连续,一个接一个是不对的。测试用例并行运行。只需使用sequential来验证是否属实。