aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-02-25 02:11:01 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-02-25 02:11:01 +0800
commit43acad81b3fbee608bf19e6ba32ba27b98d9a7ff (patch)
treebc3caa5e7144744ce6873ccb81dde82d202b15c0 /rpc/api_test.go
parent21becb0febdf11132a40ff69c6145d9babf8458d (diff)
downloadgo-tangerine-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.gz
go-tangerine-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.zst
go-tangerine-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.zip
Rename files
Diffstat (limited to 'rpc/api_test.go')
-rw-r--r--rpc/api_test.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/rpc/api_test.go b/rpc/api_test.go
new file mode 100644
index 000000000..a9fc16cd3
--- /dev/null
+++ b/rpc/api_test.go
@@ -0,0 +1,38 @@
+package rpc
+
+import (
+ "sync"
+ "testing"
+ "time"
+)
+
+func TestFilterClose(t *testing.T) {
+ t.Skip()
+ api := &EthereumApi{
+ logs: make(map[int]*logFilter),
+ messages: make(map[int]*whisperFilter),
+ quit: make(chan struct{}),
+ }
+
+ filterTickerTime = 1
+ api.logs[0] = &logFilter{}
+ api.messages[0] = &whisperFilter{}
+ var wg sync.WaitGroup
+ wg.Add(1)
+ go api.start()
+ go func() {
+ select {
+ case <-time.After(500 * time.Millisecond):
+ api.stop()
+ wg.Done()
+ }
+ }()
+ wg.Wait()
+ if len(api.logs) != 0 {
+ t.Error("expected logs to be empty")
+ }
+
+ if len(api.messages) != 0 {
+ t.Error("expected messages to be empty")
+ }
+}