aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-07 03:31:15 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-07 03:31:15 +0000
commitb792bd46ec9b1b55bf2289faedd4ab3614c9319a (patch)
tree4b1736c703d392ec07fd4a5ae3390151470ae933 /tests/unit/progressbar
parent4707debd645e63ea22d7a076e97a34eb3d310ebc (diff)
downloadjquery-ui-b792bd46ec9b1b55bf2289faedd4ab3614c9319a.tar.gz
jquery-ui-b792bd46ec9b1b55bf2289faedd4ab3614c9319a.zip
restructured unit tests folder
Diffstat (limited to 'tests/unit/progressbar')
-rw-r--r--tests/unit/progressbar/progressbar.html24
-rw-r--r--tests/unit/progressbar/progressbar.js68
2 files changed, 92 insertions, 0 deletions
diff --git a/tests/unit/progressbar/progressbar.html b/tests/unit/progressbar/progressbar.html
new file mode 100644
index 000000000..c6d9becfb
--- /dev/null
+++ b/tests/unit/progressbar/progressbar.html
@@ -0,0 +1,24 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Progressbar Test Suite</title>
+
+ <script type="text/javascript" src="../../../jquery-1.3pre.js"></script>
+ <script type="text/javascript" src="../../../ui/ui.core.js"></script>
+ <script type="text/javascript" src="../../../ui/ui.progressbar.js"></script>
+
+ <link type="text/css" href="../testsuite.css" rel="stylesheet" />
+ <script type="text/javascript" src="../testsuite.js"></script>
+ <script type="text/javascript" src="../../../external/qunit/testrunner.js"></script>
+ <script type="text/javascript" src="../../../external/simulate/jquery.simulate.js"></script>
+
+ <script type="text/javascript" src="progressbar.js"></script>
+</head>
+<body>
+
+<div id="main">
+ <div id="progressbar"></div>
+</div>
+
+</body>
+</html>
diff --git a/tests/unit/progressbar/progressbar.js b/tests/unit/progressbar/progressbar.js
new file mode 100644
index 000000000..087106510
--- /dev/null
+++ b/tests/unit/progressbar/progressbar.js
@@ -0,0 +1,68 @@
+/*
+ * progressbar unit tests
+ */
+(function($) {
+//
+// Progressbar Test Helper Functions
+//
+
+var defaults = {
+ disabled: false,
+ value: 0
+};
+
+var el;
+
+// Progressbar Tests
+module("progressbar");
+
+test("init", function() {
+ expect(1);
+
+ $("<div></div>").appendTo('body').progressbar().remove();
+ ok(true, '.progressbar() called on element');
+
+});
+
+test("destroy", function() {
+ expect(1);
+
+ $("<div></div>").appendTo('body').progressbar().progressbar("destroy").remove();
+ ok(true, '.progressbar("destroy") called on element');
+
+});
+
+test("defaults", function() {
+ el = $('<div></div>').progressbar();
+ $.each(defaults, function(key, val) {
+ var actual = el.data(key + ".progressbar"), expected = val;
+ same(actual, expected, key);
+ });
+ el.remove();
+});
+
+test("set defaults on init", function() {
+ el = $("#progressbar").progressbar({
+ value: 50
+ });
+
+ equals(el.progressbar("option", "value"), 50, "value");
+});
+
+test("accessibility", function() {
+ expect(7);
+ el = $("#progressbar").progressbar();
+
+ equals(el.attr("role"), "progressbar", "aria role");
+ equals(el.attr("aria-valuemin"), 0, "aria-valuemin");
+ equals(el.attr("aria-valuemax"), 100, "aria-valuemax");
+ equals(el.attr("aria-valuenow"), 0, "aria-valuenow initially");
+ el.progressbar("value", 77);
+ equals(el.attr("aria-valuenow"), 77, "aria-valuenow");
+ el.progressbar("disable");
+ equals(el.attr("aria-disabled"), "true", "aria-disabled");
+ el.progressbar("enable");
+ equals(el.attr("aria-disabled"), "false", "enabled");
+});
+
+})(jQuery);