Merge "Prox standalone test case changes:"
[yardstick.git] / yardstick / tests / unit / network_services / traffic_profile / test_http.py
1 # Copyright (c) 2016-2017 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import unittest
16
17 from yardstick.network_services.traffic_profile import http
18
19
20 class TestTrafficProfileGenericHTTP(unittest.TestCase):
21
22     TP_CONFIG = {'traffic_profile': {'duration': 10},
23                  "uplink_0": {}, "downlink_0": {}}
24
25     def test___init__(self):
26         tp_generic_http = http.TrafficProfileGenericHTTP(
27             self.TP_CONFIG)
28         self.assertIsNotNone(tp_generic_http)
29
30     def test_get_links_param(self):
31         tp_generic_http = http.TrafficProfileGenericHTTP(
32             self.TP_CONFIG)
33
34         links = tp_generic_http.get_links_param()
35         self.assertEqual({"uplink_0": {}, "downlink_0": {}}, links)
36
37     def test_execute(self):
38         tp_generic_http = http.TrafficProfileGenericHTTP(
39             self.TP_CONFIG)
40         traffic_generator = {}
41         self.assertIsNone(tp_generic_http.execute(traffic_generator))
42
43     def test__send_http_request(self):
44         tp_generic_http = http.TrafficProfileGenericHTTP(
45             self.TP_CONFIG)
46         self.assertIsNone(tp_generic_http._send_http_request(
47             '10.1.1.1', '250', '/req'))