本文整理汇总了Python中PLActions.PLActions.verify方法的典型用法代码示例。如果您正苦于以下问题:Python PLActions.verify方法的具体用法?Python PLActions.verify怎么用?Python PLActions.verify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PLActions.PLActions
的用法示例。
在下文中一共展示了PLActions.verify方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: pl_test002
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test002(test_suite_details):
''' Restore Removed Problems '''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
VistA1 = test_driver.connect_VistA(test_suite_details)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='888776666', pfile='./FunctionalTest/dataFiles/NISTinpatientdata0.csv')
pl.editinactivate(ssn='888776666', probnum='4', resdate='08/29/2010')
pl.editinactivate(ssn='888776666', probnum='3', resdate='08/29/2010')
pl.verplist(ssn='888776666', vlist=['Essential Hypertension',
'Chronic airway obstruction'])
pl.verify(ssn='888776666', probnum='1', itemnum='1',
evalue='Essential Hypertension')
pl.verify(ssn='888776666', probnum='2', itemnum='1',
evalue='Chronic airway obstruction')
pl.verify(ssn='888776666', probnum='1', itemnum='1',
evalue='Acute myocardial', view='IA')
pl.verify(ssn='888776666', probnum='2', itemnum='1',
evalue='Congestive Heart Failure', view='IA')
for i in range(4):
pl.rem(ssn='888776666')
pl.checkempty(ssn='888776666')
pl.replace(ssn='888776666', probnum='1')
pl.verify(ssn='888776666', probnum='1', itemnum='1',
evalue='Essential Hypertension')
pl.rem(ssn='888776666')
pl.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例2: pl_test002
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test002(resultlog, result_dir, namespace):
""" Restore Removed Problems """
testname = sys._getframe().f_code.co_name
resultlog.write("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
logging.debug("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1, user="fakedoc1", code="[email protected]#$")
pl.signon()
pl.addcsv(ssn="888776666", pfile="./Functional/dataFiles/NISTinpatientdata0.csv")
pl.editinactivate(ssn="888776666", probnum="4", resdate="08/29/2010")
pl.editinactivate(ssn="888776666", probnum="3", resdate="08/29/2010")
pl.verplist(ssn="888776666", vlist=["Essential Hypertension", "Chronic airway obstruction"])
pl.verify(ssn="888776666", probnum="1", itemnum="1", evalue="Essential Hypertension")
pl.verify(ssn="888776666", probnum="2", itemnum="1", evalue="Chronic airway obstruction")
pl.verify(ssn="888776666", probnum="1", itemnum="1", evalue="Acute myocardial", view="IA")
pl.verify(ssn="888776666", probnum="2", itemnum="1", evalue="Congestive Heart Failure", view="IA")
for i in range(4):
pl.rem(ssn="888776666")
pl.checkempty(ssn="888776666")
pl.replace(ssn="888776666", probnum="1")
pl.verify(ssn="888776666", probnum="1", itemnum="1", evalue="Essential Hypertension")
pl.rem(ssn="888776666")
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
示例3: pl_test006
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test006 (test_suite_details):
''' Create Selection List from IB Encounter Form'''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
VistA = test_driver.connect_VistA(test_suite_details)
pl = PLActions(VistA, user='fakenurse1', code='[email protected]#$')
pl.signon()
pl.createibform('LAB', 'FORM1', 'Group1', ['428.0', '410.90', '401.9'])
pl.sellistib('FORM1', 'List003', 'LAB')
pl.versellist(ssn='345238901', clinic='LAB',
vlist=['List003', 'Group1', 'Congestive Heart Failure', 'Acute myocardial', 'Essential Hypertension'])
pl.add(ssn='345238901', clinic='LAB', probnum='1',
comment='this is a test', onsetdate='t', status='Active',
acutechronic='A', service='N', evalue='Congestive')
pl.verify(ssn='345238901', probnum='1', itemnum='1',
evalue='Congestive')
pl.rem('345238901')
pl.sellistrm(listname='List003')
pl.catdl(listname='List003', catname='Group1')
pl.sellistrfu(listname='List003', username='Alexander')
pl.sellistdl(listname='List003')
pl.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例4: pl_test006
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test006 (resultlog, result_dir, namespace):
'''This test creates a Selection List from IB Encounter Form'''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', '
+ str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
VistA = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA, user='fakenurse1', code='[email protected]#$')
pl.signon()
pl.createibform('LAB', 'FORM1', 'Group1', ['428.0', '410.90', '401.9'])
pl.sellistib('FORM1', 'List003', 'LAB')
pl.versellist(ssn='345238901', clinic='LAB',
vlist=['List003', 'Group1', 'Congestive Heart Failure', 'Acute myocardial', 'Essential Hypertension'])
pl.add(ssn='345238901', clinic='LAB', probnum='1',
comment='this is a test', onsetdate='t', status='Active',
acutechronic='A', service='N', evalue='Congestive')
pl.verify(ssn='345238901', probnum='1', itemnum='1',
evalue='Congestive')
pl.rem('345238901')
pl.sellistrm(listname='List003')
pl.catdl(listname='List003', catname='Group1')
pl.sellistrfu(listname='List003', username='Alexander')
pl.sellistdl(listname='List003')
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例5: pl_test002
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test002(resultlog, result_dir, namespace):
'''This test restores previously removed problems '''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', '
+ str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='888776666', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.editinactivate(ssn='888776666', probnum='4', resdate='08/29/2010')
pl.editinactivate(ssn='888776666', probnum='3', resdate='08/29/2010')
pl.verplist(ssn='888776666', vlist=['Essential Hypertension',
'Chronic airway obstruction'])
pl.verify(ssn='888776666', probnum='1', itemnum='1',
evalue='Essential Hypertension')
pl.verify(ssn='888776666', probnum='2', itemnum='1',
evalue='Chronic airway obstruction')
pl.verify(ssn='888776666', probnum='1', itemnum='1',
evalue='Acute myocardial', view='IA')
pl.verify(ssn='888776666', probnum='2', itemnum='1',
evalue='Congestive Heart Failure', view='IA')
for i in range(4):
pl.rem(ssn='888776666')
pl.checkempty(ssn='888776666')
pl.replace(ssn='888776666', probnum='1')
pl.verify(ssn='888776666', probnum='1', itemnum='1',
evalue='Essential Hypertension')
pl.rem(ssn='888776666')
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例6: pl_test004
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test004(resultlog, result_dir, namespace):
""" Create Problem Selection List, add/modify/remove categories and problems """
testname = sys._getframe().f_code.co_name
resultlog.write("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
logging.debug("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1)
pl.signon()
pl.createsellist(listname="List001", clinic="VISTA")
pl.createcat(listname="List001", catname="cat001")
pl.createcat(listname="List001", catname="cat002")
pl.catad(listname="List001", catname="cat001", icd="787.1")
pl.catad(listname="List001", catname="cat001", icd="786.50")
pl.catad(listname="List001", catname="cat001", icd="100.0")
pl.catad(listname="List001", catname="cat002", icd="780.50")
pl.catad(listname="List001", catname="cat002", icd="292.0")
pl.catad(listname="List001", catname="cat002", icd="304.90")
pl.sellistad(listname="List001", catname="cat001")
pl.sellistad(listname="List001", catname="cat002")
pl.versellist(
ssn="656454321",
clinic="VISTA",
vlist=[
"List001",
"cat001",
"Heartburn",
"chest pain",
"Leptospirosis",
"cat002",
"Sleep Disturbance",
"Drug withdrawal",
"drug dependence",
],
)
pl.add(
ssn="656454321",
clinic="VISTA",
probnum="1",
comment="this is a test",
onsetdate="t",
status="Active",
acutechronic="A",
service="N",
evalue="Heartburn",
)
pl.verify(ssn="656454321", probnum="1", itemnum="1", evalue="Heartburn")
pl.rem(ssn="656454321")
pl.sellistrm(listname="List001")
pl.sellistrm(listname="List001")
pl.catdl(listname="List001", catname="cat001")
pl.catdl(listname="List001", catname="cat002")
pl.sellistrfu(listname="List001", username="Alexander")
pl.sellistdl(listname="List001")
pl.checkRMsellist(ssn="656454321", clinic="VISTA")
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
示例7: pl_test005
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test005(test_suite_details):
''' Create Problem Selection List, assign to user, and add problem '''
'''Separate VistA Instances to allow concurrent logins in case of
future use of tstart and trollback when these features are available'''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
test_driver.testname = testname + "_01"
VistA1 = test_driver.connect_VistA(test_suite_details)
pl1 = PLActions(VistA1)
pl1.signon()
pl1.createsellist(listname="List002", clinic='')
pl1.sellistgal(listname="List002", username='Alexander')
pl1.createcat(listname='List002', catname='cat011')
pl1.createcat(listname='List002', catname='cat022')
pl1.catad(listname='List002', catname='cat011', icd='787.1')
pl1.catad(listname='List002', catname='cat011', icd='786.50')
pl1.catad(listname='List002', catname='cat011', icd='100.0')
pl1.catad(listname='List002', catname='cat022', icd='780.50')
pl1.catad(listname='List002', catname='cat022', icd='292.0')
pl1.catad(listname='List002', catname='cat022', icd='304.90')
pl1.sellistad(listname='List002', catname='cat011')
pl1.sellistad(listname='List002', catname='cat022')
test_driver.testname = testname + "_02"
VistA2 = test_driver.connect_VistA(test_suite_details)
pl2 = PLActions(VistA2, user='fakedoc1', code='[email protected]#$')
pl2.signon()
pl2.versellist(ssn='345623902', clinic='',
vlist=['List002', 'cat011', 'Heartburn', 'chest pain',
'Leptospirosis', 'cat022', 'Sleep Disturbance',
'Drug withdrawal', 'drug dependence'])
pl2.add(ssn='345623902', clinic='', probnum='1',
comment='this is a test', onsetdate='t',
status='Active', acutechronic='A', service='N',
evalue='Heartburn')
pl2.verify(ssn='345623902', probnum='1', itemnum='1',
evalue='Heartburn')
pl2.rem(ssn='345623902')
pl1.sellistrm(listname='List002')
pl1.sellistrm(listname='List002')
pl1.catdl(listname='List002', catname='cat011')
pl1.catdl(listname='List002', catname='cat022')
pl1.sellistrfu(listname='List002', username='Alexander')
pl1.sellistdl(listname='List002')
pl2.signoff()
pl1.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例8: pl_test001
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test001(resultlog, result_dir, namespace):
'''
This performs the NIST Inpatient Test; add problem to problem list, edit problem list,
verify, and remove problem from problem list.
The test scripts for testing of the Problem List adhere to the approved
guidelines as described in the NIST Test Procedure for 170.302 (c) Maintain up-to-date
problem list found at: http://healthcare.nist.gov/docs/170.302.c_problemlist_v1.1.pdf .
'''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='333224444', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.editinactivate(ssn='333224444', probnum='4', resdate='08/29/2010')
pl.editinactivate(ssn='333224444', probnum='3', resdate='08/29/2010')
pl.verplist(ssn='333224444', vlist=['Essential Hypertension',
'Chronic airway obstruction'])
pl.verify(ssn='333224444', probnum='1', itemnum='1',
evalue='Essential Hypertension')
pl.verify(ssn='333224444', probnum='2', itemnum='1',
evalue='Chronic airway obstruction')
pl.verify(ssn='333224444', probnum='1', itemnum='1',
evalue='Acute myocardial', view='IA')
pl.verify(ssn='333224444', probnum='2', itemnum='1',
evalue='Congestive Heart Failure', view='IA')
for i in range(4):
pl.rem(ssn='333224444')
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例9: pl_test003
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test003(resultlog, result_dir, namespace):
'''This test changes problem data '''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='656771234',
pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.editsimple(ssn='656771234', probnum='1', itemnum='1',
chgval='787.1')
pl.editsimple(ssn='656771234', probnum='1', itemnum='2',
chgval='3/26/12')
pl.editsimple(ssn='656771234', probnum='1', itemnum='4',
chgval='MANAGER')
pl.editsimple(ssn='656771234', probnum='1', itemnum='5',
chgval='VISTA')
pl.verify(ssn='656771234', probnum='1', itemnum='1',
evalue='Heartburn')
pl.verify(ssn='656771234', probnum='1', itemnum='2',
evalue='3/26/12')
pl.verify(ssn='656771234', probnum='1', itemnum='4',
evalue='MANAGER,SYSTEM')
pl.verify(ssn='656771234', probnum='1', itemnum='5',
evalue='VISTA')
for i in range(4):
pl.rem(ssn='656771234')
pl.checkempty(ssn='656771234')
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例10: pl_test003
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test003(resultlog, result_dir, namespace):
""" Change Problem Data """
testname = sys._getframe().f_code.co_name
resultlog.write("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
logging.debug("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1, user="fakedoc1", code="[email protected]#$")
pl.signon()
pl.addcsv(ssn="656771234", pfile="./Functional/dataFiles/NISTinpatientdata0.csv")
pl.editsimple(ssn="656771234", probnum="1", itemnum="1", chgval="787.1")
pl.editsimple(ssn="656771234", probnum="1", itemnum="2", chgval="3/26/12")
pl.editsimple(ssn="656771234", probnum="1", itemnum="4", chgval="MANAGER")
pl.editsimple(ssn="656771234", probnum="1", itemnum="5", chgval="VISTA")
pl.verify(ssn="656771234", probnum="1", itemnum="1", evalue="Heartburn")
pl.verify(ssn="656771234", probnum="1", itemnum="2", evalue="3/26/12")
pl.verify(ssn="656771234", probnum="1", itemnum="4", evalue="MANAGER,SYSTEM")
pl.verify(ssn="656771234", probnum="1", itemnum="5", evalue="VISTA")
for i in range(4):
pl.rem(ssn="656771234")
pl.checkempty(ssn="656771234")
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
示例11: pl_test003
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test003(test_suite_details):
''' Change Problem Data '''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
VistA1 = test_driver.connect_VistA(test_suite_details)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='656771234',
pfile='./FunctionalTest/dataFiles/NISTinpatientdata0.csv')
pl.editsimple(ssn='656771234', probnum='1', itemnum='1',
chgval='787.1')
pl.editsimple(ssn='656771234', probnum='1', itemnum='2',
chgval='3/26/12')
pl.editsimple(ssn='656771234', probnum='1', itemnum='4',
chgval='MANAGER')
pl.editsimple(ssn='656771234', probnum='1', itemnum='5',
chgval='VISTA')
pl.verify(ssn='656771234', probnum='1', itemnum='1',
evalue='Heartburn')
pl.verify(ssn='656771234', probnum='1', itemnum='2',
evalue='3/26/12')
pl.verify(ssn='656771234', probnum='1', itemnum='4',
evalue='MANAGER,SYSTEM')
pl.verify(ssn='656771234', probnum='1', itemnum='5',
evalue='VISTA')
for i in range(4):
pl.rem(ssn='656771234')
pl.checkempty(ssn='656771234')
pl.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例12: pl_test005
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test005(resultlog, result_dir, namespace):
'''This test creates a Problem Selection List, assigns it to user, and adds problem. '''
'''This test uses separate VistA Instances to allow concurrent connections in case of
future use of tstart and trollback when these features are available.'''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', '
+ str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
VistA1 = connect_VistA(testname + '_01', result_dir, namespace)
pl1 = PLActions(VistA1)
pl1.signon()
pl1.createsellist(listname="List002", clinic='')
pl1.sellistgal(listname="List002", username='Alexander')
pl1.createcat(listname='List002', catname='cat011')
pl1.createcat(listname='List002', catname='cat022')
pl1.catad(listname='List002', catname='cat011', icd='787.1')
pl1.catad(listname='List002', catname='cat011', icd='786.50')
pl1.catad(listname='List002', catname='cat011', icd='100.0')
pl1.catad(listname='List002', catname='cat022', icd='780.50')
pl1.catad(listname='List002', catname='cat022', icd='292.0')
pl1.catad(listname='List002', catname='cat022', icd='304.90')
pl1.sellistad(listname='List002', catname='cat011')
pl1.sellistad(listname='List002', catname='cat022')
VistA2 = connect_VistA(testname + '_02', result_dir, namespace)
pl2 = PLActions(VistA2, user='fakedoc1', code='[email protected]#$')
pl2.signon()
pl2.versellist(ssn='354623902', clinic='',
vlist=['List002', 'cat011', 'Heartburn', 'chest pain',
'Leptospirosis', 'cat022', 'Sleep Disturbance',
'Drug withdrawal', 'drug dependence'])
pl2.add(ssn='354623902', clinic='', probnum='1',
comment='this is a test', onsetdate='t',
status='Active', acutechronic='A', service='N',
evalue='Heartburn')
pl2.verify(ssn='354623902', probnum='1', itemnum='1',
evalue='Heartburn')
pl2.rem(ssn='354623902')
pl1.sellistrm(listname='List002')
pl1.sellistrm(listname='List002')
pl1.catdl(listname='List002', catname='cat011')
pl1.catdl(listname='List002', catname='cat022')
pl1.sellistrfu(listname='List002', username='Alexander')
pl1.sellistdl(listname='List002')
pl2.signoff()
pl1.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例13: pl_test004
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test004(test_suite_details):
''' This test creates a Problem Selection List, and then adds/modifies/removes categories and problems '''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
VistA1 = test_driver.connect_VistA(test_suite_details)
pl = PLActions(VistA1)
pl.signon()
pl.createsellist(listname="List001", clinic='VISTA')
pl.createcat(listname='List001', catname='cat001')
pl.createcat(listname='List001', catname='cat002')
pl.catad(listname='List001', catname='cat001', icd='787.1', snomed='16331000')
pl.catad(listname='List001', catname='cat001', icd='786.50', snomed= '29857009')
pl.catad(listname='List001', catname='cat001', icd='100.0', snomed='77377001')
pl.catad(listname='List001', catname='cat002', icd='780.50', snomed='53888004')
pl.catad(listname='List001', catname='cat002', icd='292.0', snomed='363101005')
pl.catad(listname='List001', catname='cat002', icd='304.90', snomed='191816009')
pl.sellistad(listname='List001', catname='cat001')
pl.sellistad(listname='List001', catname='cat002')
pl.versellist(ssn='656454321', clinic='VISTA',
vlist=['List001', 'cat001', 'Heartburn', '[Cc]hest pain',
'Leptospirosis', 'cat002', 'Disturbance',
'[Dd]rug withdrawal', '[Dd]rug dependence'])
pl.addbyprobnum(ssn='656454321', clinic='VISTA', probnum='1',
comment='this is a test', onsetdate='t', status='Active',
acutechronic='A', service='N', evalue='Heartburn')
pl.verify(ssn='656454321', probnum='1', itemnum='1',
evalue=['Heartburn'])
pl.rem(ssn='656454321')
pl.sellistrm(listname='List001')
pl.sellistrm(listname='List001')
pl.catdl(listname='List001', catname='cat001')
pl.catdl(listname='List001', catname='cat002')
pl.sellistrfu(listname='List001', username='Alexander')
pl.sellistdl(listname='List001', clinic='VISTA')
# Even deletion caused this part to fail, more information is needed
pl.checkRMsellist(ssn='656454321', clinic='VISTA')
pl.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例14: pl_test004
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test004(test_suite_details):
''' Create Problem Selection List, add/modify/remove categories and problems '''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
VistA1 = test_driver.connect_VistA(test_suite_details)
pl = PLActions(VistA1)
pl.signon()
pl.createsellist(listname="List001", clinic='VISTA')
pl.createcat(listname='List001', catname='cat001')
pl.createcat(listname='List001', catname='cat002')
pl.catad(listname='List001', catname='cat001', icd='787.1')
pl.catad(listname='List001', catname='cat001', icd='786.50')
pl.catad(listname='List001', catname='cat001', icd='100.0')
pl.catad(listname='List001', catname='cat002', icd='780.50')
pl.catad(listname='List001', catname='cat002', icd='292.0')
pl.catad(listname='List001', catname='cat002', icd='304.90')
pl.sellistad(listname='List001', catname='cat001')
pl.sellistad(listname='List001', catname='cat002')
pl.versellist(ssn='656454321', clinic='VISTA',
vlist=['List001', 'cat001', 'Heartburn', 'chest pain',
'Leptospirosis', 'cat002', 'Sleep Disturbance',
'Drug withdrawal', 'drug dependence'])
pl.add(ssn='656454321', clinic='VISTA', probnum='1',
comment='this is a test', onsetdate='t', status='Active',
acutechronic='A', service='N', evalue='Heartburn')
pl.verify(ssn='656454321', probnum='1', itemnum='1',
evalue='Heartburn')
pl.rem(ssn='656454321')
pl.sellistrm(listname='List001')
pl.sellistrm(listname='List001')
pl.catdl(listname='List001', catname='cat001')
pl.catdl(listname='List001', catname='cat002')
pl.sellistrfu(listname='List001', username='Alexander')
pl.sellistdl(listname='List001')
pl.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例15: pl_test004
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import verify [as 别名]
def pl_test004(resultlog, result_dir, namespace):
''' This test creates a Problem Selection List, and then adds/modifies/removes categories and problems '''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
VistA1 = connect_VistA(testname, result_dir, namespace)
pl = PLActions(VistA1)
pl.signon()
pl.createsellist(listname="List001", clinic='VISTA')
pl.createcat(listname='List001', catname='cat001')
pl.createcat(listname='List001', catname='cat002')
pl.catad(listname='List001', catname='cat001', icd='787.1')
pl.catad(listname='List001', catname='cat001', icd='786.50')
pl.catad(listname='List001', catname='cat001', icd='100.0')
pl.catad(listname='List001', catname='cat002', icd='780.50')
pl.catad(listname='List001', catname='cat002', icd='292.0')
pl.catad(listname='List001', catname='cat002', icd='304.90')
pl.sellistad(listname='List001', catname='cat001')
pl.sellistad(listname='List001', catname='cat002')
pl.versellist(ssn='656454321', clinic='VISTA',
vlist=['List001', 'cat001', 'Heartburn', 'chest pain',
'Leptospirosis', 'cat002', 'Sleep Disturbance',
'Drug withdrawal', 'drug dependence'])
pl.add(ssn='656454321', clinic='VISTA', probnum='1',
comment='this is a test', onsetdate='t', status='Active',
acutechronic='A', service='N', evalue='Heartburn')
pl.verify(ssn='656454321', probnum='1', itemnum='1',
evalue='Heartburn')
pl.rem(ssn='656454321')
pl.sellistrm(listname='List001')
pl.sellistrm(listname='List001')
pl.catdl(listname='List001', catname='cat001')
pl.catdl(listname='List001', catname='cat002')
pl.sellistrfu(listname='List001', username='Alexander')
pl.sellistdl(listname='List001')
pl.checkRMsellist(ssn='656454321', clinic='VISTA')
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')