高章伟
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
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
/**
 * 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 XinEventContactPileUpTest {
 
    static testMethod void myUnitTest() {
        Daily_Report__c dr1 = new Daily_Report__c(Reported_Date__c = Date.newInstance(2015, 1, 1), Status__c = '作成中',Reporter__c = Userinfo.getUserId());
        Daily_Report__c dr2 = new Daily_Report__c(Reported_Date__c = Date.newInstance(2015, 1, 2), Status__c = '申請中',Reporter__c = Userinfo.getUserId());
        insert new Daily_Report__c[] {dr1, dr2};
        
        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 = 'HPテスト1';
        insert acc;
        
        Contact con1 = new Contact(
            Doctor_Division1__c = 'Director',
            LastName = 'yuanzhang',
            RecordTypeId = rtDoc.id,
            AccountId = acc.Id
        );
        Contact con2 = new Contact(
            Doctor_Division1__c = 'Vice-Chief of Department',
            LastName = 'zhuren',
            RecordTypeId = rtDoc.id,
            AccountId = acc.Id
        );
        insert new Contact[] {con1, con2};
        
        Event__c ec1 = new Event__c(
            Daily_Report__c = dr1.Id,
            StartDateTime__c = System.now(),
            EndDateTime__c = System.now(),
            Subject__c = 'Subject1',
            Location__c = 'Location',
            ActivityDate__c = dr1.reported_date__c,
            Visitor1_ID__c = con1.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 = 'Subject2',
            Location__c = 'Location',
            ActivityDate__c = dr2.reported_date__c,
            Visitor1_ID__c = con1.Id,
            Visitor2_ID__c = con2.Id
        );
        insert new Event__c[] {ec1, ec2};
        
        Activity_History_Daily_Report__c ah1 = new Activity_History_Daily_Report__c(
            EventC_ID__c = ec1.Id,
            Daily_Report__c = dr1.Id,
            Date__c = dr1.reported_date__c,
            Contact__c = con1.Id
        );
        Activity_History_Daily_Report__c ah2 = new Activity_History_Daily_Report__c(
            EventC_ID__c = ec1.Id,
            Daily_Report__c = dr1.Id,
            Date__c = dr1.reported_date__c,
            Contact__c = con2.Id
        );
        Activity_History_Daily_Report__c ah3 = new Activity_History_Daily_Report__c(
            EventC_ID__c = ec2.Id,
            Daily_Report__c = dr2.Id,
            Date__c = dr2.reported_date__c,
            Contact__c = con1.Id
        );
        Activity_History_Daily_Report__c ah4 = new Activity_History_Daily_Report__c(
            EventC_ID__c = ec2.Id,
            Daily_Report__c = dr2.Id,
            Date__c = dr2.reported_date__c,
            Contact__c = con2.Id
        );
        insert new Activity_History_Daily_Report__c[] {ah1, ah2, ah3, ah4};
 
        con1 = [select Visit_Count1__c, Visit_Count2__c, Visit_Count3__c, Visit_Count4__c, Visit_Count5__c, Visit_Count6__c, 
                       Visit_Count7__c, Visit_Count8__c, Visit_Count9__c, Visit_Count10__c, Visit_Count11__c, Visit_Count12__c 
                from Contact where Id = :con1.Id];
        System.assertEquals(1, con1.Visit_Count1__c);
        
        dr1.Status__c = '申請中';
        update dr1;
        
        update new Activity_History_Daily_Report__c[] {ah1, ah2, ah3, ah4};
        
        con2 = [select Visit_Count1__c, Visit_Count2__c, Visit_Count3__c, Visit_Count4__c, Visit_Count5__c, Visit_Count6__c, 
                       Visit_Count7__c, Visit_Count8__c, Visit_Count9__c, Visit_Count10__c, Visit_Count11__c, Visit_Count12__c 
                from Contact where Id = :con2.Id];
        System.assertEquals(2, con2.Visit_Count1__c);
        
        delete new Activity_History_Daily_Report__c[] {ah1, ah2, ah3, ah4};
        con2 = [select Visit_Count1__c, Visit_Count2__c, Visit_Count3__c, Visit_Count4__c, Visit_Count5__c, Visit_Count6__c, 
                       Visit_Count7__c, Visit_Count8__c, Visit_Count9__c, Visit_Count10__c, Visit_Count11__c, Visit_Count12__c 
                from Contact where Id = :con2.Id];
        System.assertEquals(null, con2.Visit_Count1__c);
    }
}