Enh : begin to enhance the use_ssl boolean dispatching. It's global, let use it as it.
[shinken.git] / test / test_module_pickle_retention.py
blob426ef542a40513819ee29f59a2aae42b7efe1527
1 #!/usr/bin/env python2.6
2 #Copyright (C) 2009-2010 :
3 # Gabes Jean, naparuba@gmail.com
4 # Gerhard Lausser, Gerhard.Lausser@consol.de
6 #This file is part of Shinken.
8 #Shinken is free software: you can redistribute it and/or modify
9 #it under the terms of the GNU Affero General Public License as published by
10 #the Free Software Foundation, either version 3 of the License, or
11 #(at your option) any later version.
13 #Shinken is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU Affero General Public License for more details.
18 #You should have received a copy of the GNU Affero General Public License
19 #along with Shinken. If not, see <http://www.gnu.org/licenses/>.
23 # This file is used to test reading and processing of config files
26 #It's ugly I know....
27 import os
28 from shinken_test import *
29 sys.path.append("../shinken/modules")
30 from pickle_retention_file_scheduler import *
32 class TestConfig(ShinkenTest):
33 #setUp is in shinken_test
35 #Change ME :)
36 def test_pickle_retention(self):
37 print self.conf.modules
38 #get our modules
39 mod = None
40 mod = Module({'type' : 'pickle_retention_file', 'module_name' : 'PickleRetention', 'path' : '/tmp/retention-test.dat'})
42 try :
43 os.unlink(mod.path)
44 except :
45 pass
47 sl = get_instance(mod)
48 print "Instance", sl
49 #Hack here :(
50 sl.properties = {}
51 sl.properties['to_queue'] = None
52 sl.init()
53 l = logger
55 #updte the hosts and service in the scheduler in the retentino-file
56 sl.update_retention_objects(self.sched, l)
58 #Now we change thing
59 svc = self.sched.hosts.find_by_name("test_host_0")
60 self.assert_(svc.state == 'PENDING')
61 print "State", svc.state
62 svc.state = 'UP' #was PENDING in the save time
64 r = sl.load_retention_objects(self.sched, l)
65 self.assert_(r == True)
67 #search if the host is not changed by the loading thing
68 svc2 = self.sched.hosts.find_by_name("test_host_0")
69 self.assert_(svc == svc2)
71 self.assert_(svc.state == 'PENDING')
73 #Ok, we can delete the retention file
74 os.unlink(mod.path)
77 # Now make real loops with notifications
78 self.scheduler_loop(10, [[svc, 2, 'CRITICAL | bibi=99%']])
79 #updte the hosts and service in the scheduler in the retentino-file
80 sl.update_retention_objects(self.sched, l)
82 r = sl.load_retention_objects(self.sched, l)
83 self.assert_(r == True)
87 if __name__ == '__main__':
88 unittest.main()