verify-disks: Explicitely state nothing has to be done
[ganeti-local] / test / ganeti.serializer_unittest.py
1 #!/usr/bin/python
2 #
3
4 # Copyright (C) 2006, 2007, 2008 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21
22 """Script for unittesting the serializer module"""
23
24
25 import unittest
26
27 from ganeti import serializer
28 from ganeti import errors
29
30 import testutils
31
32
33 class TestSerializer(testutils.GanetiTestCase):
34   """Serializer tests"""
35
36   _TESTDATA = [
37     "test",
38     255,
39     [1, 2, 3],
40     (1, 2, 3),
41     { "1": 2, "foo": "bar", },
42     ["abc", 1, 2, 3, 999,
43       {
44         "a1": ("Hello", "World"),
45         "a2": "This is only a test",
46         "a3": None,
47         },
48       {
49         "foo": "bar",
50         },
51       ]
52     ]
53
54   def _TestSerializer(self, dump_fn, load_fn):
55     for data in self._TESTDATA:
56       self.failUnless(dump_fn(data).endswith("\n"))
57       self.assertEqualValues(load_fn(dump_fn(data)), data)
58
59   def testGeneric(self):
60     self._TestSerializer(serializer.Dump, serializer.Load)
61
62   def testSignedGeneric(self):
63     self._TestSigned(serializer.DumpSigned, serializer.LoadSigned)
64
65   def testJson(self):
66     self._TestSerializer(serializer.DumpJson, serializer.LoadJson)
67
68   def testSignedJson(self):
69     self._TestSigned(serializer.DumpSignedJson, serializer.LoadSignedJson)
70
71   def _TestSigned(self, dump_fn, load_fn):
72     for data in self._TESTDATA:
73       self.assertEqualValues(load_fn(dump_fn(data, "mykey"), "mykey"),
74                              (data, ''))
75       self.assertEqualValues(load_fn(dump_fn(data, "myprivatekey",
76                                              salt="mysalt"),
77                                      "myprivatekey"),
78                              (data, "mysalt"))
79
80       keydict = {
81         "mykey_id": "myprivatekey",
82         }
83       self.assertEqualValues(load_fn(dump_fn(data, "myprivatekey",
84                                              salt="mysalt",
85                                              key_selector="mykey_id"),
86                                      keydict.get),
87                              (data, "mysalt"))
88       self.assertRaises(errors.SignatureError, load_fn,
89                         dump_fn(data, "myprivatekey",
90                                 salt="mysalt",
91                                 key_selector="mykey_id"),
92                         {}.get)
93
94     self.assertRaises(errors.SignatureError, load_fn,
95                       dump_fn("test", "myprivatekey"),
96                       "myotherkey")
97
98     self.assertRaises(errors.SignatureError, load_fn,
99                       serializer.DumpJson("This is a test"), "mykey")
100     self.assertRaises(errors.SignatureError, load_fn,
101                       serializer.DumpJson({}), "mykey")
102
103     # Message missing salt and HMAC
104     tdata = { "msg": "Foo", }
105     self.assertRaises(errors.SignatureError, load_fn,
106                       serializer.DumpJson(tdata), "mykey")
107
108
109 if __name__ == '__main__':
110   testutils.GanetiTestProgram()