2

このGrizzlyResourceTest.javaを dropwizard v0.6.1 で動作させようとしています。テスト コンテナーとして grizzly を使用する理由は、InMemoryTestContainer が注入可能なコンストラクターを持つリソースをサポートしていないためです。詳しくは、この問題を参照してくださいInMemoryTestContainer は注入可能なコンストラクターを持つリソースをサポートしていません

com.yammer.dropwizard.json.Json と com.yammer.dropwizard.bundles.JavaBundle は v0.6.1 にはもうないので、これらのクラスに関連する行をコメントアウトするだけです。

  @Before
  public void setUpJersey() throws Exception {
    setUpResources();
    this.test = new JerseyTest(new GrizzlyWebTestContainerFactory()) {
      @Override
      protected AppDescriptor configure() {
        ClientConfig config = new DefaultClientConfig();

        // taken from DropwizardResourceConfig
        config.getFeatures().put(ResourceConfig.FEATURE_DISABLE_WADL, Boolean.TRUE);
        config.getSingletons().add(new LoggingExceptionMapper<Throwable>() { }); // create a subclass to pin it to Throwable
        config.getClasses().add(InstrumentedResourceMethodDispatchAdapter.class);
        config.getClasses().add(CacheControlledResourceMethodDispatchAdapter.class);

        for (Class<?> provider : providers) {
          config.getClasses().add(provider);
        }

        config.getSingletons().addAll(singletons);

        return new WebAppDescriptor.Builder("com.example.helloworld.resources").clientConfig(config).build();
      }
    };
    test.setUp();
  }

myMethod(@Context HttpServletRequest request) のようなリソース クラスに HttpServletRequest を挿入しているため、私のケースはより複雑です。ここでは、dropwizard-example の下で PersonResource を使用します。

QuickTest.java は次のようになります。

public class QuickTest extends GrizzlyResourceTest{
    @Test
    public void testGrizzly() throws Exception {
        ClientResponse rsp = client()
            .resource("http://localhost:9998/people").get(ClientResponse.class);
        Assert.assertEquals(200, rsp.getStatus());
    }
    @Override
    protected void setUpResources() throws Exception {
    }
}

QuickTest を実行すると、コンソールから表示されるエラーは次のとおりです。

SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]
Mar 14, 2013 7:14:11 PM com.sun.jersey.test.framework.spi.container.grizzly2.web.GrizzlyWebTestContainerFactory$GrizzlyWebTestContainer <init>
INFO: Creating Grizzly2 Web Container configured at the base URI http://localhost:9998/
Mar 14, 2013 7:14:11 PM org.glassfish.grizzly.http.server.NetworkListener start
INFO: Started listener bound to [localhost:9998]
Mar 14, 2013 7:14:11 PM org.glassfish.grizzly.http.server.HttpServer start
INFO: [HttpServer] Started.
Mar 14, 2013 7:14:11 PM org.glassfish.grizzly.servlet.WebappContext deploy
INFO: Starting application [TestContext] ...
Mar 14, 2013 7:14:11 PM org.glassfish.grizzly.servlet.WebappContext initServlets
INFO: [TestContext] Servlet [com.sun.jersey.spi.container.servlet.ServletContainer] registered for url pattern(s) [[/*]].
Mar 14, 2013 7:14:11 PM org.glassfish.grizzly.servlet.WebappContext deploy
INFO: Application [TestContext] is ready to service requests.  Root: [].
Mar 14, 2013 7:14:11 PM com.sun.jersey.spi.inject.Errors processErrorMessages
SEVERE: The following errors and warnings have been detected with resource and/or provider classes:
  SEVERE: Missing dependency for field: private javax.servlet.http.HttpServletRequest com.yammer.dropwizard.jersey.LoggingExceptionMapper.request

何か案は?

4

0 に答える 0