-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPDFAttacherTest.cls
167 lines (130 loc) · 6.28 KB
/
PDFAttacherTest.cls
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@isTest
public class PDFAttacherTest{
/** Defining the public records that would be used for the test Class **/
Public Static Crew__c crewTest;
Public Static Property__c propertyTest;
Public Static Group groupTest;
Public Static Client__c clientTest;
Public Static Property_Contact__c propertyContactTest;
Public Static QueueSobject queueObjectTest;
Public Static Inspection__c inspectionTest;
public Static ApexPages.StandardController PDFAttacherController;
public Static PDFAttacher pdf;
public Static Profile sysadminProfile;
/** Defining the first user that be used for testing this Class **/
public static User userSysadmin
{
get{
if (userSysadmin == null )
{
sysadminProfile = [Select Id, Name From Profile where name = 'System Administrator' limit 1];
userSysadmin = new user (Username = '[email protected]', FirstName = 'First', LastName ='Last', alias = 'sysadmin',
email='[email protected]', communityNickname='test1', TimeZoneSidKey='Australia/Perth',
LocaleSidKey='en_US', EmailEncodingKey='ISO-8859-1', ProfileId=sysadminProfile.Id ,
LanguageLocaleKey='en_US');
insert userSysadmin;
}
return userSysadmin;
}
set;
}
/** Defining the second user that be used for testing this Class **/
public static User userSysadmin1
{
get{
if (userSysadmin1 == null )
{
sysadminProfile = [Select Id, Name From Profile where name = 'System Administrator' limit 1];
userSysadmin1 = new user (Username = '[email protected]', FirstName = 'First1', LastName ='Last1', alias = 'sysa',
email='[email protected]', communityNickname='test', TimeZoneSidKey='Australia/Perth',
LocaleSidKey='en_US', EmailEncodingKey='ISO-8859-1', ProfileId=sysadminProfile.Id ,
LanguageLocaleKey='en_US');
insert userSysadmin1;
}
return userSysadmin1;
}
set;
}
/** Creating the records that would be used in this test class **/
// @future
public static void createTestData(){
/** inserting a crew record **/
crewTest = new crew__c();
crewTest.User__c = userSysadmin.Id;
crewTest.Name = 'Test Crew';
insert crewTest;
/** Inserting a client record **/
clientTest = new client__c();
clientTest.Name='test';
insert clientTest;
/**Inserting a Property Contact Record **/
propertyContactTest = new property_Contact__c();
propertyContactTest.Name='test';
insert propertyContactTest;
date myDate = date.today();
date weekStart = myDate.toStartofWeek().addDays(1);
/** Inserting a Property Record**/
propertyTest = new property__c();
propertyTest.Week_of_Next_Visit__c = weekStart;
propertyTest.Inactive__c = False;
propertyTest.Name='test';
propertyTest.Frequency__c=2;
propertyTest.Client__c=clientTest.id;
propertyTest.Property_Contact_1__c=propertyContactTest.id;
propertyTest.Crew__c = crewTest.Id;
propertyTest.Location__c = 'Test';
insert propertyTest;
propertyTest.Name='test1';
update propertyTest;
inspectionTest = new inspection__c();
inspectionTest.Name='Bond-007';
inspectionTest.Date_of_Visit__c=date.today();
inspectionTest.Property__c=propertyTest.id;
inspectionTest.General_Site_Condition__c='Good';
insert inspectionTest;
Inspection__c inspectattach=[select id, Name from Inspection__c where Name=:'Bond-007' AND General_Site_Condition__c=:'Good'];
PDFAttacherController= new ApexPages.StandardController(inspectattach);
pdf = new PDFAttacher(PDFAttacherController);
pdf.attachPDF();
}
/** Creatng the Groups that would be used to test the Update Property Owner Trigger **/
public static void initGroup(){
/** Creating the Group Record **/
groupTest = new Group();
groupTest.Name = 'Test Crew';
groupTest.Type='Queue';
insert groupTest;
/** Creating the Queue Record **/
queueObjectTest = new QueueSobject();
queueObjectTest.QueueId = groupTest.Id;
queueObjectTest.SobjectType = 'Property__c';
insert queueObjectTest;
}
public static testmethod void testPDFAttacher(){
/** Starting the Test **/
test.startTest();
/** Insatanciating the Group using the First User **/
system.runAs(userSysadmin1){
initGroup();
}
/** Instantiating the rest of the records by changing the Context in order to avoid the Mixed DML Erroe **/
system.runAs(userSysadmin){
createTestData();
/*
propertyTest.Name='test1';
update propertyTest;
inspectionTest = new inspection__c();
inspectionTest.Name='Bond-007';
inspectionTest.Date_of_Visit__c=date.today();
inspectionTest.Property__c=propertyTest.id;
inspectionTest.General_Site_Condition__c='Good';
insert inspectionTest;
Inspection__c inspectattach=[select id, Name from Inspection__c where Name=:'Bond-007' AND General_Site_Condition__c=:'Good'];
PDFAttacherController= new ApexPages.StandardController(inspectattach);
pdf = new PDFAttacher(PDFAttacherController);
pdf.attachPDF();
*/
}
test.stopTest();
}
}