首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >用Objectify模拟框架?

用Objectify模拟框架?
EN

Stack Overflow用户
提问于 2011-06-13 07:27:41
回答 1查看 1.6K关注 0票数 2

有没有可能在Objectify中使用一些模拟框架?

我尝试过以下方法,但不起作用:

代码语言:javascript
复制
Foo mockFoo = mock(Foo.class);      
ObjectifyService.register(mockFoo.getClass());
ObjectifyUtil.get().put(mockFoo);

错误是:

代码语言:javascript
复制
java.lang.IllegalArgumentException: CGLIB$CALLBACK_0: org.mockito.internal.creation.MethodInterceptorFilter is not a supported property type.
    at com.google.appengine.api.datastore.DataTypeUtils.checkSupportedSingleValue(DataTypeUtils.java:184)
    at com.google.appengine.api.datastore.DataTypeUtils.checkSupportedValue(DataTypeUtils.java:157)
    at com.google.appengine.api.datastore.DataTypeUtils.checkSupportedValue(DataTypeUtils.java:123)
    at com.google.appengine.api.datastore.Entity.setProperty(Entity.java:320)
    at com.googlecode.objectify.impl.save.FieldSaver.setEntityProperty(FieldSaver.java:171)
    at com.googlecode.objectify.impl.save.LeafFieldSaver.saveValue(LeafFieldSaver.java:93)
    at com.googlecode.objectify.impl.save.FieldSaver.save(FieldSaver.java:156)
    at com.googlecode.objectify.impl.save.ClassSaver.save(ClassSaver.java:84)
    at com.googlecode.objectify.impl.Transmog.save(Transmog.java:342)
    at com.googlecode.objectify.impl.ConcreteEntityMetadata.toEntity(ConcreteEntityMetadata.java:231)
    at com.googlecode.objectify.impl.AsyncObjectifyImpl.put(AsyncObjectifyImpl.java:252)
    at com.googlecode.objectify.impl.AsyncObjectifyImpl.put(AsyncObjectifyImpl.java:229)
    at com.googlecode.objectify.impl.ObjectifyImpl.put(ObjectifyImpl.java:126)
    at org.foo.test.ApiTest.bar(ApiTest.java:89)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

是我做错了什么,还是这是不可能的?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2011-06-21 16:37:22

在我看来,嘲笑像Objectify这样大的框架不能依赖Mockito。

代码语言:javascript
复制
public class ProductTest {
  @Rule
  public EmbeddedDataStore store = new EmbeddedDataStore();

  @Before
  public void register() {
    ObjectifyService.register(Product.class);
  }

  @Test
  public void accessObjectifyWithSuccess() {
    Objectify ofy = ObjectifyService.begin();
    ofy.put(new Product());
    assertEquals(1, ofy.query(Product.class).list().size());
  }
}

@Rule在测试之前加载数据存储区。然后,注册Product类并运行集成测试。

因此,使用此技术,您可以在app Engine/Objectify上运行测试,而无需部署应用程序。

以下代码是编写数据存储区规则的一种方法:

代码语言:javascript
复制
import org.junit.rules.ExternalResource;
import com.google.appengine.tools.development.testing.LocalServiceTestHelper;

public class EmbeddedDataStore extends ExternalResource {
  private static LocalServiceTestHelper helper;

  @Override
  protected void before() throws Throwable {
    helper = new LocalServiceTestHelper(new LocalDatastoreServiceTestConfig(),
      new LocalBlobstoreServiceTestConfig(), new LocalTaskQueueTestConfig(),
      new LocalMemcacheServiceTestConfig());
  }

  @Override
  protected void after() {
    helper.tearDown();
  }
}
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/6325411

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档