4

我有一个从 SystemProperty.environment.value() 和 SystemProperty 的所有其他静态成员返回 null 的 Google App Engine Java 应用程序。我在通过 Maven 运行 JUnit 测试时看到了这一点。

import com.google.appengine.api.utils.SystemProperty;
...
void printProps() {
    log.info("props:" + System.getProperties());
    log.info("env=" + SystemProperty.environment.value());
    log.info("log=" + System.getProperty("java.util.logging.config.file"));
    log.info("id=" + SystemProperty.applicationId.get());
    log.info("ver=" + SystemProperty.applicationVersion.get());
}

上面唯一返回非 null 的项是 System.getProperties()。

以下是我的设置的一些细节:

  • IntelliJ IDEA EAP 13
  • 马文
  • 应用引擎 SDK 1.8.5
  • Java 7 (1.7.0_40)
  • JUnit 4
4

1 回答 1

5

我遇到了同样的问题。我试图在 LocalServiceTestHelper 上调用这些方法,但这些方法没有填充 SystemProperty.applicationId 或 SystemProperty.version

setEnvAppId(java.lang.String envAppId) 
setEnvVersionId(java.lang.String envVersionId)

例如

public final LocalServiceTestHelper helper = new LocalServiceTestHelper(new LocalDatastoreServiceTestConfig(), new LocalTaskQueueTestConfig() ).setEnvAppId("JUnitApplicationId").setEnvVersionId("JUnitVersion");

我的解决方案只是在我的 JUnit setUp() 方法中自己填充这些属性:

@Before
public void setUp() throws Exception {
    SystemProperty.version.set("JUnitVersion");
    SystemProperty.applicationId.set("JUnitApplicationId");
    SystemProperty.applicationVersion.set("JUnitApplicationVersion");
    SystemProperty.environment.set( SystemProperty.Environment.Value.Development );
    helper.setUp();
    datastore = DatastoreServiceFactory.getDatastoreService();
    queue = QueueFactory.getDefaultQueue();
}

请注意,SystemProperty.Environment 的唯一有效值是静态最终值 Production 和 Development。

于 2014-01-23T17:27:25.170 回答