This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 183
Add RetrieveCurrentOrganizationRequest #478
Open
sulzsolutions-st
wants to merge
1
commit into
jordimontana82:master
Choose a base branch
from
sulzsolutions-st:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
FakeXrmEasy.Shared/FakeMessageExecutors/RetrieveCurrentOrganizationRequestExecutor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
using Microsoft.Xrm.Sdk; | ||
using Microsoft.Crm.Sdk.Messages; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace FakeXrmEasy.FakeMessageExecutors | ||
{ | ||
public class RetrieveCurrentOrganizationRequestExecutor : IFakeMessageExecutor | ||
{ | ||
public bool CanExecute(OrganizationRequest request) | ||
{ | ||
#if FAKE_XRM_EASY || FAKE_XRM_EASY_2013 | ||
return false; | ||
#else | ||
return request is RetrieveCurrentOrganizationRequest; | ||
#endif | ||
} | ||
|
||
public OrganizationResponse Execute(OrganizationRequest request, XrmFakedContext ctx) | ||
{ | ||
#if !FAKE_XRM_EASY && !FAKE_XRM_EASY_2013 | ||
RetrieveCurrentOrganizationRequest createRequest = (RetrieveCurrentOrganizationRequest)request; | ||
|
||
var service = ctx.GetOrganizationService(); | ||
|
||
return new RetrieveCurrentOrganizationResponse() | ||
{ | ||
ResponseName = "RetrieveCurrentOrganization", | ||
Results = new ParameterCollection { { "Detail" , | ||
new Microsoft.Xrm.Sdk.Organization.OrganizationDetail() | ||
{ | ||
OrganizationId = new Guid("59115200-433D-4E75-9351-0AC8602C1890"), | ||
OrganizationVersion = "9.0.3.7", | ||
UniqueName = "FakeXRM", | ||
State = Microsoft.Xrm.Sdk.Organization.OrganizationState.Enabled, | ||
FriendlyName = "FakeXRM", | ||
|
||
}} } | ||
}; | ||
#else | ||
throw new NotImplementedException("The Request RetrieveCurrentOrganizationRequest is not working on this CRM Version"); | ||
#endif | ||
} | ||
|
||
public Type GetResponsibleRequestType() | ||
{ | ||
#if FAKE_XRM_EASY || FAKE_XRM_EASY_2013 | ||
throw new NotImplementedException("The Request RetrieveCurrentOrganizationRequest is not working on this CRM Version"); | ||
#else | ||
return typeof(RetrieveCurrentOrganizationRequest); | ||
#endif | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
...xtTests/RetrieveCurrentOrganizationRequestTests/RetrieveCurrentOrganizationRequestTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using Microsoft.Crm.Sdk.Messages; | ||
using System; | ||
using Xunit; | ||
|
||
namespace FakeXrmEasy.Tests.FakeContextTests.RetrieveCurrentOrganizationRequestTests | ||
{ | ||
public class RetrieveCurrentOrganizationRequestTest | ||
{ | ||
[Fact] | ||
public void RetrieveCurrentOrganization_Rrequest() | ||
{ | ||
#if !FAKE_XRM_EASY && !FAKE_XRM_EASY_2013 | ||
var ctx = new XrmFakedContext(); | ||
var service = ctx.GetFakedOrganizationService(); | ||
|
||
var req = new RetrieveCurrentOrganizationRequest() | ||
{ | ||
|
||
}; | ||
|
||
var ex = Record.Exception(() => service.Execute(req)); | ||
Assert.Null(ex); | ||
#endif | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this PR @sulzsolutions-st . However the build is failing, I'm guessing it has to do with the precompilation symbols which will have to be moved to the top of the file, so it'll exclude messages that are not available for earlier versions entirely....