File: search_aggs_pipeline_bucket_script_test.go

package info (click to toggle)
golang-gopkg-olivere-elastic.v5 5.0.69-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,804 kB
  • sloc: makefile: 17; sh: 2
file content (30 lines) | stat: -rw-r--r-- 911 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2012-present Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.

package elastic

import (
	"encoding/json"
	"testing"
)

func TestBucketScriptAggregation(t *testing.T) {
	agg := NewBucketScriptAggregation().
		AddBucketsPath("tShirtSales", "t-shirts>sales").
		AddBucketsPath("totalSales", "total_sales").
		Script(NewScript("tShirtSales / totalSales * 100"))
	src, err := agg.Source()
	if err != nil {
		t.Fatal(err)
	}
	data, err := json.Marshal(src)
	if err != nil {
		t.Fatalf("marshaling to JSON failed: %v", err)
	}
	got := string(data)
	expected := `{"bucket_script":{"buckets_path":{"tShirtSales":"t-shirts\u003esales","totalSales":"total_sales"},"script":{"inline":"tShirtSales / totalSales * 100"}}}`
	if got != expected {
		t.Errorf("expected\n%s\n,got:\n%s", expected, got)
	}
}