X-Git-Url: http://git.scottworley.com/reliable-chat/blobdiff_plain/fa5e7c1bccdf5c1ca1b05e0ef1f0e0478540ab51..ca612dcb40cb644930b74c84e55218abda34e255:/server/server_test.go diff --git a/server/server_test.go b/server/server_test.go index d1babab..516f62a 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -1,10 +1,11 @@ package main import "testing" +import "runtime" import "time" func TestMessageInsertAndRetreive(t *testing.T) { - say := "" + say := "'Ello, Mister Polly Parrot!" at := time.Now() var zero_time time.Time store := start_store() @@ -21,4 +22,32 @@ func TestMessageInsertAndRetreive(t *testing.T) { if messages[0].Text != say { t.Fail() } + close(store.Get) + close(store.Add) +} + +func TestFetchBlocksUntilSpeak(t *testing.T) { + start_fetch_wait_count := fetch_wait_count.String() + say := "I've got a lovely fresh cuttle fish for you" + at := time.Now() + var zero_time time.Time + store := start_store() + messages_from_store := make(chan []Message, 1) + store.Get <- &StoreRequest{zero_time, messages_from_store} + for start_fetch_wait_count == fetch_wait_count.String() { + runtime.Gosched() + } + store.Add <- &Message{at, say} + messages := <-messages_from_store + if len(messages) != 1 { + t.Fail() + } + if messages[0].Time != at { + t.Fail() + } + if messages[0].Text != say { + t.Fail() + } + close(store.Get) + close(store.Add) }