-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patholdModel.py
More file actions
1153 lines (770 loc) · 19.1 KB
/
oldModel.py
File metadata and controls
1153 lines (770 loc) · 19.1 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
# generated by datamodel-codegen:
# filename: model.yml
# timestamp: 2023-09-25T09:28:04+00:00
from __future__ import annotations
from typing import List, Optional
from pydantic import BaseModel, Field
class ActivityStatus(BaseModel):
enum: List[str]
title: str
type: str
class Content(BaseModel):
title: str
type: str
class FilterType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Key(BaseModel):
title: str
type: str
class Name(BaseModel):
title: str
type: str
class Properties(BaseModel):
content: Content
filterType: FilterType
key: Key
name: Name
class AttachedFilter(BaseModel):
properties: Properties
required: List[str]
title: str
type: str
class CallType(BaseModel):
enum: List[str]
title: str
type: str
class Description(BaseModel):
title: str
type: str
class UniqueId(BaseModel):
title: str
type: str
class AnyOfItem(BaseModel):
type: str
class Version(BaseModel):
anyOf: List[AnyOfItem]
default: None
title: str
class Properties1(BaseModel):
description: Description
key: Key
name: Name
uniqueId: UniqueId
version: Version
class ConditionSummary(BaseModel):
properties: Properties1
required: List[str]
title: str
type: str
class DataTypeKind(BaseModel):
enum: List[str]
title: str
type: str
class Kind(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Path(BaseModel):
title: str
type: str
class UniqueID(BaseModel):
title: str
type: str
class Version1(BaseModel):
anyOf: List[AnyOfItem]
title: str
class Properties2(BaseModel):
key: Key
kind: Kind
name: Name
path: Path
uniqueID: UniqueID
version: Version1
class DataTypeSummary(BaseModel):
properties: Properties2
required: List[str]
title: str
type: str
class ExecutionStatus(BaseModel):
enum: List[str]
title: str
type: str
class ExecutionVerdict(BaseModel):
enum: List[str]
title: str
type: str
class FilterType1(BaseModel):
enum: List[str]
title: str
type: str
class AnyOfItem2(BaseModel):
field_ref: Optional[str] = Field(None, alias='$ref')
type: Optional[str] = None
class Exec(BaseModel):
anyOf: List[AnyOfItem2]
class InteractionType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Items(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Interactions(BaseModel):
items: Items
title: str
type: str
class Parameters(BaseModel):
items: Items
title: str
type: str
class Spec(BaseModel):
field_ref: str = Field(..., alias='$ref')
class AnyOfItem3(BaseModel):
type: str
class Version2(BaseModel):
anyOf: List[AnyOfItem3]
title: str
class Properties3(BaseModel):
exec: Exec
interactionType: InteractionType
interactions: Interactions
key: Key
name: Name
parameters: Parameters
path: Path
spec: Spec
uniqueID: UniqueID
version: Version2
class InteractionDetails(BaseModel):
properties: Properties3
required: List[str]
title: str
type: str
class Comments(BaseModel):
title: str
type: str
class CurrentUser(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Duration(BaseModel):
title: str
type: str
class References(BaseModel):
items: Items
title: str
type: str
class Tester(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Time(BaseModel):
title: str
type: str
class Verdict(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Properties4(BaseModel):
comments: Comments
currentUser: CurrentUser
duration: Duration
references: References
tester: Tester
time: Time
verdict: Verdict
class InteractionExecutionSummary(BaseModel):
properties: Properties4
required: List[str]
title: str
type: str
class CallId(BaseModel):
title: str
type: str
class CallType1(BaseModel):
field_ref: str = Field(..., alias='$ref')
class PostConditions(BaseModel):
items: Items
title: str
type: str
class PreConditions(BaseModel):
items: Items
title: str
type: str
class References1(BaseModel):
items: Items
title: str
type: str
class SequencePhase(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Properties5(BaseModel):
callId: CallId
callType: CallType1
comments: Comments
description: Description
postConditions: PostConditions
preConditions: PreConditions
references: References1
sequencePhase: SequencePhase
class InteractionSpecificationSummary(BaseModel):
properties: Properties5
required: List[str]
title: str
type: str
class InteractionType1(BaseModel):
enum: List[str]
title: str
type: str
class InteractionVerdict(BaseModel):
enum: List[str]
title: str
type: str
class IsVariantsMarker(BaseModel):
title: str
type: str
class Properties6(BaseModel):
isVariantsMarker: IsVariantsMarker
key: Key
name: Name
class Keyword(BaseModel):
properties: Properties6
required: List[str]
title: str
type: str
class ParameterDefinitionType(BaseModel):
enum: List[str]
title: str
type: str
class DataType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class DefinitionType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class UseType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Value(BaseModel):
anyOf: List[AnyOfItem3]
title: str
class ValueType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Properties7(BaseModel):
dataType: DataType
definitionType: DefinitionType
key: Key
name: Name
useType: UseType
value: Value
valueType: ValueType
class ParameterSummary(BaseModel):
properties: Properties7
required: List[str]
title: str
type: str
class ParameterUseType(BaseModel):
enum: List[str]
title: str
type: str
class ParameterValueType(BaseModel):
enum: List[str]
title: str
type: str
class Priority(BaseModel):
enum: List[str]
title: str
type: str
class Type(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Properties8(BaseModel):
path: Path
type: Type
class Reference(BaseModel):
properties: Properties8
required: List[str]
title: str
type: str
class ReferenceType(BaseModel):
enum: List[str]
title: str
type: str
class Edited(BaseModel):
title: str
type: str
class Properties9(BaseModel):
edited: Edited
key: Key
class RequirementReference(BaseModel):
properties: Properties9
required: List[str]
title: str
type: str
class SequencePhase1(BaseModel):
enum: List[str]
title: str
type: str
class SpecificationStatus(BaseModel):
enum: List[str]
title: str
type: str
class AnyOfItem5(BaseModel):
field_ref: Optional[str] = Field(None, alias='$ref')
type: Optional[str] = None
class Exec1(BaseModel):
anyOf: List[AnyOfItem5]
class Interactions1(BaseModel):
items: Items
title: str
type: str
class Parameters1(BaseModel):
items: Items
title: str
type: str
class Properties10(BaseModel):
exec: Exec1
interactions: Interactions1
parameters: Parameters1
spec: Spec
uniqueID: UniqueID
class TestCaseDetails(BaseModel):
properties: Properties10
required: List[str]
title: str
type: str
class ActualDuration(BaseModel):
title: str
type: str
class Items8(BaseModel):
type: str
class Defects(BaseModel):
items: Items8
title: str
type: str
class ExecStatus(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Items9(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Keywords(BaseModel):
items: Items9
title: str
type: str
class PlannedDuration(BaseModel):
title: str
type: str
class References2(BaseModel):
items: Items9
title: str
type: str
class Status(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Tester1(BaseModel):
anyOf: List[AnyOfItem5]
class Udfs(BaseModel):
items: Items9
title: str
type: str
class AnyOfItem7(BaseModel):
type: str
class Version3(BaseModel):
anyOf: List[AnyOfItem7]
title: str
class Properties11(BaseModel):
actualDuration: ActualDuration
comments: Comments
currentUser: CurrentUser
defects: Defects
execStatus: ExecStatus
key: Key
keywords: Keywords
plannedDuration: PlannedDuration
references: References2
status: Status
tester: Tester1
udfs: Udfs
verdict: Verdict
version: Version3
class TestCaseExecutionDetails(BaseModel):
properties: Properties11
required: List[str]
title: str
type: str
class Comments3(BaseModel):
default: str
title: str
type: str
class Items12(BaseModel):
type: str
class AnyOfItem8(BaseModel):
items: Optional[Items12] = None
type: str
class Defects1(BaseModel):
anyOf: List[AnyOfItem8]
default: None
title: str
class AllOfItem(BaseModel):
field_ref: str = Field(..., alias='$ref')
class ExecStatus1(BaseModel):
allOf: List[AllOfItem]
default: str
class Status1(BaseModel):
allOf: List[AllOfItem]
default: str
class AnyOfItem9(BaseModel):
field_ref: Optional[str] = Field(None, alias='$ref')
type: Optional[str] = None
class Tester2(BaseModel):
anyOf: List[AnyOfItem9]
default: None
class Verdict2(BaseModel):
allOf: List[AllOfItem]
default: str
class Properties12(BaseModel):
comments: Comments3
defects: Defects1
execStatus: ExecStatus1
key: Key
status: Status1
tester: Tester2
verdict: Verdict2
class TestCaseExecutionSummary(BaseModel):
properties: Properties12
required: List[str]
title: str
type: str
class Exec2(BaseModel):
anyOf: List[AnyOfItem9]
class Numbering(BaseModel):
title: str
type: str
class Items13(BaseModel):
field_ref: str = Field(..., alias='$ref')
class TestCases(BaseModel):
items: Items13
title: str
type: str
class Properties13(BaseModel):
exec: Exec2
key: Key
name: Name
numbering: Numbering
spec: Spec
testCases: TestCases
uniqueID: UniqueID
class TestCaseSetDetails(BaseModel):
properties: Properties13
required: List[str]
title: str
type: str
class Comments4(BaseModel):
title: str
type: str
class Keywords1(BaseModel):
items: Items13
title: str
type: str
class Udfs1(BaseModel):
items: Items13
title: str
type: str
class Properties14(BaseModel):
comments: Comments4
key: Key
keywords: Keywords1
udfs: Udfs1
class TestCaseSetExecutionSummary(BaseModel):
properties: Properties14
required: List[str]
title: str
type: str
class AnyOfItem11(BaseModel):
type: str
class DueDate(BaseModel):
anyOf: List[AnyOfItem11]
title: str
class Keywords2(BaseModel):
items: Items13
title: str
type: str
class PostConditions1(BaseModel):
items: Items13
title: str
type: str
class PreConditions1(BaseModel):
items: Items13
title: str
type: str
class AnyOfItem12(BaseModel):
field_ref: Optional[str] = Field(None, alias='$ref')
type: Optional[str] = None
class Priority1(BaseModel):
anyOf: List[AnyOfItem12]
class References3(BaseModel):
items: Items13
title: str
type: str
class Requirements(BaseModel):
items: Items13
title: str
type: str
class Responsible(BaseModel):
anyOf: List[AnyOfItem12]
class ReviewComment(BaseModel):
title: str
type: str
class Reviewer(BaseModel):
anyOf: List[AnyOfItem12]
class Status2(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Udfs2(BaseModel):
items: Items13
title: str
type: str
class Properties15(BaseModel):
description: Description
dueDate: DueDate
key: Key
keywords: Keywords2
postConditions: PostConditions1
preConditions: PreConditions1
priority: Priority1
references: References3
requirements: Requirements
responsible: Responsible
reviewComment: ReviewComment
reviewer: Reviewer
status: Status2
udfs: Udfs2
class TestCaseSetSpecificationSummary(BaseModel):
properties: Properties15
required: List[str]
title: str
type: str
class Keywords3(BaseModel):
items: Items13
title: str
type: str
class Requirements1(BaseModel):
items: Items13
title: str
type: str
class Udfs3(BaseModel):
items: Items13
title: str
type: str
class Properties16(BaseModel):
comments: Comments4
key: Key
keywords: Keywords3
requirements: Requirements1
udfs: Udfs3
class TestCaseSpecificationDetails(BaseModel):
properties: Properties16
required: List[str]
title: str
type: str
class Requirements2(BaseModel):
items: Items13
title: str
type: str
class Properties17(BaseModel):
comments: Comments4
key: Key
requirements: Requirements2
class TestCaseSpecificationSummary(BaseModel):
properties: Properties17
required: List[str]
title: str
type: str
class Exec3(BaseModel):
anyOf: List[AnyOfItem12]
default: None
class Index(BaseModel):
title: str
type: str
class Properties18(BaseModel):
exec: Exec3
index: Index
spec: Spec
uniqueID: UniqueID
class TestCaseSummary(BaseModel):
properties: Properties18
required: List[str]
title: str
type: str
class Locker(BaseModel):
anyOf: List[AnyOfItem12]
class Properties19(BaseModel):
key: Key
locker: Locker
status: Status2
class TestStructureAutomation(BaseModel):
properties: Properties19
required: List[str]
title: str
type: str
class ExecStatus2(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Locker1(BaseModel):
anyOf: List[AnyOfItem12]
class Verdict3(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Properties20(BaseModel):
execStatus: ExecStatus2
key: Key
locker: Locker1
status: Status2
verdict: Verdict3
class TestStructureExecution(BaseModel):
properties: Properties20
required: List[str]
title: str
type: str
class Locker2(BaseModel):
anyOf: List[AnyOfItem12]
class Properties21(BaseModel):
key: Key
locker: Locker2
status: Status2
class TestStructureSpecification(BaseModel):
properties: Properties21
required: List[str]
title: str
type: str
class Nodes(BaseModel):
items: Items13
title: str
type: str
class Root(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Properties22(BaseModel):
nodes: Nodes
root: Root
class TestStructureTree(BaseModel):
properties: Properties22
required: List[str]
title: str
type: str
class Automation(BaseModel):
anyOf: List[AnyOfItem12]
class BaseInformation(BaseModel):
field_ref: str = Field(..., alias='$ref')
class ElementType(BaseModel):
field_ref: str = Field(..., alias='$ref')
class Execution(BaseModel):
anyOf: List[AnyOfItem12]
class Filters(BaseModel):
items: Items13
title: str
type: str
class Specification(BaseModel):
anyOf: List[AnyOfItem12]
class Properties23(BaseModel):
automation: Automation
baseInformation: BaseInformation
elementType: ElementType
execution: Execution
filters: Filters
specification: Specification