diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-25 05:00:39 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-25 05:00:39 +0800 |
commit | 52ccaa605e2a693bda64ac7d9fadf88d669ac446 (patch) | |
tree | 3535f3fc761f15de266364b5cfd741cbb40c8603 /rpc/api_test.go | |
parent | ed90efb05b2cfedf36c263f6974b8748d757a543 (diff) | |
parent | 2e3a6e2559d02ba90957eaf333e571dec935e00a (diff) | |
download | dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.tar dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.tar.gz dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.tar.bz2 dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.tar.lz dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.tar.xz dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.tar.zst dexon-52ccaa605e2a693bda64ac7d9fadf88d669ac446.zip |
Merge pull request #379 from tgerring/rpcupdates
RPC cleanup
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") + } +} |