mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-03 08:08:04 -05:00
58 lines
1.6 KiB
Go
58 lines
1.6 KiB
Go
// 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) //, SetTraceLog(log.New(os.Stdout, "", 0)))
|
|
|
|
// Add a document
|
|
_, err := client.Index().
|
|
Index(testIndexName).
|
|
Type("queries").
|
|
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("doctype").
|
|
Document(doctype{Message: "A new bonsai tree in the office"})
|
|
res, err := client.Search(testIndexName).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 != testIndexName {
|
|
t.Fatalf("expected SearchResult.Hits.Hit.Index = %q; got %q", testIndexName, 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)
|
|
}
|
|
}
|