Esempio n. 1
0
    def test_get_categories_without_existing_categories(self):
        StorageServer.get_categories(self.__account_id, callback=self.stop)
        response = self.wait()
        self.assertTrue(response is not None)

        # clean up
        StorageServer.remove_categories(self.__account_id, callback=self.stop)
        self.wait()
Esempio n. 2
0
 def test_save_categories(self):
     collection_file = open("../test_resources/categories.xml")
     StorageServer.save_categories(self.__account_id, collection_file, callback=self.stop)
     response = self.wait()
     self.assertEqual(StorageResponse.OK, response)
     # clean up
     StorageServer.remove_categories(self.__account_id, callback=self.stop)
     self.wait()