高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@isTest
public class NFM201ControllerTest {
 
    static testMethod void myUnitTest(){
        List<RecordType> rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        if (rectCo.size() == 0) {
            return;
        }
        List<RecordType> rectSct = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '戦略科室分類 呼吸科'];
        if (rectSct.size() == 0) {
            return;
        }
        List<RecordType> rectDpt = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '診療科 消化科'];
        if (rectDpt.size() == 0) {
            return;
        }
        NFM001Controller.isRunning = true;
        // テストデータ
        Account company = new Account();
        company.RecordTypeId = rectCo[0].Id;
        company.Name         = 'NFM007TestCompany';
        upsert company;
        Account section = new Account();
        section.RecordTypeId = rectSct[0].Id;
        section.Name         = '*';
        section.Department_Class_Label__c = '消化科';
        section.ParentId                  = company.Id;
        section.Hospital_Department_Class__c = company.Id;
        upsert section;
        Account depart = new Account();
        depart.RecordTypeId = rectDpt[0].Id;
        depart.Name         = '*';
        depart.Department_Name__c  = 'NFM007TestDepart';
        depart.ParentId            = section.Id;
        depart.Department_Class__c = section.Id;
        depart.Hospital__c         = company.Id;
        upsert depart;
 
        BatchIF_Log__c BIlog = new BatchIF_Log__c();
        //BIlog.Name = '20170001431511';
        BIlog.ErrorLog__c = 'userID is null';
        BIlog.Log__c = 'DB800712';
        insert BIlog;
 
        BatchIF_Transfer__c BItransfer = new BatchIF_Transfer__c();
        BItransfer.Table__c = 'Account';//表
        BItransfer.Column__c = 'OCM_Category__c';//项目
        BItransfer.External_Value__c = 'NORMAL';//外部值
        BItransfer.Internal_Value__c = '一般';//内部值
        BItransfer.Dropped_Flag__c = false;//是否无效
        insert BItransfer;
 
        Test.startTest();
        //NFM201Controller controller = new NFM201Controller();
        List<String> accIds = new List<String>();
        accIds.add(company.ID);
        Map<String,String> purposeOfAdviceMap = new Map<String,String>();
        purposeOfAdviceMap.put(BIlog.ID,'病理');
        Map<String,String> needSendRectMap = new Map<String,String>();
        needSendRectMap.put(company.RecordTypeId,'病院');
        Map<String,String> needQuolifiedMap = new Map<String,String>();
        String TestID = '9A00901';
        String TestID01 = '';
        NFM201Controller.callout(BIlog.ID,accIds,purposeOfAdviceMap,needSendRectMap,needQuolifiedMap);
        NFM201Controller.callout(TestID,accIds,purposeOfAdviceMap,needSendRectMap,needQuolifiedMap);
        NFM201Controller.callout(TestID01,accIds,purposeOfAdviceMap,needSendRectMap,needQuolifiedMap);
        Test.stopTest();
    }
}