本文整理汇总了Python中YouTubePlayer.YouTubePlayer.playVideo方法的典型用法代码示例。如果您正苦于以下问题:Python YouTubePlayer.playVideo方法的具体用法?Python YouTubePlayer.playVideo怎么用?Python YouTubePlayer.playVideo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YouTubePlayer.YouTubePlayer
的用法示例。
在下文中一共展示了YouTubePlayer.playVideo方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_playVideo_should_call_getVideoObject
# 需要导入模块: from YouTubePlayer import YouTubePlayer [as 别名]
# 或者: from YouTubePlayer.YouTubePlayer import playVideo [as 别名]
def test_playVideo_should_call_getVideoObject(self):
player = YouTubePlayer()
player.buildVideoObject = Mock(return_value=[{"apierror": "some error"}, 303])
player.playVideo()
player.buildVideoObject.assert_called_with({})
示例2: test_playVideo_should_update_locally_stored_watched_status
# 需要导入模块: from YouTubePlayer import YouTubePlayer [as 别名]
# 或者: from YouTubePlayer.YouTubePlayer import playVideo [as 别名]
def test_playVideo_should_update_locally_stored_watched_status(self):
sys.modules["__main__"].settings.getSetting.return_value = "0"
sys.argv = ["test1", "1", "test2"]
player = YouTubePlayer()
player.buildVideoObject = Mock()
player.buildVideoObject.return_value = ({"Title": "someTitle", "videoid": "some_id", "thumbnail": "someThumbnail", "video_url": "someUrl"}, 200)
player.addSubtitles = Mock()
player.playVideo({"videoid": "some_id"})
sys.modules["__main__"].storage.storeValue.assert_called_with("vidstatus-some_id", "7" )
示例3: test_playVideo_should_call_addSubtitles
# 需要导入模块: from YouTubePlayer import YouTubePlayer [as 别名]
# 或者: from YouTubePlayer.YouTubePlayer import playVideo [as 别名]
def test_playVideo_should_call_addSubtitles(self):
video = {"Title": "someTitle", "videoid": "some_id", "thumbnail": "someThumbnail", "video_url": "someUrl"}
sys.modules["__main__"].settings.getSetting.return_value = "1"
sys.argv = ["test1", "1", "test2"]
player = YouTubePlayer()
player.buildVideoObject = Mock()
player.buildVideoObject.return_value = (video, 200)
player.playVideo({"videoid": "some_id"})
sys.modules["__main__"].subtitles.addSubtitles.assert_called_with(video)
示例4: test_playVideo_should_call_xbmc_setResolvedUrl
# 需要导入模块: from YouTubePlayer import YouTubePlayer [as 别名]
# 或者: from YouTubePlayer.YouTubePlayer import playVideo [as 别名]
def test_playVideo_should_call_xbmc_setResolvedUrl(self):
sys.modules["__main__"].settings.getSetting.return_value = "0"
player = YouTubePlayer()
player.addSubtitles = Mock()
player.buildVideoObject = Mock()
player.buildVideoObject.return_value = ({"Title": "someTitle", "videoid": "some_id", "thumbnail": "someThumbnail", "video_url": "someUrl"}, 200)
sys.argv = ["test1", "1", "test2"]
player.playVideo({"videoid": "some_id"})
assert(sys.modules["__main__"].xbmcplugin.setResolvedUrl.call_count > 0)
示例5: test_playVideo_should_call_remove_from_watch_later_if_viewing_video_from_watch_later_queue
# 需要导入模块: from YouTubePlayer import YouTubePlayer [as 别名]
# 或者: from YouTubePlayer.YouTubePlayer import playVideo [as 别名]
def test_playVideo_should_call_remove_from_watch_later_if_viewing_video_from_watch_later_queue(self):
player = YouTubePlayer()
sys.modules["__main__"].settings.getSetting.return_value = "0"
sys.argv = ["test1", "1", "test2"]
player.buildVideoObject = Mock()
player.buildVideoObject.return_value = ({"Title": "someTitle", "videoid": "some_id", "thumbnail": "someThumbnail", "video_url": "someUrl"}, 200)
player.addSubtitles = Mock()
call_params = {"videoid": "some_id", "watch_later": "true", "playlist": "playlist_id", "playlist_entry_id": "entry_id"}
player.playVideo(call_params)
sys.modules["__main__"].core.remove_from_watch_later.assert_called_with(call_params)
示例6: test_playVideo_should_log_and_fail_gracefully_on_apierror
# 需要导入模块: from YouTubePlayer import YouTubePlayer [as 别名]
# 或者: from YouTubePlayer.YouTubePlayer import playVideo [as 别名]
def test_playVideo_should_log_and_fail_gracefully_on_apierror(self):
player = YouTubePlayer()
player.buildVideoObject = Mock()
player.buildVideoObject.return_value = [{"apierror": "some error"}, 303]
result = player.playVideo()
assert(result == False)
sys.modules["__main__" ].common.log.assert_called_with("construct video url failed contents of video item {'apierror': 'some error'}")