我有一个Google App Engine Java应用程序,它从SystemProperty.environment.value()和SystemProperty的所有其他静态成员返回null。我在通过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()。
以下是我的设置的一些细节:
答案 0 :(得分:4)
我遇到了同样的问题。我试图在LocalServiceTestHelper上调用这些方法,但这些方法没有填充SystemProperty.applicationId或SystemProperty.version
setEnvAppId(java.lang.String envAppId)
setEnvVersionId(java.lang.String envVersionId)
e.g。
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 and Development。