-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_analyse_utils.py
More file actions
1457 lines (1342 loc) · 40 KB
/
Copy pathtest_analyse_utils.py
File metadata and controls
1457 lines (1342 loc) · 40 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
# @Test suite for tree-sitter parsing utilities and language support, TEST_LANG_1, test, [IMPL_LANG_1, IMPL_EXTR_1, IMPL_RST_1]
from pathlib import Path
import shutil
import subprocess
import pytest
from tree_sitter import Language, Parser, Query
from tree_sitter import Node as TreeSitterNode
import tree_sitter_c_sharp
import tree_sitter_cpp
import tree_sitter_python
import tree_sitter_rust
import tree_sitter_yaml
from sphinx_codelinks.analyse import utils
from sphinx_codelinks.config import UNIX_NEWLINE
from sphinx_codelinks.source_discover.config import CommentType
@pytest.fixture(scope="session")
def init_cpp_tree_sitter() -> tuple[Parser, Query]:
parsed_language = Language(tree_sitter_cpp.language())
query = Query(parsed_language, utils.CPP_QUERY)
parser = Parser(parsed_language)
return parser, query
@pytest.fixture(scope="session")
def init_python_tree_sitter() -> tuple[Parser, Query]:
parsed_language = Language(tree_sitter_python.language())
query = Query(parsed_language, utils.PYTHON_QUERY)
parser = Parser(parsed_language)
return parser, query
@pytest.fixture(scope="session")
def init_csharp_tree_sitter() -> tuple[Parser, Query]:
parsed_language = Language(tree_sitter_c_sharp.language())
query = Query(parsed_language, utils.C_SHARP_QUERY)
parser = Parser(parsed_language)
return parser, query
@pytest.fixture(scope="session")
def init_yaml_tree_sitter() -> tuple[Parser, Query]:
parsed_language = Language(tree_sitter_yaml.language())
query = Query(parsed_language, utils.YAML_QUERY)
parser = Parser(parsed_language)
return parser, query
@pytest.fixture(scope="session")
def init_rust_tree_sitter() -> tuple[Parser, Query]:
parsed_language = Language(tree_sitter_rust.language())
query = Query(parsed_language, utils.RUST_QUERY)
parser = Parser(parsed_language)
return parser, query
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
// @req-id: need_001
void dummy_func1(){
}
""",
"void dummy_func1()",
),
(
b"""
void dummy_func2(){
}
// @req-id: need_001
void dummy_func1(){
}
""",
"void dummy_func1()",
),
(
b"""
void dummy_func1(){
a = 1;
/* @req-id: need_001 */
}
""",
"void dummy_func1()",
),
(
b"""
void dummy_func1(){
// @req-id: need_001
a = 1;
}
void dummy_func2(){
}
""",
"void dummy_func1()",
),
],
)
def test_find_associated_scope_cpp(code, result, init_cpp_tree_sitter):
parser, query = init_cpp_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_associated_scope(
comments[0], CommentType.cpp
)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
def dummy_func1():
# @req-id: need_001
pass
""",
"def dummy_func1()",
),
(
b"""
def dummy_func1():
# @req-id: need_002
def dummy_func2():
pass
pass
""",
"def dummy_func2()",
),
(
b"""
def dummy_func1():
'''@req-id: need_002'''
def nested_dummy_func():
pass
pass
""",
"def dummy_func1()",
),
(
b"""
def dummy_func1():
def nested_dummy_func():
'''@req-id: need_002'''
pass
pass
""",
"def nested_dummy_func()",
),
(
b"""
def dummy_func1():
def nested_dummy_func():
# @req-id: need_002
pass
pass
""",
"def nested_dummy_func()",
),
(
b"""
def dummy_func1():
def nested_dummy_func():
pass
# @req-id: need_002
pass
""",
"def dummy_func1()",
),
],
)
def test_find_associated_scope_python(code, result, init_python_tree_sitter):
parser, query = init_python_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_associated_scope(
comments[0], CommentType.python
)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert func_def.startswith(result)
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
// @req-id: need_001
public class DummyClass1
{
}
""",
"public class DummyClass1",
),
(
b"""
public class DummyClass2
{
// @req-id: need_001
public void DummyFunc2()
{
}
}
""",
"public void DummyFunc2",
),
(
b"""
public class DummyClass3
{
// @req-id: need_001
public string Property1 { get; set; }
}
""",
"public string Property1",
),
],
)
def test_find_associated_scope_csharp(code, result, init_csharp_tree_sitter):
parser, query = init_csharp_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_associated_scope(
comments[0], CommentType.cs
)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert func_def.startswith(result)
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
# @req-id: need_001
database:
host: localhost
port: 5432
""",
"database:",
),
(
b"""
services:
web:
# @req-id: need_002
image: nginx:latest
ports:
- "80:80"
""",
"image: nginx:latest",
),
(
b"""
# @req-id: need_003
version: "3.8"
services:
app:
build: .
""",
"version:",
),
(
b"""
items:
# @req-id: need_004
- name: item1
value: test
- name: item2
value: test2
""",
"- name: item1",
),
],
)
def test_find_associated_scope_yaml(code, result, init_yaml_tree_sitter):
parser, query = init_yaml_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_associated_scope(
comments[0], CommentType.yaml
)
assert node
assert node.text
yaml_structure = node.text.decode("utf-8")
assert result in yaml_structure
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
// @req-id: need_001
fn dummy_func1() {
}
""",
"fn dummy_func1()",
),
(
b"""
fn dummy_func2() {
}
// @req-id: need_001
fn dummy_func1() {
}
""",
"fn dummy_func1()",
),
(
b"""
fn dummy_func1() {
let a = 1;
/* @req-id: need_001 */
}
""",
"fn dummy_func1()",
),
(
b"""
fn dummy_func1() {
// @req-id: need_001
let a = 1;
}
fn dummy_func2() {
}
""",
"fn dummy_func1()",
),
(
b"""
/// @req-id: need_001
fn dummy_func1() {
}
""",
"fn dummy_func1()",
),
(
b"""
struct MyStruct {
// @req-id: need_001
field: i32,
}
""",
"struct MyStruct",
),
],
)
def test_find_associated_scope_rust(code, result, init_rust_tree_sitter):
parser, query = init_rust_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_associated_scope(
comments[0], CommentType.rust
)
assert node
assert node.text
rust_def = node.text.decode("utf-8")
assert result in rust_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
def dummy_func1():
# @req-id: need_001
pass
""",
"def dummy_func1()",
),
(
b"""
def dummy_func1():
'''@req-id: need_001'''
pass
""",
"def dummy_func1()",
),
(
b"""
def dummy_func1():
def nested_dummy_func1():
'''@req-id: need_001'''
pass
pass
""",
"def nested_dummy_func1()",
),
(
b"""
def dummy_func1():
'''@req-id: need_001'''
def nested_dummy_func1():
pass
pass
""",
"def dummy_func1()",
),
],
)
def test_find_enclosing_scope_python(code, result, init_python_tree_sitter):
parser, query = init_python_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_enclosing_scope(
comments[0], CommentType.python
)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
# @req-id: need_001
def dummy_func1():
pass
""",
"def dummy_func1()",
),
(
b"""
# @req-id: need_001
# @req-id: need_002
def dummy_func1():
pass
""",
"def dummy_func1()",
),
],
)
def test_find_next_scope_python(code, result, init_python_tree_sitter):
parser, query = init_python_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_next_scope(comments[0], CommentType.python)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
// @req-id: need_001
void dummy_func1(){
}
""",
"void dummy_func1()",
),
(
b"""
/* @req-id: need_001 */
void dummy_func1(){
}
""",
"void dummy_func1()",
),
],
)
def test_find_next_scope_cpp(code, result, init_cpp_tree_sitter):
parser, query = init_cpp_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_next_scope(comments[0], CommentType.cpp)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
// @req-id: need_001
public class DummyClass1
{
}
""",
"public class DummyClass1",
),
(
b"""
public class DummyClass1
{
/* @req-id: need_001 */
/* @req-id: need_002 */
public void DummyFunc1()
{
}
}
""",
"public void DummyFunc1",
),
],
)
def test_find_next_scope_csharp(code, result, init_csharp_tree_sitter):
parser, query = init_csharp_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_next_scope(comments[0], CommentType.cs)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
void dummy_func1(){
// @req-id: need_001
}
""",
"void dummy_func1()",
),
(
b"""
void dummy_func1(){
/* @req-id: need_001 */
}
""",
"void dummy_func1()",
),
],
)
def test_find_enclosing_scope_cpp(code, result, init_cpp_tree_sitter):
parser, query = init_cpp_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_enclosing_scope(
comments[0], CommentType.cpp
)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "result"),
[
(
b"""
public class DummyClass1
{
// @req-id: need_001
}
""",
"public class DummyClass1",
),
(
b"""
public class DummyClass1
{
public void DummyFunc1()
{
/* @req-id: need_001 */
}
}
""",
"public void DummyFunc1()",
),
(
b"""
public class DummyClass1
{
public string DummyProperty1
{
get
{
/* @req-id: need_001 */
return "dummy";
}
}
}
""",
"public string DummyProperty1",
),
],
)
def test_find_enclosing_scope_csharp(code, result, init_csharp_tree_sitter):
parser, query = init_csharp_tree_sitter
comments = utils.extract_comments(code, parser, query)
node: TreeSitterNode | None = utils.find_enclosing_scope(
comments[0], CommentType.cs
)
assert node
assert node.text
func_def = node.text.decode("utf-8")
assert result in func_def
@pytest.mark.parametrize(
("code", "num_comments", "result"),
[
(
b"""
// @req-id: need_001
void dummy_func1(){
}
""",
1,
"// @req-id: need_001",
),
(
b"""
void dummy_func1(){
// @req-id: need_001
}
""",
1,
"// @req-id: need_001",
),
(
b"""
/* @req-id: need_001 */
void dummy_func1(){
}
""",
1,
"/* @req-id: need_001 */",
),
(
b"""
// @req-id: need_001
//
//
void dummy_func1(){
}
""",
3,
"// @req-id: need_001",
),
],
)
def test_cpp_comment(code, num_comments, result, init_cpp_tree_sitter):
parser, query = init_cpp_tree_sitter
comments = utils.extract_comments(code, parser, query)
assert len(comments) == num_comments
comments.sort(key=lambda x: x.start_point.row)
assert comments[0].text
assert comments[0].text.decode("utf-8") == result
@pytest.mark.parametrize(
("code", "num_comments", "result"),
[
(
b"""
# @req-id: need_001
def dummy_func1():
pass
""",
1,
"# @req-id: need_001",
),
(
b"""
def dummy_func1():
# @req-id: need_001
pass
""",
1,
"# @req-id: need_001",
),
(
b"""
# single line comment
# @req-id: need_001
def dummy_func1():
pass
""",
2,
"# single line comment",
),
(
b"""
def dummy_func1():
'''
@req-id: need_001
'''
pass
""",
1,
"'''\n @req-id: need_001\n '''",
),
(
b"""
def dummy_func1():
text = '''@req-id: need_001, need_002, this docstring shall not be extracted as comment'''
# @req-id: need_001
pass
""",
1,
"# @req-id: need_001",
),
],
)
def test_python_comment(code, num_comments, result, init_python_tree_sitter):
parser, query = init_python_tree_sitter
comments: list[TreeSitterNode] = utils.extract_comments(code, parser, query)
comments.sort(key=lambda x: x.start_point.row)
assert len(comments) == num_comments
assert comments[0].text
assert comments[0].text.decode("utf-8") == result
@pytest.mark.parametrize(
("code", "num_comments", "result"),
[
(
b"""
// @req-id: need_001
void DummyFunc1(){
}
""",
1,
"// @req-id: need_001",
),
(
b"""
void DummyFunc1(){
// @req-id: need_001
}
""",
1,
"// @req-id: need_001",
),
(
b"""
/* @req-id: need_001 */
void DummyFunc1(){
}
""",
1,
"/* @req-id: need_001 */",
),
(
b"""
// @req-id: need_001
//
//
void DummyFunc1(){
}
""",
3,
"// @req-id: need_001",
),
],
)
def test_csharp_comment(code, num_comments, result, init_csharp_tree_sitter):
parser, query = init_csharp_tree_sitter
comments: list[TreeSitterNode] = utils.extract_comments(code, parser, query)
comments.sort(key=lambda x: x.start_point.row)
assert len(comments) == num_comments
assert comments[0].text
assert comments[0].text.decode("utf-8") == result
@pytest.mark.parametrize(
("code", "num_comments", "result"),
[
(
b"""
# @req-id: need_001
database:
host: localhost
""",
1,
"# @req-id: need_001",
),
(
b"""
services:
web:
# @req-id: need_001
image: nginx:latest
""",
1,
"# @req-id: need_001",
),
(
b"""
# Top level comment
# @req-id: need_001
version: "3.8"
""",
2,
"# Top level comment",
),
],
)
def test_yaml_comment(code, num_comments, result, init_yaml_tree_sitter):
parser, query = init_yaml_tree_sitter
comments: list[TreeSitterNode] = utils.extract_comments(code, parser, query)
comments.sort(key=lambda x: x.start_point.row)
assert len(comments) == num_comments
assert comments[0].text
assert comments[0].text.decode("utf-8") == result
@pytest.mark.parametrize(
("git_url", "rev", "project_path", "filepath", "lineno", "result"),
[
(
"git@github.com:useblocks/sphinx-codelinks.git",
"beef1234",
Path(__file__).parent.parent,
Path("example") / "to" / "here",
3,
"https://github.com/useblocks/sphinx-codelinks/blob/beef1234/example/to/here#L3",
)
],
)
def test_form_https_url(git_url, rev, project_path, filepath, lineno, result): # noqa: PLR0913 # need to have these args
url = utils.form_https_url(git_url, rev, project_path, filepath, lineno=lineno)
assert url == result
def get_git_path() -> str:
"""Get the path to the git executable."""
git_path = shutil.which("git")
if not git_path:
raise FileNotFoundError("Git executable not found")
if not Path(git_path).is_file():
raise FileNotFoundError("Git executable path is invalid")
return git_path
def init_git_repo(repo_path: Path, remote_url: str) -> Path:
"""Initialize a git repository for testing."""
git_dir = repo_path / "test_repo"
src_dir = git_dir / "src"
src_dir.mkdir(parents=True)
git_path = get_git_path()
if not git_path:
raise FileNotFoundError("Git executable not found")
if not Path(git_path).is_file():
raise FileNotFoundError("Git executable path is invalid")
# Initialize git repo
subprocess.run([git_path, "init"], cwd=git_dir, check=True, capture_output=True) # noqa: S603
subprocess.run( # noqa: S603
[git_path, "config", "user.email", "test@example.com"], cwd=git_dir, check=True
)
subprocess.run( # noqa: S603
[git_path, "config", "user.name", "Test User"], cwd=git_dir, check=True
)
# Create a test file and commit
test_file = src_dir / "test_file.py"
test_file.write_text("# Test file\nprint('hello')\n")
subprocess.run([git_path, "add", "."], cwd=git_dir, check=True) # noqa: S603
subprocess.run( # noqa: S603
[git_path, "commit", "-m", "Initial commit"], cwd=git_dir, check=True
)
# Add a remote
subprocess.run( # noqa: S603
[git_path, "remote", "add", "origin", remote_url],
cwd=git_dir,
check=True,
)
return git_dir
@pytest.fixture(
params=[
("test_repo_git", "git@github.com:test-user/test-repo.git"),
("test_repo_https", "https://github.com/test-user/test-repo.git"),
]
)
def git_repo(tmp_path: str, request: pytest.FixtureRequest) -> tuple[Path, str]:
"""Create git repos for testing."""
repo_name, remote_url = request.param
repo_path = Path(tmp_path) / repo_name
repo_path = init_git_repo(repo_path, remote_url)
return repo_path, remote_url
def get_current_commit_hash(git_dir: Path) -> str:
"""Get the current commit hash of the git repository."""
git_path = get_git_path()
result = subprocess.run( # noqa: S603
[git_path, "rev-parse", "HEAD"],
cwd=git_dir,
check=True,
capture_output=True,
text=True,
)
return str(result.stdout.strip())
def test_locate_git_root(git_repo: tuple[Path, str]) -> None:
repo_path = git_repo[0]
src_dir = repo_path / "src"
git_root = utils.locate_git_root(src_dir)
assert git_root == repo_path
def test_get_remote_url(git_repo: tuple[Path, str]) -> None:
repo_path, expected_url = git_repo
remote_url = utils.get_remote_url(repo_path)
assert remote_url == expected_url
def test_get_current_rev(git_repo: tuple[Path, str]) -> None:
repo_path, _ = git_repo
current_rev = get_current_commit_hash(repo_path)
assert current_rev == utils.get_current_rev(repo_path)
@pytest.mark.parametrize(
("text", "leading_sequences", "result"),
[
(
"""
* some text in a comment
* some text in a comment
*
""",
["*"],
"""
some text in a comment
some text in a comment
""",
),
],
)
def test_remove_leading_sequences(text, leading_sequences, result):
clean_text = utils.remove_leading_sequences(text, leading_sequences)
assert clean_text == result
@pytest.mark.parametrize(
("text", "rst_markers", "rst_text", "positions"),
[
(
"""
@rst
.. impl:: multiline rst text
:id: IMPL_71
@endrst
""",
["@rst", "@endrst"],
f""".. impl:: multiline rst text{UNIX_NEWLINE} :id: IMPL_71{UNIX_NEWLINE}""",
{"row_offset": 1, "start_idx": 6, "end_idx": 51},
),
(
"""
@rst.. impl:: oneline rst text@endrst
""",
["@rst", "@endrst"],
""".. impl:: oneline rst text""",
{"row_offset": 0, "start_idx": 5, "end_idx": 31},
),
],
)
def test_extract_rst(text, rst_markers, rst_text, positions):
extracted_rst = utils.extract_rst(text, rst_markers[0], rst_markers[1])
assert extracted_rst is not None
assert extracted_rst["rst_text"] == rst_text
assert extracted_rst["start_idx"] == positions["start_idx"]
assert extracted_rst["end_idx"] == positions["end_idx"]
# ========== YAML-specific tests ==========
@pytest.mark.parametrize(
("code", "expected_structure"),
[
# Basic key-value pair
(
b"""
# Comment before key
database:
host: localhost
""",
"database:",