-
Notifications
You must be signed in to change notification settings - Fork 19
/
heights_test.go
51 lines (42 loc) · 1.05 KB
/
heights_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
50
51
// 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"
)
func TestGetHeights(t *testing.T) {
factomdResponse := `{
"jsonrpc":"2.0",
"id":0,
"result":{
"directoryblockheight":72498,
"leaderheight":72498,
"entryblockheight":72498,
"entryheight":72498
}
}`
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:])
response, err := GetHeights()
if err != nil {
t.Error(err)
}
expectedResponse := `DirectoryBlockHeight: 72498
LeaderHeight: 72498
EntryBlockHeight: 72498
EntryHeight: 72498
`
if expectedResponse != response.String() {
t.Errorf("expected:%s\nrecieved:%s", expectedResponse, response)
}
t.Log(response)
}