backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / tests / unit / packet / test_llc.py
1 # Copyright (C) 2013 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
21 from nose.tools import eq_
22 from ryu.lib.packet import llc
23
24
25 LOG = logging.getLogger(__name__)
26
27
28 class Test_ControlFormatI(unittest.TestCase):
29     msg = llc.llc(llc.SAP_BPDU, llc.SAP_BPDU, llc.ControlFormatI())
30
31     def test_json(self):
32         jsondict = self.msg.to_jsondict()
33         msg = llc.llc.from_jsondict(jsondict['llc'])
34         eq_(str(self.msg), str(msg))
35
36
37 class Test_ControlFormatS(Test_ControlFormatI):
38     msg = llc.llc(llc.SAP_BPDU, llc.SAP_BPDU, llc.ControlFormatS())
39
40
41 class Test_ControlFormatU(Test_ControlFormatI):
42     msg = llc.llc(llc.SAP_BPDU, llc.SAP_BPDU, llc.ControlFormatU())