本文整理汇总了Python中Storage.StorageServer.StorageServer.get_thumbnail方法的典型用法代码示例。如果您正苦于以下问题:Python StorageServer.get_thumbnail方法的具体用法?Python StorageServer.get_thumbnail怎么用?Python StorageServer.get_thumbnail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Storage.StorageServer.StorageServer
的用法示例。
在下文中一共展示了StorageServer.get_thumbnail方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_thumbnail
# 需要导入模块: from Storage.StorageServer import StorageServer [as 别名]
# 或者: from Storage.StorageServer.StorageServer import get_thumbnail [as 别名]
def test_get_thumbnail(self):
collection_name = str(uuid.uuid1())
StorageServer.add_collection(self.__account_id, collection_name, callback=self.stop)
response = self.wait()
self.assertEqual(StorageResponse.OK, response)
thumbnail = open("../test_resources/thumbnail.jpg")
StorageServer.add_thumbnail(self.__account_id, collection_name, thumbnail, callback=self.stop)
response = self.wait()
self.assertEqual(StorageResponse.OK, response)
StorageServer.get_thumbnail(self.__account_id, collection_name, callback=self.stop)
response = self.wait()
result_file = open("../test_resources/thumbnail2.jpg", "w")
result_file.write(response.read())
response.close()
# cleanup
StorageServer.remove_collection(self.__account_id, collection_name, callback=self.stop)
self.wait()
示例2: test_update_thumbnail
# 需要导入模块: from Storage.StorageServer import StorageServer [as 别名]
# 或者: from Storage.StorageServer.StorageServer import get_thumbnail [as 别名]
def test_update_thumbnail(self):
collection_name = str(uuid.uuid4())
subscriber_list = [self.__subscriber_id]
sharing_secret, subscribers_collections =\
self.__create_sharing_record(subscriber_list, collection_name)
joker = JokerHelper.get_instance()
joker.get_sharing_space_server(sharing_secret, callback=self.stop)
server_adrs = self.wait(timeout=10000)
self.assertIn(server_adrs, Properties.sharing_space_servers)
thumbnail_file = open('../test_resources/note_img.jpg')
joker.update_thumbnail(server_adrs, sharing_secret, self.__account_id,
collection_name, thumbnail_file, callback=self.stop)
response = self.wait()
self.assertEqual(StorageResponse.OK, response)
#wait for a while
self.__wait(10)
#try to retreive the thumbnail
StorageServer.get_thumbnail(self.__account_id, collection_name,
callback=self.stop)
response = self.wait()
self.assertTrue(response is not None)
#cleanup
SharingController.remove_sharing_record_by_secret(sharing_secret, callback =self.stop)
self.wait()
StorageServer.remove_collection(self.__account_id, collection_name,
callback=self.stop)
for subscriber_id in subscribers_collections:
subscriber_collection = subscribers_collections[subscriber_id]
StorageServer.remove_collection(subscriber_id, subscriber_collection,
callback=self.stop)
self.wait()