本文整理汇总了Python中PLActions.PLActions.addcsv方法的典型用法代码示例。如果您正苦于以下问题:Python PLActions.addcsv方法的具体用法?Python PLActions.addcsv怎么用?Python PLActions.addcsv使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PLActions.PLActions
的用法示例。
在下文中一共展示了PLActions.addcsv方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: pl_test009
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test009 (resultlog, result_dir, namespace):
'''This test verifies problems entered into the Problem List through Order Entry package'''
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)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='323678904', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.verplist(ssn='323678904', vlist=['Essential Hypertension',
'Chronic airway obstruction',
'Acute myocardial',
'Congestive Heart Failure'])
pl.signoff()
VistA2 = connect_VistA(testname + '_02', result_dir, namespace)
oentry = ORActions(VistA2)
oentry.signon()
oentry.verproblems(ssn='323678904', vlist=['Essential Hypertension',
'Chronic airway obstruction',
'Acute myocardial',
'Congestive Heart Failure'])
oentry.signoff()
VistA3 = connect_VistA(testname + '_03', result_dir, namespace)
pl = PLActions(VistA3, user='fakedoc1', code='[email protected]#$')
pl.signon()
for i in range(4):
pl.rem('323678904')
pl.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例2: pl_test002
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [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')
示例3: pl_test001
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [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')
示例4: pl_test012
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test012(resultlog, result_dir, namespace):
"""Problem List Menu Testing"""
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)
pl = PLActions(VistA1, user="fakedoc1", code="[email protected]#$")
pl.signon()
pl.addcsv(ssn="656451234", pfile="./Functional/dataFiles/probdata0.csv")
pl.detview(ssn="656451234", probnum="2", vlist1=["ACTIVE", "ALEXANDER", "444.21"], vlist2=["hurts"])
pl.rem(ssn="656451234")
pl.rem(ssn="656451234")
pl.checkempty(ssn="656451234")
pl.signoff()
VistA2 = connect_VistA(testname + "_02", result_dir, namespace)
p2 = PLActions(VistA2, user="fakeclerk1", code="[email protected]#$")
p2.signon()
p2.dataentry(
ssn="656451234",
provider="Alexander",
clinic="",
problem="305.91",
comment="Test",
onsetdate="t",
status="a",
acutechronic="A",
service="n",
)
p2.signoff()
VistA3 = connect_VistA(testname + "_03", result_dir, namespace)
p3 = PLActions(VistA3, user="fakedoc1", code="[email protected]#$")
p3.signon()
p3.verifyproblem(ssn="656451234", problem="305.91")
p3.add(
ssn="656451234",
clinic="Clinic1",
comment="this is a test",
onsetdate="t",
status="Active",
acutechronic="A",
service="N",
icd="786.2",
verchknum="2",
)
p3.signoff()
VistA4 = connect_VistA(testname + "_04", result_dir, namespace)
p4 = PLActions(VistA4, user="fakedoc1", code="[email protected]#$")
p4.signon()
p4.selectnewpatient(ssn1="656451234", name1="SIX,", ss2="323123456", name2="NINE,")
p4.signoff()
VistA5 = connect_VistA(testname + "_05", result_dir, namespace)
p5 = PLActions(VistA5, user="fakedoc1", code="[email protected]#$")
p5.signon()
p5.addcsv(ssn="656451234", pfile="./Functional/dataFiles/probdata0.csv")
p5.printproblemlist(ssn="656451234", vlist=["PROBLEM LIST", "305.91"])
p5.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
示例5: pl_test003
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [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)
示例6: pl_test002
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [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)
示例7: pl_test015
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test015(test_suite_details):
'''This test verifies that lock function works correctly -- that is that two
providers/users can not edit the same record simultaneously.'''
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, user='fakenurse1', code='[email protected]#$')
pl1.signon()
pl1.rem_all(ssn='656451234')
pl1.addcsv(ssn='656451234', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl1.verplist(ssn='656451234', vlist=['Essential',
'Chronic',
'Acute myocardial',
'Congestive'])
pl1.editpart1(ssn='656451234', probnum='1', itemnum='1', chgval='786.50')
#
test_driver.testname = testname + '_02'
VistA2 = test_driver.connect_VistA(test_suite_details)
pl2 = PLActions(VistA2, user='fakedoc1', code='[email protected]#$')
pl2.signon()
pl2.badeditpart1(ssn='656451234', probnum='1', itemnum='1', chgval='786.50',icd10='R07.9')
pl2.signoff()
pl1.editpart2(ssn='656451234', probnum='1', itemnum='1', chgval='786.50', icd10='R07.9', snomed = '29857009')
pl1.rem_all(ssn='656451234')
pl1.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例8: pl_test003
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [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')
示例9: pl_test014
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test014(resultlog, result_dir, namespace):
'''This tests the Problem List via CPRS MENU '''
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.rem_all(ssn='656451234')
pl.addcsv(ssn='656451234', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.verplist(ssn='656451234', vlist=['Essential Hypertension',
'Chronic airway obstruction',
'Acute myocardial',
'Congestive Heart Failure'])
pl.signoff()
VistA2 = connect_VistA(testname, result_dir, namespace)
cp = CPRSActions(VistA2, user='fakedoc1', code='[email protected]#$')
cp.signon()
cp.cprs_cc_addcomment(ssn='656451234', plnum='2', comment='this is a test')
cp.cprs_cc_edit(ssn='656451234', plnum='2', loc='VISTA', edititem='4', editvalue='SMITH')
cp.cprs_cc_verify(ssn='656451234', plnum='2', vtext='Chronic airway obstruction')
cp.cprs_cc_detdisplay(ssn='656451234', plnum='2', vlist=['Chronic airway obstruction', 'SMITH,MARY'])
cp.cprs_cc_inactivate(ssn='656451234', plnum='1')
cp.cprs_cc_remove(ssn='656451234', plnum='4')
cp.cprs_cc_remove(ssn='656451234', plnum='3')
cp.cprs_cc_remove(ssn='656451234', plnum='2')
cp.cprs_cc_remove(ssn='656451234', plnum='1')
cp.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 addcsv [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_test007
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test007 (test_suite_details):
'''This test adds problems and then views patients by problem via Problem List menu items 4 & 5'''
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.createsellist(listname="List002", clinic='')
pl.sellistgal(listname="List002", username='Alexander')
pl.createcat(listname='List002', catname='cat022')
pl.catad(listname='List002', catname='cat022', icd='786.50', snomed= '29857009')
pl.addcsv(ssn='655447777', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.addcsv(ssn='543236666', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.addcsv(ssn='345678233', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl.verlistpats(vlist=['EIGHT,PATIENT', 'ONE,PATIENT', 'TWELVE,PATIENT'])
pl.verpatsrch(prob='428.0', icd10='I50.9',snomed='42343007', vlist=['EIGHT,PATIENT', 'ONE,PATIENT', 'TWELVE,PATIENT'])
for i in range(4):
pl.rem('655447777')
pl.rem('543236666')
pl.rem('345678233')
pl.sellistrm(listname='List002')
pl.catdl(listname='List002', catname='cat022')
pl.sellistrfu(listname='List002', username='Alexander')
pl.sellistdl(listname='List002', clinic='')
pl.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例12: pl_test015
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test015(resultlog, result_dir, namespace):
"""Tests that lock works correctly"""
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, user="fakenurse1", code="[email protected]#$")
pl1.signon()
pl1.rem_all(ssn="656451234")
pl1.addcsv(ssn="656451234", pfile="./Functional/dataFiles/NISTinpatientdata0.csv")
pl1.verplist(
ssn="656451234",
vlist=[
"Essential Hypertension",
"Chronic airway obstruction",
"Acute myocardial",
"Congestive Heart Failure",
],
)
pl1.editpart1(ssn="656451234", probnum="1", itemnum="1", chgval="786.50")
#
VistA2 = connect_VistA(testname + "_02", result_dir, namespace)
pl2 = PLActions(VistA2, user="fakedoc1", code="[email protected]#$")
pl2.signon()
pl2.badeditpart1(ssn="656451234", probnum="1", itemnum="1", chgval="786.50")
pl2.signoff()
pl1.editpart2(ssn="656451234", probnum="1", itemnum="1", chgval="786.50")
pl1.rem_all(ssn="656451234")
pl1.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
示例13: pl_test015
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test015(resultlog, result_dir, namespace):
'''This test verifies that lock function works correctly -- that is that two
providers/users can not edit the same record simultaneously.'''
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, user='fakenurse1', code='[email protected]#$')
pl1.signon()
pl1.rem_all(ssn='656451234')
pl1.addcsv(ssn='656451234', pfile='./Functional/dataFiles/NISTinpatientdata0.csv')
pl1.verplist(ssn='656451234', vlist=['Essential Hypertension',
'Chronic airway obstruction',
'Acute myocardial',
'Congestive Heart Failure'])
pl1.editpart1(ssn='656451234', probnum='1', itemnum='1', chgval='786.50')
#
VistA2 = connect_VistA(testname + '_02', result_dir, namespace)
pl2 = PLActions(VistA2, user='fakedoc1', code='[email protected]#$')
pl2.signon()
pl2.badeditpart1(ssn='656451234', probnum='1', itemnum='1', chgval='786.50')
pl2.signoff()
pl1.editpart2(ssn='656451234', probnum='1', itemnum='1', chgval='786.50')
pl1.rem_all(ssn='656451234')
pl1.signoff()
except TestHelper.TestError, e:
resultlog.write(e.value)
logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
示例14: pl_test002
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [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")
示例15: pl_test012
# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import addcsv [as 别名]
def pl_test012(test_suite_details):
'''This test performs Problem List Menu Testing (pseudo smoke test)'''
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)
pl = PLActions(VistA1, user='fakedoc1', code='[email protected]#$')
pl.signon()
pl.addcsv(ssn='656451234', pfile='./Functional/dataFiles/probdata0.csv')
pl.detview(ssn='656451234', probnum='2', vlist1=['ACTIVE', 'ALEXANDER', '444.21', 'I74.2','54687002'], vlist2=['hurts'])
pl.rem(ssn='656451234')
pl.rem(ssn='656451234')
pl.checkempty(ssn='656451234')
pl.signoff()
test_driver.testname = testname + '_02'
VistA2 = test_driver.connect_VistA(test_suite_details)
p2 = PLActions(VistA2, user='fakeclerk1', code='[email protected]#$')
p2.signon()
p2.dataentry(ssn='656451234', provider='Alexander', clinic='', problem='305.91',
comment='Test', onsetdate='t', status='a', acutechronic='A', service='n')
p2.signoff()
test_driver.testname = testname + '_03'
VistA3 = test_driver.connect_VistA(test_suite_details)
p3 = PLActions(VistA3, user='fakedoc1', code='[email protected]#$')
p3.signon()
p3.verifyproblem(ssn='656451234', problem='305.91')
p3.add(ssn='656451234', clinic='Clinic1', comment='this is a test',
onsetdate='t', status='Active', acutechronic='A', service='N',
icd='786.2', icd10='R05',snomed='49727002', verchknum='2')
p3.signoff()
test_driver.testname = testname + '_04'
VistA4 = test_driver.connect_VistA(test_suite_details)
p4 = PLActions(VistA4, user='fakedoc1', code='[email protected]#$')
p4.signon()
p4.selectnewpatient(ssn1='656451234', name1='SIX,', ss2='323123456', name2='NINE,')
p4.signoff()
test_driver.testname = testname + '_05'
VistA5 = test_driver.connect_VistA(test_suite_details)
p5 = PLActions(VistA5, user='fakedoc1', code='[email protected]#$')
p5.signon()
p5.addcsv(ssn='656451234', pfile='./Functional/dataFiles/probdata0.csv')
p5.printproblemlist(ssn='656451234', vlist=['PROBLEM LIST', '305.91'])
p5.signoff()
test_driver.post_test_run(test_suite_details)
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)