search_aggs_metrics_top_hits_test.go 829 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2012-present Oliver Eilhard. All rights reserved.
  2. // Use of this source code is governed by a MIT-license.
  3. // See http://olivere.mit-license.org/license.txt for details.
  4. package elastic
  5. import (
  6. "encoding/json"
  7. "testing"
  8. )
  9. func TestTopHitsAggregation(t *testing.T) {
  10. fsc := NewFetchSourceContext(true).Include("title")
  11. agg := NewTopHitsAggregation().
  12. Sort("last_activity_date", false).
  13. FetchSourceContext(fsc).
  14. Size(1)
  15. src, err := agg.Source()
  16. if err != nil {
  17. t.Fatal(err)
  18. }
  19. data, err := json.Marshal(src)
  20. if err != nil {
  21. t.Fatalf("marshaling to JSON failed: %v", err)
  22. }
  23. got := string(data)
  24. expected := `{"top_hits":{"_source":{"includes":["title"]},"size":1,"sort":[{"last_activity_date":{"order":"desc"}}]}}`
  25. if got != expected {
  26. t.Errorf("expected\n%s\n,got:\n%s", expected, got)
  27. }
  28. }