backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / tests / unit / ofproto / test_ether.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.ether import *
22
23
24 LOG = logging.getLogger('test_ether')
25
26
27 class TestInet(unittest.TestCase):
28     """ Test case for ether
29     """
30
31     def test_ether_type(self):
32         eq_(ETH_TYPE_IP, 0x0800)
33         eq_(ETH_TYPE_ARP, 0x0806)
34         eq_(ETH_TYPE_8021Q, 0x8100)
35         eq_(ETH_TYPE_IPV6, 0x86dd)
36         eq_(ETH_TYPE_MPLS, 0x8847)
37         eq_(ETH_TYPE_SLOW, 0x8809)