@@ -51,8 +51,7 @@ def test_basket_api_create_not_possible(self):
51
51
52
52
# authenticated
53
53
self .login ("nobody" , "nobody" )
54
- data = {"owner" : "http://testserver%s" %
55
- reverse ("user-detail" , args = [2 ])}
54
+ data = {"owner" : "http://testserver%s" % reverse ("user-detail" , args = [2 ])}
56
55
57
56
self .response = self .client .post (
58
57
url , json .dumps (data ), content_type = "application/json"
@@ -64,8 +63,7 @@ def test_basket_api_create_not_possible(self):
64
63
# admin
65
64
self .login ("admin" , "admin" )
66
65
67
- data = {"owner" : "http://testserver%s" %
68
- reverse ("user-detail" , args = [1 ])}
66
+ data = {"owner" : "http://testserver%s" % reverse ("user-detail" , args = [1 ])}
69
67
self .response = self .client .post (
70
68
url , json .dumps (data ), content_type = "application/json"
71
69
)
@@ -128,27 +126,23 @@ def test_retrieve_basket_header(self):
128
126
129
127
# authenticated
130
128
self .hlogin ("nobody" , "nobody" , session_id = "nobody" )
131
- self .response = self .get (
132
- "api-basket" , session_id = "nobody" , authenticated = True )
129
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
133
130
self .response .assertStatusEqual (200 )
134
131
self .response .assertObjectIdEqual ("owner" , 2 )
135
132
basket_id = self .response ["id" ]
136
133
137
- self .response = self .get (
138
- "api-basket" , session_id = "nobody" , authenticated = True )
134
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
139
135
self .response .assertStatusEqual (200 )
140
136
self .response .assertValueEqual ("id" , basket_id )
141
137
142
138
# admin
143
139
self .hlogin ("admin" , "admin" , session_id = "admin" )
144
- self .response = self .get (
145
- "api-basket" , session_id = "admin" , authenticated = True )
140
+ self .response = self .get ("api-basket" , session_id = "admin" , authenticated = True )
146
141
self .response .assertStatusEqual (200 )
147
142
self .response .assertObjectIdEqual ("owner" , 1 )
148
143
basket_id = self .response ["id" ]
149
144
150
- self .response = self .get (
151
- "api-basket" , session_id = "admin" , authenticated = True )
145
+ self .response = self .get ("api-basket" , session_id = "admin" , authenticated = True )
152
146
self .response .assertStatusEqual (200 )
153
147
self .response .assertValueEqual ("id" , basket_id )
154
148
@@ -242,8 +236,7 @@ def test_basket_read_permissions(self):
242
236
243
237
url = reverse ("basket-lines-list" , args = (1 ,))
244
238
self .response = self .client .get (url )
245
- self .response .assertStatusEqual (
246
- 403 , "Users not access other peoples baskets." )
239
+ self .response .assertStatusEqual (403 , "Users not access other peoples baskets." )
247
240
248
241
self .assertEqual (
249
242
Basket .objects .count (),
@@ -295,8 +288,7 @@ def test_basket_read_permissions_header(self):
295
288
296
289
# now try for authenticated user.
297
290
self .hlogin ("nobody" , "nobody" , session_id = "nobody" )
298
- self .response = self .get (
299
- "api-basket" , session_id = "nobody" , authenticated = True )
291
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
300
292
self .response .assertStatusEqual (200 )
301
293
302
294
# try to access the urls in the response.
@@ -331,8 +323,7 @@ def test_basket_read_permissions_header(self):
331
323
)
332
324
333
325
self .hlogin ("admin" , "admin" , session_id = "admin" )
334
- self .response = self .get (
335
- "api-basket" , session_id = "admin" , authenticated = True )
326
+ self .response = self .get ("api-basket" , session_id = "admin" , authenticated = True )
336
327
self .response .assertStatusEqual (200 )
337
328
338
329
# try to access the urls in the response.
@@ -571,8 +562,7 @@ def test_basket_write_permissions_header_authenticated(self):
571
562
572
563
# now try for authenticated user.
573
564
self .hlogin ("nobody" , "nobody" , session_id = "nobody" )
574
- self .response = self .get (
575
- "api-basket" , session_id = "nobody" , authenticated = True )
565
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
576
566
self .response .assertStatusEqual (200 )
577
567
578
568
# try to access the urls in the response.
@@ -618,13 +608,11 @@ def test_basket_write_permissions_header_authenticated(self):
618
608
self .response .assertStatusEqual (201 )
619
609
620
610
# throw the basket away
621
- self .response = self .delete (
622
- url , session_id = "nobody" , authenticated = True )
611
+ self .response = self .delete (url , session_id = "nobody" , authenticated = True )
623
612
self .response .assertStatusEqual (204 )
624
613
625
614
# now lets start messing around
626
- self .response = self .get (
627
- "api-basket" , session_id = "nobody" , authenticated = True )
615
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
628
616
self .response .assertStatusEqual (200 )
629
617
basket_id = self .response ["id" ]
630
618
@@ -664,8 +652,7 @@ def test_basket_write_permissions_header_authenticated(self):
664
652
self .response .assertStatusEqual (403 )
665
653
666
654
# try to delete someone else's basket
667
- self .response = self .delete (
668
- url , session_id = "nobody" , authenticated = True )
655
+ self .response = self .delete (url , session_id = "nobody" , authenticated = True )
669
656
self .response .assertStatusEqual (403 )
670
657
671
658
# try adding lines to someone else's basket
@@ -754,8 +741,7 @@ def test_basket_write_permissions_admin(self):
754
741
755
742
# try to write to someone else's basket by sending the primary key
756
743
# along.
757
- self .response = self .put (
758
- url , status = "Saved" , id = somebody_basket_id )
744
+ self .response = self .put (url , status = "Saved" , id = somebody_basket_id )
759
745
self .response .assertStatusEqual (200 )
760
746
self .response .assertValueEqual (
761
747
"id" , basket_id , "Primary key value can not be changed."
@@ -791,8 +777,7 @@ def test_basket_write_permissions_header_admin(self):
791
777
792
778
# now try for authenticated user.
793
779
self .hlogin ("admin" , "admin" , session_id = "admin" )
794
- self .response = self .get (
795
- "api-basket" , session_id = "admin" , authenticated = True )
780
+ self .response = self .get ("api-basket" , session_id = "admin" , authenticated = True )
796
781
self .response .assertStatusEqual (200 )
797
782
798
783
# try to access the urls in the response.
@@ -838,13 +823,11 @@ def test_basket_write_permissions_header_admin(self):
838
823
self .response .assertStatusEqual (201 )
839
824
840
825
# throw the basket away
841
- self .response = self .delete (
842
- url , session_id = "admin" , authenticated = True )
826
+ self .response = self .delete (url , session_id = "admin" , authenticated = True )
843
827
self .response .assertStatusEqual (204 )
844
828
845
829
# now lets start messing around
846
- self .response = self .get (
847
- "api-basket" , session_id = "admin" , authenticated = True )
830
+ self .response = self .get ("api-basket" , session_id = "admin" , authenticated = True )
848
831
self .response .assertStatusEqual (200 )
849
832
basket_id = self .response ["id" ]
850
833
@@ -901,8 +884,7 @@ def test_basket_write_permissions_header_admin(self):
901
884
self .response .assertStatusEqual (403 )
902
885
903
886
# try to delete someone else's basket
904
- self .response = self .delete (
905
- url , session_id = "admin" , authenticated = True )
887
+ self .response = self .delete (url , session_id = "admin" , authenticated = True )
906
888
self .response .assertStatusEqual (403 )
907
889
908
890
def test_add_product_anonymous (self ):
@@ -949,8 +931,7 @@ def test_add_product_basket_addition_signal_send(self, mock):
949
931
self .assertTrue (mock .called )
950
932
951
933
signal_arguments = mock .call_args [1 ]
952
- self .assertEqual (
953
- signal_arguments ["product" ], Product .objects .get (pk = 1 ))
934
+ self .assertEqual (signal_arguments ["product" ], Product .objects .get (pk = 1 ))
954
935
self .assertEqual (signal_arguments ["user" ].username , "nobody" )
955
936
956
937
# see if we can get the basket from the request
@@ -974,8 +955,7 @@ def test_basket_line_permissions(self):
974
955
975
956
self .response = self .get (line0url )
976
957
self .response .assertStatusEqual (200 )
977
- self .response .assertValueEqual (
978
- "product" , "http://testserver/api/products/1/" )
958
+ self .response .assertValueEqual ("product" , "http://testserver/api/products/1/" )
979
959
self .response .assertValueEqual ("quantity" , 5 )
980
960
981
961
# now let's try to cheat
@@ -986,8 +966,7 @@ def test_basket_line_permissions(self):
986
966
def test_basket_line_permissions_header (self ):
987
967
"A user's Basket lines can not be viewed by another user in any way, even with header authentication"
988
968
self .hlogin ("nobody" , "nobody" , session_id = "nobody" )
989
- self .response = self .get (
990
- "api-basket" , session_id = "nobody" , authenticated = True )
969
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
991
970
self .response .assertStatusEqual (200 )
992
971
993
972
self .response = self .post (
@@ -1004,17 +983,14 @@ def test_basket_line_permissions_header(self):
1004
983
line0 = self .response .body [0 ]
1005
984
line0url = line0 ["url" ]
1006
985
1007
- self .response = self .get (
1008
- line0url , session_id = "nobody" , authenticated = True )
986
+ self .response = self .get (line0url , session_id = "nobody" , authenticated = True )
1009
987
self .response .assertStatusEqual (200 )
1010
- self .response .assertValueEqual (
1011
- "product" , "http://testserver/api/products/1/" )
988
+ self .response .assertValueEqual ("product" , "http://testserver/api/products/1/" )
1012
989
self .response .assertValueEqual ("quantity" , 5 )
1013
990
1014
991
# now let's try to cheat
1015
992
self .hlogin ("somebody" , "somebody" , session_id = "somebody" )
1016
- self .response = self .get (
1017
- line0url , session_id = "somebody" , authenticated = True )
993
+ self .response = self .get (line0url , session_id = "somebody" , authenticated = True )
1018
994
self .response .assertStatusEqual (404 )
1019
995
1020
996
def test_frozen_basket_can_not_be_accessed (self ):
@@ -1035,8 +1011,7 @@ def test_frozen_basket_can_not_be_accessed(self):
1035
1011
def test_frozen_basket_can_not_be_accessed_header (self ):
1036
1012
"Prove that frozen baskets can no longer be accessed by the user, even with header authentication"
1037
1013
self .hlogin ("nobody" , "nobody" , session_id = "nobody" )
1038
- self .response = self .get (
1039
- "api-basket" , session_id = "nobody" , authenticated = True )
1014
+ self .response = self .get ("api-basket" , session_id = "nobody" , authenticated = True )
1040
1015
self .response .assertStatusEqual (200 )
1041
1016
self .response .assertValueEqual ("status" , "Open" )
1042
1017
@@ -1377,17 +1352,15 @@ def test_basket_login_logout(self):
1377
1352
self .client .cookies ,
1378
1353
"An basket cookie should have been created" ,
1379
1354
)
1380
- self .assertStartsWith (
1381
- self .client .cookies ["oscar_open_basket" ].value , "1" )
1355
+ self .assertStartsWith (self .client .cookies ["oscar_open_basket" ].value , "1" )
1382
1356
1383
1357
# retrieve the basket with oscarapi.
1384
1358
self .response = self .get ("api-basket" )
1385
1359
self .response .assertValueEqual (
1386
1360
"owner" , None , "The basket should not have an owner"
1387
1361
)
1388
1362
self .response .assertValueEqual ("id" , 1 )
1389
- self .assertStartsWith (
1390
- self .client .cookies ["oscar_open_basket" ].value , "1" )
1363
+ self .assertStartsWith (self .client .cookies ["oscar_open_basket" ].value , "1" )
1391
1364
1392
1365
# now lets log in with oscarapi
1393
1366
response = self .post ("api-login" , username = "nobody" , password = "nobody" )
0 commit comments