summaryrefslogtreecommitdiffstats
path: root/store/storetest
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-10-30 13:14:17 -0400
committerChris <ccbrown112@gmail.com>2017-10-30 12:14:17 -0500
commit443a880fbd4249d4782f39f2f96152a14147c08b (patch)
treeee25fc370a89c66d5f398c5545a966898f815aed /store/storetest
parent3cbacb6858ea2dda67719de64854ed30dea3b626 (diff)
downloadchat-443a880fbd4249d4782f39f2f96152a14147c08b.tar.gz
chat-443a880fbd4249d4782f39f2f96152a14147c08b.tar.bz2
chat-443a880fbd4249d4782f39f2f96152a14147c08b.zip
Add command validation on update (#7742)
Diffstat (limited to 'store/storetest')
-rw-r--r--store/storetest/command_store.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/store/storetest/command_store.go b/store/storetest/command_store.go
index 92d981660..ffc575563 100644
--- a/store/storetest/command_store.go
+++ b/store/storetest/command_store.go
@@ -221,6 +221,12 @@ func testCommandStoreUpdate(t *testing.T, ss store.Store) {
if r2 := <-ss.Command().Update(o1); r2.Err != nil {
t.Fatal(r2.Err)
}
+
+ o1.URL = "junk"
+
+ if r2 := <-ss.Command().Update(o1); r2.Err == nil {
+ t.Fatal("should have failed - bad URL")
+ }
}
func testCommandCount(t *testing.T, ss store.Store) {