liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/**
 * This class contains unit tests for validating the behavior of Apex classes
 * and triggers.
 *
 * Unit tests are class methods that verify whether a particular piece
 * of code is working properly. Unit test methods take no arguments,
 * commit no data to the database, and are flagged with the testMethod
 * keyword in the method definition.
 *
 * All test methods in an organization are executed whenever Apex code is deployed
 * to a production organization to confirm correctness, ensure code
 * coverage, and prevent regressions. All Apex classes are
 * required to have at least 75% code coverage in order to be deployed
 * to a production organization. In addition, all triggers must have some code coverage.
 * 
 * The @isTest class annotation indicates this class only contains test
 * methods. Classes defined with the @isTest annotation do not count against
 * the organization size limit for all Apex scripts.
 *
 * See the Apex Language Reference for more information about Testing and Code Coverage.
 */
@isTest
private class XinEventOpportunityPileUpTest {
 
    static testMethod void myUnitTest() {
        Oly_TriggerHandler.bypass('PowerBIBaseHandler');
        Opportunity opp = new Opportunity();
        opp.Name = 'aiueo';
        opp.StageName = 'contact';
        opp.CloseDate = Date.today();
        insert opp;
        
        RecordType rectCo = [select Id from RecordType where IsActive = true and SobjectType = 'Account' and Name = '病院'];
        RecordType rtDoc = [select id from RecordType where IsActive = true and DeveloperName =:'Doctor'];
        
        Account acc = new Account();
        acc.RecordTypeId = rectCo.Id;
        acc.Name = '病院テスト1';
        insert acc;
        
        Contact con = new Contact();
        con.Doctor_Division1__c = '院长';
        con.LastName = 'yuanzhang';
        con.RecordTypeId = rtDoc.id;
        con.AccountId = acc.Id;
        Contact con2 = new Contact();
        con2.Doctor_Division1__c = '副主任';
        con2.LastName = 'zhuren';
        con2.RecordTypeId = rtDoc.id;
        con2.AccountId = acc.Id;
        insert new Contact[] {con, con2};
        
        Date dtDate = System.today().addDays(-4);
        Datetime dt = DateTime.now().addDays(-4);
        Daily_Report__c dr = new Daily_Report__c(reported_date__c = dtDate, Status__c = '申請中', Reporter__c = Userinfo.getUserId());
        Daily_Report__c dr2 = new Daily_Report__c(reported_date__c = dtDate.addDays(2), Status__c = '申請中', Reporter__c = Userinfo.getUserId());
        Daily_Report__c dr3 = new Daily_Report__c(reported_date__c = dtDate.addDays(4), Status__c = '作成中', Reporter__c = Userinfo.getUserId());
        Daily_Report__c dr4 = new Daily_Report__c(reported_date__c = dtDate.addDays(3), Status__c = '未承認', Reporter__c = Userinfo.getUserId());
        insert new Daily_Report__c[] {dr, dr2, dr3, dr4};
        Event__c ec = new Event__c(
            Daily_Report__c = dr.Id,
            StartDateTime__c = System.now(),
            EndDateTime__c = System.now(),
            Subject__c = 'Subject',
            Location__c = 'Location',
            ActivityDate__c = dr.reported_date__c,
            Visitor1_ID__c = con.Id,
            Visitor2_ID__c = con2.Id
        );
        Event__c ec2 = new Event__c(
            Daily_Report__c = dr2.Id,
            StartDateTime__c = System.now(),
            EndDateTime__c = System.now(),
            Subject__c = 'Subject',
            Location__c = 'Location',
            ActivityDate__c = dr2.reported_date__c,
            Visitor1_ID__c = con.Id,
            Visitor2_ID__c = con2.Id
        );
        Event__c ec3 = new Event__c(
            Daily_Report__c = dr3.Id,
            StartDateTime__c = System.now(),
            EndDateTime__c = System.now(),
            Subject__c = 'Subject',
            Location__c = 'Location',
            ActivityDate__c = dr3.reported_date__c,
            Visitor1_ID__c = con.Id,
            Visitor2_ID__c = con2.Id
        );
        Event__c ec4 = new Event__c(
            Daily_Report__c = dr4.Id,
            StartDateTime__c = System.now(),
            EndDateTime__c = System.now(),
            Subject__c = 'Subject',
            Location__c = 'Location',
            ActivityDate__c = dr4.reported_date__c,
            Visitor1_ID__c = con.Id,
            Visitor2_ID__c = con2.Id
        );
        insert new Event__c[] {ec, ec2, ec3, ec4};
        
        List<Event_Oppotunity__c> eoList = new List<Event_Oppotunity__c>();
        
        Event_Oppotunity__c eo = new Event_Oppotunity__c();
        eo.Opportunity__c = opp.Id;
        eo.End_Time__c = dt;
        eo.Daily_Report__c = dr.Id;
        eo.EventC_ID__c = ec.Id;
        eoList.add(eo);
        Event_Oppotunity__c eo2 = new Event_Oppotunity__c();
        eo2.Opportunity__c = opp.Id;
        eo2.End_Time__c = dt.addDays(2);
        eo2.Daily_Report__c = dr2.Id;
        eo2.EventC_ID__c = ec2.Id;
        eoList.add(eo2);
        Event_Oppotunity__c eo3 = new Event_Oppotunity__c();
        eo3.Opportunity__c = opp.Id;
        eo3.End_Time__c = dt.addDays(4);
        eo3.Daily_Report__c = dr3.Id;
        eo3.EventC_ID__c = ec3.Id;
        eoList.add(eo3);
        Event_Oppotunity__c eo4 = new Event_Oppotunity__c();
        eo4.Opportunity__c = opp.Id;
        eo4.End_Time__c = dt.addDays(3);
        eo4.Daily_Report__c = dr4.Id;
        eo4.EventC_ID__c = ec4.Id;
        eoList.add(eo4);
        insert eoList;
 
        opp = [select Xin_Last_Follow_Up_Date_For_Report__c, Xin_Gross_Follow_Num__c, Visit_President_Count__c, Visit_Head_Doctor_Count__c from Opportunity where Id = :opp.Id];
        System.assertEquals(dt.addDays(3), opp.Xin_Last_Follow_Up_Date_For_Report__c);
        System.assertEquals(3, opp.Xin_Gross_Follow_Num__c);
        System.assertEquals(3, opp.Visit_President_Count__c);
        System.assertEquals(3, opp.Visit_Head_Doctor_Count__c);
 
        eo.End_Time__c = dt.addDays(5);
        update eo;
        opp = [select Xin_Last_Follow_Up_Date_For_Report__c, Xin_Gross_Follow_Num__c from Opportunity where Id = :opp.Id];
        System.assertEquals(dt.addDays(5), opp.Xin_Last_Follow_Up_Date_For_Report__c);
 
        delete eo;
        opp = [select Xin_Last_Follow_Up_Date_For_Report__c, Xin_Gross_Follow_Num__c, Visit_President_Count__c, Visit_Head_Doctor_Count__c from Opportunity where Id = :opp.Id];
        System.assertEquals(dt.addDays(3), opp.Xin_Last_Follow_Up_Date_For_Report__c);
        System.assertEquals(2, opp.Xin_Gross_Follow_Num__c);
        System.assertEquals(2, opp.Visit_President_Count__c);
        System.assertEquals(2, opp.Visit_Head_Doctor_Count__c);
        
        delete opp;
    }
}