diff -r 27b248a13355 -r 8a6c9e3d0158 unittests/tests/widgets/annotationsWidget.js --- a/unittests/tests/widgets/annotationsWidget.js Thu May 24 15:05:47 2012 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -/* annotationsWidget.js */ - -function test_annotations_widget() { - module("annotations widget testing", - {setup : function() { - this.Popcorn = Popcorn("#popcorn-div"); - - this.dt = new IriSP.DataLoader(); - this.ser = new IriSP.MockSerializer(this.dt, "/url"); /* dummy serializer */ - - IriSP.jQuery("#widget-div").append("
"); - - this.config = { - width:650, - height:1, - mode:'radio', - container:'widget-div', - debug:true, - css:'../src/css/LdtPlayer.css'}; - }, - teardown: function() { - /* free the popcorn object because it has signal handlers attached to it */ - this.Popcorn = Popcorn("#popcorn-div"); - } - }); - - test("test widget initialization", function() { - var widget = new IriSP.AnnotationsWidget(this.Popcorn, this.config, this.ser); - widget.draw(); - - equal(widget.selector.children(".Ldt-AnnotationsWidget").length, 1, "test if the div has been added correctly"); - }); - - test("test annotation display function", function() { - var widget = new IriSP.AnnotationsWidget(this.Popcorn, this.config, this.ser); - widget.draw(); - var annotation = {content: {"title": "title", "description": "description", "keywords": "keywords"}}; - widget.displayAnnotation(annotation); - equal(widget.selector.find(".Ldt-SaTitle").text(), "title - ( NaN:NaN - NaN:NaN )", "title set correctly"); - equal(widget.selector.find(".Ldt-SaDescription").text(), "description", "description set correctly"); - equal(widget.selector.find(".Ldt-SaKeywordText").text(), "", "keywords field set correctly"); - }); -};