高章伟
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
122
123
124
125
126
127
128
129
130
131
132
133
134
@isTest
public with sharing class HospitalApprovalResponseControllerTest {
    
 
    static User setNewUser(String firstName, String lastName, String aName, String email) {
        User user = new User(Test_staff__c = true);
        user.LastName = ' ' + lastName;
        user.FirstName = firstName;
        user.Alias = aName;
        user.Email = email;
        user.Username = 'Olympus' + email;
        user.CommunityNickname = aName;
        user.IsActive = true;
        user.EmailEncodingKey = 'ISO-2022-JP';
        user.TimeZoneSidKey = 'Asia/Tokyo';
        user.LocaleSidKey = 'ja_JP';
        user.LanguageLocaleKey = 'ja';
        user.ProfileId = System.Label.ProfileId_SystemAdmin;
        user.Job_Category__c = '销售推广';
        user.Province__c = '上海市';
        user.Use_Start_Date__c = Date.today().addMonths(-6);
        insert user;
 
        return user;
    }
 
    static testMethod void test_method_one() {
        User user1 = setNewUser('ztest01', 'User001', 'Zhang001', 'test001@excemaple.com');
        User user2 = setNewUser('ztest02', 'User002', 'Zhang002', 'test002@excemaple.com');
        User user3 = setNewUser('ztest03', 'User003', 'Zhang003', 'test003@excemaple.com');
        User user4 = setNewUser('ztest04', 'User004', 'Zhang004', 'test004@excemaple.com');
        User user5 = setNewUser('ztest05', 'User005', 'Zhang005', 'test005@excemaple.com');
        User toUser = setNewUser('shenqing', 'shenpi', 'spsqTest', 'shenpi@excemaple.com');
 
        // 病院を作る
        Account hospital = new Account();
        hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
        hospital.Name = 'test hospital';
        hospital.Is_Active__c = '申请中';
        hospital.OwnerId = toUser.Id;
 
        //WLIG-BS2CJW --执行测试类报异常MIXED_DML_OPERATION ---20200807---update By rentongxiao ---Start
        // insert hospital;
        if (Test.isRunningTest()) {
                System.runAs(new User(Id = UserInfo.getUserId())){
                        insert hospital;
                }
        }
        //WLIG-BS2CJW  ---20200807---update By rentongxiao ---End
 
        // 画面迁移--沟通应答画面
        PageReference page = new PageReference('/apex/HospitalApprovalResponsePopUp?accid=' + hospital.Id + '&type=response2system');
        System.Test.setCurrentPage(page);
        HospitalApprovalResponseController controller = new HospitalApprovalResponseController();
        controller.init();
 
        controller.cc.ResponseNew__c = 'test goutong';
        // 保存
        controller.saveBtn();
    }
 
    static testMethod void test_method_two() {
        User user1 = setNewUser('ztest01', 'User001', 'Zhang001', 'test001@excemaple.com');
        User user2 = setNewUser('ztest02', 'User002', 'Zhang002', 'test002@excemaple.com');
        User user3 = setNewUser('ztest03', 'User003', 'Zhang003', 'test003@excemaple.com');
        User user4 = setNewUser('ztest04', 'User004', 'Zhang004', 'test004@excemaple.com');
        User user5 = setNewUser('ztest05', 'User005', 'Zhang005', 'test005@excemaple.com');
        User toUser = setNewUser('shenqing', 'shenpi', 'spsqTest', 'shenpi@excemaple.com');
 
        // 病院を作る
        Account hospital = new Account();
        hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
        hospital.Name = 'test hospital';
        hospital.Is_Active__c = '申请中';
        hospital.OwnerId = toUser.Id;
 
        //WLIG-BS2CJW --执行测试类报异常MIXED_DML_OPERATION ---20200807---update By rentongxiao ---Start
        // insert hospital;
        if (Test.isRunningTest()) {
                System.runAs(new User(Id = UserInfo.getUserId())){
                        insert hospital;
                }
        }
        //WLIG-BS2CJW  ---20200807---update By rentongxiao ---End
 
        // 画面迁移--沟通应答画面
        PageReference page = new PageReference('/apex/HospitalApprovalResponsePopUp?accid=' + hospital.Id + '&type=response2user');
        System.Test.setCurrentPage(page);
        HospitalApprovalResponseController controller2 = new HospitalApprovalResponseController(new ApexPages.StandardController(hospital));
        controller2.init();
        controller2.saveBtn();
 
        // 发送按钮
        controller2.cc.Response__c = 'test goutong';
        controller2.cc.ResponseNew__c = 'test .......';
        controller2.cc.Response_Cc_User1__c = user1.Id;
        controller2.cc.Response_Cc_User2__c = user2.Id;
        controller2.cc.Response_Cc_User3__c = user3.Id;
        controller2.cc.Response_Cc_User4__c = user4.Id;
        controller2.cc.Response_Cc_User5__c = user5.Id;
        controller2.saveBtn();
    }
 
    static testMethod void test_method_three() {
        User toUser = setNewUser('shenqing', 'shenpi', 'spsqTest', 'shenpi@excemaple.com');
 
        // 病院を作る
        Account hospital = new Account();
        hospital.recordtypeId = [Select Id FROM RecordType WHERE IsActive = true and SobjectType = 'Account' and DeveloperName = 'HP'].id;
        hospital.Name = 'test hospital';
        hospital.Is_Active__c = '申请中';
        hospital.OwnerId = toUser.Id;
 
        //WLIG-BS2CJW --执行测试类报异常MIXED_DML_OPERATION ---20200807---update By rentongxiao ---Start
        // insert hospital;
        if (Test.isRunningTest()) {
                System.runAs(new User(Id = UserInfo.getUserId())){
                        insert hospital;
                }
        }
        //WLIG-BS2CJW  ---20200807---update By rentongxiao ---Start
 
        // 画面迁移--沟通应答画面
        PageReference page = new PageReference('/apex/HospitalApprovalResponsePopUp?accid=' + hospital.Id + '&type=response2user');
        System.Test.setCurrentPage(page);
        HospitalApprovalResponseController controller3 = new HospitalApprovalResponseController();
        controller3.init();
 
        controller3.cc.Response__c = 'test goutong';
        controller3.ra.Owner.Email = '111111111111';
        // 发送按钮
        controller3.saveBtn();
    }
}