Fix : fix hot module under windows test. (at leat I hope...)
[shinken.git] / test / test_module_pickle_retention.py
blob33df5d800122f01d7ee4dd607320236dbe2160c2
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 import os
28 from shinken_test import unittest, ShinkenTest
30 from shinken.log import logger
31 from shinken.objects.module import Module
32 from shinken.modules import pickle_retention_file_scheduler
33 from shinken.modules.pickle_retention_file_scheduler import get_instance
36 modconf = Module()
37 modconf.module_name = "PickleRetention"
38 modconf.module_type = pickle_retention_file_scheduler.properties['type']
39 modconf.properties = pickle_retention_file_scheduler.properties.copy()
42 class TestConfig(ShinkenTest):
43 #setUp is in shinken_test
45 #Change ME :)
46 def test_pickle_retention(self):
47 print self.conf.modules
48 #get our modules
49 mod = pickle_retention_file_scheduler.Pickle_retention_scheduler(modconf, 'tmp/retention-test.dat')
50 try :
51 os.unlink(mod.path)
52 except :
53 pass
55 sl = get_instance(mod)
56 print "Instance", sl
57 #Hack here :(
58 sl.properties = {}
59 sl.properties['to_queue'] = None
60 sl.init()
61 l = logger
63 #updte the hosts and service in the scheduler in the retentino-file
64 sl.hook_save_retention(self.sched)
66 #Now we change thing
67 svc = self.sched.hosts.find_by_name("test_host_0")
68 self.assert_(svc.state == 'PENDING')
69 print "State", svc.state
70 svc.state = 'UP' #was PENDING in the save time
72 r = sl.hook_load_retention(self.sched)
73 self.assert_(r == True)
75 #search if the host is not changed by the loading thing
76 svc2 = self.sched.hosts.find_by_name("test_host_0")
77 self.assert_(svc == svc2)
79 self.assert_(svc.state == 'PENDING')
81 #Ok, we can delete the retention file
82 os.unlink(mod.path)
85 # Now make real loops with notifications
86 self.scheduler_loop(10, [[svc, 2, 'CRITICAL | bibi=99%']])
87 #updte the hosts and service in the scheduler in the retentino-file
88 sl.hook_save_retention(self.sched)
90 r = sl.hook_load_retention(self.sched)
91 self.assert_(r == True)
95 if __name__ == '__main__':
96 unittest.main()