-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathtest_edit_submission.py
More file actions
1314 lines (1131 loc) · 41.5 KB
/
test_edit_submission.py
File metadata and controls
1314 lines (1131 loc) · 41.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import pytest
from uuid import uuid4
from users.tests.factories import UserFactory
from conferences.tests.factories import ConferenceFactory
from submissions.tests.factories import (
ProposalMaterialFactory,
SubmissionFactory,
SubmissionTagFactory,
)
from files_upload.tests.factories import (
FileFactory,
ParticipantAvatarFileFactory,
ProposalMaterialFileFactory,
)
from pytest import mark
from participants.models import Participant
from submissions.models import ProposalMaterial, Submission
pytestmark = mark.django_db
def _update_submission(
graphql_client,
*,
submission,
new_topic=None,
new_audience=None,
new_type=None,
new_tag=None,
new_duration=None,
new_title=None,
new_elevator_pitch=None,
new_abstract=None,
new_previous_talk_video="",
new_speaker_level=Submission.SPEAKER_LEVELS.new,
new_languages=["en"],
new_short_social_summary="",
new_speaker_bio="",
new_speaker_photo=None,
new_speaker_website="",
new_speaker_twitter_handle="",
new_instagram_handle="",
new_speaker_linkedin_url="",
new_speaker_facebook_url="",
new_speaker_mastodon_handle="",
new_speaker_availabilities=None,
new_materials=None,
):
new_topic = new_topic or submission.topic
new_audience = new_audience or submission.audience_level
new_type = new_type or submission.type
new_tag = new_tag or submission.tags.first()
new_duration = new_duration or submission.duration
new_title = new_title or {"en": "new title to use"}
new_elevator_pitch = new_elevator_pitch or {"en": "This is an elevator pitch"}
new_abstract = new_abstract or {"en": "abstract here"}
short_social_summary = new_short_social_summary or ""
new_speaker_photo = new_speaker_photo or FileFactory().id
new_speaker_availabilities = new_speaker_availabilities or {}
new_materials = new_materials or []
return graphql_client.query(
"""
mutation Submission($input: UpdateSubmissionInput!) {
updateSubmission(input: $input) {
__typename
... on Submission {
id
title(language: "en")
notes
abstract(language: "en")
elevatorPitch(language: "en")
shortSocialSummary
topic {
name
id
}
audienceLevel {
id
name
}
languages {
code
}
type {
id
name
}
tags {
name
id
}
conference {
id
name
}
duration {
id
name
}
speakerLevel
previousTalkVideo
}
... on SendSubmissionErrors {
errors {
nonFieldErrors
validationTitle: title
validationNotes: notes
validationTopic: topic
validationAbstract: abstract
validationDuration: duration
validationAudienceLevel: audienceLevel
validationType: type
validationLanguages: languages
validationPreviousTalkVideo: previousTalkVideo
validationPreviousSpeakerLevel: speakerLevel
validationSpeakerBio: speakerBio
validationSpeakerPhoto: speakerPhoto
validationSpeakerWebsite: speakerWebsite
validationSpeakerTwitterHandle: speakerTwitterHandle
validationSpeakerInstagramHandle: speakerInstagramHandle
validationSpeakerLinkedinUrl: speakerLinkedinUrl
validationSpeakerFacebookUrl: speakerFacebookUrl
validationSpeakerMastodonHandle: speakerMastodonHandle
validationMaterials: materials {
fileId
url
id
}
}
}
}
}
""",
variables={
"input": {
"instance": submission.hashid,
"title": new_title,
"elevatorPitch": new_elevator_pitch,
"abstract": new_abstract,
"topic": new_topic.id,
"audienceLevel": new_audience.id,
"type": new_type.id,
"languages": new_languages,
"notes": "notes here",
"tags": [new_tag.id],
"duration": new_duration.id,
"speakerLevel": new_speaker_level,
"previousTalkVideo": new_previous_talk_video,
"shortSocialSummary": short_social_summary,
"speakerBio": new_speaker_bio,
"speakerPhoto": new_speaker_photo,
"speakerWebsite": new_speaker_website,
"speakerTwitterHandle": new_speaker_twitter_handle,
"speakerInstagramHandle": new_instagram_handle,
"speakerLinkedinUrl": new_speaker_linkedin_url,
"speakerFacebookUrl": new_speaker_facebook_url,
"speakerMastodonHandle": new_speaker_mastodon_handle,
"speakerAvailabilities": new_speaker_availabilities,
"materials": new_materials,
}
},
)
def test_update_submission(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
new_topic = conference.topics.filter(name="diy").first()
new_audience = conference.audience_levels.filter(name="senior").first()
new_tag = SubmissionTagFactory(name="yello")
new_duration = conference.durations.filter(name="20m").first()
new_type = conference.submission_types.filter(name="workshop").first()
response = _update_submission(
graphql_client,
submission=submission,
new_topic=new_topic,
new_audience=new_audience,
new_tag=new_tag,
new_duration=new_duration,
new_type=new_type,
new_speaker_level=Submission.SPEAKER_LEVELS.experienced,
new_previous_talk_video="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
new_short_social_summary="test",
new_speaker_facebook_url="http://facebook.com/pythonpizza",
new_speaker_linkedin_url="http://linkedin.com/company/pythonpizza",
)
submission.refresh_from_db()
assert response["data"]["updateSubmission"]["__typename"] == "Submission"
participant = Participant.objects.first()
assert participant.facebook_url == "http://facebook.com/pythonpizza"
assert participant.linkedin_url == "http://linkedin.com/company/pythonpizza"
def test_update_submission_with_materials(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
new_file = ProposalMaterialFileFactory(uploaded_by=user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": new_file.id,
"url": "",
"name": "test.pdf",
},
{
"fileId": None,
"url": "https://www.google.com",
"name": "https://www.google.com",
},
],
)
submission.refresh_from_db()
materials = submission.materials.order_by("id").all()
assert len(materials) == 2
assert materials[0].file_id == new_file.id
assert materials[0].url == ""
assert materials[0].name == "test.pdf"
assert materials[1].file_id is None
assert materials[1].url == "https://www.google.com"
assert materials[1].name == "https://www.google.com"
assert response["data"]["updateSubmission"]["__typename"] == "Submission"
def test_update_submission_with_existing_materials(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
existing_material = ProposalMaterialFactory(
proposal=submission, file=ProposalMaterialFileFactory(uploaded_by=user)
)
to_delete_material = ProposalMaterialFactory(
proposal=submission, file=None, url="https://www.google.com"
)
graphql_client.force_login(user)
new_file = ProposalMaterialFileFactory(uploaded_by=user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": new_file.id,
"url": "",
"name": "test.pdf",
},
{
"id": existing_material.id,
"fileId": None,
"url": "https://www.google.com",
"name": "https://www.google.com",
},
],
)
submission.refresh_from_db()
materials = submission.materials.order_by("id").all()
assert len(materials) == 2
existing_material.refresh_from_db()
assert existing_material.file_id is None
assert existing_material.url == "https://www.google.com"
assert existing_material.name == "https://www.google.com"
assert response["data"]["updateSubmission"]["__typename"] == "Submission"
assert not ProposalMaterial.objects.filter(id=to_delete_material.id).exists()
def test_update_submission_with_invalid_url(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": None,
"url": "invalid-url",
"name": "test.pdf",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"url"
] == ["Invalid URL"]
def test_update_submission_with_other_submission_material(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
other_submission_material = ProposalMaterialFactory(
proposal=SubmissionFactory(conference=conference),
file=ProposalMaterialFileFactory(uploaded_by=user),
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"id": other_submission_material.id,
"fileId": None,
"url": "https://www.google.com",
"name": "https://www.google.com",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"id"
] == ["Material not found"]
def test_update_submission_with_invalid_material_id(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"id": "invalid-id",
"fileId": None,
"url": "https://www.google.com",
"name": "https://www.google.com",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"id"
] == ["Invalid material id"]
def test_update_submission_with_nonexistent_file_id(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": uuid4(),
"url": "",
"name": "name",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"fileId"
] == ["File not found"]
def test_update_submission_with_file_from_different_user(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": ProposalMaterialFileFactory(uploaded_by=UserFactory()).id,
"url": "",
"name": "name",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"fileId"
] == ["File not found"]
def test_update_submission_with_wrong_file_type(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": ParticipantAvatarFileFactory(uploaded_by=user).id,
"url": "",
"name": "name",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"fileId"
] == ["File not found"]
def test_update_submission_with_too_long_url(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": None,
"url": f"https://www.googl{'e' * 2049}.com",
"name": "name",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"url"
] == ["URL is too long"]
@pytest.mark.parametrize(
"url",
[
"ftp://www.google.com",
"//www.google.com",
"google.com/test",
"no/url",
],
)
def test_update_submission_with_invalid_urls(graphql_client, user, url):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": None,
"url": url,
"name": "name",
},
],
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["validationMaterials"][0][
"url"
] == ["Invalid URL"]
def test_update_submission_with_too_many_materials(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
response = _update_submission(
graphql_client,
submission=submission,
new_materials=[
{
"fileId": None,
"url": "https://www.google.com",
"name": "test.pdf",
},
]
* 4,
)
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"]["nonFieldErrors"] == [
"You can only add up to 3 materials"
]
def test_update_submission_speaker_availabilities(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
new_topic = conference.topics.filter(name="diy").first()
new_audience = conference.audience_levels.filter(name="senior").first()
new_tag = SubmissionTagFactory(name="yello")
new_duration = conference.durations.filter(name="20m").first()
new_type = conference.submission_types.filter(name="workshop").first()
response = _update_submission(
graphql_client,
submission=submission,
new_topic=new_topic,
new_audience=new_audience,
new_tag=new_tag,
new_duration=new_duration,
new_type=new_type,
new_speaker_level=Submission.SPEAKER_LEVELS.experienced,
new_speaker_availabilities={
"2023-12-10@am": "unavailable",
"2023-12-11@pm": "unavailable",
"2023-12-12@am": "preferred",
"2023-12-13@am": None,
},
)
submission.refresh_from_db()
assert response["data"]["updateSubmission"]["__typename"] == "Submission"
participant = Participant.objects.first()
assert participant.speaker_availabilities == {
"2023-12-10@am": "unavailable",
"2023-12-11@pm": "unavailable",
"2023-12-12@am": "preferred",
"2023-12-13@am": None,
}
def test_update_submission_with_invalid_facebook_social_url(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
new_topic = conference.topics.filter(name="diy").first()
new_audience = conference.audience_levels.filter(name="senior").first()
new_tag = SubmissionTagFactory(name="yello")
new_duration = conference.durations.filter(name="20m").first()
new_type = conference.submission_types.filter(name="workshop").first()
response = _update_submission(
graphql_client,
submission=submission,
new_topic=new_topic,
new_audience=new_audience,
new_tag=new_tag,
new_duration=new_duration,
new_type=new_type,
new_speaker_level=Submission.SPEAKER_LEVELS.experienced,
new_previous_talk_video="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
new_short_social_summary="test",
new_speaker_facebook_url="http://google.com/something-else",
)
submission.refresh_from_db()
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"][
"validationSpeakerFacebookUrl"
] == ["Facebook URL should be a facebook.com link"]
def test_update_submission_with_invalid_linkedin_social_url(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
new_topic = conference.topics.filter(name="diy").first()
new_audience = conference.audience_levels.filter(name="senior").first()
new_tag = SubmissionTagFactory(name="yello")
new_duration = conference.durations.filter(name="20m").first()
new_type = conference.submission_types.filter(name="workshop").first()
response = _update_submission(
graphql_client,
submission=submission,
new_topic=new_topic,
new_audience=new_audience,
new_tag=new_tag,
new_duration=new_duration,
new_type=new_type,
new_speaker_level=Submission.SPEAKER_LEVELS.experienced,
new_previous_talk_video="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
new_short_social_summary="test",
new_speaker_linkedin_url="http://google.com/something-else",
)
submission.refresh_from_db()
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"][
"validationSpeakerLinkedinUrl"
] == ["Linkedin URL should be a linkedin.com link"]
def test_update_submission_with_invalid_mastodon_handle(graphql_client, user):
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",
custom_submission_type="talk",
languages=["it"],
tags=["python", "ml"],
conference=conference,
speaker_level=Submission.SPEAKER_LEVELS.intermediate,
previous_talk_video="https://www.youtube.com/watch?v=SlPhMPnQ58k",
)
graphql_client.force_login(user)
new_topic = conference.topics.filter(name="diy").first()
new_audience = conference.audience_levels.filter(name="senior").first()
new_tag = SubmissionTagFactory(name="yello")
new_duration = conference.durations.filter(name="20m").first()
new_type = conference.submission_types.filter(name="workshop").first()
response = _update_submission(
graphql_client,
submission=submission,
new_topic=new_topic,
new_audience=new_audience,
new_tag=new_tag,
new_duration=new_duration,
new_type=new_type,
new_speaker_level=Submission.SPEAKER_LEVELS.experienced,
new_previous_talk_video="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
new_short_social_summary="test",
new_speaker_mastodon_handle="justusername",
)
submission.refresh_from_db()
assert response["data"]["updateSubmission"]["__typename"] == "SendSubmissionErrors"
assert response["data"]["updateSubmission"]["errors"][
"validationSpeakerMastodonHandle"
] == [
"Mastodon handle should be in format: username@instance.social or @username@instance.social or https://instance.social/@username"
]
def test_update_submission_with_photo_to_upload(
graphql_client,
user,
):
file = FileFactory()
conference = ConferenceFactory(
topics=("life", "diy"),
languages=("it", "en"),
durations=("10", "20"),
active_cfp=True,
audience_levels=("adult", "senior"),
submission_types=("talk", "workshop"),
)
submission = SubmissionFactory(
speaker_id=user.id,
custom_topic="life",
custom_duration="10m",
custom_audience_level="adult",