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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
// 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 TestNodesStats(t *testing.T) {
client, err := NewClient()
if err != nil {
t.Fatal(err)
}
info, err := client.NodesStats().Human(true).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if info == nil {
t.Fatal("expected nodes stats")
}
if info.ClusterName == "" {
t.Errorf("expected cluster name; got: %q", info.ClusterName)
}
if len(info.Nodes) == 0 {
t.Errorf("expected some nodes; got: %d", len(info.Nodes))
}
for id, node := range info.Nodes {
if id == "" {
t.Errorf("expected node id; got: %q", id)
}
if node == nil {
t.Fatalf("expected node info; got: %v", node)
}
if len(node.Name) == 0 {
t.Errorf("expected node name; got: %q", node.Name)
}
if node.Timestamp == 0 {
t.Errorf("expected timestamp; got: %q", node.Timestamp)
}
}
}
func TestNodesStatsBuildURL(t *testing.T) {
tests := []struct {
NodeIds []string
Metrics []string
IndexMetrics []string
Expected string
}{
{
NodeIds: nil,
Metrics: nil,
IndexMetrics: nil,
Expected: "/_nodes/stats",
},
{
NodeIds: []string{"node1"},
Metrics: nil,
IndexMetrics: nil,
Expected: "/_nodes/node1/stats",
},
{
NodeIds: []string{"node1", "node2"},
Metrics: nil,
IndexMetrics: nil,
Expected: "/_nodes/node1%2Cnode2/stats",
},
{
NodeIds: nil,
Metrics: []string{"indices"},
IndexMetrics: nil,
Expected: "/_nodes/stats/indices",
},
{
NodeIds: nil,
Metrics: []string{"indices", "jvm"},
IndexMetrics: nil,
Expected: "/_nodes/stats/indices%2Cjvm",
},
{
NodeIds: []string{"node1"},
Metrics: []string{"indices", "jvm"},
IndexMetrics: nil,
Expected: "/_nodes/node1/stats/indices%2Cjvm",
},
{
NodeIds: nil,
Metrics: nil,
IndexMetrics: []string{"fielddata"},
Expected: "/_nodes/stats/_all/fielddata",
},
{
NodeIds: []string{"node1"},
Metrics: nil,
IndexMetrics: []string{"fielddata"},
Expected: "/_nodes/node1/stats/_all/fielddata",
},
{
NodeIds: nil,
Metrics: []string{"indices"},
IndexMetrics: []string{"fielddata"},
Expected: "/_nodes/stats/indices/fielddata",
},
{
NodeIds: []string{"node1"},
Metrics: []string{"indices"},
IndexMetrics: []string{"fielddata"},
Expected: "/_nodes/node1/stats/indices/fielddata",
},
{
NodeIds: []string{"node1", "node2"},
Metrics: []string{"indices", "jvm"},
IndexMetrics: []string{"fielddata", "docs"},
Expected: "/_nodes/node1%2Cnode2/stats/indices%2Cjvm/fielddata%2Cdocs",
},
}
client, err := NewClient()
if err != nil {
t.Fatal(err)
}
for i, tt := range tests {
svc := client.NodesStats().NodeId(tt.NodeIds...).Metric(tt.Metrics...).IndexMetric(tt.IndexMetrics...)
path, _, err := svc.buildURL()
if err != nil {
t.Errorf("#%d: expected no error, got %v", i, err)
} else {
if want, have := tt.Expected, path; want != have {
t.Errorf("#%d: expected %q, got %q", i, want, have)
}
}
}
}
|