12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- from __future__ import division
- import unittest
- from monitor import Env, DetailProcess, ProcessCounter, Sandbox, FileWatch
- import monitor
- import os
- import json
- # from utils.workers import Top, Learner
- #from multiprocessing import Lock
- from threading import Lock
- path = os.environ['MONITOR_CONFIG_PATH']
- f = open(path)
- CONFIG = json.loads( f.read())
- f.close()
- class TestMonitorServer(unittest.TestCase):
-
- def test_Environment(self):
- """
- This test case is designed to test the existance of a resource set as an environment variable. This applies to files, folders (not values)
- """
- p = Env()
- p.init(['PATH','HOME','SHELL'])
- r = p.composite()
- value = r['value']
-
- self.assertTrue(value > 0 and value >= (100*2/3),value)
- self.assertTrue(p.evaluate('PATH') == 0)
- def test_RunningProcess(self):
- p = DetailProcess()
- p.init(['kate','rabbitmq-server','python','apache2','firefox'])
- r = p.composite()
- #for row in r:
- # print row['label'],row['status'], sum([1 for item in r if item['label']==row['label']])
- self.assertTrue(r)
-
- def test_ProcessCount(self):
- p= ProcessCounter()
- p.init(['foo','apache2','VBoxClient','rabbitmq-server','python'])
- r = p.composite()
-
- self.assertTrue( sum(r.values()) > 0 )
- self.assertTrue( r['foo'] == 0)
- def test_VirtualEnv(self):
- requirements_path = os.sep.join([os.environ['PYTHONPATH'],"..","requirements.txt"])
- sandbox_path = os.sep.join([os.environ['PYTHONPATH'],"..",'sandbox'])
- p = Sandbox()
- p.init({"sandbox":sandbox_path,"requirements":requirements_path})
- p.composite()
- def test_StartLearner(self):
- pass
- def test_FileWatch(self):
- fw = FileWatch()
- fw.init(CONFIG['folders'])
- #r = fw.evaluate('/Users/steve/git/resume')
- fw.composite()
-
- if __name__ == '__main__' :
- unittest.main()
|