-
Notifications
You must be signed in to change notification settings - Fork 528
/
Copy pathfflib_SObjectDescribeTest.cls
210 lines (179 loc) · 9.88 KB
/
fflib_SObjectDescribeTest.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/**
* Copyright (c), FinancialForce.com, inc
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the FinancialForce.com, inc nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**/
/**
This class adapted from https://github.com/capeterson/Apex-Util
Used under a BSD license: https://github.com/capeterson/Apex-Util/blob/master/LICENSE
**/
@isTest
private class fflib_SObjectDescribeTest {
/**
* Verify that the different ways of getting your hands on an fflib_SObjectDescribe instance all handle null inputs
* (and blank/empty strings, why not?) by returning null - since there's no possible way to resolve it.
**/
@isTest
static void getDescribe_badInput(){
String nullStr = null; //having it as a string var makes for unambiguous selection of overloads
Schema.SObjectType nullType = null;
Schema.DescribeSObjectResult nullDescribe = null;
SObject nullSObject = null;
System.assertEquals(null, fflib_SObjectDescribe.getDescribe(nullStr));
System.assertEquals(null, fflib_SObjectDescribe.getDescribe(''));
System.assertEquals(null, fflib_SObjectDescribe.getDescribe(' '));
System.assertEquals(null, fflib_SObjectDescribe.getDescribe(nullType));
System.assertEquals(null, fflib_SObjectDescribe.getDescribe(nullDescribe));
System.assertEquals(null, fflib_SObjectDescribe.getDescribe(nullSObject));
}
@isTest
static void NamespacedAttributeMap_implementations(){
fflib_SObjectDescribe.GlobalDescribeMap gdm = fflib_SObjectDescribe.getGlobalDescribe();
Schema.SObjectType accountObjType = gdm.get('AccOunT');
System.assertEquals(accountObjType, Account.SobjectType);
System.assertEquals(Schema.getGlobalDescribe().size(), gdm.size());
fflib_SObjectDescribe acccountDescribe = fflib_SObjectDescribe.getDescribe(accountObjType);
fflib_SObjectDescribe.FieldsMap fields = acccountDescribe.getFields();
System.assert( fields.keySet().containsAll(acccountDescribe.getFieldsMap().keySet()) );
System.assertEquals(fields.get('name'), Account.SObjectType.fields.name); //behavior of FieldsMap is tested in another method
System.assertEquals(Schema.SObjectType.Account.fields.getMap().size(), fields.size());
System.assertEquals(null, fields.get(null), 'Null input should result in null ouput.');
System.assertEquals(null, fields.get(''), 'Invalid fieldname input should result in null ouput.');
}
@isTest
static void FieldsMap(){
String fakeNamespace = 'fflib_test';
Map<String,Schema.SObjectField> fakeFieldData = new Map<String,Schema.SObjectField>{
'name__c' => Contact.SObjectType.fields.name, //re-use standard field types since we can't mock them
fakeNamespace+'__name__c' => Account.SObjectType.fields.name,
fakeNamespace+'__otherField__c' => Account.SObjectType.fields.name,
'createddate' => Contact.SObjectType.fields.CreatedDate
};
fflib_SObjectDescribe.FieldsMap fields = new fflib_SObjectDescribe.FieldsMap(fakeFieldData);
fields.currentNamespace = fakeNamespace;
System.assertEquals(true, fields.containsKey('name__c') );
System.assertEquals(true, fields.containsKey(fakeNamespace.toUpperCase()+'__nAMe__c') );
System.assert(fields.get('NAme__c') === fields.get(fakeNamespace+'__namE__c'));
System.assert(!fields.keySet(false).contains('otherField__c'));
System.assert(fields.keySet(false).contains(fakeNamespace+'__otherField__c'));
System.assert(fields.keySet(true).contains('otherField__c'));
System.assert(!fields.keySet(true).contains(fakeNamespace+'__otherField__c'));
fields.currentNamespace = 'someOtherNamespace';
System.assertNotEquals(fields.get('name__C'), fields.get(fakeNamespace.capitalize()+'__nAme__c'));
}
@isTest
static void FieldSetsMap(){
String fakeNamespace = 'fflib_test';
//values set to null to avoid a requirement on field sets existing
Map<String,Schema.FieldSet> fakeFieldData = new Map<String,Schema.FieldSet>{
'name__c' => null,
fakeNamespace+'__name__c' => null,
fakeNamespace+'__otherField__c' => null,
'createddate' => null
};
fflib_SObjectDescribe.FieldSetsMap fieldSets = new fflib_SObjectDescribe.FieldSetsMap(fakeFieldData);
fieldSets.currentNamespace = fakeNamespace;
System.assertEquals(true, fieldSets.containsKey('name__c') );
System.assertEquals(true, fieldSets.containsKey(fakeNamespace.toUpperCase()+'__nAMe__c') );
System.assert(fieldSets.get('NAme__c') === fieldSets.get(fakeNamespace+'__namE__c'));
System.assert(!fieldSets.keySet(false).contains('otherField__c'));
System.assert(fieldSets.keySet(false).contains(fakeNamespace+'__otherField__c'));
System.assert(fieldSets.keySet(true).contains('otherField__c'));
System.assert(!fieldSets.keySet(true).contains(fakeNamespace+'__otherField__c'));
fieldSets.currentNamespace = 'someOtherNamespace';
//equals since both will be null as part of the test, but otherwise they would be different
System.assertEquals(fieldSets.get('name__C'), fieldSets.get(fakeNamespace.capitalize()+'__nAme__c'));
}
@isTest
static void GlobalDescribeMap(){
String fakeNamespace = 'fflib_test';
Map<String,Schema.SObjectType> fakeFieldData = new Map<String,Schema.SObjectType>{
'name__c' => Contact.SObjectType, //re-use stndard object types since we can't mock them
fakeNamespace+'__name__c' => Account.SObjectType,
'createddate' => Lead.SObjectType
};
fflib_SObjectDescribe.GlobalDescribeMap gdm = new fflib_SObjectDescribe.GlobalDescribeMap(fakeFieldData);
gdm.currentNamespace = fakeNamespace;
System.assertEquals(true, gdm.containsKey('name__c') );
System.assertEquals(true, gdm.containsKey(fakeNamespace+'__name__c') );
System.assert(gdm.get('name__c') === gdm.get(fakeNamespace+'__name__c'));
gdm.currentNamespace = 'someOtherNamespace';
System.assertNotEquals(gdm.get('name__c'), gdm.get(fakeNamespace+'__name__c'));
}
@isTest //Tests all forms of the getDescribe static
static void getAccountDescribes(){
fflib_SObjectDescribe d = fflib_SObjectDescribe.getDescribe('Account');
fflib_SObjectDescribe d2 = fflib_SObjectDescribe.getDescribe(Account.SObjectType);
fflib_SObjectDescribe d3 = fflib_SObjectDescribe.getDescribe(Schema.SObjectType.Account);
System.assertEquals('Account', d.getDescribe().getName());
System.assert( (d === d2 && d2 === d3) ,'All three getDescribe calls should return the same cached instance.');
}
@isTest
static void simpleAccountFieldDescribe(){
fflib_SObjectDescribe d = fflib_SObjectDescribe.getDescribe(Account.SObjectType);
Map<String,Schema.SObjectField> fields;
for(integer i = 0; i < 10; i++){
fields = d.getFieldsMap();
}
// Describe Limits removed since Summer ’14.
// https://developer.salesforce.com/releases/release/Summer14/New+Apex+Enhancements
// Because describe limits are no longer enforced in any API version, this method is no longer available.
// In API version 30.0 and earlier, this method is available but is deprecated.
// System.assertEquals(1, Limits.getFieldsDescribes() );
System.assertEquals(false,fields.isEmpty());
System.assertEquals(Account.SObjectType, d.getSObjectType());
}
@isTest
static void simpleAccountFieldSetDescribe(){
fflib_SObjectDescribe d = fflib_SObjectDescribe.getDescribe(Account.SObjectType);
Map<String,Schema.FieldSet> fields;
for(integer i = 0; i < 10; i++){
fields = d.getFieldSetsMap();
}
// Describe Limits removed since Summer ’14.
// https://developer.salesforce.com/releases/release/Summer14/New+Apex+Enhancements
// Because describe limits are no longer enforced in any API version, this method is no longer available.
// In API version 30.0 and earlier, this method is available but is deprecated.
// System.assertEquals(1, Limits.getFieldSetsDescribes() );
// no asserts on result size to avoid a requirement on field sets existing
}
@isTest
static void simpleAccountGetNameField(){
fflib_SObjectDescribe d = fflib_SObjectDescribe.getDescribe(Account.SObjectType);
Schema.SObjectField nameField = d.getNameField();
System.assertEquals('Name', nameField.getDescribe().getName());
}
@isTest
static void flushCache(){
fflib_SObjectDescribe d = fflib_SObjectDescribe.getDescribe('Account');
fflib_SObjectDescribe.flushCache();
fflib_SObjectDescribe d2 = fflib_SObjectDescribe.getDescribe('Account');
System.assert(d !== d2, 'Second object should be a fresh instance after a cache flush.' );
}
@isTest
static void rawGlobalDescribeCheck(){
Map<String,Schema.SObjectType> systemGd = Schema.getGlobalDescribe();
Map<String,Schema.SObjectType> cachedGd = fflib_SObjectDescribe.getRawGlobalDescribe();
System.assertEquals(systemGd.size(),cachedGd.size());
}
}