Merge "Add send socket commands function"
[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
24     def test___init__(self):
25         tp_generic_http = http.TrafficProfileGenericHTTP(
26             self.TP_CONFIG)
27         self.assertIsNotNone(tp_generic_http)
28
29     def test_execute(self):
30         tp_generic_http = http.TrafficProfileGenericHTTP(
31             self.TP_CONFIG)
32         traffic_generator = {}
33         self.assertIsNone(tp_generic_http.execute(traffic_generator))
34
35     def test__send_http_request(self):
36         tp_generic_http = http.TrafficProfileGenericHTTP(
37             self.TP_CONFIG)
38         self.assertIsNone(tp_generic_http._send_http_request(
39             '10.1.1.1', '250', '/req'))