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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// 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 (
"context"
"testing"
)
func TestPercolate(t *testing.T) {
//client := setupTestClientAndCreateIndex(t, SetErrorLog(log.New(os.Stdout, "", 0)))
//client := setupTestClientAndCreateIndex(t, SetTraceLog(log.New(os.Stdout, "", 0)))
client := setupTestClientAndCreateIndex(t)
// Create query index
createQueryIndex, err := client.CreateIndex(testQueryIndex).Body(testQueryMapping).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if createQueryIndex == nil {
t.Errorf("expected result to be != nil; got: %v", createQueryIndex)
}
// Add a document
_, err = client.Index().
Index(testQueryIndex).
Type("doc").
Id("1").
BodyJson(`{"query":{"match":{"message":"bonsai tree"}}}`).
Refresh("wait_for").
Do(context.TODO())
if err != nil {
t.Fatal(err)
}
// Percolate should return our registered query
pq := NewPercolatorQuery().
Field("query").
DocumentType("doc").
Document(doctype{Message: "A new bonsai tree in the office"})
res, err := client.Search(testQueryIndex).Type("doc").Query(pq).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if res == nil {
t.Fatal("expected results != nil; got nil")
}
if res.Hits == nil {
t.Fatal("expected SearchResult.Hits != nil; got nil")
}
if got, want := res.Hits.TotalHits, int64(1); got != want {
t.Fatalf("expected SearchResult.Hits.TotalHits = %d; got %d", want, got)
}
if got, want := len(res.Hits.Hits), 1; got != want {
t.Fatalf("expected len(SearchResult.Hits.Hits) = %d; got %d", want, got)
}
hit := res.Hits.Hits[0]
if hit.Index != testQueryIndex {
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testQueryIndex, hit.Index)
}
got := string(*hit.Source)
expected := `{"query":{"match":{"message":"bonsai tree"}}}`
if got != expected {
t.Fatalf("expected\n%s\n,got:\n%s", expected, got)
}
}
|