aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/api/responders_test/resource/test_clique_constraints.py
blob: f990b5c3e0aaed960df7f7a423052b7fb40938aa (plain)
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
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems)   #
# and others                                                                  #
#                                                                             #
# All rights reserved. This program and the accompanying materials            #
# are made available under the terms of the Apache License, Version 2.0       #
# which accompanies this distribution, and is available at                    #
# http://www.apache.org/licenses/LICENSE-2.0                                  #
###############################################################################
from test.api.test_base import TestBase
from test.api.responders_test.test_data import base
from test.api.responders_test.test_data import clique_constraints
from unittest.mock import patch


class TestCliqueConstraints(TestBase):

    def test_get_clique_constraints_list_with_invalid_filter(self):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                      "invalid": "invalid"
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    def test_get_clique_constraints_list_with_non_int_page(self):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                     "page": base.NON_INT_PAGE
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    @patch(base.RESPONDER_BASE_READ)
    def test_get_clique_constraints_list_with_int_page(self, read):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                     "page": base.INT_PAGE
                                  },
                                  mocks={
                                     read: clique_constraints.CLIQUE_CONSTRAINTS
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=clique_constraints.
                                     CLIQUE_CONSTRAINTS_RESPONSE
                                  )

    def test_get_clique_constraints_list_with_non_int_pagesize(self):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                     "page_size": base.NON_INT_PAGESIZE
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    @patch(base.RESPONDER_BASE_READ)
    def test_get_clique_constraints_list_with_int_pagesize(self, read):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                     "page_size": base.INT_PAGESIZE
                                  },
                                  mocks={
                                     read: clique_constraints.CLIQUE_CONSTRAINTS
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=clique_constraints.
                                     CLIQUE_CONSTRAINTS_RESPONSE
                                  )

    def test_get_clique_constraints_with_wrong_id(self):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                      'id': clique_constraints.WRONG_ID
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    @patch(base.RESPONDER_BASE_READ)
    def test_get_clique_constraints_with_nonexistent_id(self, read):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                      "id": clique_constraints.NONEXISTENT_ID
                                  },
                                  mocks={
                                      read: []
                                  },
                                  expected_code=base.NOT_FOUND_CODE
                                  )

    @patch(base.RESPONDER_BASE_READ)
    def test_get_clique_constraints_with_id(self, read):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                     "id": clique_constraints.CORRECT_ID
                                  },
                                  mocks={
                                     read: clique_constraints.
                                           CLIQUE_CONSTRAINTS_WITH_SPECIFIC_ID
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=clique_constraints.
                                     CLIQUE_CONSTRAINTS_WITH_SPECIFIC_ID[0]
                                  )

    def test_get_clique_constraints_list_with_wrong_focal_point_type(self):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                      "focal_point_type":
                                          clique_constraints.WRONG_FOCAL_POINT_TYPE
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    @patch(base.RESPONDER_BASE_READ)
    def test_get_clique_constraints_list_with_focal_point_type(self, read):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                      "focal_point_type":
                                          clique_constraints.CORRECT_FOCAL_POINT_TYPE
                                  },
                                  mocks={
                                      read: clique_constraints.
                                        CLIQUE_CONSTRAINTS_WITH_SPECIFIC_FOCAL_POINT_TYPE
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=clique_constraints.
                                      CLIQUE_CONSTRAINTS_WITH_SPECIFIC_FOCAL_POINT_TYPE_RESPONSE
                                  )

    @patch(base.RESPONDER_BASE_READ)
    def test_get_clique_constraints_list_with_constraints(self, read):
        self.validate_get_request(clique_constraints.URL,
                                  params={
                                      "constraint": clique_constraints.CONSTRAINT
                                  },
                                  mocks={
                                      read: clique_constraints.
                                        CLIQUE_CONSTRAINTS_WITH_SPECIFIC_CONSTRAINT
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=clique_constraints.
                                      CLIQUE_CONSTRAINTS_WITH_SPECIFIC_CONSTRAINT_RESPONSE
                                  )