Пример #1
0
 def test_store_should_return_result_meta_with_location(self):
     self.assertEqual('https://bucket.s3-region.amazonaws.com/some/location',
         Source.from_buffer('png file').store(service='s3').location)
Пример #2
0
 def test_from_buffer_should_return_source(self):
     self.assertIsInstance(Source.from_buffer('png file'), Source)
Пример #3
0
 def test_preserve_should_include_other_options_if_set(self):
     self.assertEqual(b'copyrighted file', Source.from_buffer('png file').resize(width=400).preserve("copyright", "location").to_buffer())
     self.assertJsonEqual('{"preserve":["copyright","location"],"resize":{"width":400}}', httpretty.last_request().body.decode('utf-8'))
Пример #4
0
 def test_store_should_return_result_meta_with_location(self):
     self.assertEqual(
         'https://bucket.s3-region.amazonaws.com/some/location',
         Source.from_buffer('png file').store(service='s3').location)
Пример #5
0
 def test_to_file_with_file_object_should_store_image_data(self):
     with tempfile.NamedTemporaryFile() as tmp:
         Source.from_buffer('png file').to_file(tmp.name)
         self.assertEqual(b'compressed file', tmp.read())
Пример #6
0
 def test_result_should_return_result(self):
     self.assertIsInstance(Source.from_buffer('png file').result(), Result)
Пример #7
0
 def test_resize_should_return_source_with_data(self):
     self.assertEqual(
         b'small file',
         Source.from_buffer('png file').resize(width=400).to_buffer())
Пример #8
0
 def test_preserve_should_return_source(self):
     self.assertIsInstance(Source.from_buffer('png file').preserve("copyright", "location"), Source)
     self.assertEqual(b'png file', httpretty.last_request().body)
Пример #9
0
 def test_to_file_with_file_object_should_store_image_data(self):
     with tempfile.NamedTemporaryFile() as tmp:
         Source.from_buffer('png file').to_file(tmp.name)
         self.assertEqual(b'compressed file', tmp.read())
Пример #10
0
 def test_store_should_return_result_meta_with_location(self):
     self.assertEqual('https://bucket.s3-region.amazonaws.com/some/location',
         Source.from_buffer('png file').store(service='s3').location)
     self.assertJsonEqual('{"store":{"service":"s3"}}', httpretty.last_request().body.decode('utf-8'))
Пример #11
0
 def test_store_should_include_other_options_if_set(self):
     self.assertEqual('https://bucket.s3-region.amazonaws.com/some/location', Source.from_buffer('png file').resize(width=400).store(service='s3').location)
     self.assertJsonEqual('{"store":{"service":"s3"},"resize":{"width":400}}', httpretty.last_request().body.decode('utf-8'))
Пример #12
0
 def test_store_should_return_result_meta(self):
     self.assertIsInstance(Source.from_buffer('png file').store(service='s3'), ResultMeta)
     self.assertJsonEqual('{"store":{"service":"s3"}}', httpretty.last_request().body.decode('utf-8'))
Пример #13
0
 def test_resize_should_return_source_with_data(self):
     self.assertEqual(b'small file', Source.from_buffer('png file').resize(width=400).to_buffer())
     self.assertJsonEqual('{"resize":{"width":400}}', httpretty.last_request().body.decode('utf-8'))
Пример #14
0
 def test_resize_should_return_source(self):
     self.assertIsInstance(Source.from_buffer('png file').resize(width=400), Source)
     self.assertEqual(b'png file', httpretty.last_request().body)
Пример #15
0
 def test_to_buffer_should_return_image_data(self):
     self.assertEqual(b'compressed file', Source.from_buffer('png file').to_buffer())
Пример #16
0
 def test_from_buffer_should_raise_account_error(self):
     with self.assertRaises(AccountError):
         Source.from_buffer('png file')
Пример #17
0
 def test_to_file_with_path_should_store_image_data(self):
     with tempfile.TemporaryFile() as tmp:
         Source.from_buffer('png file').to_file(tmp)
         tmp.seek(0)
         self.assertEqual(b'compressed file', tmp.read())
Пример #18
0
 def test_from_buffer_should_return_source(self):
     self.assertIsInstance(Source.from_buffer('png file'), Source)
Пример #19
0
 def test_resize_should_return_source(self):
     self.assertIsInstance(
         Source.from_buffer('png file').resize(width=400), Source)
Пример #20
0
 def test_result_should_return_result(self):
     self.assertIsInstance(Source.from_buffer('png file').result(), Result)
Пример #21
0
 def test_store_should_return_result_meta(self):
     self.assertIsInstance(
         Source.from_buffer('png file').store(), ResultMeta)
Пример #22
0
 def test_resize_should_return_source(self):
     self.assertIsInstance(Source.from_buffer('png file').resize(width=400), Source)
Пример #23
0
 def test_to_file_with_path_should_store_image_data(self):
     with tempfile.TemporaryFile() as tmp:
         Source.from_buffer('png file').to_file(tmp)
         tmp.seek(0)
         self.assertEqual(b'compressed file', tmp.read())
Пример #24
0
 def test_resize_should_return_source_with_data(self):
     self.assertEqual(b'small file', Source.from_buffer('png file').resize(width=400).to_buffer())
Пример #25
0
 def test_from_buffer_should_raise_account_error(self):
     with self.assertRaises(AccountError):
         Source.from_buffer('png file')
Пример #26
0
 def test_store_should_return_result_meta(self):
     self.assertIsInstance(Source.from_buffer('png file').store(), ResultMeta)
Пример #27
0
 def test_from_buffer_should_return_source_with_data(self):
     self.assertEqual(b'compressed file',
                      Source.from_buffer('png file').to_buffer())
Пример #28
0
 def test_preserve_should_return_source_with_data_for_tuple(self):
     self.assertEqual(b'copyrighted file', Source.from_buffer('png file').preserve(("copyright", "location")).to_buffer())
     self.assertJsonEqual('{"preserve":["copyright","location"]}', httpretty.last_request().body.decode('utf-8'))