-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnoxfile.py
executable file
·1053 lines (914 loc) · 31.9 KB
/
noxfile.py
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
from __future__ import annotations
import os
import platform
from posixpath import abspath
import re
import sys
import tempfile
from typing import List, Optional, Union
from xml.etree import ElementTree
import nox
import requests
import yaml
from src.test.test_utils.processes import kill_process, wait_for_app_start
# Ensure nox can load local packages
repo_dir = os.path.dirname(__file__)
if repo_dir not in sys.path:
sys.path.append(repo_dir)
from src.ci.tested_versions_utils import ( # noqa: E402
NonSemanticVersion,
SemanticVersion,
TestedVersions,
parse_version,
should_test_only_untested_versions,
)
OTHER_REQUIREMENTS = "requirements_others.txt"
def create_component_tempfile(name: str):
temp_file = tempfile.NamedTemporaryFile(
suffix=".txt",
prefix=f"temp_{name}_",
dir=os.path.abspath("src/test/components/"),
delete=False,
)
temp_file.close()
return temp_file.name
def create_it_tempfile(name: str, prefix: str = "temp_"):
temp_file = tempfile.NamedTemporaryFile(
suffix=".txt",
prefix=prefix,
dir=os.path.abspath(f"src/test/integration/{name}/"),
delete=False,
)
temp_file.close()
return temp_file.name
def install_package(package_name: str, package_version: str, session) -> None:
try:
session.install(f"{package_name}=={package_version}")
except Exception:
session.log(f"Cannot install '{package_name}' version '{package_version}'")
raise
def get_versions_from_pypi(package_name: str) -> List[str]:
response = requests.get(f"https://pypi.org/rss/project/{package_name}/releases.xml")
response.raise_for_status()
xml_tree = ElementTree.fromstring(response.text)
return [i.text for i in xml_tree.findall("channel/item/title") if i.text]
def python_versions() -> Optional[List[str]]:
# On Github, just run the current Python version.
# In local, try all supported python versions.
# Anyway create a venv.
if os.getenv("CI", str(False)).lower() == "true":
python_version = parse_version(platform.python_version())
return [f"{python_version.major}.{python_version.minor}"]
with open(
os.path.dirname(__file__) + "/.github/workflows/version-testing.yml"
) as f:
github_workflow = yaml.load(f, Loader=yaml.FullLoader)
return github_workflow["jobs"]["test-untested-versions"]["strategy"]["matrix"][
"python-version"
]
def get_new_version_from_pypi(
dependency_name: str, tested_versions: TestedVersions
) -> List[str]:
pypi_versions = set(get_versions_from_pypi(dependency_name))
new_versions = list(pypi_versions.difference(set(tested_versions.all_versions)))
print("running new versions of", dependency_name, new_versions)
return new_versions
def dependency_versions_to_be_tested(
python: str,
directory: str,
dependency_name: str,
session: nox.sessions.Session = None,
) -> List[str]:
"""Dependency versions are listed in the 'tested_versions/<python_runtime>/<dependency_name>' files of the instrumentation
packages, and symlinked under the relevant integration tests. There are also versions in pypi"""
tested_versions = TestedVersions.from_file(
TestedVersions.get_file_path(directory, python, dependency_name)
)
if should_test_only_untested_versions():
return get_new_version_from_pypi(dependency_name, tested_versions)
# To avoid unbearable build times, we only retest the last patch of each minor.
# These versions are already sorted. We use the full object representation,
# rather than `TestedVersions.supported_versions`, as we need to perform
# logic on major, minor and patch.
supported_versions: List[Union[SemanticVersion, NonSemanticVersion]] = list(
filter(
lambda tested_version: tested_version.supported,
tested_versions.versions,
)
)
if len(supported_versions) == 0:
return []
if len(supported_versions) == 1:
# if we only have one supported entry in the supported versions
# file, return its version number so that we'll test it
return [supported_versions[0].version]
supported_versions_to_test = []
for i in range(len(supported_versions))[1:]:
# Iterate from the second element so that we can look back and
# detect a change in minor and major
previous_version = supported_versions[i - 1]
current_version = supported_versions[i]
if isinstance(previous_version, NonSemanticVersion):
# There is no concept of 'minor' and 'patch' in non-semantic version,
# so we gotta test 'em all
supported_versions_to_test.append(previous_version)
elif isinstance(current_version, NonSemanticVersion):
# The 'next' version is non-semantic, so we are guaranteed
# that the last version is the last in its series
supported_versions_to_test.append(previous_version)
else:
# Both previous and current are semantic versions
if (
previous_version.major < current_version.major
or previous_version.minor < current_version.minor
):
# Break in major or minor version; the previous_version is
# the last in its series
supported_versions_to_test.append(previous_version)
# By definition, the biggest version is one we want to test
supported_versions_to_test.append(supported_versions[len(supported_versions) - 1])
return [
supported_version_to_test.version
for supported_version_to_test in supported_versions_to_test
]
@nox.session()
def list_integration_tests_ci(session):
integration_tests = {
session_runner.name
for (session_runner, _) in session._runner.manifest.list_all_sessions()
if session_runner.name.startswith("integration_tests_")
}
for i in integration_tests:
print(i)
@nox.session()
@nox.parametrize(
"python,boto3_version",
[
(python, boto3_version)
for python in python_versions()
for boto3_version in dependency_versions_to_be_tested(
python=python,
directory="boto3",
dependency_name="boto3",
)
],
)
def integration_tests_boto3_sqs(
session,
boto3_version,
):
python = session.python
with TestedVersions.save_tests_result("boto3-sqs", python, "boto3", boto3_version):
install_package("boto3", boto3_version, session)
session.install(".")
temp_file = create_it_tempfile("boto3-sqs")
with session.chdir("src/test/integration/boto3-sqs"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"sh",
"./scripts/run_app",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
external=True,
) # One happy day we will have https://github.com/wntrblm/nox/issues/198
wait_for_app_start()
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_boto3_sqs.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "run_app", session)
@nox.session()
@nox.parametrize(
"python,boto3_version",
[
(python, boto3_version)
for python in python_versions()
for boto3_version in dependency_versions_to_be_tested(
python=python,
directory="boto3",
dependency_name="boto3",
)
],
)
def integration_tests_boto3(
session,
boto3_version,
):
python = session.python
with TestedVersions.save_tests_result("boto3", python, "boto3", boto3_version):
install_package("boto3", boto3_version, session)
session.install(".")
temp_file = create_it_tempfile("boto3")
with session.chdir("src/test/integration/boto3"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"sh",
"./scripts/start_uvicorn",
env={
"AUTOWRAPT_BOOTSTRAP": "lumigo_opentelemetry",
"LUMIGO_DEBUG_SPANDUMP": temp_file,
"OTEL_SERVICE_NAME": "app",
"OTEL_RESOURCE_ATTRIBUTES": "K0=V0,K1=V1", # for testing OTELResourceDetector
},
external=True,
) # One happy day we will have https://github.com/wntrblm/nox/issues/198
wait_for_app_start()
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_boto3.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "uvicorn", session)
@nox.session()
@nox.parametrize(
"python,fastapi_version",
[
(python, fastapi_version)
for python in python_versions()
for fastapi_version in dependency_versions_to_be_tested(
python=python,
directory="fastapi",
dependency_name="fastapi",
)
],
)
def integration_tests_fastapi_fastapi(
session,
fastapi_version,
):
python = session.python
with TestedVersions.save_tests_result(
"fastapi", python, "fastapi", fastapi_version
):
integration_tests_fastapi(
session=session,
fastapi_version=fastapi_version,
uvicorn_version="0.17.6", # arbitrary version
)
@nox.session()
@nox.parametrize(
"python,uvicorn_version",
[
(python, uvicorn_version)
for python in python_versions()
for uvicorn_version in dependency_versions_to_be_tested(
python=python,
directory="fastapi",
dependency_name="uvicorn",
)
],
)
def integration_tests_fastapi_uvicorn(
session,
uvicorn_version,
):
python = session.python
with TestedVersions.save_tests_result(
"fastapi", python, "uvicorn", uvicorn_version
):
integration_tests_fastapi(
session=session,
fastapi_version="0.78.0", # arbitrary version
uvicorn_version=uvicorn_version,
)
def integration_tests_fastapi(
session,
fastapi_version,
uvicorn_version,
):
install_package("pip", "24.0", session)
install_package("uvicorn", uvicorn_version, session)
install_package("fastapi", fastapi_version, session)
session.install(".")
temp_file = create_it_tempfile("fastapi")
with session.chdir("src/test/integration/fastapi"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_fastapi.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
clean_outputs(temp_file, session)
@nox.session(python=python_versions())
def component_tests(session):
component_tests_execution_tags(
session=session,
fastapi_version="0.78.0", # arbitrary version
uvicorn_version="0.16.0", # TODO don't update, see https://lumigo.atlassian.net/browse/RD-11466
)
def component_tests_execution_tags(
session,
fastapi_version,
uvicorn_version,
):
install_package("uvicorn", uvicorn_version, session)
install_package("fastapi", fastapi_version, session)
session.install(".")
temp_file = create_component_tempfile("execution_tags")
with session.chdir("src/test/components"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_execution_tags.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
clean_outputs(temp_file, session)
@nox.session()
@nox.parametrize(
"python,django_version",
[
(python, django_version)
for python in python_versions()
for django_version in dependency_versions_to_be_tested(
python=python,
directory="django",
dependency_name="django",
)
],
)
def integration_tests_django(session, django_version):
python = session.python
with TestedVersions.save_tests_result("django", python, "django", django_version):
install_package("django", django_version, session)
session.install(".")
temp_file = create_it_tempfile("django")
with session.chdir("src/test/integration/django"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_django.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "manage.py", session)
@nox.session()
@nox.parametrize(
"python,flask_version",
[
(python, flask_version)
for python in python_versions()
for flask_version in dependency_versions_to_be_tested(
python=python,
directory="flask",
dependency_name="flask",
)
],
)
def integration_tests_flask(session, flask_version):
python = session.python
with TestedVersions.save_tests_result("flask", python, "flask", flask_version):
install_package("flask", flask_version, session)
session.install(".")
temp_file = create_it_tempfile("flask")
with session.chdir("src/test/integration/flask"):
session.install("-r", OTHER_REQUIREMENTS)
# override the default Werkzeug version for flask v2 compatibility
if flask_version.startswith("2."):
session.install("werkzeug==2.3.7")
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_flask.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "flask", session)
@nox.session()
@nox.parametrize(
"python,grpcio_version",
[
(python, grpcio_version)
for python in python_versions()
for grpcio_version in dependency_versions_to_be_tested(
python=python,
directory="grpcio",
dependency_name="grpcio",
)
],
)
def integration_tests_grpcio(
session,
grpcio_version,
):
python = session.python
with TestedVersions.save_tests_result("grpcio", python, "grpcio", grpcio_version):
install_package("grpcio", grpcio_version, session)
session.install(".")
# Some versions of PyMongo fail with older versions of wheel
session.run(
"python", "-m", "pip", "install", "--upgrade", "pip", "setuptools", "wheel"
)
base_span_file = create_it_tempfile("grpcio")
clean_outputs(base_span_file, session)
server_spans = create_it_tempfile("grpcio", prefix=base_span_file)
client_spans = create_it_tempfile("grpcio", prefix=base_span_file)
with session.chdir("src/test/integration/grpcio"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_grpcio.py",
env={
"AUTOWRAPT_BOOTSTRAP": "lumigo_opentelemetry",
"SERVER_SPANDUMP": server_spans,
"LUMIGO_DEBUG_SPANDUMP": client_spans,
"OTEL_SERVICE_NAME": "app",
},
)
finally:
clean_outputs(server_spans, session)
clean_outputs(client_spans, session)
@nox.session()
@nox.parametrize(
"python,kafka_python_version",
[
(python, kafka_python_version)
for python in python_versions()
for kafka_python_version in dependency_versions_to_be_tested(
python=python,
directory="kafka_python",
dependency_name="kafka_python",
)
],
)
def integration_tests_kafka_python(
session,
kafka_python_version,
):
python = session.python
with TestedVersions.save_tests_result(
"kafka_python", python, "kafka_python", kafka_python_version
):
install_package("kafka_python", kafka_python_version, session)
session.install(".")
session.run(
"python", "-m", "pip", "install", "--upgrade", "pip", "setuptools", "wheel"
)
temp_file = create_it_tempfile("kafka_python")
with session.chdir("src/test/integration/kafka_python"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"sh",
"./scripts/start_uvicorn",
env={
"AUTOWRAPT_BOOTSTRAP": "lumigo_opentelemetry",
"LUMIGO_DEBUG_SPANDUMP": temp_file,
"OTEL_SERVICE_NAME": "app",
},
external=True,
) # One happy day we will have https://github.com/wntrblm/nox/issues/198
wait_for_app_start()
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_kafka_python.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "uvicorn", session)
@nox.session()
@nox.parametrize(
"python,motor_version",
[
(python, motor_version)
for python in python_versions()
for motor_version in dependency_versions_to_be_tested(
python=python,
directory="motor",
dependency_name="motor",
)
],
)
def integration_tests_motor(
session,
motor_version,
):
python = session.python
with TestedVersions.save_tests_result("motor", python, "motor", motor_version):
install_package("motor", motor_version, session)
session.install(".")
temp_file = create_it_tempfile("motor")
with session.chdir("src/test/integration/motor"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_motor.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "test_motor", session)
@nox.session()
@nox.parametrize(
"python,pika_version",
[
(python, pika_version)
for python in python_versions()
for pika_version in dependency_versions_to_be_tested(
python=python,
directory="pika",
dependency_name="pika",
)
],
)
def integration_tests_pika(
session,
pika_version,
):
python = session.python
with TestedVersions.save_tests_result("pika", python, "pika", pika_version):
install_package("pika", pika_version, session)
session.install(".")
session.run(
"python", "-m", "pip", "install", "--upgrade", "pip", "setuptools", "wheel"
)
temp_file = create_it_tempfile("pika")
with session.chdir("src/test/integration/pika"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"sh",
"./scripts/start_uvicorn",
env={
"AUTOWRAPT_BOOTSTRAP": "lumigo_opentelemetry",
"LUMIGO_DEBUG_SPANDUMP": temp_file,
"OTEL_SERVICE_NAME": "app",
},
external=True,
) # One happy day we will have https://github.com/wntrblm/nox/issues/198
wait_for_app_start()
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_pika.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "uvicorn", session)
@nox.session()
@nox.parametrize(
"python,dependency_name,psycopg_version",
[
(python, dependency_name, psycopg_version)
for python in python_versions()
for dependency_name in ["psycopg", "psycopg-binary"]
for psycopg_version in dependency_versions_to_be_tested(
python=python,
directory="psycopg",
dependency_name=dependency_name,
)
],
)
def integration_tests_psycopg(
session,
dependency_name,
psycopg_version,
):
python = session.python
with TestedVersions.save_tests_result(
"psycopg",
python,
dependency_name=dependency_name,
dependency_version=psycopg_version,
):
install_package(dependency_name, psycopg_version, session)
install_package("psycopg[pool]", psycopg_version, session)
session.install(".")
temp_file = create_it_tempfile("psycopg")
with session.chdir("src/test/integration/psycopg"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_psycopg.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "test_psycopg", session)
@nox.session()
@nox.parametrize(
"python,dependency_name,psycopg2_version",
[
(python, dependency_name, psycopg2_version)
for python in python_versions()
for dependency_name in ["psycopg2", "psycopg2-binary"]
for psycopg2_version in dependency_versions_to_be_tested(
python=python,
directory="psycopg2",
dependency_name=dependency_name,
)
],
)
def integration_tests_psycopg2(
session,
dependency_name,
psycopg2_version,
):
python = session.python
with TestedVersions.save_tests_result(
"psycopg2",
python,
dependency_name=dependency_name,
dependency_version=psycopg2_version,
):
install_package(dependency_name, psycopg2_version, session)
session.install(".")
temp_file = create_it_tempfile("psycopg2")
with session.chdir("src/test/integration/psycopg2"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_psycopg2.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "test_psycopg2", session)
@nox.session()
@nox.parametrize(
"python,pymongo_version",
[
(python, pymongo_version)
for python in python_versions()
for pymongo_version in dependency_versions_to_be_tested(
python=python,
directory="pymongo",
dependency_name="pymongo",
)
],
)
def integration_tests_pymongo(
session,
pymongo_version,
):
python = session.python
with TestedVersions.save_tests_result(
"pymongo", python, "pymongo", pymongo_version
):
if (
str(pymongo_version).startswith("3.") # is 3.x
and not re.match(r"3\.\d{2}.*", str(pymongo_version)) # not 3.10.x or above
# and on a Python version above 3.9
and sys.version_info.major == 3
and sys.version_info.minor > 9
):
# PyMongo below '3.10.1' is broken on Python 3.10+
# because of the removal of the 'collections' package
# https://github.com/python/cpython/issues/81505
return
install_package("pymongo", pymongo_version, session)
session.install(".")
# Some versions of PyMongo fail with older versions of wheel
session.run(
"python", "-m", "pip", "install", "--upgrade", "pip", "setuptools", "wheel"
)
temp_file = create_it_tempfile("pymongo")
with session.chdir("src/test/integration/pymongo"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"sh",
"./scripts/start_uvicorn",
env={
"AUTOWRAPT_BOOTSTRAP": "lumigo_opentelemetry",
"LUMIGO_DEBUG_SPANDUMP": temp_file,
"OTEL_SERVICE_NAME": "app",
},
external=True,
) # One happy day we will have https://github.com/wntrblm/nox/issues/198
wait_for_app_start()
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_pymongo.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "uvicorn", session)
@nox.session()
@nox.parametrize(
"python,pymysql_version",
[
(python, pymysql_version)
for python in python_versions()
for pymysql_version in dependency_versions_to_be_tested(
python=python,
directory="pymysql",
dependency_name="pymysql",
)
],
)
def integration_tests_pymysql(
session,
pymysql_version,
):
python = session.python
with TestedVersions.save_tests_result(
"pymysql", python, "pymysql", pymysql_version
):
install_package("PyMySQL", pymysql_version, session)
session.install(".")
temp_file = create_it_tempfile("pymysql")
with session.chdir("src/test/integration/pymysql"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"sh",
"./scripts/start_uvicorn",
env={
"AUTOWRAPT_BOOTSTRAP": "lumigo_opentelemetry",
"LUMIGO_DEBUG_SPANDUMP": temp_file,
"OTEL_SERVICE_NAME": "app",
},
external=True,
) # One happy day we will have https://github.com/wntrblm/nox/issues/198
wait_for_app_start()
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_pymysql.py",
env={
"LUMIGO_DEBUG_SPANDUMP": temp_file,
},
)
finally:
kill_process_and_clean_outputs(temp_file, "uvicorn", session)
@nox.session()
@nox.parametrize(
"python,redis_version",
[
(python, redis_version)
for python in python_versions()
for redis_version in dependency_versions_to_be_tested(
python=python,
directory="redis",
dependency_name="redis",
)
],
)
def integration_tests_redis(
session,
redis_version,
):
python = session.python
with TestedVersions.save_tests_result("redis", python, "redis", redis_version):
install_package("redis", redis_version, session)
session.install(".")
temp_file = create_it_tempfile("redis")
with session.chdir("src/test/integration/redis"):
session.install("-r", OTHER_REQUIREMENTS)
try:
session.run(
"pytest",
"--tb",
"native",
"--log-cli-level=INFO",
"--color=yes",
"-v",
"./tests/test_redis.py",