Commit d778ab71 by Valera Rozuvan

Added Jasmine test for initial retrieval of duration.

BLD-529.
parent 215816b5
...@@ -876,12 +876,39 @@ ...@@ -876,12 +876,39 @@
}); });
describe('getDuration', function () { describe('getDuration', function () {
var oldYT;
beforeEach(function () { beforeEach(function () {
oldYT = window.YT;
jasmine.stubRequests();
window.YT = {
Player: function () {
return { getDuration: function () { return 60; } };
},
PlayerState: oldYT.PlayerState,
ready: function (callback) {
callback();
}
};
spyOn(window.YT, 'Player').andCallThrough();
initializeYouTube();
spyOn(state, 'getDuration').andCallThrough();
spyOn(state.videoPlayer.player, 'getDuration').andReturn(0);
});
afterEach(function () {
window.YT = oldYT;
}); });
it('getDuration is called as a fall-back', function () { it('getDuration is called as a fall-back', function () {
state.videoPlayer.duration();
expect(state.getDuration).toHaveBeenCalled();
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment