当前位置: 首页>>代码示例>>Python>>正文


Python PLActions.signoff方法代码示例

本文整理汇总了Python中PLActions.PLActions.signoff方法的典型用法代码示例。如果您正苦于以下问题:Python PLActions.signoff方法的具体用法?Python PLActions.signoff怎么用?Python PLActions.signoff使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PLActions.PLActions的用法示例。


在下文中一共展示了PLActions.signoff方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: pl_test017

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [as 别名]
def pl_test017(resultlog, result_dir, namespace):
    '''This test creates Problem Selection List, but does not delete the lists upon completion
    such that global files can be compared post-testing.'''
    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.createcat(listname='List001', catname='cat003')
        pl.catad(listname='List001', catname='cat001', icd='785.2', snomed='75431008', spec='General', dtext='', seqnum='5')
        pl.catad(listname='List001', catname='cat001', icd='786.50', snomed= '29857009', spec='General', dtext='', seqnum='1')
        pl.catad(listname='List001', catname='cat001', icd='786.2', snomed='49727002', spec='General', dtext='PAINFUL cough', seqnum='2')
        pl.catad(listname='List001', catname='cat001', icd='786.05', snomed='267036007', spec='General', dtext='Trouble Breathing', seqnum='7')
        pl.catad(listname='List001', catname='cat002', icd='829.0', snomed='125605004', spec='N', dtext='', seqnum='19')
        pl.catad(listname='List001', catname='cat002', icd='807.00', snomed='60667009', spec='N', dtext='', seqnum='18')
        pl.catad(listname='List001', catname='cat002', icd='806.12', snomed='21978005', spec='N', dtext='', seqnum='17')
        pl.catad(listname='List001', catname='cat002', icd='829.1', snomed='1370007', spec='N', dtext='', seqnum='16')
        pl.catad(listname='List001', catname='cat002', icd='802.8', snomed='430984009',spec='N', dtext='', seqnum='15')
        pl.catad(listname='List001', catname='cat003', icd='780.50', snomed='53888004', spec='I', dtext='', seqnum='3')
        pl.catad(listname='List001', catname='cat003', icd='292.0', snomed='363101005', spec='I', dtext='DRUG withdrawal', seqnum='1')
        pl.catad(listname='List001', catname='cat003', icd='304.90', snomed='191816009',spec='I', dtext='', seqnum='2')
        pl.sellistad(listname='List001', catname='cat001', hdrname='FATCAT', seqnum='7')
        pl.sellistad(listname='List001', catname='cat002', hdrname='SKINNYcat', seqnum='1')
        pl.sellistad(listname='List001', catname='cat003', hdrname='blackCAT', seqnum='5')
        pl.signoff()
    except TestHelper.TestError, e:
        resultlog.write(e.value)
        logging.error(testname + ' EXCEPTION ERROR: Unexpected test result')
开发者ID:Ohumunnati,项目名称:VistA,代码行数:36,代码来源:PLMain01_suite.py

示例2: pl_test002

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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')
开发者ID:KatherineWatson,项目名称:VistA,代码行数:36,代码来源:PL_Suite001.py

示例3: pl_test008

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [as 别名]
def pl_test008(resultlog, result_dir, namespace):
    """ Add problem via data entry as clerk and change as doctor"""
    """Multiple VistA instances to allow concurrent logins for when
    tstart and trollback become available and implemented"""
    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="fakeclerk1", code="[email protected]#$")
        pl1.signon()
        pl1.dataentry(
            ssn="666551234",
            provider="Alexander",
            clinic="",
            problem="chest pain",
            comment="test",
            onsetdate="t",
            status="Active",
            acutechronic="A",
            service="N",
        )
        pl1.signoff()
        VistA2 = connect_VistA(testname + "_02", result_dir, namespace)
        pl2 = PLActions(VistA2, user="fakedoc1", code="[email protected]#$")
        pl2.signon()
        pl2.editsimple(ssn="666551234", probnum="1", itemnum="1", chgval="786.50")
        pl2.verplist(ssn="666551234", vlist=["Unspecified chest pain"])
        pl2.rem("666551234")
        pl2.signoff()
    except TestHelper.TestError, e:
        resultlog.write(e.value)
        logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
开发者ID:kjessamy,项目名称:VistA,代码行数:35,代码来源:PL_Suite001.py

示例4: pl_test012

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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")
开发者ID:kjessamy,项目名称:VistA,代码行数:62,代码来源:PL_Suite001.py

示例5: pl_test001

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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')
开发者ID:KatherineWatson,项目名称:VistA,代码行数:37,代码来源:PL_Suite001.py

示例6: pl_test015

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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)
开发者ID:Ohumunnati,项目名称:VistA,代码行数:36,代码来源:PLMain01_suite.py

示例7: pl_test015

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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')
开发者ID:KatherineWatson,项目名称:VistA,代码行数:32,代码来源:PL_Suite001.py

示例8: pl_test009

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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')
开发者ID:KatherineWatson,项目名称:VistA,代码行数:35,代码来源:PL_Suite001.py

示例9: pl_test007

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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)
开发者ID:OSEHRA-Sandbox,项目名称:VistA,代码行数:34,代码来源:PLMain01_suite.py

示例10: pl_test002

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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)
开发者ID:pbradley25,项目名称:OSEHRA-Automated-Testing,代码行数:37,代码来源:PLMain01_suite.py

示例11: pl_test017

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [as 别名]
def pl_test017(resultlog, result_dir, namespace):
    """ Create Problem Selection List, do not delete at end """
    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.createcat(listname="List001", catname="cat003")
        pl.catad(listname="List001", catname="cat001", icd="785.2", spec="General", dtext="", seqnum="5")
        pl.catad(listname="List001", catname="cat001", icd="786.50", spec="General", dtext="", seqnum="1")
        pl.catad(listname="List001", catname="cat001", icd="786.2", spec="General", dtext="PAINFUL cough", seqnum="2")
        pl.catad(
            listname="List001", catname="cat001", icd="786.05", spec="General", dtext="Trouble Breathing", seqnum="7"
        )
        pl.catad(listname="List001", catname="cat002", icd="829.0", spec="N", dtext="", seqnum="19")
        pl.catad(listname="List001", catname="cat002", icd="807.00", spec="N", dtext="", seqnum="18")
        pl.catad(listname="List001", catname="cat002", icd="806.12", spec="N", dtext="", seqnum="17")
        pl.catad(listname="List001", catname="cat002", icd="829.1", spec="N", dtext="", seqnum="16")
        pl.catad(listname="List001", catname="cat002", icd="802.8", spec="N", dtext="", seqnum="15")
        pl.catad(listname="List001", catname="cat003", icd="780.50", spec="I", dtext="", seqnum="3")
        pl.catad(listname="List001", catname="cat003", icd="292.0", spec="I", dtext="DRUG withdrawal", seqnum="1")
        pl.catad(listname="List001", catname="cat003", icd="304.90", spec="I", dtext="", seqnum="2")
        pl.sellistad(listname="List001", catname="cat001", hdrname="FATCAT", seqnum="7")
        pl.sellistad(listname="List001", catname="cat002", hdrname="SKINNYcat", seqnum="1")
        pl.sellistad(listname="List001", catname="cat003", hdrname="blackCAT", seqnum="5")
        pl.signoff()
    except TestHelper.TestError, e:
        resultlog.write(e.value)
        logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
开发者ID:kjessamy,项目名称:VistA,代码行数:36,代码来源:PL_Suite001.py

示例12: pl_test003

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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")
开发者ID:kjessamy,项目名称:VistA,代码行数:27,代码来源:PL_Suite001.py

示例13: pl_test015

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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")
开发者ID:kjessamy,项目名称:VistA,代码行数:35,代码来源:PL_Suite001.py

示例14: pl_test013

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [as 别名]
def pl_test013(resultlog, result_dir, namespace):
    """Tests the remainder of the selection list Build menu options"""
    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.createsellist(listname="List001", clinic="VISTA")
        pl.createsellist(listname="List002", 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.resequencecat(listname="List001", catnames=["cat001", "cat002"])
        pl.categorydisp(listname="List001", catname="cat001")
        pl.changesellist(list1="List001", list2="List002")
        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.sellistdl(listname="List002")
        pl.signoff()
    except TestHelper.TestError, e:
        resultlog.write(e.value)
        logging.error(testname + " EXCEPTION ERROR: Unexpected test result")
开发者ID:kjessamy,项目名称:VistA,代码行数:37,代码来源:PL_Suite001.py

示例15: pl_test002

# 需要导入模块: from PLActions import PLActions [as 别名]
# 或者: from PLActions.PLActions import signoff [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")
开发者ID:kjessamy,项目名称:VistA,代码行数:29,代码来源:PL_Suite001.py


注:本文中的PLActions.PLActions.signoff方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。