forked from knes1/elktail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elktail_internal_test.go
43 lines (36 loc) · 1.09 KB
/
elktail_internal_test.go
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
/* Copyright (C) 2016 Krešimir Nesek
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
package main
import (
"testing"
tu "github.io/knes1/elktail/testutils"
)
func TestExtractDate(t *testing.T) {
tu.AssertEqualsString(t, "2016-06-17", extractYMDDate("2016-06-17T04:06", "-").Format("2006-01-02"))
tu.AssertEqualsString(t, "2016-06-17", extractYMDDate("logstash-2016.06.17", ".").Format("2006-01-02"))
}
func TestFindIndicesForDateRange(t *testing.T) {
indices := [...]string {
"logstash-2016.06.15",
"logstash-2016.06.16",
"logstash-2016.06.17",
"logstash-2016.06.18",
"logstash-2016.06.19",
"logstash-2016.06.20",
}
x := findIndicesForDateRange(indices[0:], "logstash.*", "2016-06-16", "2016-06-18")
t.Log(x)
tu.AssertEqualsInt(t, 3, len(x))
}
func TestDrainOldEntries(t *testing.T) {
arr := []DisplayedEntry{
{ timeStamp: "2016-01-01", id: "1"},
{ timeStamp: "2016-01-02", id: "2"},
{ timeStamp: "2016-01-03", id: "3"},
}
drainOldEntries(&arr, "2016-01-02")
tu.AssertEqualsInt(t, 2, len(arr))
}