summaryrefslogblamecommitdiffstats
path: root/For Weekly Test/12-09-2011/truetable.py
blob: 6675ccd27a292d00daa50c6ca6f549d276b04e73 (plain) (tree)
1
2
                    
 






















































































































































                                                                                                                                                                                                                                                                                                                                 
            













                                                                                                                  
                                                                                   


































                                                                                                 
 
               



 
 
def initTrueTable():

    	resultsList = [['sip', 'GSMExt.Eplus', '486'], ['unisip', 'GSMExt.Tm', '486'], ['sip', 'GSMExt.O2', '200'], ['landline', 'GSMExt.Voda', '486'], ['sip', 'landline', '486'], ['sip', 'unisip', '200'], ['unisip', 'sip', '486'], ['GSMRZ1','landline', '486'], ['GSMRZ2','landline' ,'486'], ['GSMRZ3','landline', '486']]
    #resultsList = [['GSMExt.Eplus', 'GSMRZ1', '486'], ['unisip', 'sip', '486'], ['landline', 'sip', '200'], ['unisip', 'sip', '486']]

	nanoBTS1 = None
	nanoBTS2 = None
    	nanoBTS3 = None
    	o2Card = None
	eplusCard = None
	vodaCard = None
	tmobileCard = None
	outgoingLandline = None

    	for x in resultsList:

        	destination = x[1]
        	result = x[2]
		caller = x[0]

        	if destination == 'GSMRZ1': 
                	if result =='486':
		    		nanoBTS1 = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMRZ1':
						if result == '200':
							nanoBTS1 = True

					if destination == 'GSMRZ1':
						if result == '200':
							nanoBTS1 = True
                	elif result =='200':
				nanoBTS1 = True

        	elif destination == 'GSMRZ2': 
                	if result =='486':
		    		nanoBTS2 = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMRZ2':
						if result == '200':
							nanoBTS2 = True

					if destination == 'GSMRZ2':
						if result == '200':
							nanoBTS2 = True
                	elif result =='200':
				nanoBTS2 = True

        	elif destination == 'GSMRZ3': 
                	if result =='486':
		    		nanoBTS3 = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMRZ3':
						if result == '200':
							nanoBTS3 = True

					if destination == 'GSMRZ2':
						if result == '200':
							nanoBTS3 = True
                	elif result =='200':
				nanoBTS3 = True

       		elif destination == 'GSMExt.O2': 
                	if result =='486':
		    		o2Card = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMExt.O2':
						if result == '200':
							o2Card = True

					if destination == 'GSMExt.O2':
						if result == '200':
							o2Card = True
                	elif result =='200':
				o2Card = True

        	elif destination == 'GSMExt.Voda': 
                	if result =='486':
		    		vodaCard = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMExt.Voda':
						if result == '200':
							vodaCard = True

					if destination == 'GSMExt.Voda':
						if result == '200':
							vodaCard = True
                	elif result =='200':
				vodaCard = True

        	elif destination == 'GSMExt.Eplus': 
                	if result =='486':
		    		eplusCard = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMExt.Eplus':
						if result == '200':
							eplusCard = True

					if destination == 'GSMExt.Eplus':
						if result == '200':
							eplusCard = True
                	elif result =='200':
				eplusCard = True

        	elif destination == 'GSMExt.Tm': 
                	if result =='486':
		    		tmobileCard = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'GSMExt.Tm':
						if result == '200':
							tmobileCard = True

					if destination == 'GSMExt.Tm':
						if result == '200':
							tmobileCard = True
                	elif result =='200':
				tmobileCard = True

        	elif destination == 'sip': 
                	if result =='486':
		    		asteriskServer = False
                    		for y in resultsList:
                    			call = y[0]
					destination = y[1]
                    			result = y[2]
                    			if call == 'sip':
						if result == '200':
							asteriskServer = True

					if destination == 'sip':
						if result == '200':
							asteriskServer = True
            
                	elif result =='200':
				asteriskServer = True

		if caller == 'GSMRZ1' or caller == 'GSMRZ2' or caller == 'GSMRZ3':

        		if destination == 'landline': 
                		if result =='486':
		    			outgoingLandline = False
                    			for y in resultsList:
                    				call = y[0]
						destination = y[1]
                    				result = y[2]
                    				if caller == 'GSMRZ1' or caller == 'GSMRZ2' or caller == 'GSMRZ3':
							if destination == 'landline':
								if result == '200':
									outgoingLandline = True

	print '\n'
    	if o2Card == False and eplusCard == False and vodaCard == False and tmobileCard == False:
		print 'GSM BOX Modem down'
    	else:
    		if o2Card == False:
			print "O2 card indicate having problem"
    		if eplusCard == False:
			print "eplus card indicate having problem"
    		if vodaCard == False:
			print "vodaphone card indicate having problem"
    		if tmobileCard == False:
			print "T-Mobile card indicate having problem"
		print '\n'

    	if nanoBTS1 == False and nanoBTS2 == False and nanoBTS3 == False:
		print 'openBSC down'
    	else:
    		if nanoBTS1 == False:
			print "nanoBTS 1 indicate having problem"
    		if nanoBTS2 == False:
			print "nanoBTS 2 indicate having problem"
    		if nanoBTS3 == False:
			print "nanoBTS 3 indicate having problem"

	if outgoingLandline == False:
		print 'outgoing from GSM RZ to landline having problem'
		print '\n'

    	if asteriskServer == False:
		print "Asterisk server indicate having problem"
    	elif asteriskServer == True:
		print 'Asterisk server working good'
	print '\n'

initTrueTable()