-
Notifications
You must be signed in to change notification settings - Fork 1
/
SanitySuiteSCP_API.xml
82 lines (76 loc) · 4.36 KB
/
SanitySuiteSCP_API.xml
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
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="ScpApiTestSuite">
<listeners>
<listener class-name="org.shikshalokam.Listerners.SLCustomListener"/>
</listeners>
<test name="ScpSanityTests">
<classes>
<class name="org.shikshalokam.backend.scp.TestScpLogin">
<methods>
<include name="successfulLoginScp"/>
<include name="invalidLoginScp"/>
<include name="checkEmptyFieldsForLoginCredentials"/>
</methods>
</class>
<class name="org.shikshalokam.backend.scp.TestScpPermissionCRUDOperations">
<methods>
<include name="testCreatePermissionWithValidPayload"/>
<include name="testCreatePermissionWithInvalidPayload"/>
<include name="testCreatePermissionWithEmptyFields"/>
<include name="testUpdatePermissionWithValidPayload"/>
<include name="testUpdatePermissionWithInvalidPayload"/>
<include name="testUpdatePermissionWithEmptyFieldsPayload"/>
<include name="testGetPermissionsWithValidPayload"/>
<include name="testGetPermissionsApiWithInvalidToken"/>
<include name="testUpdatedPermissionDeletionById"/>
<include name="testGetListPermissionsByRole"/>
</methods>
</class>
<class name="org.shikshalokam.backend.scp.TestScpEntityTypesAndEntitiesCRUDOperations">
<methods>
<include name="testCreateEntityTypeWithValidPayload"/>
<include name="testCreateEntityTypeWithInValidPayload"/>
<include name="testCreateEntityTypeWithEmptyFields"/>
<include name="testUpdateEntityTypesWithValidPayload"/>
<include name="testUpdateEntityTypesWithInvalidPayload"/>
<include name="testUpdateEntityTypesWithEmptyFields"/>
<include name="testReadEntityTypesWithValidPayload"/>
<include name="testCreateEntityWithValidPayload"/>
<include name="testCreateEntityWithInValidPayload"/>
<include name="testCreateEntityWithEmptyFields"/>
<include name="testUpdateEntityWithValidPayload"/>
<include name="testUpdateEntityWithInValidPayload"/>
<include name="testUpdateEntityWithEmptyFields"/>
<include name="testReadEntityWithValidPayload"/>
<include name="testDeleteEntityWithValidPayload"/>
<include name="testDeleteEntityTypesWithValidPayload" />
</methods>
</class>
<class name="org.shikshalokam.backend.scp.TestScpProjectCRUDOperations">
<methods>
<include name="testCreateProjectWithValidPayload"/>
<include name="testCreateProjectWithCertificate"/>
<include name="testCreateProjectWithoutCertificate"/>
<include name="testCreateProjectWithNoSubtasks"/>
<include name="testCreateProjectWithOnlyMandatoryFields"/>
<include name="testCreateProjectWithInvalidPayload"/>
<include name="testUpdateProjectWithValidPayload"/>
<include name="testUpdateProjectWithCertificate"/>
<include name="testUpdateProjectWithoutCertificate"/>
<include name="testUpdateProjectWithNoSubtasks"/>
<include name="testUpdateProjectWithOnlyMandatoryFields"/>
<include name="testUpdateProjectWithInValidPayload"/>
<include name="testGetProjectDetailsWithValidProjectId"/>
<include name="testGetProjectDetailsWithInValidProjectId"/>
<include name="testDeleteProjectWithValidProjectId"/>
<include name="testDeletingNotTheExistingOne"/>
</methods>
</class>
<class name="org.shikshalokam.backend.scp.TestGetReviewerList">
<methods>
<include name="testGetReviewerList"/>
</methods>
</class>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->