diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-25 02:11:01 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-25 02:11:01 +0800 |
commit | 43acad81b3fbee608bf19e6ba32ba27b98d9a7ff (patch) | |
tree | bc3caa5e7144744ce6873ccb81dde82d202b15c0 /rpc/api_test.go | |
parent | 21becb0febdf11132a40ff69c6145d9babf8458d (diff) | |
download | dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.gz dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.bz2 dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.lz dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.xz dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.tar.zst dexon-43acad81b3fbee608bf19e6ba32ba27b98d9a7ff.zip |
Rename files
Diffstat (limited to 'rpc/api_test.go')
-rw-r--r-- | rpc/api_test.go | 38 |
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") + } +} |