@@ -257,199 +257,6 @@ def test_labelvalue_create_update(self, client):
257
257
assert response .status_code == status .HTTP_400_BAD_REQUEST
258
258
259
259
260
- @pytest .mark .usefixtures ("authenticate" )
261
- class TestUser :
262
- @pytest .fixture (autouse = True )
263
- def setup (self , client , request ):
264
- self .
user = user = TeamMember .
objects .
get (
email = "[email protected] " ).
user
265
- client .force_authenticate (user = user )
266
-
267
- def test_get_team_subscription (self , client ):
268
- response = client .get (reverse ("team-subscription" ))
269
-
270
- assert response .status_code == status .HTTP_200_OK
271
-
272
- assert len (response .json ()) == 6
273
-
274
- data = response .json ()
275
-
276
- assert data ["team" ] == "SensimlDevTeam"
277
- assert data ["subscription" ] == "ENTERPRISE"
278
- assert data ["active" ] == True
279
- assert data ["expires" ] == "2084-12-24T17:21:28Z"
280
-
281
- testuser = TeamMember .
objects .
get (
email = "[email protected] " ).
user
282
- client .force_authenticate (user = testuser )
283
-
284
- response = client .get (reverse ("team-subscription" ))
285
-
286
- assert response .status_code == status .HTTP_200_OK
287
-
288
- assert len (response .json ()) == 6
289
-
290
- data = response .json ()
291
-
292
- assert data ["team" ] == "StarterTeam"
293
- assert data ["subscription" ] == "STARTER"
294
- assert data ["active" ] == True
295
- assert data ["expires" ] == "2014-12-24T17:21:28Z"
296
-
297
- client .force_authenticate (user = self .user )
298
-
299
- def test_get_team_subscriptionv2 (self , client ):
300
- response = client .get (reverse ("team-subscription-v2" ))
301
-
302
- assert response .status_code == status .HTTP_200_OK
303
-
304
- assert len (response .json ()) == 6
305
-
306
- data = response .json ()
307
-
308
- assert data ["team" ] == "SensimlDevTeam"
309
- assert data ["subscription" ]["name" ] == "ENTERPRISE"
310
- assert data ["active" ] == True
311
- assert data ["subscription" ]["is_read_only" ] == False
312
- assert data ["subscription" ]["can_edit_offline" ] == True
313
- assert data ["subscription" ]["max_project_segments" ] == None
314
- assert data ["expires" ] == "2084-12-24T17:21:28Z"
315
-
316
- testuser = TeamMember .
objects .
get (
email = "[email protected] " ).
user
317
- client .force_authenticate (user = testuser )
318
-
319
- response = client .get (reverse ("team-subscription-v2" ))
320
-
321
- assert response .status_code == status .HTTP_200_OK
322
-
323
- assert len (response .json ()) == 6
324
-
325
- data = response .json ()
326
-
327
- assert data ["team" ] == "StarterTeam"
328
- assert data ["subscription" ]["name" ] == "STARTER"
329
- assert data ["subscription" ]["uuid" ] == "56eada75-e049-47bc-bf73-535b8666c91d"
330
- assert data ["subscription" ]["display_name" ] == "Community Edition"
331
- assert data ["subscription" ]["is_read_only" ] == False
332
- assert data ["subscription" ]["can_edit_offline" ] == False
333
- assert data ["subscription" ]["max_project_segments" ] == 2500
334
- assert data ["active" ] == True
335
- assert data ["expires" ] == "2014-12-24T17:21:28Z"
336
-
337
- client .force_authenticate (user = self .user )
338
-
339
- def test_get_options (self , client ):
340
- response = client .options (reverse ("user-list" ))
341
- assert response .data ["actions" ]["POST" ]["email" ]["required" ] == True
342
- assert response .data ["actions" ]["POST" ]["password" ]["required" ] == True
343
-
344
- def test_create_user (self , client ):
345
- data = {
"email" :
"[email protected] " ,
"password" :
"testpassword" }
346
- response = client .post (reverse ("user-list" ), data = data )
347
- assert response .status_code == status .HTTP_201_CREATED
348
- response = client .get (response .data ["url" ])
349
- assert response .status_code == status .HTTP_200_OK
350
- assert response .data ["team" ] == TEAM_NAME
351
- TeamMember .
objects .
get (
email = "[email protected] " )
352
-
353
- def test_create_user_with_new_team (self , client ):
354
- data = {
355
-
356
- "password" : "testpassword" ,
357
- "team" : "new_team" ,
358
- }
359
- response = client .post (reverse ("user-list" ), data = data )
360
- assert response .status_code == status .HTTP_201_CREATED
361
- assert response .data ["team" ] == "new_team"
362
- # check team manager
363
- response .data ["email" ]
364
- response = client .get (reverse ("team-list" ))
365
- assert response .status_code == status .HTTP_200_OK
366
- team = next (
367
- (team for team in response .data if team ["name" ] == "new_team" ), None
368
- )
369
- assert team is not None
370
-
371
- def test_modify_user_password (self , client ):
372
- data = {
"email" :
"[email protected] " ,
"password" :
"testpassword" }
373
- response = client .post (reverse ("user-list" ), data = data )
374
- assert response .status_code == status .HTTP_201_CREATED
375
- response = client .patch (response .data ["url" ], data = {"password" : "newpassword" })
376
- assert response .status_code == status .HTTP_200_OK
377
- user = User .
objects .
get (
email = "[email protected] " )
378
- assert user .check_password ("newpassword" )
379
-
380
-
381
- class TestActivationCode :
382
- def test_activation_code_creation (self , client ):
383
- response = client .post (
384
- reverse ("activation-code" ),
385
- data = {
386
- "authentication" : settings .ACTIVATION_CODE_AUTH ,
387
- "code" : "11111" * 5 ,
388
- "duration" : "90 day" ,
389
- "subscription" : "STARTER" ,
390
- },
391
- )
392
-
393
- assert response .status_code == status .HTTP_201_CREATED
394
-
395
- act = ActivationCode .objects .get (code = "11111" * 5 )
396
- assert act .subscription .id == 1
397
-
398
- def test_activation_code_creation_no_duration (self , client ):
399
- response = client .post (
400
- reverse ("activation-code" ),
401
- data = {
402
- "authentication" : settings .ACTIVATION_CODE_AUTH ,
403
- "code" : "11111" * 5 ,
404
- "subscription" : "STARTER" ,
405
- },
406
- )
407
-
408
- assert response .status_code == status .HTTP_201_CREATED
409
-
410
- act = ActivationCode .objects .get (code = "11111" * 5 )
411
- assert act .subscription .id == 1
412
-
413
- def test_activation_code_invalid (self , client ):
414
- response = client .post (
415
- reverse ("activation-code" ),
416
- data = {
417
- "authentication" : settings .ACTIVATION_CODE_AUTH ,
418
- "code" : "11111" ,
419
- "duration" : "90 day" ,
420
- "subscription" : "STARTER" ,
421
- },
422
- )
423
-
424
- assert response .status_code == status .HTTP_400_BAD_REQUEST
425
-
426
- def test_subsciption_invalid (self , client ):
427
- response = client .post (
428
- reverse ("activation-code" ),
429
- data = {
430
- "authentication" : settings .ACTIVATION_CODE_AUTH ,
431
- "code" : "11111" * 5 ,
432
- "duration" : "90 day" ,
433
- "subscription" : "BLAH" ,
434
- },
435
- )
436
-
437
- assert response .status_code == status .HTTP_400_BAD_REQUEST
438
-
439
- def test_authentication_invalid (self , client ):
440
- response = client .post (
441
- reverse ("activation-code" ),
442
- data = {
443
- "authentication" : "555" ,
444
- "code" : "11111" * 5 ,
445
- "duration" : "90 day" ,
446
- "subscription" : "BLAH" ,
447
- },
448
- )
449
-
450
- assert response .status_code == status .HTTP_400_BAD_REQUEST
451
-
452
-
453
260
class TestSegmenterViews :
454
261
@pytest .fixture (autouse = True )
455
262
def setup (self , client , authenticate ):
0 commit comments