aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-07-21 12:24:18 +0100
committerMatthew Wild <mwild1@gmail.com>2016-07-21 12:24:18 +0100
commit96713c8ff024e30feb1ef77b86542600e8873229 (patch)
tree538e92b2e399e53ecf4d4a703ffbd5e4dc40289f /tests
parent6fe51ecd17bd73e31105e27aa99fca9e0951a1d5 (diff)
parent0a1f044d219e82e1fd7f3fb05a46cc2ed76bba26 (diff)
downloadprosody-96713c8ff024e30feb1ef77b86542600e8873229.tar.gz
prosody-96713c8ff024e30feb1ef77b86542600e8873229.zip
Merge 0.10->trunk
Diffstat (limited to 'tests')
-rw-r--r--tests/test.lua1
-rw-r--r--tests/test_util_queue.lua114
2 files changed, 61 insertions, 54 deletions
diff --git a/tests/test.lua b/tests/test.lua
index d6aa3b31..ab029cc4 100644
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -28,6 +28,7 @@ function run_all_tests()
dotest "util.random"
dotest "util.xml"
dotest "util.xmppstream"
+ dotest "util.queue"
dotest "net.http.parser"
dosingletest("test_sasl.lua", "latin1toutf8");
diff --git a/tests/test_util_queue.lua b/tests/test_util_queue.lua
index b0e1fa3d..e215ba33 100644
--- a/tests/test_util_queue.lua
+++ b/tests/test_util_queue.lua
@@ -1,68 +1,74 @@
-local new = require "util.queue".new;
-local q = new(10);
+function new(new)
+ do
+ local q = new(10);
-assert(q.size == 10);
-assert(q:count() == 0);
+ assert_equal(q.size, 10);
+ assert_equal(q:count(), 0);
-assert(q:push("one"));
-assert(q:push("two"));
-assert(q:push("three"));
+ assert_is(q:push("one"));
+ assert_is(q:push("two"));
+ assert_is(q:push("three"));
-for i = 4, 10 do
- print("pushing "..i)
- assert(q:push("hello"));
- assert(q:count() == i, "count is not "..i.."("..q:count()..")");
-end
-assert(q:push("hello") == nil, "queue overfull!");
-assert(q:push("hello") == nil, "queue overfull!");
-assert(q:pop() == "one", "queue item incorrect");
-assert(q:pop() == "two", "queue item incorrect");
-assert(q:push("hello"));
-assert(q:push("hello"));
-assert(q:pop() == "three", "queue item incorrect");
-assert(q:push("hello"));
-assert(q:push("hello") == nil, "queue overfull!");
-assert(q:push("hello") == nil, "queue overfull!");
+ for i = 4, 10 do
+ assert_is(q:push("hello"));
+ assert_equal(q:count(), i, "count is not "..i.."("..q:count()..")");
+ end
+ assert_equal(q:push("hello"), nil, "queue overfull!");
+ assert_equal(q:push("hello"), nil, "queue overfull!");
+ assert_equal(q:pop(), "one", "queue item incorrect");
+ assert_equal(q:pop(), "two", "queue item incorrect");
+ assert_is(q:push("hello"));
+ assert_is(q:push("hello"));
+ assert_equal(q:pop(), "three", "queue item incorrect");
+ assert_is(q:push("hello"));
+ assert_equal(q:push("hello"), nil, "queue overfull!");
+ assert_equal(q:push("hello"), nil, "queue overfull!");
-assert(q:count() == 10, "queue count incorrect");
+ assert_equal(q:count(), 10, "queue count incorrect");
-for i = 1, 10 do
- assert(q:pop() == "hello", "queue item incorrect");
-end
+ for _ = 1, 10 do
+ assert_equal(q:pop(), "hello", "queue item incorrect");
+ end
-assert(q:count() == 0, "queue count incorrect");
+ assert_equal(q:count(), 0, "queue count incorrect");
-assert(q:push(1));
-for i = 1, 1001 do
- assert(q:pop() == i);
- assert(q:count() == 0);
- assert(q:push(i+1));
- assert(q:count() == 1);
-end
-assert(q:pop() == 1002);
-assert(q:push(1));
-for i = 1, 1000000 do
- q:pop();
- q:push(i+1);
-end
+ assert_is(q:push(1));
+ for i = 1, 1001 do
+ assert_equal(q:pop(), i);
+ assert_equal(q:count(), 0);
+ assert_is(q:push(i+1));
+ assert_equal(q:count(), 1);
+ end
+ assert_equal(q:pop(), 1002);
+ assert_is(q:push(1));
+ for i = 1, 1000 do
+ assert_equal(q:pop(), i);
+ assert_is(q:push(i+1));
+ end
+ assert_equal(q:pop(), 1001);
+ assert_equal(q:count(), 0);
+ end
--- Test queues that purge old items when pushing to a full queue
-local q = new(10, true);
+ do
+ -- Test queues that purge old items when pushing to a full queue
+ local q = new(10, true);
-for i = 1, 10 do
- q:push(i);
-end
+ for i = 1, 10 do
+ q:push(i);
+ end
-assert(q:count() == 10);
+ assert_equal(q:count(), 10);
-assert(q:push(11));
-assert(q:count() == 10);
-assert(q:pop() == 2); -- First item should have been purged
+ assert_is(q:push(11));
+ assert_equal(q:count(), 10);
+ assert_equal(q:pop(), 2); -- First item should have been purged
-for i = 12, 32 do
- assert(q:push(i));
-end
+ for i = 12, 32 do
+ assert_is(q:push(i));
+ end
-assert(q:count() == 10);
-assert(q:pop() == 23);
+ assert_equal(q:count(), 10);
+ assert_equal(q:pop(), 23);
+ end
+end