search_aggs_bucket_children_test.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 TestChildrenAggregation(t *testing.T) {
  10. agg := NewChildrenAggregation().Type("answer")
  11. src, err := agg.Source()
  12. if err != nil {
  13. t.Fatal(err)
  14. }
  15. data, err := json.Marshal(src)
  16. if err != nil {
  17. t.Fatalf("marshaling to JSON failed: %v", err)
  18. }
  19. got := string(data)
  20. expected := `{"children":{"type":"answer"}}`
  21. if got != expected {
  22. t.Errorf("expected\n%s\n,got:\n%s", expected, got)
  23. }
  24. }
  25. func TestChildrenAggregationWithSubAggregation(t *testing.T) {
  26. subAgg := NewTermsAggregation().Field("owner.display_name").Size(10)
  27. agg := NewChildrenAggregation().Type("answer")
  28. agg = agg.SubAggregation("top-names", subAgg)
  29. src, err := agg.Source()
  30. if err != nil {
  31. t.Fatal(err)
  32. }
  33. data, err := json.Marshal(src)
  34. if err != nil {
  35. t.Fatalf("marshaling to JSON failed: %v", err)
  36. }
  37. got := string(data)
  38. expected := `{"aggregations":{"top-names":{"terms":{"field":"owner.display_name","size":10}}},"children":{"type":"answer"}}`
  39. if got != expected {
  40. t.Errorf("expected\n%s\n,got:\n%s", expected, got)
  41. }
  42. }