在Google App Engine 資料儲存區上測試查詢
為了防止資料儲存區中出現重複實體,您在測試查詢時遇到了困難必須保證唯一性的函數。儘管該函數在應用程式中正確執行,但測試反覆失敗。
在調查該問題後,已確定在測試上下文中不可能透過查詢存取資料儲存區資料。這種無法解決的原因是 Datastore 事務沒有立即提交,導致查詢結果不一致。
透過在 datastore.Put() 和 q.GetAll() 操作之間引入至少 100ms 的延遲提供了測試案例,測試就會通過。這是因為延遲允許交易提交,確保資料一致性。
要在不依賴延遲的情況下確保強一致性,可以在建立測試上下文時使用 StronglyConcientDatastore: true 選項。透過這樣做,所有查詢都將保持高度一致,從而確保在寫入操作後可以立即存取資料。
這是使用 StronglyConcientDatastore 選項的測試案例的更新版本:
type Entity struct { Value string } func TestEntityQuery(t *testing.T) { c, err := aetest.NewContext(nil) if err != nil { t.Fatal(err) } defer c.Close() c.StronglyConsistentDatastore = true key := datastore.NewIncompleteKey(c, "Entity", nil) key, err = datastore.Put(c, key, &Entity{Value: "test"}) if err != nil { t.Fatal(err) } q := datastore.NewQuery("Entity").Filter("Value =", "test") var entities []Entity keys, err := q.GetAll(c, &entities) if err != nil { t.Fatal(err) } if len(keys) == 0 { t.Error("No keys found in query") } if len(entities) == 0 { t.Error("No entities found in query") } }
以上是如何在 Google App Engine 中可靠地測試資料儲存查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!