-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtps_test.go
More file actions
39 lines (32 loc) · 795 Bytes
/
tps_test.go
File metadata and controls
39 lines (32 loc) · 795 Bytes
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
// 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 TestGetTPS(t *testing.T) {
factomdResponse := `{
"jsonrpc": "2.0",
"id": 1,
"result": {
"totaltxrate": 314.1592,
"instanttxrate": 271.828
}
}`
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:])
instant, total, err := GetTPS()
if err != nil {
t.Error(err)
}
t.Logf("Instant: %f, Total: %f\n", instant, total)
}