summaryrefslogtreecommitdiffstats
path: root/For Weekly Test/19-08-2011/TrueTable.py
blob: 6c32b78f9f1594847e364f665a9bd1bfdaf54233 (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
# check signal on rz 1, 2, and 3 to indicated test
# only have option destination to GSM RZ, such as SIP to GSM RZ not SIP to GSM RZ 1, 2 or 3!


#resultsList = list()
#resultsList = [['sip', 'GSMRZ1', '200'],['sip', 'GSMRZ2', '200'],['sip', 'GSMRZ3', '200']]
resultsList = [['sip', 'GSMExt.O2', '486'],['sip', 'GSMExt.Voda', '486'],['sip', 'GSMExt.Tm', '486']]
callerList = ['sip']

def initTrueTable(caller):
    
  callerList = ['sip']
  for x in resultsList:
    caller = x[0]
    destination = x[1]
    result = x[2]

    if caller == x[0]:

        if destination == 'GSMRZ1' and result !='200':

            for y in resultsList:
                destination = y[1]
                result = y[2]
                    
                if caller == y[0]:
                    if destination == 'GSMRZ2':
                        if result == '200':
                            
                            for z in resultsList:
                                
                                destination = z[1]
                                result = z[2]
                                
                                if caller == z[0]:
                                    if destination == 'GSMRZ3':
                                        
                                        if result == '200':
                                            print "BTS RZ 1 Broken"
                                        else:
                                            print "BTS RZ 1 & 3 indicate having Problem"
                        else:
                    
                                for z in resultsList:
                                    
                                    destination = z[1]
                                    result = z[2]
                                    
                                    if caller == z[0]:
                                        if destination == 'GSMRZ3':
                                            
                                            if result == '200':
                                                print "BTS RZ 1 & 2 indicate having Problem"
                                            else:
                                                print "OpenBSc Down"
                                                    
        elif destination == 'GSMRZ1' and result =='200':
                                                        
            for y in resultsList:
                
                destination = y[1]
                result = y[2]
                                                            
                if caller == y[0]:
                    if destination == 'GSMRZ2':
                        if result == '200':
                                                                        
                            for z in resultsList:
                                
                                destination = z[1]
                                result = z[2]
                                                                            
                                if caller == z[0]:
                                    if destination == 'GSMRZ3':
                                            
                                        if result != '200':
                                            print "BTS RZ 3 Broken"
                                        else:
                                            print "All is Fine"
                        else:
                                                                        
                            for z in resultsList:
                                                
                                destination = z[1]
                                result = z[2]
                                                                            
                                if caller == z[0]:
                                    if destination == 'GSMRZ3':
                                                        
                                        if result == '200':
                                            print "BTS RZ 2 Broken"
                                        else:
                                            print "BTS RZ 2 & 3 indicate having Problem"
        elif destination == 'GSMExt.O2':
            if result != '200':
                for y in resultsList:
                
                    destination = y[1]
                    result = y[2]
                    
                    if caller == y[0]:
                        if destination == 'GSMExt.Voda':
                            if result == '200':
                                
                                for z in resultsList:
                                        
                                    destination = z[1]
                                    result = z[2]
                                       
                                    if caller == z[0]:
                                        if destination == 'GSMExt.Tm':
                                                
                                            if result != '200':
                                                print "O2 & T-Mobile indicate having Problem"
                                            else:
                                                print "O2 indicate broken"
                                                
                            else:
                                for z in resultsList:
                                
                                    destination = z[1]
                                    result = z[2]
                                
                                    if caller == z[0]:
                                        if destination == 'GSMExt.Tm':
                                        
                                            if result == '200':
                                                print "O2 and Vodaphone indicate having problem"
                                            else:
                                                print "GSM External Modem broken"
            else:
                for y in resultsList:
                    
                    destination = y[1]
                    result = y[2]
                    
                    if caller == y[0]:
                        if destination == 'GSMExt.Voda':
                            if result == '200':
                                
                                for z in resultsList:
                                
                                    destination = z[1]
                                    result = z[2]
                                
                                    if caller == z[0]:
                                        if destination == 'GSMExt.Tm':
                                        
                                            if result == '200':
                                                print "GSM external modem is Fine"
                                            else:
                                                print "T-Mobile indicate broken"
                            else:
                                for z in resultsList:
                                
                                    destination = z[1]
                                    result = z[2]
                                
                                    if caller == z[0]:
                                        if destination == 'GSMExt.Tm':
                                        
                                            if result == '200':
                                                print "Vodaphone indicate broken"
                                            else:
                                                print "Vodaphone and T-Mobile indicate having problem"

for caller in callerList:
    initTrueTable(caller)