Upsert
Mock upsert operations in unit tests to avoid actual database upserts.
WARNING
The DML.mock() and DML.retrieveResultFor() methods are @TestVisible and should only be used in test classes.
TIP
- No database operations: Mocked upserts don't touch the database
- IDs are assigned: New records receive valid mocked IDs
- Results are captured: All operation details are available via
DML.retrieveResultFor() - Selective mocking: Use
upsertsFor()to mock specific SObject types while allowing others to execute
Example
public class AccountService {
public void syncAccounts() {
List<Account> accounts = new List<Account>{
new Account(Name = 'New Account'),
new Account(Name = 'Another Account')
};
new DML()
.toUpsert(accounts)
.identifier('AccountService.syncAccounts')
.commitWork();
}
}@IsTest
static void shouldSyncAccounts() {
// Setup
DML.mock('AccountService.syncAccounts').allUpserts();
// Test
Test.startTest();
new AccountService().syncAccounts();
Test.stopTest();
// Verify
DML.Result result = DML.retrieveResultFor('AccountService.syncAccounts');
Assert.areEqual(0, [SELECT COUNT() FROM Account], 'No records in database');
DML.OperationResult accountResult = result.upsertsOf(Account.SObjectType);
Assert.areEqual(2, accountResult.successes().size(), '2 accounts should be upserted');
}allUpserts
Mock all upsert operations regardless of SObject type.
Signature
DML.mock(String identifier).allUpserts();Class
public class DataService {
public void syncData() {
Account account = new Account(Name = 'Test Account');
Contact contact = new Contact(LastName = 'Doe');
new DML()
.toUpsert(account)
.toUpsert(contact)
.identifier('DataService.syncData')
.commitWork();
}
}Test
@IsTest
static void shouldMockMultipleSObjectTypes() {
// Setup
DML.mock('DataService.syncData').allUpserts();
// Test
Test.startTest();
new DataService().syncData();
Test.stopTest();
// Verify
DML.Result result = DML.retrieveResultFor('DataService.syncData');
Assert.areEqual(0, [SELECT COUNT() FROM Account], 'No accounts in database');
Assert.areEqual(0, [SELECT COUNT() FROM Contact], 'No contacts in database');
Assert.areEqual(2, result.upserts().size(), '2 SObject types mocked');
}upsertsFor
Mock upsert operations only for a specific SObject type. Other SObject types will be upserted in the database.
Signature
DML.mock(String identifier).upsertsFor(SObjectType objectType);Class
public class DataService {
public void syncData() {
Account account = new Account(Name = 'Test Account');
Contact contact = new Contact(LastName = 'Doe');
new DML()
.toUpsert(account)
.toUpsert(contact)
.identifier('DataService.syncData')
.commitWork();
}
}Test
@IsTest
static void shouldMockOnlyContactUpserts() {
// Setup - Mock only Contact upserts
DML.mock('DataService.syncData').upsertsFor(Contact.SObjectType);
// Test
Test.startTest();
new DataService().syncData();
Test.stopTest();
// Verify
DML.Result result = DML.retrieveResultFor('DataService.syncData');
Assert.areEqual(1, [SELECT COUNT() FROM Account], 'Account actually upserted');
Assert.areEqual(0, [SELECT COUNT() FROM Contact], 'Contact mocked - not in database');
}Retrieving Results
Use DML.retrieveResultFor() to access the mocked operation results.
Signature
DML.Result result = DML.retrieveResultFor(String identifier);Class
public class AccountService {
public void upsertAccount() {
Account account = new Account(Name = 'Test Account');
new DML()
.toUpsert(account)
.identifier('AccountService.upsertAccount')
.commitWork();
}
}Test
@IsTest
static void shouldAccessRecordResults() {
// Setup
DML.mock('AccountService.upsertAccount').allUpserts();
// Test
Test.startTest();
new AccountService().upsertAccount();
Test.stopTest();
// Verify
DML.Result result = DML.retrieveResultFor('AccountService.upsertAccount');
DML.OperationResult operationResult = result.upsertsOf(Account.SObjectType);
Assert.areEqual(Account.SObjectType, operationResult.objectType(), 'Should be Account type');
Assert.areEqual(DML.OperationType.UPSERT_DML, operationResult.operationType(), 'Should be UPSERT operation');
Assert.isFalse(operationResult.hasFailures(), 'Should have no failures');
}Exception
Simulate DML exceptions for upsert operations without touching the database.
allowPartialSuccess
When allowPartialSuccess() is used, exceptions are not thrown. Instead, failures are recorded in the Result object. Use hasFailures() and recordResults() to check for errors.
exceptionOnUpserts
Throw an exception for all upsert operations.
Signature
DML.mock(String identifier).exceptionOnUpserts();Test
@IsTest
static void shouldThrowExceptionOnUpsert() {
// Setup
DML.mock('myDmlId').exceptionOnUpserts();
// Test & Verify
try {
new DML()
.toUpsert(new Account(Name = 'Test Account'))
.identifier('myDmlId')
.commitWork();
Assert.fail('Expected exception');
} catch (DmlException e) {
Assert.isTrue(e.getMessage().contains('Upsert failed'));
}
}exceptionOnUpsertsFor
Throw an exception only for upsert operations on a specific SObject type.
Signature
DML.mock(String identifier).exceptionOnUpsertsFor(SObjectType objectType);Test
@IsTest
static void shouldThrowExceptionOnlyForContactUpserts() {
// Setup - Exception only for Contact upserts
DML.mock('myDmlId').exceptionOnUpsertsFor(Contact.SObjectType);
// Test & Verify
try {
new DML()
.toUpsert(new Account(Name = 'Test Account'))
.toUpsert(new Contact(LastName = 'Doe'))
.identifier('myDmlId')
.commitWork();
Assert.fail('Expected exception');
} catch (DmlException e) {
Assert.isTrue(e.getMessage().contains('Upsert failed'));
}
}allowPartialSuccess
When using allowPartialSuccess(), failures are captured in the result instead of throwing an exception.
Test
@IsTest
static void shouldCaptureFailureInResult() {
// Setup
DML.mock('myDmlId').exceptionOnUpserts();
// Test - no exception thrown
DML.Result result = new DML()
.toUpsert(new Account(Name = 'Test Account'))
.allowPartialSuccess()
.identifier('myDmlId')
.commitWork();
// Verify
DML.OperationResult operationResult = result.upsertsOf(Account.SObjectType);
Assert.isTrue(operationResult.hasFailures(), 'Should have failures');
Assert.isFalse(operationResult.recordResults()[0].isSuccess(), 'Record should be marked as failed');
}