Smock-it is a powerful CLI plugin for generating mock data for Salesforce testing. It simplifies the creation of compliant, relationship-aware test data, allowing developers, QA teams, and admins to quickly generate and manage realistic datasets directly within their Salesforce orgs.
Want to get started with Smock-it? Quick Start Guide.
Smock-it v4 introduces advanced relationship handling, default Salesforce process templates, and major enhancements that make data generation more scalable, structured, and enterprise-ready.
Smock-it v4 introduces the new relatedSObjects key, enabling true parent-to-child data generation.
This enhancement ensures proper hierarchy handling when child sObjects depend on parent records. It supports multi-level relationships such as Account → Contact → Opportunity → …, and allows defining any number of related sObjects within a single template. Org-level validations ensure relationship integrity during generation.
Smock-it now supports predefined default templates for common Salesforce processes, enabling faster and more standardized data generation.
Available default templates include:
- Sales Process
- Taskray
- CPQ
- Health Cloud
These templates reduce setup effort and align generated data with real Salesforce business workflows.
Smock-it v4 introduces enhanced command support for managing related sObjects using the new -k flag.
- Upsert related sObjects
sf smockit template upsert -t <templateName> -s Account/Contact -k Opportunity
- Remove related sObjects
sf smockit template remove -t <templateName> -s Account/Contact -k Opportunity
These commands support upsert and remove operations using “/” notation for relatedSObjects, making template management more flexible and intuitive.
Smock-it v4 enhances the template init command to support default and guided template creation.
- Initialize specific default templates:
sf smockit template init [--default] [--salesprocess] [--taskray] [--cpq] [--healthcloud]
- Initialize all default templates:
sf smockit template init --all
- Initialize a custom template interactively by answering questions:
sf smockit template init
Smock-it v4 improves handling of multi-select picklists and dependent picklists.
Dependent picklist validation is now automatic, removing the need for the earlier dp- prefix.
Generated data now includes:
- Structured output JSON
- Organized output tables for related sObjects
This makes it easier to validate, debug, and reuse generated datasets across environments.
Smock-it v4 removes major Salesforce test-data challenges while scaling for complex enterprise data models.
Smock-it allows consistent generation and reuse of hierarchical datasets across multiple orgs, ensuring relationship integrity and repeatability in every environment.
With default templates and enhanced validation, Smock-it generates data that mirrors real Salesforce business processes, making it highly suitable for QA, UAT, and automation testing.
Smock-it v4 continues to deliver high-speed data generation with no external API dependencies, supporting large-scale datasets while maintaining structure, accuracy, and reliability.
Before installing Smock-it, ensure you have the following:
- Salesforce CLI
- Node.js (v18.0.0 or later)
Run the following command in your terminal to install Smock-it as a Salesforce CLI plugin:
sf plugins install smock-it
To confirm that Smock-it was installed successfully, run the below command. This will list all installed plugins, including Smock-it.
sf plugins
Keep Smock-it up to date with the latest enhancements by running:
sf plugins update
When running template init command, the following directories are automatically created in your current working directory (if they don’t already exist). These directories help to organize your output test data and template configurations, making it easier to manage and reuse:
PROJECT_BASE/
├── data_gen/
│ ├── templates/ #refer to template structure
│ │ ├ createAccount.json
│ ├── output/ #refer to Output
│ │ ├ CreateAccount_DI_Ouput.json
│ │ ├ CreateAccount_CSV_Ouput.csv
│ │ ├ CreateAccount_JSON_Ouput.jsonWhile creating the template through template init, you will be prompted with questions to fully customize your template based on your test data needs. Alternatively, this can now also be done using the promptify command, where you simply provide your requirements in natural language, and after a few quick checks, a template will be generated automatically.
For a complete guide on template creation using template init, please refer to Template Init Questionnaire.
For template creation using promptify, visit the Promptify Guide.
Below is an example template:
{
"namespaceToExclude": [],
"outputFormat": ["di", "json"],
"count": 1,
"sObjects": [
{
"Account": {
"count": 1,
"fieldsToConsider": {
"name": ["John"]
},
"fieldsToExclude": ["fax"],
"pickLeftFields": true,
"relatedSObjects": [
{
"Contact": {
"count": 1,
"fieldsToConsider": {
"LastName": ["Smith"],
"email": ["smith@gmail.com"]
},
"fieldsToExclude": [],
"pickLeftFields": true
}
}
]
}
},
{
"Lead": {
"count": 1,
"fieldsToConsider": {},
"fieldsToExclude": [],
"pickLeftFields": true
}
}
]
}
For more on Template Use Cases, Please refer Common Template Use Cases.
Smock-it generates output based on the format provided in the template configuration file. Currently it supports csv, json and DI format where DI means Direct Insert into your Salesforce org.
📌 Important Migration Notice
Allsf templateandsf datacommands are being deprecated in favor of the newsf smockitnamespace.
See the Legacy Command Migration section below for a complete mapping.
Create fresh template for data generation. Read more
sf smockit template init [--default] [--salesprocess] [--taskray] [--cpq] [--healthcloud]
Generate template and data using natural language. Read more
sf smockit promptifyNote: This command combines both template creation and data generation into a single step—no need to run multiple commands. Based on your requirements, you can choose to generate data immediately by answering “yes,” or save the template for future use.
Check data generation template for correctness. Read more
sf smockit template validate -t <templateFileName> -a <aliasorUsername>
Generate and/or insert data based on the objects and settings defined within the template. Read more
sf smockit data generate -t <templateFileName> -a <aliasorUsername>
Note: The alias name or username of the Salesforce Org is required.
Upload generated data (CSV, JSON) to multiple orgs. Read more
sf smockit data upload -u <filename.json> -a <alias_or_username> -s <sObject>
Note: Make sure to append the filename with .json or .csv to upload the data.
Review the template configuration before using it to generate data in read-only. Read more
sf smockit template print -t <templateFileName>
Modify or add configuration to an existing template. Read more
sf smockit template upsert -t <templateFileName> [-s <sObject>] [-c <recordCount>] [-x <namespaceToExclude>] [-f <outputFormat>] [-e <fieldsToExclude>] [-i <fieldsToConsider>] [-p <pickLeftFields>] [-k <relatedSObjects>]
Remove specific configurations from an existing data generation template. Read more
sf smockit template remove -t <templateFileName> [-s <sObject>] [-c <recordCount>] [-x <namespaceToExclude>] [-f <outputFormat>] [-e <fieldsToExclude>] [-i <fieldsToConsider>] [-p <pickLeftFields>] [-k <relatedSObjects>]
| Flag | Short Hand | Flag Name | Description |
|---|---|---|---|
--templateName |
-t |
Template Name | Specify the name of the data template to be utilized. The template must exist in the data_gen/templates directory. |
--count |
-c |
Count | Set the number of records to generate. If --sObject or -s is provided, this will only update or remove the count for that object. |
--namespaceToExclude |
-x |
Namespace to Exclude | Exclude specific namespaces from generating record data for namespace fields. Multiple namespaces can be separated by commas. |
--outputFormat |
-f |
Output Format | Define the output format(s) for generated data (e.g., CSV, JSON, DI). Multiple formats can be specified, separated by commas. |
--sObject |
-s |
Specific Object | Target a specific object and override its existing settings. If not found in the template, an "add object" prompt will appear. |
--upload |
-u |
Upload | The -u command is used to upload the generated JSON or CSV data into the target Salesforce org. |
--fieldsToExclude |
-e |
Fields to Exclude | Exclude specific fields from test data generation for a given object. Applies only at the object level. |
--fieldsToConsider |
-i |
Fields to Consider | Include specific fields from test data generation for a given object. This applies only at the object level, with the specified values. |
--pickLeftFields |
-p |
Pick Left Fields | If true, generates data for all fields except those listed in FieldsToExclude. If false, generates data only for the fields specified in FieldsToConsider. |
--aliasOrUserName |
-a |
Alias Or UserName | This flag is required when using the validate and data generate commands. It accepts a username or alias name and only supports orgs listed in the Salesforce Org List. |
--excludeSObjects |
-z |
ExcludesObjects | This flag skips a specific SObject during data generation, even if it's included in the template file. |
--recordType |
-r |
recordType | Generate data for a specific Record Type for specified object by passing its name with the -r flag. |
--relatedSObjects |
-k |
relatedSObjects | This flag ensures proper generation hierarchy when child sObjects are related to a parent. |
--default |
Default Template | Creates a default template. | |
--salesprocess |
Default Template | Creates a sales process template. | |
--taskray |
Default Template | Creates a taskray template. | |
--cpq |
Default Template | Creates a CPQ template. | |
--healthcloud |
Default Template | Creates a health cloud template. | |
--all |
Default Template | Creates all default templates. |
⚠️ Deprecated Commands
The following commands are deprecated and will be removed in a future version. Please update your scripts to use the newsf smockitcommands.
| Legacy Command | New Command |
|---|---|
sf template init |
sf smockit template init |
sf template validate |
sf smockit template validate |
sf template generate |
sf smockit data generate |
sf data upload |
sf smockit data upload |
sf template print |
sf smockit template print |
sf template upsert |
sf smockit template upsert |
sf template remove |
sf smockit template remove |
Integrate Smock-it within the DevOps pipeline. Read more
To access command help:
sf <template/data> <command> --help
