summaryrefslogtreecommitdiffstats
path: root/For Weekly Test/Old/07-07-2011/Controller-SecondType.py
blob: 31df36c11ba33062f98d3c06ebfa881928155b02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
import sys
import os
import re
import time
import MySQLdb
import subprocess


import classClient #import class socket
import classDb #import class db

from time import sleep
from datetime import datetime


user = 'root'
passw = 'randompasswordSQL' #default password we agree with this password before!
host = 'localhost'
dbname = 'gsmselftesting'

stop = "False"
status = ""
dbSStatus = ""


#function to ping
def FuncPing(host):
	ping_cmd = os.popen('ping '+ host + ' -c 1 -W 1').read()
	pingAlive = int(string.find(ping_cmd, '1 received'))
	if pingAlive != -1:
		return 1
	else: 
		return 0


# One function for all test case

def FuncTest(orig, origAdd, dest, destAdd, destNo):

	global repeatTest
	global portOrig
	global resultOrig
	global resultDest
	global x
	global y
	portOrig = None
	resultOrig= None
	resultDest = None
	

	repeatTest = ""
	
	try:
		
		if dest =="gsmBox1" or dest =="gsmBox2":

			if dest =="gsmBox1":
				portOrig = 50095

			if dest =="gsmBox2":
				portOrig = 50096

			print "GSM server handler", x.connect()
			x.sendData('hello server please wakeup the handler and be caller')

		else:
			# open SIP caller handler
			
			command="--command=python " +orig
			subprocess.Popen(args=["gnome-terminal", command])

			sleep(5)
			
			if orig=="SIPCall.py":
				portOrig = 50097				

			if orig=="gsmcall_.py":
				portOrig = 50098

			if orig == "landlineCall.py":
				portOrig = 50099

			if orig == "LocalSIPCall.py":
				portOrig = 50100

			#else: #mean external GSM
			#	print "have not yet define"
				#portOrig = 50101

			x = classClient.Connection(origAdd,portOrig)
			print ""
			print "Caller handler status:", x.connect()
			
			x.sendData('hello Handler')
			
		# wait respond from origin handler
		while 1:
			origHandler = x.receiveData() 
			if origHandler <> "":
				break
			#think about time out		

		if origHandler == "ready":
			print "Caller handler ready"
			print ""
			try:
				y = None
				global portDest
				portDest = None

				if dest =="gsmBox1" or dest =="gsmBox2":
	
					if dest =="gsmBox1":
						portDest = 50102

					if dest =="gsmBox2":
						portDest = 50103

					y = classClient.Connection(destAdd,portDest)
					print "GSM handler", y.connect()
					y.sendData('hello server please wakeup the handler and be receiver')
					
				else:
					command="--command=python " +dest
					subprocess.Popen(args=["gnome-terminal", command])
		
					sleep(2)
		
					if dest=="SIPIncoming.py":
						portDest = 50104

					if dest=="gsmincom_.py":
						portDest = 50105

					if dest == "landlineReceiver.py":
						portDest = 50106

					if dest == "LocalSIPReceiver.py":
						portDest = 50107

					#mean external GSM
					#print "not define yet"
						#portDest = 50108
					
					y = classClient.Connection(destAdd,portDest)
					print "Destination handler status:", y.connect()
					y.sendData('hello Receiver, caller number')

				#wait respond from destination handler
				while 1:
					destHandler = y.receiveData()
					if destHandler <> "":
						break
					#should have timeout = think about timeout

				if destHandler == "ready":

					print "Destination handler ready"
					print ""
					x.sendData("start")#send message to handler to start the call
					x.closeConnection()
					x.connect()

					#wait respond from both of handler
					while 1:
						sleep(5)
						x.connect()
						sleep(1)
						resultOrig = x.receiveData()
						resultDest = y.receiveData()

						if resultOrig <> "" or resultDest <> "":
							break

					#if failed, try one more time
					if resultOrig == "failed" or resultDest == "failed":
						y.sendData('hello Destination Handler')
						x.sendData("start")
						sleep(2)
						x.sendData(destNo)

						while 1:
							resultOrig = X.receiveData()
							resultDest = y.receiveData()
							print "Origin1: ", resultOrig
							print "Destination1: ", resultDest

							if resultOrig <> "" or resultDest <> "":
								break
						
						#if still failed, save to db and return repeat test, so we make automatic test vice versa
						if resultOrig == "failed" or resultDest == "failed":
							#db.execute ("update result table")
							repeatTest="true"
							print "Origin2: ", resultOrig
							print "Destination1: ", resultDest

					else: #save to database, tell handler to terminated
						#db.execute ("update result table")
						print "Test Result origin: ", resultOrig
						print "Test Result Destination: ", resultDest
						x.sendData('terminated') # signal caller to terminate
						y.sendData('terminated') # signal receiver to terminate

				else:
					statusTest = "604 General Handler Error: Destination handler no respond"
					#tell Caller handler to terminate because receiver doesnt work
					x.sendData("terminated")
					
				y.closeConnection()

			except ValueError:    
				print "601 General Handler Error: Could not open Destination handler"
		else:
			statusTest = "605 General Handler Error: Origin handler no respond"
		
		x.closeConnection()
	
	except ValueError:    
		print "602 General Handler Error: Could not open Origin handler"

		

# Main software



# Check DB connection
x = classDb.DBMySQLConnection(user, passw, host, dbname)
print "connected to the DB ", x.connectDB()
print ""
dbStatus = x.connectDB()


if dbStatus == 1:
	
	# Check Ping to the Every Handler
	#sipServerStatus = FuncPing("132.230.4.8")
	sipServerStatus =1
	#gsmBox1Status = FuncPing("132.230.4.8")
	#gsmBox2Status = FuncPing("132.230.4.8")

# Fetch The task information from DB
	#print "do i have anything to do", x.anyTasksToDo()	

	#for item in x.tasksList:
	#	taskID = item[0]
	#	callFrom = item[1]
	#	callTo = item[2]
	callFrom = "gsmrz1"
	callTo = "sip"
	#J = 1, 2
	#for A in J:
#		print "call from to ", taskID , callFrom , callTo
	print "Test Task : Calling from " +callFrom+ " to " +callTo
	print ""


	if callFrom == "sip" and sipServerStatus <> 0:
			
		if callTo == "gsmrz1":

			FuncTest("SIPCall.py", "localhost", "gsmincom_.py", "localhost","473")
			print "Finish test"
			if repeatTest == "true":
						#select temporary table, if there are have test from gsmrz to sip then skip
						#else, update db, put new data to tasktable. from gsmrz to sip
					update
			
		if callTo == "gsmrz2":

			if gsmBox1Status <> 0:
				FuncTest("SIPCall.py", "localhost", "Box1", "132.0.0.2","404")
				if repeatTest == "true":
						#select temporary table, if there are have test from gsmrz to sip then skip
						#else, update db, put new data to tasktable. from gsmrz to sip
					update

		if callTo == "gsmrz3":

			if gsmBox2Status <> 0:
				FuncTest("SIPCall.py", "localhost", "Box2", "132.0.0.3","405")
				if repeatTest == "true":
						#select temporary table, if there are have test from gsmrz to sip then skip
						#else, update db, put new data to tasktable. from gsmrz to sip
					update
				

	if callFrom =="gsmrz1":
			
		if callTo =="sip" and sipServerStatus <> 0:
			FuncTest("gsmcall_.py", "localhost", "SIPIncoming.py", "localhost","929")
			sleep(10)
	
			
		if callTo =="gsmrz2" and gsmBox1Status <> 0:
			FuncTest("Box1", "132.0.0.2", "SIPReceiver.py", "localhost","929")

		if callTo =="gsmrz3" and gsmBox2Status <> 0:
			FuncTest("Box2", "132.0.0.3", "SIPReceiver.py", "localhost","929")
				
				


# will exit if DB connection failed
else:
	sys.exit(5)