@@ -29,12 +29,15 @@ def make_client(self, method, path, params=None, data=None, headers=None, endpoi
29
29
else :
30
30
headers = client .default_headers
31
31
32
+ if isinstance (data , dict ):
33
+ data = json .dumps (data )
34
+
32
35
flexmock (requests ) \
33
36
.should_receive ('request' ) \
34
37
.with_args (method ,
35
38
'https://%s.box.com/2.0/%s' % (endpoint , path ),
36
39
params = params ,
37
- data = json . dumps ( data ) if isinstance ( data , dict ) else data ,
40
+ data = data ,
38
41
headers = headers ,
39
42
** kwargs ) \
40
43
.and_return (mocked_response (result )) \
@@ -373,24 +376,65 @@ def test_get_thumbnail(self):
373
376
self .assertEqual ('Thumbnail contents' , thumbnail .read ())
374
377
375
378
def test_upload_file (self ):
376
- client = self .make_client ("post" , "files/content" , endpoint = "upload" , data = {'parent_id' : '666' }, files = {'hello.jpg' : FileObjMatcher ('hello world' )},
377
- result = {"entries" : [{"id" : "1" }]})
379
+ client = BoxClient ('my_token' )
380
+ flexmock (client ) \
381
+ .should_receive ('_check_for_errors' ) \
382
+ .once ()
383
+
384
+ response = mocked_response ({'entries' : [{'id' : '1' }]})
385
+ flexmock (requests ) \
386
+ .should_receive ('post' ) \
387
+ .with_args ('https://upload.box.com/api/2.0/files/content' ,
388
+ headers = client .default_headers ,
389
+ data = {'parent_id' : '666' },
390
+ files = {'hello.jpg' : FileObjMatcher ('hello world' )}) \
391
+ .and_return (response ) \
392
+ .once ()
393
+
378
394
result = client .upload_file ('hello.jpg' , StringIO ('hello world' ), parent = 666 )
379
395
self .assertEqual ({'id' : '1' }, result )
380
396
381
397
def test_upload_file_with_parent_as_dict (self ):
382
- client = self .make_client ("post" , "files/content" , data = {'parent_id' : '666' },
383
- files = {'hello.jpg' : FileObjMatcher ('hello world' )}, result = {"entries" : [{"id" : "1" }]}, endpoint = "upload" )
398
+ client = BoxClient ('my_token' )
399
+ flexmock (client ) \
400
+ .should_receive ('_check_for_errors' ) \
401
+ .once ()
402
+
403
+ response = mocked_response ({'entries' : [{'id' : '1' }]})
404
+ flexmock (requests ) \
405
+ .should_receive ('post' ) \
406
+ .with_args ('https://upload.box.com/api/2.0/files/content' ,
407
+ headers = client .default_headers ,
408
+ data = {'parent_id' : '666' },
409
+ files = {'hello.jpg' : FileObjMatcher ('hello world' )}) \
410
+ .and_return (response ) \
411
+ .once ()
412
+
384
413
result = client .upload_file ('hello.jpg' , StringIO ('hello world' ), parent = {'id' : 666 })
385
414
self .assertEqual ({'id' : '1' }, result )
386
415
387
416
def test_overwrite_file (self ):
417
+ client = BoxClient ('my_token' )
418
+
419
+ flexmock (client ) \
420
+ .should_receive ('_check_for_errors' ) \
421
+ .once ()
422
+
388
423
expected_headers = {'content_modified_at' : '2006-05-04T03:02:01+00:00' ,
389
424
'If-Match' : 'some_tag' }
425
+ expected_headers .update (client .default_headers )
426
+
427
+ expected_response = mocked_response ({'entries' : [{'id' : '1' }]})
428
+ flexmock (requests ) \
429
+ .should_receive ('post' ) \
430
+ .with_args ('https://upload.box.com/api/2.0/files/666/content' ,
431
+ headers = expected_headers ,
432
+ files = {'file' : FileObjMatcher ('hello world' )}) \
433
+ .and_return (expected_response ) \
434
+ .once ()
390
435
391
- client = self .make_client ("post" , "files/666/content" , headers = expected_headers , files = {'file' : FileObjMatcher ('hello world' )}, endpoint = "upload" , result = {"entries" : [{"id" : "1" }]})
392
436
result = client .overwrite_file (666 , StringIO ('hello world' ), etag = 'some_tag' ,
393
- content_modified_at = datetime (2006 , 5 , 4 , 3 , 2 , 1 , 0 , tzinfo = UTC ()))
437
+ content_modified_at = datetime (2006 , 5 , 4 , 3 , 2 , 1 , 0 , tzinfo = UTC ()), )
394
438
self .assertEqual ({'id' : '1' }, result )
395
439
396
440
def test_copy_file (self ):
0 commit comments