1 (ns redis.tests.internal
2 (:require [redis.internal :as redis])
3 (:use [clojure.contrib.test-is])
4 (:import [java.io StringReader BufferedReader]))
18 (let [reader (BufferedReader. (StringReader. s))]
23 (redis/read-reply (wrap-in-reader s)))
29 (deftest inline-command
31 (redis/inline-command "FOO")))
33 (redis/inline-command "FOO" "bar")))
34 (is (= "FOO bar baz\r\n"
35 (redis/inline-command "FOO" "bar" "baz"))))
38 (is (= "FOO 3\r\nbar\r\n"
39 (redis/bulk-command "FOO" "bar")))
40 (is (= "SET foo 3\r\nbar\r\n"
41 (redis/bulk-command "SET" "foo" "bar")))
42 (is (= "SET foo bar 3\r\nbaz\r\n"
43 (redis/bulk-command "SET" "foo" "bar" "baz"))))
47 (redis/sort-command "SORT" "key")))
48 (is (= "SORT key BY pattern\r\n"
49 (redis/sort-command "SORT" "key" :by "pattern")))
50 (is (= "SORT key LIMIT 0 10\r\n"
51 (redis/sort-command "SORT" "key" :limit 0 10)))
52 (is (= "SORT key ASC\r\n"
53 (redis/sort-command "SORT" "key" :asc)))
54 (is (= "SORT key DESC\r\n"
55 (redis/sort-command "SORT" "key" :desc)))
56 (is (= "SORT key ALPHA\r\n"
57 (redis/sort-command "SORT" "key" :alpha)))
58 (is (= "SORT key GET object_* GET object2_*\r\n"
59 (redis/sort-command "SORT" "key" :get "object_*" :get "object2_*")))
60 (is (= "SORT key BY weight_* LIMIT 0 10 GET object_* ALPHA DESC\r\n"
61 (redis/sort-command "SORT" "key"
73 (is (thrown? Exception
74 (redis/read-crlf (wrap-in-reader "\n"))))
75 (is (thrown? Exception
76 (redis/read-crlf (wrap-in-reader ""))))
77 (is (thrown? Exception
78 (redis/read-crlf (wrap-in-reader "\r1"))))
80 (redis/read-crlf (wrap-in-reader "\r\n")))))
82 ;; (deftest read-newline-crlf
83 ;; (is (thrown? Exception
84 ;; (redis/read-line-crlf (wrap-in-reader "")))))
90 (is (thrown? Exception
92 (is (thrown? Exception
93 (read-reply "\r\n"))))
99 (read-reply "-\r\n")))
100 (is (thrown-with-msg?
102 (read-reply "-Test\r\n"))))
104 (deftest simple-reply
105 (is (thrown? Exception
108 (read-reply "+\r\n")))
110 (read-reply "+foobar\r\n"))))
112 (deftest integer-reply
113 (is (thrown? Exception
114 (read-reply ":\r\n")))
116 (read-reply ":0\r\n")))
118 (read-reply ":42\r\n")))
120 (read-reply ": 42 \r\n")))
122 (read-reply ":429348754\r\n"))))
125 (is (thrown? Exception
126 (read-reply "$\r\n")))
127 (is (thrown? Exception
128 (read-reply "$2\r\n1\r\n")))
129 (is (thrown? Exception
130 (read-reply "$3\r\n1\r\n")))
132 (read-reply "$-1\r\n")))
134 (read-reply "$6\r\nfoobar\r\n")))
136 (read-reply "$8\r\nfoo\r\nbar\r\n"))))
138 (deftest multi-bulk-reply
139 (is (thrown? Exception
140 (read-reply "*1\r\n")))
141 (is (thrown? Exception
142 (read-reply "*4\r\n:0\r\n:0\r\n:0\r\n")))
144 (read-reply "*-1\r\n")))
146 (read-reply "*1\r\n:1\r\n")))
148 (read-reply "*2\r\n+foo\r\n+bar\r\n")))
149 (is (= [1 "foo" "foo\r\nbar"]
150 (read-reply "*3\r\n:1\r\n+foo\r\n$8\r\nfoo\r\nbar\r\n"))))