Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

yagasoft/DynamicsCrm-xrm-mock-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DynamicsCrm-xrm-mock-Generator

(No longer maintained!)

Join the chat at https://gitter.im/yagasoft/DynamicsCrm-xrm-mock-Generator

Version: 1.3.2.3


An XrmToolBox plugin that can be used to generate the XRM form model for xrm-mock test framework.

Prerequisites

Offline

The following packages must be installed before using the generated model:

  • @types/xrm
  • xrm-mock

For convenience, run the following command:

npm i -D @types/xrm@9.0.9 xrm-mock@3.4.10

Online

The following packages must be installed before enabling online communication:

  • @types/jquery
  • @types/jsdom
  • @types/sinon
  • jquery
  • jsdom
  • node-dcrm-service
  • sinon

For convenience, run the following command:

npm i -D @types/jquery@3.3.28 @types/jsdom@12.2.0 @types/sinon@7.0.2 @types/xrm@9.0.9 jquery@3.3.1 jsdom@13.1.0 node-dcrm-service@3.1.4 sinon@7.2.2 xrm-mock@3.4.10

Usage

  • Load data
  • Choose an entity
  • Select forms
  • Generate model
  • Build the model before testing
const builder = new XrmModel.ModelBuilder(new XrmModel.account());
builder.selectForm("Account");
builder.buildModel();

Enable online communication

The model generated supports forwarding HTTP requests from Xrm.WebApi and jQuery to CRM. Otherwise, the function must be stubbed manually, or an error will be produced.

const config = {<...>}
builder.enableOnlineWebApi(config)
   .then(() => Contact_OnLoad());

Configuration details can be found at DynamicsCrm-NodeCrmService.

Credit

Changes

v1.3.2.3 (2018-12-25)

  • Fixed: tab and section names

v1.3.2.1 (2018-12-24)

  • Fixed: compile issues with generated code

v1.3.1.2 (2018-09-07)

  • Added: option to skip generate online communication code
  • Fixed: Early-bound conflict with other plugins

v1.2.2.3 (2018-08-28)

  • Added: boolean control support
  • Changed: plugin colours

v1.2.1.6 (2018-08-27)

  • Added: online communication option
  • Added: option to specify org URL for use with getClientUrl ...

v1.0.3.2 (2018-08-17)

  • Initial release

Copyright © by Ahmed el-Sawalhy (Yagasoft) -- GPL v3 Licence