示例#1
0
def sc_test012(test_suite_details):
    '''
    This test adds a new user with SDOB keys and creates & verifies appointments in timeslots outside a clinic's normal operating window
    '''
    testname = sys._getframe().f_code.co_name
    test_driver = TestHelper.TestDriver(testname)

    test_driver.pre_test_run(test_suite_details)
    try:
        # create new user with SDOB keys
        VistA1 = test_driver.connect_VistA(test_suite_details)
        SC = Actions(VistA1, user='******', code='SM1234!!!')
        SC.signon()
        SC.adduser(name='CRANE,JON', ssn='000000065', gender='M', initials='JC', acode='fakejon1', vcode1='1SWUSH1234!!')
        SC.signoff()
        VistA1 = test_driver.connect_VistA(testname + '_01', result_dir, namespace)
        SC = Actions(VistA1)
        SC.sigsetup(acode='fakejon1', vcode1='1SWUSH1234!!', vcode2='1SWUSH12345!!', sigcode='JONC123')
        SC.signoff()
        # Create appointment outside Clinic1's operating hours via fakedoc1
        VistA2 = test_driver.connect_VistA(testname + '_02', result_dir, namespace)
        SC = SCActions(VistA2, user='******', code='1Doc!@#$')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='t+5@9AM', fresh='No', badtimeresp='noslot')
        SC.signoff()
        # Create appointment outside Clinic1's operating hours via fakejon1 (SDOB key)
        VistA3 = test_driver.connect_VistA(testname + '_02', result_dir, namespace)
        SC = SCActions(VistA3, user='******', code='1SWUSH12345!!')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='t+10@9AM', fresh='No', badtimeresp='overbook')
        SC.signoff()
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#2
0
def sc_test012(resultlog, result_dir, namespace):
    '''
    This test adds a new user with SDOB keys and creates & verifies appointments in timeslots outside a clinic's normal operating window
    '''
    testname = sys._getframe().f_code.co_name
    resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
    logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
    try:
        # Create new user with SDOB keys
        VistA1 = connect_VistA(testname, result_dir, namespace)
        SC = Actions(VistA1, user='******', code='SM12345!!')
        SC.signon()
        SC.adduser(name='CRANE,JON', ssn='000000065', gender='M', initials='JC', acode='fakejon1', vcode1='1SWUSH1234!!')
        SC.signoff()
        VistA1 = connect_VistA(testname + '_01', result_dir, namespace)
        SC = Actions(VistA1)
        SC.sigsetup(acode='fakejon1', vcode1='1SWUSH1234!!', vcode2='1SWUSH12345!!', sigcode='JONC123')
        SC.signoff()
        # Create appointment outside Clinic1's operating hours via fakedoc1
        VistA2 = connect_VistA(testname + '_02', result_dir, namespace)
        SC = SCActions(VistA2, user='******', code='1Doc!@#$')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='t+5@9AM', fresh='No', badtimeresp='noslot')
        SC.signoff()
        # Create appointment outside Clinic1's operating hours via fakejon1 (SDOB key)
        VistA3 = connect_VistA(testname + '_02', result_dir, namespace)
        SC = SCActions(VistA3, user='******', code='1SWUSH12345!!')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='t+10@9AM', fresh='No', badtimeresp='overbook')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#3
0
def sc_test013(resultlog, result_dir, namespace):
    '''
    This test creates a Sharing Agreement subcategory and adds it to a select patient's eligibility
    '''
    testname = sys._getframe().f_code.co_name
    resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
    logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
    if sys.platform == 'win32':
        try:
            # Create Sharing Agreement sub-category
            VistA1 = connect_VistA(testname, result_dir, namespace)
            aa = Actions(VistA1)
            aa.signon()
            aa.addSAsubtype(subcat='subcat1')
            aa.signon()
            aa.addSAsubtype(subcat='SUBCAT2')
        # Add Sharing Agreement to Patient Eligibility
            VistA1 = connect_VistA(testname + '_1', result_dir, namespace)
            adt = ADTActions(VistA1)
            adt.signon()
            adt.gotoADTmenu()
            adt.eligverific(patient='333224444', eligtype='SHARING AGREEMENT')
            adt.signoff()
        # Make Appointment using new sub-category
            VistA1 = connect_VistA(testname + '_2', result_dir, namespace)
            SC = SCActions(VistA1, user='******', code='1SWUSH12345!!')
            SC.signon()
            SC.gotoApptMgmtMenu()
            SC.makeapp(patient='333224444', clinic='Clinic1', datetime='t+9@5AM', fresh='No', apptype='SHARING AGREEMENT', subcat=['subcat1', 'SUBCAT2'])
            SC.signoff()
        except TestHelper.TestError, e:
            resultlog.write('\nEXCEPTION ERROR:' + str(e))
            logging.error('*****exception*********' + str(e))
        else:
            resultlog.write('Pass\n')
示例#4
0
def sc_test013(test_suite_details):
    '''
    This test creates a Sharing Agreement subcategory and adds it to a select patient's eligibility
    '''
    testname = sys._getframe().f_code.co_name
    test_driver = TestHelper.TestDriver(testname)

    test_driver.pre_test_run(test_suite_details)
    if sys.platform == 'win32':
        try:
            # Create Sharing Agreement sub-category
            VistA1 = test_driver.connect_VistA(test_suite_details)
            aa = Actions(VistA1)
            aa.signon()
            aa.addSAsubtype(subcat='subcat1')
            aa.signon()
            aa.addSAsubtype(subcat='SUBCAT2')
        # Add Sharing Agreement to Patient Eligibility
            VistA1 = test_driver.connect_VistA(testname + '_1', result_dir, namespace)
            adt = ADTActions(VistA1)
            adt.signon()
            adt.gotoADTmenu()
            adt.eligverific(patient='333224444', eligtype='SHARING AGREEMENT')
            adt.signoff()
        # Make Appointment using new sub-category
            VistA1 = test_driver.connect_VistA(testname + '_2', result_dir, namespace)
            SC = SCActions(VistA1, user='******', code='1SWUSH12345!!')
            SC.signon()
            SC.gotoApptMgmtMenu()
            SC.makeapp(patient='333224444', clinic='Clinic1', datetime='t+9@5AM', fresh='No', apptype='SHARING AGREEMENT', subcat=['subcat1', 'SUBCAT2'])
            SC.signoff()
        except TestHelper.TestError, e:
            test_driver.exception_handling(test_suite_details, e)
        finally:
示例#5
0
def sc_test006(test_suite_details):
    '''This test will exercise the wait list functionality'''
    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)
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        SC.waitlistentry(patient='323554545')
        SC.waitlistdisposition(patient='323554545')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#6
0
def sc_test006(test_suite_details):
    '''This test will exercise the wait list functionality'''
    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)
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        tclinic = SC.getclinic()
        SC.waitlistentry(clinic=tclinic, patient='323123456')
        SC.waitlistdisposition(clinic=tclinic, patient='323123456')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#7
0
def sc_test006(resultlog, result_dir, namespace):
    '''
    This test will exercise the wait list functionality
    '''
    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)
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        tclinic = SC.getclinic()
        SC.waitlistentry(clinic=tclinic, patient='323123456')
        SC.waitlistdisposition(clinic=tclinic, patient='323123456')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#8
0
def sc_test006(resultlog, result_dir, namespace):
    """
    This test will exercise the wait list functionality
    """
    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)
        SC = SCActions(VistA, user="******", code="1Doc!@#$")
        SC.signon()
        tclinic = SC.getclinic()
        SC.waitlistentry(clinic=tclinic, patient="323123456")
        SC.waitlistdisposition(clinic=tclinic, patient="323123456")
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#9
0
def sc_test013(resultlog, result_dir, namespace):
    """
    This test creates a Sharing Agreement subcategory and adds it to a select patient's eligibility
    """
    testname = sys._getframe().f_code.co_name
    resultlog.write("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
    logging.debug("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
    if sys.platform == "win32":
        try:
            # Create Sharing Agreement sub-category
            VistA1 = connect_VistA(testname, result_dir, namespace)
            aa = Actions(VistA1)
            aa.signon()
            aa.addSAsubtype(subcat="subcat1")
            aa.signon()
            aa.addSAsubtype(subcat="SUBCAT2")
            # Add Sharing Agreement to Patient Eligibility
            VistA1 = connect_VistA(testname + "_1", result_dir, namespace)
            adt = ADTActions(VistA1)
            adt.signon()
            adt.gotoADTmenu()
            adt.eligverific(patient="333224444", eligtype="SHARING AGREEMENT")
            adt.signoff()
            # Make Appointment using new sub-category
            VistA1 = connect_VistA(testname + "_2", result_dir, namespace)
            SC = SCActions(VistA1, user="******", code="1SWUSH12345!!")
            SC.signon()
            SC.gotoApptMgmtMenu()
            SC.makeapp(
                patient="333224444",
                clinic="Clinic1",
                datetime="t+9@5AM",
                fresh="No",
                apptype="SHARING AGREEMENT",
                subcat=["subcat1", "SUBCAT2"],
            )
            SC.signoff()
        except TestHelper.TestError, e:
            resultlog.write("\nEXCEPTION ERROR:" + str(e))
            logging.error("*****exception*********" + str(e))
        else:
            resultlog.write("Pass\n")
示例#10
0
def sc_test004(resultlog, result_dir):
    '''This tests clinic features such as expand the entry, add and edit, and Patient demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.makeapp(patient='345238901', datetime=time)
        SC.signon()
        SC.patdem(name='Ten', mult='2')
        SC.signon()
        SC.expandentry(vlist1=['TEN', 'SCHEDULED', '30'], vlist2=['Event', 'Date', 'User', 'TESTMASTER'],
                       vlist3=['NEXT AVAILABLE', 'NO', '0'], vlist4=['1933', 'MALE', 'UNANSWERED'],
                       vlist5=['Combat Veteran:', 'No check out information'], mult='2')
        SC.signon()
        SC.addedit(name='345623902', icd='305.91')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#11
0
def sc_test011(test_suite_details):
    '''
    This makes appointments via Multiple Clinic Display and then verifies the appointments
    '''
    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)
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        SC.multiclinicdisplay(cliniclist=['Clinic1', 'ClinicX'], patient='656454321', timelist=['7', '5'], pending=None)
        SC.gotoApptMgmtMenu()
        SC.verapp_bypat(patient='656454321', vlist=['Clinic1', '7:00', 'Future', 'Clinicx', '17:00', 'Future'],)
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#12
0
def sc_test014(resultlog, result_dir, namespace):
    '''
    This test verifies clinic setup parameters
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        SC.ma_clinicchk(patient='333224444', clinic='CLInicB', exp_apptype='EMPLOYEE', datetime='t+3@05PM',
                        cslots='[2]', cxrays='YES', fresh='No', cvar='Yes', elig='Yes')
        SC.signon()
        SC.ma_clinicchk(patient='333224444', clinic='CLInicC', exp_apptype='RESEARCH', datetime='t+4@04pm',
                        cslots='[4]', cxrays='', fresh='No', elig='Yes')
        SC.signon()
        SC.ma_clinicchk(patient='333224444', clinic='CLInicD', exp_apptype='REGULAR', datetime='t+5@03pm',
                        cslots='[4]', cxrays='', fresh='No', elig='Yes')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#13
0
def sc_test005(resultlog, result_dir, namespace):
    """
    This test checks a patient into a clinic, then discharges him, then deletes his checkout
    """
    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)
        SC = SCActions(VistA)
        SC.signon()
        tclinic = SC.getclinic()
        SC.enroll(clinic=tclinic, patient="543236666")
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.makeapp(clinic=tclinic, patient="543236666", datetime=time)
        SC.signon()
        SC.discharge(clinic=tclinic, patient="543236666", appnum="3")
        SC.signon()
        SC.checkout(clinic=tclinic, vlist1=["One", "No Action"], vlist2=["305.91", "RESULTING"], icd="305.91", mult="4")
        SC = SCActions(VistA, user="******", code="1Doc!@#$")
        SC.signon()
        SC.deletecheckout(clinic=tclinic, appnum="3")
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#14
0
def sc_test009(test_suite_details):
    '''
    This test makes appointments with variable length and makes appointment in distant future for EWL
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_var(clinic='CLInicA', patient='323678904', datetime='t+7@7AM', fresh='No')
        SC.signon()
        SC.verapp_bypat(patient='323678904', vlist=['THIRTEEN,PATIENT M', 'Clinica', '7:00', 'Future'],)
        SC.signon()
        SC.makeapp_var(clinic='CLInicA', patient='323678904', datetime='t+122@6AM', fresh='No')
        SC.signon()
        SC.makeapp_var(clinic='CLInicA', patient='323678904', datetime='t+10@4AM', fresh='No', nextaval='No')
        SC.signon()
        SC.verapp_bypat(patient='323678904', vlist=['THIRTEEN,PATIENT M', 'Clinica', '4:00', 'Future'],
                        ALvlist=['THIRTEEN,PATIENT M', 'Clinicx', 'Clinica', 'Clinica'],
                        EPvlist=['THIRTEEN,PATIENT M', 'CLINICX', '8904', 'FUTURE', 'SCHEDULED', 'REGULAR'])
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#15
0
def sc_test009(resultlog, result_dir, namespace):
    '''Make appts with variable length. Make appt in distant future for EWL'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_var(clinic='CLInicA',
                       patient='323678904',
                       datetime='t+7@7AM',
                       fresh='No')
        SC.signon()
        SC.verapp_bypat(
            patient='323678904',
            vlist=['THIRTEEN,PATIENT M', 'Clinica', '7:00', 'Future'],
        )
        SC.signon()
        SC.makeapp_var(clinic='CLInicA',
                       patient='323678904',
                       datetime='t+122@6AM',
                       fresh='No')
        SC.signon()
        SC.makeapp_var(clinic='CLInicA',
                       patient='323678904',
                       datetime='t+10@4AM',
                       fresh='No',
                       nextaval='No')
        SC.signon()
        SC.verapp_bypat(
            patient='323678904',
            vlist=['THIRTEEN,PATIENT M', 'Clinica', '4:00', 'Future'],
            ALvlist=['THIRTEEN,PATIENT M', 'Clinicx', 'Clinica', 'Clinica'],
            EPvlist=[
                'THIRTEEN,PATIENT M', 'CLINICX', '8904', 'FUTURE', 'SCHEDULED',
                'REGULAR'
            ])
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#16
0
def sc_test002(resultlog, result_dir, namespace):
    '''Basic appointment managment options
    Make an Appointment (Scheduled and Unscheduled),
    record a No-Show, Cancel an appointment and change patients'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(clinic=tclinic, patient='655447777', datetime=time)
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.unschvisit(clinic=tclinic,
                      patient='345678233',
                      patientname='Twelve')
        SC.signon()
        SC.noshow(clinic=tclinic, appnum='3')
        SC.signon()
        SC.canapp(clinic=tclinic, mult='1')
        SC.signon()
        SC.chgpatient(clinic=tclinic,
                      patient1='345678233',
                      patient2='345238901',
                      patientname1='Twelve',
                      patientname2='Ten')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#17
0
def sc_test011(resultlog, result_dir, namespace):
    """
    This makes appointments via Multiple Clinic Display and then verifies the appointments
    """
    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)
        SC = SCActions(VistA, user="******", code="1Doc!@#$")
        SC.signon()
        SC.multiclinicdisplay(cliniclist=["Clinic1", "ClinicX"], patient="656454321", timelist=["7", "5"], pending=None)
        SC.gotoApptMgmtMenu()
        SC.verapp_bypat(patient="656454321", vlist=["Clinic1", "7:00", "Future", "Clinicx", "17:00", "Future"])
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#18
0
def sc_test001(resultlog, result_dir, namespace):
    """
    Test for basic appointment management options.
    Make an Appointment, Check in, Check Out
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(patient="333224444", clinic=tclinic, datetime=time)
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic, vlist=["Three", str(hour), "CHECKED-IN:"])
        SC.signon()
        SC.checkout(
            clinic=tclinic,
            vlist1=["Three", str(hour), "Checked In"],
            vlist2=["305.91", "OTHER DRUG", "RESULTING"],
            icd="305.91",
        )
        SC.signon()
        SC.makeapp_bypat(clinic=tclinic, patient="333224444", datetime=time, fresh="No", prevCO="yes")
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#19
0
def sc_test009(resultlog, result_dir, namespace):
    """
    This test makes appointments with variable length and makes appointment in distant future for EWL
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_var(clinic="CLInicA", patient="323678904", datetime="t+7@7AM", fresh="No")
        SC.signon()
        SC.verapp_bypat(patient="323678904", vlist=["THIRTEEN,PATIENT M", "Clinica", "7:00", "Future"])
        SC.signon()
        SC.makeapp_var(clinic="CLInicA", patient="323678904", datetime="t+122@6AM", fresh="No")
        SC.signon()
        SC.makeapp_var(clinic="CLInicA", patient="323678904", datetime="t+10@4AM", fresh="No", nextaval="No")
        SC.signon()
        SC.verapp_bypat(
            patient="323678904",
            vlist=["THIRTEEN,PATIENT M", "Clinica", "4:00", "Future"],
            ALvlist=["THIRTEEN,PATIENT M", "Clinicx", "Clinica", "Clinica"],
            EPvlist=["THIRTEEN,PATIENT M", "CLINICX", "8904", "FUTURE", "SCHEDULED", "REGULAR"],
        )
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#20
0
def sc_test010(resultlog, result_dir, namespace):
    """
    This test makes appointments and saves demographics
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        # this signon() and fix_demographics() is a workaround for gtm bug
        if VistA.type == "GTM":
            SC.signon()
            SC.fix_demographics(
                clinic="CLInicA",
                patient="323123456",
                dgrph=[
                    ["COUNTRY", ""],
                    ["STREET ADDRESS", ""],
                    ["ZIP", "20005"],
                    ["CITY", "WASHINGTON"],
                    ["PHONE NUMBER", ""],
                    ["PHONE NUMBER", ""],
                    ["BAD ADDRESS INDICATOR", ""],
                    ["save the above changes", "yes"],
                ],
            )
        #
        SC.signon()
        tclinic = SC.getclinic()
        SC.set_demographics(
            clinic="CLInicA",
            patient="323123456",
            dgrph=[
                ["COUNTRY", ""],
                ["STREET ADDRESS", "123 SMITH STREET"],
                ["STREET ADDRESS", ""],
                ["ZIP", "20005"],
                ["CITY", "WASHINGTON"],
                ["PHONE NUMBER", "2021112222"],
                ["PHONE NUMBER", ""],
                ["BAD ADDRESS INDICATOR", ""],
                ["save the above changes", "yes"],
                ["Press ENTER to continue", ""],
                ["SEX", "MALE"],
                ["Select ETHNICITY", "N"],
                ["Select RACE", "Black"],
                ["new RACE INFORMATION", "Yes"],
                ["RACE", ""],
                ["MARITAL STATUS", "MARRIED"],
                ["RELIGIOUS PREFERENCE", "CELTICISM"],
                ["TEMPORARY ADDRESS ACTIVE", "NO"],
                ["PHONE NUMBER", ""],
                ["PAGER NUMBER", ""],
                ["EMAIL ADDRESS", ""],
            ],
        )
        SC.signon()
        SC.get_demographics(
            patient="323123456",
            vlist=[
                ["COUNTRY: UNITED STATES", ""],
                ["123 SMITH STREET", ""],
                ["STREET ADDRESS", ""],
                ["20005", ""],
                ["CITY: WASHINGTON", ""],
                ["2021112222", ""],
                ["PHONE NUMBER", ""],
                ["BAD ADDRESS INDICATOR", ""],
                ["save the above changes", "no"],
                ["Press ENTER to continue", ""],
                ["SEX: MALE", ""],
                ["Select ETHNICITY INFORMATION: NOT HISPANIC OR LATINO", ""],
                ["ETHNICITY: NOT HISPANIC OR LATINO", ""],
                ["Select RACE INFORMATION: BLACK OR AFRICAN AMERICAN", ""],
                ["RACE: BLACK OR AFRICAN AMERICAN", ""],
                ["Select RACE INFORMATION", ""],
                ["MARITAL STATUS", "MARRIED"],
                ["RELIGIOUS PREFERENCE: CELTICISM", ""],
                ["ADDRESS ACTIVE", ""],
                ["PHONE NUMBER", ""],
                ["PAGER NUMBER", ""],
                ["EMAIL ADDRESS", ""],
            ],
        )
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#21
0
def sc_test008(resultlog, result_dir, namespace):
    """
    This test makes future appointments and verifies, and also checks case sensitivity (cLiNiCx, ClInIcX, etc.)
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic="cLiNiCx", patient="323678904", datetime="t+5@8PM")
        SC.signon()
        SC.verapp_bypat(patient="323678904", vlist=["THIRTEEN,PATIENT M", "Clinicx", "Future"])
        SC.signon()
        SC.makeapp_bypat(clinic="cLiNiCx", patient="222559876", datetime="t+6@8PM", CLfirst="Yes")
        SC.signon()
        SC.verapp_bypat(
            patient="222559876", vlist=["SIXTEEN,PATIENT P", "Clinicx", "Future"], CInum=["1", "1"], COnum=["1", "2"]
        )
        SC.signon()
        SC.verapp(
            clinic="cLiNiCx",
            vlist=["Thirteen,Patient M", "Future", "Sixteen,Patient P", "Future"],
            CInum=["2", "1"],
            COnum=["2", "2"],
        )
        SC.signon()
        SC.canapp(clinic="cLiNiCx", mult="2", future=1, rebook=1)
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#22
0
def sc_test007(resultlog, result_dir, namespace):
    """
    This is a basic appointment, similar to sc_test001 but specifying patient name not clinic at first prompt
    This test will also use the space-bar to check recall feature works.
    Make an Appointment, Check in, Check Out
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic=tclinic, patient="656454321", datetime=time, loopnum=2)
        SC.signon()
        SC.use_sbar(clinic=tclinic, patient="656454321", fresh="No")
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic, vlist=["Five", str(hour), "CHECKED-IN:"], mult="5")
        SC.signon()
        SC.checkout(
            clinic=tclinic,
            vlist1=["Five", str(hour), "Checked In"],
            vlist2=["305.91", "OTHER DRUG", "RESULTING"],
            icd="305.91",
            mult="5",
        )
        SC.signon()
        SC.ver_actions(
            clinic=tclinic,
            patient="4444",
            PRvlist=["THREE,PATIENT C", "ALEXANDER,ROBERT"],
            DXvlist=["305.91", "OTHER DRUG", "RESULTING"],
            CPvlist=["THREE,PATIENT C"],
        )
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#23
0
def sc_test003(resultlog, result_dir, namespace):
    """
    This tests clinic features such as change clinic, change date-range,
    expand the entry, add and edit, and Patient demographics
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        SC.signon()
        tclinic = SC.getclinic()
        SC.chgclinic()
        SC.signon()
        SC.chgdaterange(clinic=tclinic)
        SC.signon()
        SC.teaminfo(clinic=tclinic)
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
def sc_test007(test_suite_details):
    '''Basic Apptments, similar to sc_test001 but specifying patient name not clinic at first prompt
       This test will also use the space-bar to check recall feature works
        Make an Appointment, Check in, Check Out'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic=tclinic, patient='656454321', datetime=time)
        SC.signon()
        SC.use_sbar(clinic=tclinic, patient='656454321')
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic, vlist=['Five', str(hour), 'CHECKED-IN:'], mult='4')
        SC.signon()
        SC.checkout(clinic=tclinic, vlist1=['Five', str(hour), 'Checked In'], vlist2=['305.91', 'OTHER DRUG', 'RESULTING'], icd='305.91', mult='4')
        SC.signoff()

        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#25
0
def sc_test003(test_suite_details):
    '''
    This tests clinic features such as change clinic, change date-range,
    expand the entry, add and edit, and Patient demographics
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        SC.signon()
        tclinic = SC.getclinic()
        SC.chgclinic()
        SC.signon()
        SC.chgdaterange(clinic=tclinic)
        SC.signon()
        SC.teaminfo(clinic=tclinic)
        SC.signoff()

        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#26
0
def sc_test008(resultlog, result_dir, namespace):
    '''Make future appointments and verify, and use CLINICX and check use of case sensitivity (cLiNiCx, ClInIcX, etc.)'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic='cLiNiCx',
                         patient='323678904',
                         datetime='t+5@8PM')
        SC.signon()
        SC.verapp_bypat(patient='323678904',
                        vlist=['THIRTEEN,PATIENT M', 'Clinicx', 'Future'])
        SC.signon()
        SC.makeapp_bypat(clinic='cLiNiCx',
                         patient='222559876',
                         datetime='t+6@8PM',
                         CLfirst='Yes')
        SC.signon()
        SC.verapp_bypat(patient='222559876',
                        vlist=['SIXTEEN,PATIENT P', 'Clinicx', 'Future'],
                        CInum=['1', '1'],
                        COnum=['1', '2'])
        SC.signon()
        SC.verapp(clinic='cLiNiCx',
                  vlist=[
                      'Thirteen,Patient M', 'Future', 'Sixteen,Patient P',
                      'Future'
                  ],
                  CInum=['2', '1'],
                  COnum=['2', '2'])
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#27
0
def sc_test005(test_suite_details):
    '''
    This test checks a patient into a clinic, then discharges him, then deletes his checkout
    '''
    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)
        SC = SCActions(VistA)
        SC.signon()
        tclinic = SC.getclinic()
        SC.enroll(clinic=tclinic, patient='543236666')
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.makeapp(clinic=tclinic, patient='543236666', datetime=time)
        SC.signon()
        SC.discharge(clinic=tclinic, patient='543236666', appnum='3')
        SC.signon()
        SC.checkout(clinic=tclinic, vlist1=['One', 'No Action'],
                    vlist2=['RESULTING'], icd='305.91', icd10='F18.10', mult='4')
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        SC.deletecheckout(clinic=tclinic, appnum='3')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#28
0
def sc_test010(resultlog, result_dir, namespace):
    '''Make appts and save demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        # this signon() and fix_demographics() is a workaround for gtm bug
        if VistA.type == 'GTM':
            SC.signon()
            SC.fix_demographics(clinic='CLInicA',
                                patient='323123456',
                                dgrph=[['COUNTRY', ''], ['STREET ADDRESS', ''],
                                       ['ZIP', '20005'],
                                       ['CITY', 'WASHINGTON'],
                                       ['PHONE NUMBER', ''],
                                       ['PHONE NUMBER', ''],
                                       ['BAD ADDRESS INDICATOR', ''],
                                       ['save the above changes', 'yes']])
        #
        SC.signon()
        tclinic = SC.getclinic()
        SC.set_demographics(clinic='CLInicA',
                            patient='323123456',
                            dgrph=[['COUNTRY', ''],
                                   ['STREET ADDRESS', '123 SMITH STREET'],
                                   ['STREET ADDRESS', ''], ['ZIP', '20005'],
                                   ['CITY', 'WASHINGTON'],
                                   ['PHONE NUMBER', '2021112222'],
                                   ['PHONE NUMBER', ''],
                                   ['BAD ADDRESS INDICATOR', ''],
                                   ['save the above changes', 'yes'],
                                   ['Press ENTER to continue', ''],
                                   ['SEX', 'MALE'], ['Select ETHNICITY', 'N'],
                                   ['Select RACE', 'Black'],
                                   ['new RACE INFORMATION', 'Yes'],
                                   ['RACE', ''], ['MARITAL STATUS', 'MARRIED'],
                                   ['RELIGIOUS PREFERENCE', 'CELTICISM'],
                                   ['TEMPORARY ADDRESS ACTIVE', 'NO'],
                                   ['PHONE NUMBER', ''], ['PAGER NUMBER', ''],
                                   ['EMAIL ADDRESS', '']])
        SC.signon()
        SC.get_demographics(
            patient='323123456',
            vlist=[['COUNTRY: UNITED STATES', ''], ['123 SMITH STREET', ''],
                   ['STREET ADDRESS', ''], ['20005', ''],
                   ['CITY: WASHINGTON', ''], ['2021112222', ''],
                   ['PHONE NUMBER', ''], ['BAD ADDRESS INDICATOR', ''],
                   ['save the above changes', 'no'],
                   ['Press ENTER to continue', ''], ['SEX: MALE', ''],
                   [
                       'Select ETHNICITY INFORMATION: NOT HISPANIC OR LATINO',
                       ''
                   ], ['ETHNICITY: NOT HISPANIC OR LATINO', ''],
                   ['Select RACE INFORMATION: BLACK OR AFRICAN AMERICAN', ''],
                   ['RACE: BLACK OR AFRICAN AMERICAN', ''],
                   ['Select RACE INFORMATION', ''],
                   ['MARITAL STATUS', 'MARRIED'],
                   ['RELIGIOUS PREFERENCE: CELTICISM', ''],
                   ['ADDRESS ACTIVE', ''], ['PHONE NUMBER', ''],
                   ['PAGER NUMBER', ''], ['EMAIL ADDRESS', '']])
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#29
0
def sc_test007(test_suite_details):
    '''
    This is a basic appointment, similar to sc_test001 but specifying patient name not clinic at first prompt
    This test will also use the space-bar to check recall feature works.
    Make an Appointment, Check in, Check Out
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic=tclinic, patient='656454321', datetime=time)
        SC.signon()
        SC.use_sbar(clinic=tclinic, patient='656454321', fresh='No')
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic, vlist=['Five', str(hour), 'CHECKED'], mult='5')
        SC.signon()
        SC.checkout(clinic=tclinic, vlist1=['Five', str(hour), 'Checked In'],
                    vlist2=['RESULTING'], icd='305.91', icd10='F18.10', mult='5')
        SC.signon()
        SC.ver_actions(clinic=tclinic, patient='4444',
                       PRvlist=['THREE,PATIENT C', 'ALEXANDER,ROBERT'],
                       DXvlist=['RESULTING'],
                       CPvlist=['THREE,PATIENT C'])
        SC.signoff()

        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#30
0
def sc_test003(resultlog, result_dir, namespace):
    '''This tests clinic features such as change clinic, change daterange,
     expand the entry, add and edit, and Patient demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        SC.signon()
        tclinic = SC.getclinic()
        SC.chgclinic()
        SC.signon()
        SC.chgdaterange(clinic=tclinic)
        SC.signon()
        SC.teaminfo(clinic=tclinic)
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#31
0
def sc_test004(resultlog, result_dir, namespace):
    """
    This tests clinic features such as expand the entry, add and edit, and Patient demographics
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime(plushour=1)
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(clinic=tclinic, patient="345238901", datetime=time)
        SC.signon()
        SC.patdem(clinic=tclinic, name="Ten", mult="2")
        SC.signon()
        SC.expandentry(
            clinic=tclinic,
            vlist1=["TEN", "SCHEDULED", "30"],
            vlist2=["Event", "Date", "User", "TESTMASTER"],
            vlist3=["NEXT AVAILABLE", "NO", "0"],
            vlist4=["1933", "MALE", "UNANSWERED"],
            vlist5=["Combat Veteran:", "No check out information"],
            mult="3",
        )
        SC.signon()
        SC.addedit(clinic=tclinic, name="354623902", icd="305.91")
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#32
0
def sc_test004(test_suite_details):
    '''
    This tests clinic features such as expand the entry, add and edit, and Patient demographics
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(clinic=tclinic, patient='345238901', datetime=time)
        SC.signon()
        SC.patdem(clinic=tclinic, name='Ten', mult='2')
        SC.signon()
        SC.expandentry(clinic=tclinic, vlist1=['TEN', 'SCHEDULED', '30'],
                       vlist2=['Event', 'Date', 'User', 'USER'],
                       vlist3=['NEXT AVAILABLE', 'NO', '0'], vlist4=['1933', 'MALE', 'UNANSWERED'],
                       vlist5=['Combat Veteran:', 'No check out information'], mult='3')
        SC.signon()
        SC.addedit(clinic=tclinic, name='354623902', icd='305.91', icd10='F18.10')
        SC.signoff()

        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#33
0
def sc_test014(resultlog, result_dir, namespace):
    """
    This test verifies clinic setup parameters
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        SC.signon()
        SC.ma_clinicchk(
            patient="333224444",
            clinic="CLInicB",
            exp_apptype="EMPLOYEE",
            datetime="t+3@05PM",
            cslots="[2]",
            cxrays="YES",
            fresh="No",
            cvar="Yes",
            elig="Yes",
        )
        SC.signon()
        SC.ma_clinicchk(
            patient="333224444",
            clinic="CLInicC",
            exp_apptype="RESEARCH",
            datetime="t+4@04pm",
            cslots="[4]",
            cxrays="",
            fresh="No",
            elig="Yes",
        )
        SC.signon()
        SC.ma_clinicchk(
            patient="333224444",
            clinic="CLInicD",
            exp_apptype="REGULAR",
            datetime="t+5@03pm",
            cslots="[4]",
            cxrays="",
            fresh="No",
            elig="Yes",
        )
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#34
0
def sc_test002(resultlog, result_dir, namespace):
    """
    Test basic appointment management options.
    Make an Appointment (Scheduled and Unscheduled),
    record a No-Show, Cancel an appointment and change patients
    """
    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)
        SC = SCActions(VistA, scheduling="Scheduling")
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(clinic=tclinic, patient="655447777", datetime=time)
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.unschvisit(clinic=tclinic, patient="345678233", patientname="Twelve")
        SC.signon()
        SC.noshow(clinic=tclinic, appnum="3")
        SC.signon()
        SC.canapp(clinic=tclinic, mult="1")
        SC.signon()
        SC.chgpatient(
            clinic=tclinic, patient1="345678233", patient2="345238901", patientname1="Twelve", patientname2="Ten"
        )
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
示例#35
0
def sc_test014(test_suite_details):
    '''
    This test verifies clinic setup parameters
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        SC.ma_clinicchk(patient='333224444', clinic='CLInicB', exp_apptype='EMPLOYEE', datetime='t+3@05PM',
                        cslots='[2]', cxrays='YES', fresh='No', cvar='Yes', elig='Yes')
        SC.signon()
        SC.ma_clinicchk(patient='333224444', clinic='CLInicC', exp_apptype='RESEARCH', datetime='t+4@04pm',
                        cslots='[4]', cxrays='', fresh='No', elig='Yes')
        SC.signon()
        SC.ma_clinicchk(patient='333224444', clinic='CLInicD', exp_apptype='REGULAR', datetime='t+5@03pm',
                        cslots='[4]', cxrays='', fresh='No', elig='Yes')
        SC.signoff()
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#36
0
def sc_test008(test_suite_details):
    '''
    This test makes future appointments and verifies, and also checks case sensitivity (cLiNiCx, ClInIcX, etc.)
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic='cLiNiCx', patient='323678904', datetime='t+5@8PM')
        SC.signon()
        SC.verapp_bypat(patient='323678904', vlist=['THIRTEEN,PATIENT M', 'Clinicx', 'Future'])
        SC.signon()
        SC.makeapp_bypat(clinic='cLiNiCx', patient='222559876', datetime='t+6@8PM', CLfirst='Yes')
        SC.signon()
        SC.verapp_bypat(patient='222559876', vlist=['SIXTEEN,PATIENT P', 'Clinicx', 'Future'],
                        CInum=['1', '1'], COnum=['1', '2'])
        SC.signon()
        SC.verapp(clinic='cLiNiCx',
                  vlist=['Thirteen,Patient M', 'Future', 'Sixteen,Patient P', 'Future'],
                  CInum=['2', '1'], COnum=['2', '2'])
        SC.signon()
        SC.canapp(clinic='cLiNiCx', mult='2', future=1, rebook=1)
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#37
0
def sc_test004(test_suite_details):
    '''This tests clinic features such as expand the entry, add and edit, and Patient demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.makeapp(patient='345238901', datetime=time)
        SC.signon()
        SC.patdem(name='Ten', mult='2')
        SC.signon()
        SC.expandentry(vlist1=['TEN', 'SCHEDULED', '30'],
                       vlist2=['Event', 'Date', 'User', 'TESTMASTER'],
                       vlist3=['NEXT AVAILABLE', 'NO', '0'],
                       vlist4=['1933', 'MALE', 'UNANSWERED'],
                       vlist5=['Combat Veteran:', 'No check out information'],
                       mult='2')
        SC.signon()
        SC.addedit(name='345623902', icd='305.91')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#38
0
def sc_test010(test_suite_details):
    '''
    This test makes appointments and saves demographics
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        # this signon() and fix_demographics() is a workaround for gtm bug
        if not (os.environ.get('gtm_zquit_anyway') == "1") and (VistA.type == 'GTM'):
            SC.signon()
            SC.fix_demographics(clinic='CLInicA', patient='323123456',
                                dgrph=[['COUNTRY', ''],
                                     ['STREET ADDRESS', ''],
                                     ['ZIP', '20005'],
                                     ['CITY', 'WASHINGTON'],
                                     ['PHONE NUMBER', ''],
                                     ['PHONE NUMBER', ''],
                                     ['BAD ADDRESS INDICATOR', ''],
                                     ['save the above changes', 'yes']])
        #
        SC.signon()
        tclinic = SC.getclinic()
        SC.set_demographics(clinic='CLInicA', patient='323123456',
                        dgrph=[['COUNTRY', ''],
                                 ['STREET ADDRESS', '123 SMITH STREET'],
                                 ['STREET ADDRESS', ''],
                                 ['ZIP', '20005'],
                                 ['CITY', 'WASHINGTON'],
                                 ['PHONE NUMBER', '2021112222'],
                                 ['PHONE NUMBER', ''],
                                 ['BAD ADDRESS INDICATOR', ''],
                                 ['save the above changes', 'yes'],
                                 ['Press ENTER to continue', ''],
                                 ['SEX', 'MALE'] ,
                                 ['Select ETHNICITY', 'N'],
                                 ['Select RACE', 'Black'],
                                 ['new RACE INFORMATION', 'Yes'],
                                 ['RACE', ''],
                                 ['MARITAL STATUS', 'MARRIED'],
                                 ['RELIGIOUS PREFERENCE', 'CELTICISM'],
                                 ['TEMPORARY ADDRESS ACTIVE', 'NO'],
                                 ['PHONE NUMBER', ''],
                                 ['PAGER NUMBER', ''],
                                 ['EMAIL ADDRESS', '']])
        SC.signon()
        SC.get_demographics(patient='323123456',
                        vlist=[['COUNTRY: UNITED STATES', ''],
                                 ['123 SMITH STREET', ''],
                                 ['STREET ADDRESS', ''],
                                 ['20005', ''],
                                 ['CITY: WASHINGTON', ''],
                                 ['2021112222', ''],
                                 ['PHONE NUMBER', ''],
                                 ['BAD ADDRESS INDICATOR', ''],
                                 ['save the above changes', 'no'],
                                 ['Press ENTER to continue', ''],
                                 ['SEX: MALE', ''],
                                 ['Select ETHNICITY INFORMATION: NOT HISPANIC OR LATINO', ''],
                                 ['ETHNICITY: NOT HISPANIC OR LATINO', ''],
                                 ['Select RACE INFORMATION: BLACK OR AFRICAN AMERICAN', ''],
                                 ['RACE: BLACK OR AFRICAN AMERICAN', ''],
                                 ['Select RACE INFORMATION', ''],
                                 ['MARITAL STATUS', 'MARRIED'],
                                 ['RELIGIOUS PREFERENCE: CELTICISM', ''],
                                 ['ADDRESS ACTIVE', ''],
                                 ['PHONE NUMBER', ''],
                                 ['PAGER NUMBER', ''],
                                 ['EMAIL ADDRESS', '']])
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#39
0
def sc_test005(test_suite_details):
    '''This test checks a patient into a clinic, then discharges him, then deletes his checkout'''
    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)
        SC = SCActions(VistA)
        SC.signon()
        SC.enroll(patient='543236666')
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.makeapp(patient='543236666', datetime=time)
        SC.signon()
        SC.discharge(patient='543236666', appnum='3')
        SC.signon()
        SC.checkout(vlist1=['One', 'No Action'],
                    vlist2=['305.91', 'RESULTING'],
                    icd='305.91',
                    mult='3')
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        SC.deletecheckout(appnum='3')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#40
0
def sc_test001(test_suite_details):
    '''
    Test for basic appointment management options.
    Make an Appointment, Check in, Check Out
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(patient='333224444', clinic=tclinic, datetime=time)
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic, vlist=['Three', str(hour), 'CHECKED'])
        SC.signon()
        SC.checkout(clinic=tclinic, vlist1=['Three', str(hour), 'Checked In'],
                    vlist2=['RESULTING'], icd='305.91', icd10='F18.10')
        SC.signon()
        SC.makeapp_bypat(clinic=tclinic, patient='333224444', datetime=time, fresh='No', prevCO='yes')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#41
0
def sc_test002(test_suite_details):
    '''Basic appointment managment options
    Make an Appointment (Scheduled and Unscheduled),
    record a No-Show, Cancel an appointment and change patients'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        SC.makeapp(patient='655447777', datetime=time)
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.unschvisit(patient='345678233', patientname='Twelve')
        SC.signon()
        SC.noshow(appnum='3')
        SC.signon()
        SC.canapp(mult='1')
        SC.signon()
        SC.chgpatient(patient1='345678233',
                      patient2='345238901',
                      patientname1='Twelve',
                      patientname2='Ten')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#42
0
def sc_test004(resultlog, result_dir, namespace):
    '''This tests clinic features such as expand the entry, add and edit, and Patient demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(clinic=tclinic, patient='345238901', datetime=time)
        SC.signon()
        SC.patdem(clinic=tclinic, name='Ten', mult='2')
        SC.signon()
        SC.expandentry(clinic=tclinic,
                       vlist1=['TEN', 'SCHEDULED', '30'],
                       vlist2=['Event', 'Date', 'User', 'TESTMASTER'],
                       vlist3=['NEXT AVAILABLE', 'NO', '0'],
                       vlist4=['1933', 'MALE', 'UNANSWERED'],
                       vlist5=['Combat Veteran:', 'No check out information'],
                       mult='3')
        SC.signon()
        SC.addedit(clinic=tclinic, name='354623902', icd='305.91')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#43
0
def sc_test003(resultlog, result_dir):
    '''This tests clinic features such as change clinic, change daterange,
     expand the entry, add and edit, and Patient demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        SC.signon()
        SC.chgclinic()
        SC.signon()
        SC.chgdaterange()
        SC.signon()
        SC.teaminfo()
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#44
0
def sc_test002(test_suite_details):
    '''Test basic appointment management options.
    Make an Appointment (Scheduled and Unscheduled),
    record a No-Show, Cancel an appointment and change patients
    '''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(clinic=tclinic, patient='655447777', datetime=time)
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.unschvisit(clinic=tclinic, patient='345678233', patientname='Twelve')
        SC.signon()
        SC.noshow(clinic=tclinic, appnum='3')
        SC.signon()
        SC.canapp(clinic=tclinic, mult='1')
        SC.signon()
        SC.chgpatient(clinic=tclinic, patient1='345678233', patient2='345238901',
                      patientname1='Twelve', patientname2='Ten')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#45
0
def sc_test001(resultlog, result_dir, namespace):
    '''Basic appointment managment options
    Make an Appointment, Check in, Check Out'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp(patient='333224444', clinic=tclinic, datetime=time)
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic, vlist=['Three', str(hour), 'CHECKED-IN:'])
        SC.signon()
        SC.checkout(clinic=tclinic,
                    vlist1=['Three', str(hour), 'Checked In'],
                    vlist2=['305.91', 'OTHER DRUG', 'RESULTING'],
                    icd='305.91')
        SC.signon()
        SC.makeapp_bypat(clinic=tclinic,
                         patient='333224444',
                         datetime=time,
                         fresh='No',
                         prevCO='yes')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#46
0
def sc_test001(test_suite_details):
    '''Basic appointment managment options
    Make an Appointment, Check in, Check Out'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        SC.makeapp(patient='333224444', datetime=time)
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(vlist=['Three', str(hour), 'CHECKED-IN:'])
        SC.signon()
        SC.checkout(vlist1=['Three', str(hour), 'Checked In'],
                    vlist2=['305.91', 'OTHER DRUG', 'RESULTING'],
                    icd='305.91')
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#47
0
def sc_test005(resultlog, result_dir, namespace):
    '''This test checks a patient into a clinic, then discharges him, then deletes his checkout'''
    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)
        SC = SCActions(VistA)
        SC.signon()
        tclinic = SC.getclinic()
        SC.enroll(clinic=tclinic, patient='543236666')
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime(plushour=1)
        SC.signon()
        SC.makeapp(clinic=tclinic, patient='543236666', datetime=time)
        SC.signon()
        SC.discharge(clinic=tclinic, patient='543236666', appnum='3')
        SC.signon()
        SC.checkout(clinic=tclinic,
                    vlist1=['One', 'No Action'],
                    vlist2=['305.91', 'RESULTING'],
                    icd='305.91',
                    mult='4')
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        SC.deletecheckout(clinic=tclinic, appnum='3')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#48
0
def sc_test006(resultlog, result_dir, namespace):
    '''This test will exercise the wait list functionality'''
    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)
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        tclinic = SC.getclinic()
        SC.waitlistentry(clinic=tclinic, patient='323123456')
        SC.waitlistdisposition(clinic=tclinic, patient='323123456')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#49
0
def sc_test007(resultlog, result_dir, namespace):
    '''Basic Apptments, similar to sc_test001 but specifying patient name not clinic at first prompt
       This test will also use the space-bar to check recall feature works
        Make an Appointment, Check in, Check Out'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        time = SC.schtime()
        SC.signon()
        tclinic = SC.getclinic()
        SC.makeapp_bypat(clinic=tclinic,
                         patient='656454321',
                         datetime=time,
                         loopnum=2)
        SC.signon()
        SC.use_sbar(clinic=tclinic, patient='656454321', fresh='No')
        time = SC.schtime(plushour=1)
        now = datetime.datetime.now()
        hour = now.hour + 1
        SC.signon()
        SC.checkin(clinic=tclinic,
                   vlist=['Five', str(hour), 'CHECKED-IN:'],
                   mult='5')
        SC.signon()
        SC.checkout(clinic=tclinic,
                    vlist1=['Five', str(hour), 'Checked In'],
                    vlist2=['305.91', 'OTHER DRUG', 'RESULTING'],
                    icd='305.91',
                    mult='5')
        SC.signon()
        SC.ver_actions(clinic=tclinic,
                       patient='4444',
                       PRvlist=['THREE,PATIENT C', 'ALEXANDER,ROBERT'],
                       DXvlist=['305.91', 'OTHER DRUG', 'RESULTING'],
                       CPvlist=['THREE,PATIENT C'])
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
示例#50
0
def sc_test003(test_suite_details):
    '''This tests clinic features such as change clinic, change daterange,
     expand the entry, add and edit, and Patient demographics'''
    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)
        SC = SCActions(VistA, scheduling='Scheduling')
        SC.signon()
        SC.chgclinic()
        SC.signon()
        SC.chgdaterange()
        SC.signon()
        SC.teaminfo()
        SC.signoff()
        test_driver.post_test_run(test_suite_details)
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
示例#51
0
def sc_test011(resultlog, result_dir, namespace):
    '''
    This makes appointments via Multiple Clinic Display and then verifies the appointments
    '''
    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)
        SC = SCActions(VistA, user='******', code='1Doc!@#$')
        SC.signon()
        SC.multiclinicdisplay(cliniclist=['Clinic1', 'ClinicX'], patient='656454321', timelist=['7', '5'], pending=None)
        SC.gotoApptMgmtMenu()
        SC.verapp_bypat(patient='656454321', vlist=['Clinic1', '7:00', 'Future', 'Clinicx', '17:00', 'Future'],)
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))