backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / tests / unit / ofproto / test_ofproto_common.py
1 # Copyright (C) 2012 Nippon Telegraph and Telephone 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
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # vim: tabstop=4 shiftwidth=4 softtabstop=4
17
18 import unittest
19 import logging
20 from nose.tools import eq_
21 from ryu.ofproto.ofproto_common import *
22
23
24 LOG = logging.getLogger('test_ofproto_common')
25
26
27 class TestOfprotCommon(unittest.TestCase):
28     """ Test case for ofproto_common
29     """
30
31     def test_struct_ofp_header(self):
32         eq_(OFP_HEADER_PACK_STR, '!BBHI')
33         eq_(OFP_HEADER_SIZE, 8)
34
35     def test_define_constants(self):
36         eq_(OFP_TCP_PORT, 6653)
37         eq_(OFP_SSL_PORT, 6653)