如何在Play框架和光滑的单元测试中删除创建会话的代码

时间:2013-05-26 10:16:56

标签: scala playframework playframework-2.1 slick

我正在使用Play 2.0和slick。所以我为这样的模型编写单元测试。

describe("add") {
  it("questions be save") {
    Database.forURL("jdbc:h2:mem:test1", driver = "org.h2.Driver") withSession {
      // given
      Questions.ddl.create
      Questions.add(questionFixture)
      // when
      val q = Questions.findById(1)
      // then
      // assert!!!
    }
  }
}

它运作良好,但是每个单元测试后都会重复使用片段。

Database.forURL("jdbc:h2:mem:test1", driver = "org.h2.Driver") withSession {
  Questions.ddl.create
  // test code
}

所以,我想把这段代码移到块之前,就像这样。

before {
    Database.forURL("jdbc:h2:mem:test1", driver = "org.h2.Driver") withSession {
        Questions.ddl.create
    }
}

describe("add") {
  it("questions be save") {
    // given
    Questions.add(questionFixture)
    // when
    val q = Questions.findById(1)
    // then
    // assert!!!
    }
  }
}

我可以在块之前创建sesstion,然后在单元测试中使用会话吗?

1 个答案:

答案 0 :(得分:5)

您可以使用createSession()并自行处理生命周期。我已经习惯了JUnit而且我不知道你正在使用的测试框架的具体细节,但看起来应该是这样的:

// Don't import threadLocalSession, use this instead:
implicit var session: Session = _

before {
  session = Database.forURL(...).createSession()
}

// Your tests go here

after {
  session.close()
}