29/03/18 This project is no longer being maintained. It has been merged into xrm-mock.
Generates a mock Xrm.Page object.
Commonly used by xrm-mock
to test Dynamics 365 client-side customisations.
-
install via
npm install xrm-mock-generator
-
import
var XrmMockGenerator = require("xrm-mock-generator");
-
initialise a global Xrm object
var Xrm = XrmMockGenerator.initialise();
You now have a global Xrm
object, as if you had loaded a form in CRM.
Create a string attribute and add it to global.Xrm
var stringAttribute = XrmMockGenerator.Attribute.createString("firstname", "Joe");
var boolAttribute = XrmMockGenerator.Attribute.createBool("new_havingFun", true);
var dateAttribute = XrmMockGenerator.Attribute.createDate("birthdate", new Date(1980, 12, 25));
var dateTimeAttribute = XrmMockGenerator.Attribute.createDateTime("birthdate", new Date(1980, 12, 25));
var numberAttribute = XrmMockGenerator.Attribute.createNumber("units", 2, 0, 10, 0);
var optionSetAttribute = XrmMockGenerator.Attribute.createOptionSet("countries", [
{ "Austria" : 0 },
{ "France", : 1 },
{ "Spain", 2 }
]);
var lookupAttribute = XrmMockGenerator.Attribute.createLookup("primarycustomerid", {
id: "{00000000-0000-0000-0000-000000000000}",
entityType: "contact",
name: "Joe Bloggs"
});
This example showcases a contact form that changes the contact's firstname from Joe to Bob when the form is loaded.
(function () {
"use strict";
var Contact = () => { };
Contact.prototype.onLoad = function () {
Xrm.Page.getAttribute("firstname").setValue("Bob");
}
// node
module.exports = new Contact();
// browser
global.Contact = new Contact();
}());
describe("Contact Form", () => {
var XrmMockGenerator = require("xrm-mock-generator");
var ContactForm = require("../src/contact.js");
beforeEach(() => {
XrmMockGenerator.initialise();
XrmMockGenerator.createString("firstname", "Joe");
});
describe("default", () => {
expect(Xrm.Page.getAttribute("firstname").getValue()).toBe("Joe"); // true
});
describe("onLoad", () => {
Contact.onLoad();
expect(Xrm.Page.getAttribute("firstname").getValue()).toBe("Bob"); // true
});
});
- Automatically create attribute metadata from a Dynamics 365 instance
- Create a d.ts file so that the project is consumable via TypeScript