aboutsummaryrefslogtreecommitdiffstats
path: root/app/test/api/responders_test/resource/test_monitoring_config_templates.py
blob: 04f413edd03cf4e5c9826475c0ec1c0b2429988a (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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
###############################################################################
# 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 monitoring_config_templates
from unittest.mock import patch


class TestMonitoringConfigTemplates(TestBase):

    def test_get_templates_list_with_unknown_filter(self):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "unknown": "unknown"
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    def test_get_templates_list_with_non_int_order(self):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "order": monitoring_config_templates.NON_INT_ORDER
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    @patch(base.RESPONDER_BASE_READ)
    def test_get_templates_list_with_order(self, read):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "order": monitoring_config_templates.INT_ORDER
                                  },
                                  mocks={
                                      read: monitoring_config_templates.
                                         TEMPLATES_WITH_SPECIFIC_ORDER
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=monitoring_config_templates.
                                      TEMPLATES_WITH_SPECIFIC_ORDER_RESPONSE
                                  )

    def test_get_templates_list_with_wrong_side(self):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "side": monitoring_config_templates.WRONG_SIDE
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

    @patch(base.RESPONDER_BASE_READ)
    def test_get_templates_list_with_side(self, read):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "side": monitoring_config_templates.CORRECT_SIDE
                                  },
                                  mocks={
                                      read: monitoring_config_templates.
                                         TEMPLATES_WITH_SPECIFIC_SIDE
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=monitoring_config_templates.
                                      TEMPLATES_WITH_SPECIFIC_SIDE_RESPONSE
                                  )

    @patch(base.RESPONDER_BASE_READ)
    def test_get_templates_list_with_type(self, read):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "type": monitoring_config_templates.TYPE
                                  },
                                  mocks={
                                      read: monitoring_config_templates.
                                         TEMPLATES_WITH_SPECIFIC_TYPE
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=monitoring_config_templates.
                                      TEMPLATES_WITH_SPECIFIC_TYPE_RESPONSE
                                  )

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

    @patch(base.RESPONDER_BASE_READ)
    def test_get_templates_list_with_int_page(self, read):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "page": base.INT_PAGE
                                  },
                                  mocks={
                                      read: monitoring_config_templates.TEMPLATES
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=monitoring_config_templates.
                                      TEMPLATES_RESPONSE
                                  )

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

    @patch(base.RESPONDER_BASE_READ)
    def test_get_templates_list_with_int_pagesize(self, read):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "page_size": base.INT_PAGESIZE
                                  },
                                  mocks={
                                      read: monitoring_config_templates.TEMPLATES
                                  },
                                  expected_code=base.SUCCESSFUL_CODE,
                                  expected_response=monitoring_config_templates.
                                      TEMPLATES_RESPONSE
                                  )

    def test_get_template_with_wrong_id(self):
        self.validate_get_request(monitoring_config_templates.URL,
                                  params={
                                      "id": monitoring_config_templates.WRONG_ID
                                  },
                                  expected_code=base.BAD_REQUEST_CODE)

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

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