當前位置: 首頁>>代碼示例>>Python>>正文


Python Actions.makeapp方法代碼示例

本文整理匯總了Python中Actions.Actions.makeapp方法的典型用法代碼示例。如果您正苦於以下問題:Python Actions.makeapp方法的具體用法?Python Actions.makeapp怎麽用?Python Actions.makeapp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Actions.Actions的用法示例。


在下文中一共展示了Actions.makeapp方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: sc_test012

# 需要導入模塊: from Actions import Actions [as 別名]
# 或者: from Actions.Actions import makeapp [as 別名]
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='SM1234', 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='fakedoc1', code='[email protected]#$')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', 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='fakejon1', code='1SWUSH12345!!')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', fresh='No', badtimeresp='overbook')
        SC.signoff()
    except TestHelper.TestError, e:
        test_driver.exception_handling(test_suite_details, e)
開發者ID:adulenzy,項目名稱:EthioEHR,代碼行數:37,代碼來源:SCMain01_suite.py

示例2: sc_test012

# 需要導入模塊: from Actions import Actions [as 別名]
# 或者: from Actions.Actions import makeapp [as 別名]
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='SM1234', 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='fakedoc1', code='[email protected]#$')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', 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='fakejon1', code='1SWUSH12345!!')
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', fresh='No', badtimeresp='overbook')
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write('\nEXCEPTION ERROR:' + str(e))
        logging.error('*****exception*********' + str(e))
開發者ID:chuck-sylvester,項目名稱:VistA,代碼行數:37,代碼來源:SC_Suite001.py

示例3: sc_test012

# 需要導入模塊: from Actions import Actions [as 別名]
# 或者: from Actions.Actions import makeapp [as 別名]
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="SM1234", 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="fakedoc1", code="[email protected]#$")
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient="333224444", clinic="Clinic1", datetime="[email protected]", 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="fakejon1", code="1SWUSH12345!!")
        SC.signon()
        SC.gotoApptMgmtMenu()
        SC.makeapp(patient="333224444", clinic="Clinic1", datetime="[email protected]", fresh="No", badtimeresp="overbook")
        SC.signoff()
    except TestHelper.TestError, e:
        resultlog.write("\nEXCEPTION ERROR:" + str(e))
        logging.error("*****exception*********" + str(e))
開發者ID:jasonli2000,項目名稱:VistA,代碼行數:39,代碼來源:SC_Suite001.py


注:本文中的Actions.Actions.makeapp方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。