예제 #1
0
파일: test_git.py 프로젝트: goavki/phenny
 def test_gitserver_stop_off(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'stop'][x]
     git.teardown(self.phenny)
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertTrue("Server is already down" in out and not git.httpd) 
예제 #2
0
파일: test_git.py 프로젝트: goavki/phenny
 def test_gitserver_start_on(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'start'][x]
     git.setup_server(self.phenny)
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertTrue("Server is already up" in out and git.httpd)
예제 #3
0
파일: test_git.py 프로젝트: amuritna/phenny
 def test_gitserver_start_on(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'start'][x]
     git.setup_server(self.phenny)
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertTrue("Server is already up" in out and git.httpd)
예제 #4
0
파일: test_git.py 프로젝트: goavki/phenny
 def test_gitserver_status_down_admin(self):
     git.teardown(self.phenny)
     self.input.admin = True
     self.input.group = lambda x: [None, 'status'][x]
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertTrue("Server is down" in out) 
예제 #5
0
파일: test_git.py 프로젝트: amuritna/phenny
 def test_gitserver_stop_off(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'stop'][x]
     git.teardown(self.phenny)
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertTrue("Server is already down" in out and not git.httpd) 
예제 #6
0
파일: test_git.py 프로젝트: amuritna/phenny
 def test_gitserver_status_down_admin(self):
     git.teardown(self.phenny)
     self.input.admin = True
     self.input.group = lambda x: [None, 'status'][x]
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertTrue("Server is down" in out) 
예제 #7
0
파일: test_git.py 프로젝트: goavki/phenny
 def test_gitserver_status_up_admin(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'status'][x]
     git.httpd = True
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     git.httpd = None
     self.assertTrue("Server is up" in out)
예제 #8
0
파일: test_git.py 프로젝트: amuritna/phenny
 def test_gitserver_status_up_admin(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'status'][x]
     git.httpd = True
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     git.httpd = None
     self.assertTrue("Server is up" in out)
예제 #9
0
파일: test_git.py 프로젝트: goavki/phenny
 def test_gitserver_start_off(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'start'][x]
     git.teardown(self.phenny)
     git.gitserver(self.phenny, self.input)
     self.assertTrue(git.httpd)
예제 #10
0
파일: test_git.py 프로젝트: goavki/phenny
 def test_gitserver_stop_on(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'stop'][x]
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertFalse(git.httpd)
예제 #11
0
파일: test_git.py 프로젝트: amuritna/phenny
 def test_gitserver_start_off(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'start'][x]
     git.teardown(self.phenny)
     git.gitserver(self.phenny, self.input)
     self.assertTrue(git.httpd)
예제 #12
0
파일: test_git.py 프로젝트: amuritna/phenny
 def test_gitserver_stop_on(self):
     self.input.admin = True
     self.input.group = lambda x: [None, 'stop'][x]
     git.gitserver(self.phenny, self.input)
     out = self.phenny.reply.call_args[0][0]
     self.assertFalse(git.httpd)