Remove main() and __main__ from tests.
[yardstick.git] / 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
16 from __future__ import absolute_import
17 import unittest
18
19 from yardstick.network_services.traffic_profile.base import TrafficProfile
20 from yardstick.network_services.traffic_profile.http import \
21     TrafficProfileGenericHTTP
22
23
24 class TestTrafficProfileGenericHTTP(unittest.TestCase):
25     def test___init__(self):
26         traffic_profile_generic_htt_p = \
27             TrafficProfileGenericHTTP(TrafficProfile)
28         self.assertIsNotNone(traffic_profile_generic_htt_p)
29
30     def test_execute(self):
31         traffic_profile_generic_htt_p = \
32                 TrafficProfileGenericHTTP(TrafficProfile)
33         traffic_generator = {}
34         self.assertIsNone(
35             traffic_profile_generic_htt_p.execute(traffic_generator))
36
37     def test__send_http_request(self):
38         traffic_profile_generic_htt_p = \
39                 TrafficProfileGenericHTTP(TrafficProfile)
40         self.assertIsNone(traffic_profile_generic_htt_p._send_http_request(
41                              "10.1.1.1", "250", "/req"))