-
Notifications
You must be signed in to change notification settings - Fork 19
/
properties_test.go
56 lines (46 loc) · 1.19 KB
/
properties_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
52
53
54
55
56
// 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 TestGetProperties(t *testing.T) {
factomdResponse := `{
"jsonrpc": "2.0",
"id": 1,
"result": {
"factomdversion": "BuiltWithoutVersion",
"factomdapiversion": "2.0"
}
}`
walletdResponse := `{
"jsonrpc": "2.0",
"id": 2,
"result": {
"walletversion": "BuiltWithoutVersion",
"walletapiversion": "2.0"
}
}`
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:])
wts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, walletdResponse)
}))
defer wts.Close()
SetWalletServer(wts.URL[7:])
props, err := GetProperties()
if err != nil {
t.Error(err)
}
t.Log(props)
}