diff -r 912f100fecb0 -r dbd302a995f5 unittests/tests/segmentsWidget.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unittests/tests/segmentsWidget.js Thu Oct 20 10:19:36 2011 +0200 @@ -0,0 +1,53 @@ +/* segmentsWidget.js */ + +function test_segments_widget() { + module("segments widget testing", + {setup : function() { + this.Popcorn = Popcorn.youtube("#popcorn-div", "http://www.youtube.com/watch?v=QH2-TGUlwu4"); + + this.dt = new IriSP.DataLoader(); + this.ser = new IriSP.MockSerializer(this.dt, "/url"); /* dummy serializer */ + + + IriSP.jQuery("#widget-div").append("
"); + this.config = { + metadata:{ + format:'cinelab', + src:'test.json', + load:'json'}, + gui:{ + 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.youtube("#popcorn-div", "http://www.youtube.com/watch?v=QH2-TGUlwu4"); + } + }); + + test("test widget initialization", function() { + var widget = new IriSP.SegmentsWidget(this.Popcorn, this.config, this.ser); + widget.draw(); + + console.dir(IriSP.jQuery("#Ldt-Annotations").get(0)); + equal(IriSP.jQuery("#Ldt-Annotations").length, 1, "test if the div has been added correctly"); + equal(IriSP.jQuery("#Ldt-Annotations").children().length, this.ser._data.annotations.length, "test if children have 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(IriSP.jQuery("#Ldt-SaTitle").text(), "title", "title set correctly"); + equal(IriSP.jQuery("#Ldt-SaDescription").text(), "description", "description set correctly"); + equal(IriSP.jQuery("#Ldt-SaKeywordText").text(), "Mots clefs : ", "keywords field set correctly"); + */ + }); +}; \ No newline at end of file