forked from jasonli2000/VistA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VistAMenuUtil.py
242 lines (210 loc) · 8.58 KB
/
VistAMenuUtil.py
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
#---------------------------------------------------------------------------
# Copyright 2013 The Open Source Electronic Health Record Agent
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#---------------------------------------------------------------------------
from builtins import object
import re
import sys
# constant for reuse
DD_OUTPUT_FROM_WHAT_FILE = "OUTPUT FROM WHAT FILE:"
DD_INPUT_TO_WHAT_FILE = "INPUT TO WHAT FILE:"
"""
Utilitity Class to access VistA Menus System
"""
class VistAMenuUtil(object):
def __init__(self, duz):
self._duz = duz
pass
"""
If not specified,
in goto***Menu function call, vistAClient should be in ready state.
after exit***Menu function call, vistAClient should also be in ready state.
"""
"""
EVE System Menu
"""
def gotoSystemMenu(self, vistAClient):
connection = vistAClient.getConnection()
vistAClient.waitForPrompt()
connection.send("K \r")
vistAClient.waitForPrompt()
connection.send("S DUZ=%s D ^XUP\r" % self._duz)
connection.expect("Select OPTION NAME: ")
connection.send("EVE\r")
connection.expect("CHOOSE 1-")
connection.send("1\r")
index = connection.expect(["Select Systems Manager Menu ", "to continue"])
if index == 1:
connection.send("\r")
connection.expect("Select Systems Manager Menu ")
def exitSystemMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Systems Manager Menu ")
connection.send("\r")
connection.expect("Do you really want to halt\?")
connection.send("\r")
vistAClient.waitForPrompt()
connection.send("\r")
""" Programmer Options """
def gotoProgrammerMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoSystemMenu(vistAClient)
connection.send("Programmer Options\r")
connection.expect("Select Programmer Options ")
def exitProgrammerMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Programmer Options ")
connection.send("\r")
self.exitSystemMenu(vistAClient)
""" KIDS Menu SubSection """
def gotoKidsMainMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoProgrammerMenu(vistAClient)
connection.send("KIDS\r")
connection.expect("Select Kernel Installation \& Distribution System ")
def exitKidsMainMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Kernel Installation \& Distribution System")
connection.send("\r")
self.exitProgrammerMenu(vistAClient)
def gotoKidsUtilMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoKidsMainMenu(vistAClient)
connection.send("Utilities\r")
connection.expect("Select Utilities ")
def exitKidsUtilMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.send("\r")
self.exitKidsMainMenu(vistAClient)
""" Taskman Menu SubSection """
def gotoTaskmanMainMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoSystemMenu(vistAClient)
connection.send("Taskman Management\r")
connection.expect("Select Taskman Management ")
def exitTaskmanMainMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Taskman Management ")
connection.send("\r")
self.exitSystemMenu(vistAClient)
def gotoTaskmanMgrUtilMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoTaskmanMainMenu(vistAClient)
connection.send("Taskman Management Utilities\r")
connection.expect("Select Taskman Management Utilities ")
def exitTaskmanMgrUtilMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Taskman Management Utilities ")
connection.send("\r")
self.exitTaskmanMainMenu(vistAClient)
def gotoTaskmanEditParamMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoTaskmanMgrUtilMenu(vistAClient)
connection.send("Edit Taskman Parameters\r")
connection.expect("Select Edit Taskman Parameters ")
def exitTaskmanEditParamMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Edit Taskman Parameters ")
connection.send("\r")
self.exitTaskmanMgrUtilMenu(vistAClient)
""" HL7 Menu SubSection """
def gotoHL7MainMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoSystemMenu(vistAClient)
connection.send("HL7 Main Menu\r")
connection.expect("Select HL7 Main Menu ")
def exitHL7MainMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select HL7 Main Menu ")
connection.send("\r")
self.exitSystemMenu(vistAClient)
def gotoHL7FilerLinkMgrMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoHL7MainMenu(vistAClient)
connection.send("Filer and Link Management Options\r")
connection.expect("Select Filer and Link Management Options ")
def exitHL7FilerLinkMgrMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Filer and Link Management Options ")
connection.send("\r")
self.exitHL7MainMenu(vistAClient)
""" Mailman Menu Sub-Section """
def gotoMailmanMasterMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoSystemMenu(vistAClient)
connection.send("Mailman Master Menu\r")
connection.expect("Select MailMan Master Menu ")
def exitMailmanMasterMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select MailMan Master Menu ")
connection.send("\r")
self.exitSystemMenu(vistAClient)
def gotoMailmanManageMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoMailmanMasterMenu(vistAClient)
connection.send("Manage Mailman\r")
index = connection.expect(["to continue","Select Manage Mailman "])
if index == 0:
connection.send("^\r")
connection.expect("Select Manage Mailman ")
def exitMailmanManageMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Manage Mailman ")
connection.send("\r")
self.exitMailmanMasterMenu(vistAClient)
def gotoMailmanLocalDeliveryMgrMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoMailmanManageMenu(vistAClient)
connection.send("Local Delivery Management\r")
connection.expect("Select Local Delivery Management ")
def exitMailmanLocalDeliveryMgrMenu(self, vistAClient):
connection = vistAClient.getConnection()
connection.expect("Select Local Delivery Management ")
connection.send("\r")
self.exitMailmanManageMenu(vistAClient)
"""
FileMan Menu Section
"""
def gotoFileManMenu(self, vistAClient):
connection = vistAClient.getConnection()
vistAClient.waitForPrompt()
connection.send("S DUZ=%s D Q^DI\r" % self._duz)
connection.expect("Select OPTION:")
def exitFileManMenu(self, vistAClient, waitOption=True):
connection = vistAClient.getConnection()
if waitOption:
connection.expect("Select OPTION: ")
connection.send("\r")
vistAClient.waitForPrompt()
connection.send("\r")
def gotoFileManEditEnterEntryMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoFileManMenu(vistAClient)
connection.send("1\r" )# enter or edit entry
connection.expect(DD_INPUT_TO_WHAT_FILE)
def gotoFileManPrintFileEntryMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoFileManMenu(vistAClient)
connection.send("2\r" ) # print file entry
connection.expect(DD_OUTPUT_FROM_WHAT_FILE)
def gotoFileManSearchFileEntryMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoFileManMenu(vistAClient)
connection.send("3\r") # search file entry
connection.expect(DD_OUTPUT_FROM_WHAT_FILE)
def gotoFileManInquireFileEntryMenu(self, vistAClient):
connection = vistAClient.getConnection()
self.gotoFileManMenu(vistAClient)
connection.send("5\r" ) # inquiry file entry
connection.expect(DD_OUTPUT_FROM_WHAT_FILE)