Skip to content

Example: Debug using live data

Magnus Gether Sørensen edited this page Oct 10, 2017 · 2 revisions

Setup

First you need to add information about your CRM instance, such that XrmMockup can fetch data during testing. This is done by setting the OnlineEnvironment setting in XrmMockupSettings.

OnlineEnvironment = new Env {
    providerType = AuthenticationProviderType.OnlineFederation,
    uri = "https://yourinstance/XRMServices/2011/Organization.svc",
    username = "yourusername",
    password = "yourpassword"
}

Domain can also be added if needed. By setting this - XrmMockup now searches for any missing data inside your CRM system. Therefore this type of instance of XrmMockup is not suited for tests, but is useful when debugging. Therefore we recommend having two instance of XrmMockup, one for testing and one for debugging with live data.

Using the debugging instance

In order to use the debugging instance you simply create an IOrganizationService for that instance.

var crmRealData = XrmMockup365.GetInstance(realDataSettings);
var orgRealDataService = crmRealData.GetAdminService();

And then use that service inside a test - where you point to actual data from your CRM instance.

[TestMethod]
public void TestRealDataRetrieve() {
    var acc = new Account(new Guid("9155CF31-BA6A-E611-80E0-C4346BAC0E68")) { // actual account
        Name = "babuasd"
    };
    orgRealDataService.Update(acc); // update using correct service
    var retrieved = orgRealDataService.Retrieve(Account.EntityLogicalName, acc.Id, new 
        ColumnSet(true)).ToEntity<Account>();
    Assert.AreEqual(acc.Name, retrieved.Name); // value we set inside the test
    Assert.AreEqual("12321123312", retrieved.AccountNumber); // value from your CRM instance
}