播放 2.4.6,在测试中为字节码增强配置构建设置

Play 2.4.6, configuring build settings for bytecode enhancement in tests

我正在使用带有 Ebean 和 Java 的 Play 框架 2.4.6。

当我 运行 我的测试时,我无法设置任何字段的值。我认为字节码增强(自动 getter/setter 生成)不起作用。

我的测试(保持冷静,框架应该为 "name" 放置 getter/setter):

    @Test
    public void createAndUpdate() {
        running(fakeApplication(), new Runnable() {
            public void run() {
                Usuario newUser = new Usuario("bob@gmail.com", "secret", "Spongebob Squarepants");
                newUser.save();

                Usuario alterUser = Usuario.find.where().eq("email", "bob@gmail.com").findUnique();
                alterUser.name = "another name";
                alterUser.update();

                Usuario bob = Usuario.find.where().eq("email", "bob@gmail.com").findUnique();

                assertNotNull(bob);
                assertEquals("another name", bob.name);
            }
        });
    }

我尝试使用 save() 而不是 update(),但没有得到预期的结果。

测试失败;输出:

[error] Test IntegrationTest.createAndUpdate failed: expected:<[another name]> but was:<[Spongebob Squarepants]>, took 0.228 sec

我读到 Play 字节码增强功能不适用于 "test" 目录中的代码。根据这个posthttps://groups.google.com/d/msg/play-framework/fRHXLZi0J1c/CS8b8XBNS3UJ, I need to configure the buid.scala file like this https://gist.github.com/joelso/3496872

post 用于版本 2.0.x 所以它使用 build.scala 文件,但是对于 2.4.x 构建设置在 build.sbt 而且我还没有成功加载它。

问题是,如何配置构建设置文件使其像上面的 post 状态一样工作,但使用新的 build.sbt 样式?

我也尝试只使用旧的 build.scala,但它在每一行都给我错误。

我知道最简单的解决方案是手动放置 getters/setters,但我想尝试使用播放风格。

如有任何帮助,我们将不胜感激。

编辑

根据文档,我的 class 有 public、非静态、非最终字段。它只有一个 public 静态字段用于获取 Finder 对象并进行查询。我的 class 中的字段与文档 https://www.playframework.com/documentation/2.4.x/JavaEbean#Using-Model-superclass 中的字段一样 我什至尝试使用一种方法而不是那个静态字段,但它没有任何区别。

这是"Usuario"class。我尝试更改方法的 "find" 静态字段,但结果是一样的。

@Entity
public class Usuario extends Model {

    @Id
    public Long id;

    public String email;
    public String password;
    public String name;
    public boolean esAdmin;

    public Usuario(String email, String password, String name) {
        this.email = email;
        this.password = password;
        this.name = name;
        this.esAdmin = false;
    }



    public static Find<Long, Usuario> find = new Find<Long, Usuario>() {};
}

您 post 的两个参考文献都已经过时了。你应该see how to use the enhancer here. Special attention to the section abouthow to setup。另外,使用时有一些限制:

The enhancer looks for all fields on Java classes that:

  • are public
  • are non static
  • are non final

For each of those fields, it will generate a getter and a setter if they don’t already exist. If you wish to provide a custom getter or setter for a field, this can be done by just writing it, the Play enhancer will simply skip the generation of the getter or setter if it already exists.

因此,请检查 class Usuario 处的属性是否满足那里的条件。

编辑后:

我已将您的 find 声明更改为以下行:

public static Find<Long, Usuario> find = new Finder<>(Usuario.class);

一切都按预期进行。我在 conf/application.conf 也有以下配置:

ebean.default=["models.*"]

这是build.sbt的内容:

name := """test"""

version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean)

scalaVersion := "2.11.6"

libraryDependencies ++= Seq(
  javaJdbc,
  cache,
  javaWs,
  "junit" % "junit" % "4.12" % Test
)

// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator

testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-q")

以及 project/plugins.sbt 的内容:

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.6")

addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.6")
addSbtPlugin("com.typesafe.sbt" % "sbt-jshint" % "1.0.3")
addSbtPlugin("com.typesafe.sbt" % "sbt-rjs" % "1.0.7")
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-mocha" % "1.1.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-play-enhancer" % "1.1.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-play-ebean" % "2.0.0")