-
Notifications
You must be signed in to change notification settings - Fork 19
/
currentminute_test.go
49 lines (42 loc) · 1.16 KB
/
currentminute_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
44
45
46
47
48
49
// Copyright 2016 Factom Foundation
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.
package factom_test
import (
"fmt"
"net/http"
"net/http/httptest"
. "github.com/FactomProject/factom"
"testing"
)
// TestGetCurrentMinute relies on having a running factom daemon to provide an
// api endpoint at localhost:8088
func TestGetCurrentMinute(t *testing.T) {
factomdResponse := `{
"jsonrpc": "2.0",
"id": 1,
"result": {
"leaderheight": 191244,
"directoryblockheight": 191244,
"minute": 0,
"currentblockstarttime": 1557936697742751200,
"currentminutestarttime": 1557936697742751200,
"currenttime": 1557936697763826700,
"directoryblockinseconds": 600,
"stalldetected": false,
"faulttimeout": 120,
"roundtimeout": 30
}
}`
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, factomdResponse)
}))
defer ts.Close()
SetFactomdServer(ts.URL[7:])
min, err := GetCurrentMinute()
if err != nil {
t.Fatal(err)
}
t.Log(min.String())
}