admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | ''' |
| 3 | Created on 31-May-2013 |
| 4 | |
| 5 | @author: Anil Kumar (anilkumar.s@paxterrasolutions.com) |
| 6 | |
| 7 | |
| 8 | TestON is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 2 of the License, or |
| 11 | (at your option) any later version. |
| 12 | |
| 13 | TestON 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 General Public License for more details. |
| 17 | |
| 18 | You should have received a copy of the GNU General Public License |
| 19 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
| 20 | |
| 21 | |
| 22 | ZookeeperCliDriver is the basic driver which will handle the Zookeeper functions |
| 23 | ''' |
| 24 | |
| 25 | import pexpect |
| 26 | import struct |
| 27 | import fcntl |
| 28 | import os |
| 29 | import signal |
| 30 | import re |
| 31 | import sys |
| 32 | import core.teston |
| 33 | import time |
| 34 | |
| 35 | sys.path.append("../") |
| 36 | from drivers.common.clidriver import CLI |
| 37 | |
| 38 | class ZookeeperCliDriver(CLI): |
| 39 | ''' |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 40 | ZookeeperCliDriver is the basic driver which will handle the Zookeeper's functions |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 41 | ''' |
| 42 | def __init__(self): |
| 43 | super(CLI, self).__init__() |
| 44 | self.handle = self |
| 45 | self.wrapped = sys.modules[__name__] |
| 46 | |
| 47 | def connect(self, **connectargs): |
| 48 | # Here the main is the TestON instance after creating all the log handles. |
| 49 | self.port = None |
| 50 | for key in connectargs: |
| 51 | vars(self)[key] = connectargs[key] |
Jon Hall | 4a2b048 | 2014-04-18 16:29:26 -0700 | [diff] [blame] | 52 | self.home = "~/ONOS" |
admin | 803f05d | 2014-07-18 10:44:38 -0700 | [diff] [blame] | 53 | self.zkhome = "~/zookeeper-3.4.6" |
| 54 | self.clustername = "sanity-rc-onos" |
Jon Hall | 4a2b048 | 2014-04-18 16:29:26 -0700 | [diff] [blame] | 55 | #self.home = "~/zookeeper-3.4.5" |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 56 | for key in self.options: |
| 57 | if key == "home": |
| 58 | self.home = self.options['home'] |
| 59 | break |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 60 | |
| 61 | self.name = self.options['name'] |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 62 | self.handle = super(ZookeeperCliDriver, self).connect(user_name = self.user_name, ip_address = self.ip_address,port = self.port, pwd = self.pwd, home = self.home) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 63 | |
| 64 | self.ssh_handle = self.handle |
| 65 | if self.handle : |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 66 | return main.TRUE |
| 67 | else : |
| 68 | main.log.error("Connection failed to the host "+self.user_name+"@"+self.ip_address) |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 69 | main.log.error(self.name + ": Failed to connect to Zookeeper") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 70 | return main.FALSE |
| 71 | |
| 72 | |
| 73 | def start(self): |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 74 | ''' |
| 75 | This Function will start the Zookeeper |
| 76 | ''' |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 77 | main.log.info(self.name + ": Starting Zookeeper" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 78 | self.handle.sendline("") |
| 79 | self.handle.expect("\$") |
Jon Hall | 4a2b048 | 2014-04-18 16:29:26 -0700 | [diff] [blame] | 80 | self.handle.sendline("cd "+self.home) |
| 81 | self.handle.sendline("./onos.sh zk start") |
| 82 | self.handle.expect("zk start") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 83 | self.handle.expect("\$") |
| 84 | response = self.handle.before + self.handle.after |
| 85 | if re.search("STARTED", response): |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 86 | main.log.info(self.name + ": Zookeeper Started ") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 87 | return main.TRUE |
| 88 | elif re.search("running", response): |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 89 | main.log.warn(self.name +": zookeeper ... already running") |
| 90 | return main.TRUE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 91 | else: |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 92 | main.log.error(self.name + ": Failed to start Zookeeper"+ response) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 93 | return main.FALSE |
| 94 | |
| 95 | def status(self): |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 96 | ''' |
| 97 | This Function will return the Status of the Zookeeper |
| 98 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 99 | time.sleep(5) |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 100 | self.execute(cmd="\n",prompt="\$",timeout=10) |
Jon Hall | 4a2b048 | 2014-04-18 16:29:26 -0700 | [diff] [blame] | 101 | self.handle.sendline("cd "+self.home) |
| 102 | response = self.execute(cmd="./onos.sh zk status ",prompt="JMX",timeout=10) |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 103 | |
| 104 | self.execute(cmd="\n",prompt="\$",timeout=10) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 105 | return response |
| 106 | |
| 107 | def stop(self): |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 108 | ''' |
| 109 | This Function will stop the Zookeeper if it is Running |
| 110 | ''' |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 111 | self.execute(cmd="\n",prompt="\$",timeout=10) |
Jon Hall | bd795bf | 2014-06-18 09:46:32 -0700 | [diff] [blame] | 112 | time.sleep(1) |
Jon Hall | 4a2b048 | 2014-04-18 16:29:26 -0700 | [diff] [blame] | 113 | self.handle.sendline("cd "+self.home) |
| 114 | response = self.execute(cmd="./onos.sh zk stop ",prompt="$",timeout=10) |
| 115 | if re.search("stopping",response): |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 116 | main.log.info(self.name + ": Zookeeper Stopped") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 117 | return main.TRUE |
| 118 | else: |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 119 | main.log.warn(self.name + ": No zookeeper to stop") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 120 | return main.FALSE |
| 121 | |
| 122 | def disconnect(self): |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 123 | ''' |
| 124 | Called at the end of the test to disconnect the ZK handle |
| 125 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 126 | response = '' |
| 127 | if self.handle: |
| 128 | self.handle.sendline("exit") |
| 129 | self.handle.expect("closed") |
| 130 | else : |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 131 | main.log.error(self.name + ": Connection failed to the host") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 132 | response = main.FALSE |
| 133 | return response |
admin | 803f05d | 2014-07-18 10:44:38 -0700 | [diff] [blame] | 134 | |
| 135 | def findMaster(self, switchDPID, ip="localhost"): |
| 136 | import json |
| 137 | time.sleep(1) |
| 138 | command = "curl "+ip+":8080/wm/onos/registry/switches/json > master.txt" |
| 139 | response = self.execute(cmd=command,prompt="\$",timeout=10) |
| 140 | self.handle.sendline("cat master.txt") |
| 141 | response = self.execute(cmd=command,prompt="\$",timeout=10) |
| 142 | self.handle.expect(["cat master.txt",pexpect.EOF,pexpect.TIMEOUT]) |
| 143 | self.handle.expect(["admin",pexpect.EOF,pexpect.TIMEOUT]) |
| 144 | response = self.handle.before |
| 145 | decoded = json.loads(response) |
| 146 | for k in decoded.iteritems(): |
| 147 | k2 = json.dumps(k) |
| 148 | if re.search(switchDPID,k2): |
| 149 | k3 = k2.split(',') |
| 150 | k4 = k3[1].split() |
| 151 | k5 = k4[1].split('"') |
| 152 | print k5[1] |
| 153 | return k5[1] |
| 154 | else: |
| 155 | return "NO SWITCH WITH THIS DPID!" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 156 | |
| 157 | def isup(self): |
admin | aeedddd | 2013-08-02 15:14:15 -0700 | [diff] [blame] | 158 | ''' |
| 159 | Calls the zookeeper status and returns TRUE if it has an assigned Mode to it. |
| 160 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 161 | self.execute(cmd="\n",prompt="\$",timeout=10) |
Jon Hall | e80ef8c | 2014-04-29 15:29:13 -0700 | [diff] [blame] | 162 | response = self.execute(cmd=self.home + "/onos.sh zk status ",prompt="Mode",timeout=10) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 163 | pattern = '(.*)Mode(.*)' |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 164 | if re.search(pattern, response): |
| 165 | main.log.info(self.name + ": Zookeeper is up.") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 166 | return main.TRUE |
| 167 | else: |
Jon Hall | f89c855 | 2014-04-02 13:14:06 -0700 | [diff] [blame] | 168 | main.log.info(self.name + ": Zookeeper is down.") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 169 | return main.FALSE |
| 170 | |
| 171 | |