-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update AzureCP.csproj * get fields from types ClaimTypeConfig, and IdentityClaimTypeConfig if needed (#171) * Set advanced query (reopened to update dev branch) (#172) * set advanced query * Set ConsistencyLevel as a HeaderOption * reference SharePoint dll from the project itself to avoid using GAC reference SharePoint dll from the project itself to avoid using GAC * Add support for extension attributes (#174) * get fields from types ClaimTypeConfig, and IdentityClaimTypeConfig if needed * set advanced query * Set ConsistencyLevel as a HeaderOption * Set advanced query (#168) * Update AzureCP.csproj * set advanced query * Set ConsistencyLevel as a HeaderOption * Fix idctype notupdated (#167) * Update AzureCP.csproj * get fields from types ClaimTypeConfig, and IdentityClaimTypeConfig if needed * Revert "Fix idctype notupdated (#167)" (#169) This reverts commit 918575a. * Revert "Set advanced query (#168)" (#170) This reverts commit 02c2603. * Initial: add extension Attributes to dropdowns * New field for AD Connect Client ID, Replacement of extensionAttribute property names in queries. * Fix to return the guid without dashes * Added persisted prop to certificate * Fixed property handling for extension attributes * Fixed issue with the display of extensionAttributes within the central admin config page. * Minor fixes to get better results * Update AzureCP.csproj * Update AzureCP.cs * rename ADConnectClientId to ExtensionAttributesApplicationId * reference SharePoint dll from the project itself to avoid using GAC reference SharePoint dll from the project itself to avoid using GAC * Update AzureCP.cs * Revert "Update AzureCP.cs" This reverts commit c56256f. * Update ClaimTypesConfig.ascx * Update AzureCP.cs * add property SharePointEntityType * Added formsrole to FillEntityTypes * Revert "Added formsrole to FillEntityTypes" This reverts commit 7d2e33a. * update tests --------- Co-authored-by: Yvan Duhamel <[email protected]> * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Set header ConsistencyLevel eventual in batching (#177) * set header ConsistencyLevel eventual in batching * Update CHANGELOG.md * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * update workflow * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * Update build-solutions.yml * replace workflow * Update verify-prs-and-commits.yml * Create publish-nightly-release.yml * Update verify-prs-and-commits.yml * Update import of pfx X509Certificate2 object * Update how certificate is loaded in memory * remove explicit creation of file for X509Certificate2 constructor * Update ci-run-integration-tests.yml for Azure Pipelines * Update verify-prs-and-commits.yml * Update verify-prs-and-commits.yml * Update verify-prs-and-commits.yml * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: Andi Krüger <[email protected]>
- Loading branch information
1 parent
b5d117b
commit b0e36a0
Showing
17 changed files
with
328 additions
and
59 deletions.
There are no files selected for viewing
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,17 @@ | ||
name: Verify PRs and commits | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "master", "dev" ] | ||
pull_request: | ||
branches: [ "master", "dev" ] | ||
|
||
jobs: | ||
call-build: | ||
uses: Yvand/AzureCP/.github/workflows/reusable-build.yml@master | ||
with: | ||
project-name: ${{ vars.PROJECT_NAME }} | ||
version-major-minor: ${{ vars.VERSION_MAJOR_MINOR }} | ||
secrets: | ||
base64-encoded-signingkey: ${{ secrets.BASE64_ENCODED_SIGNINGKEY }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,9 +114,9 @@ public void DEBUG_SearchEntitiesFromCollection(string inputValue, string expecte | |
UnitTestsHelper.TestSearchOperation(inputValue, Convert.ToInt32(expectedCount), expectedClaimValue); | ||
} | ||
|
||
[TestCase(@"AADGroup1", 1, "5b0f6c56-c87f-44c3-9354-56cba03da433")] | ||
[TestCase(@"AADGroup1", 1, "30ef0958-c003-4667-a0ad-ef9783acaf25")] | ||
[TestCase(@"xyzguest", 0, "[email protected]")] | ||
[TestCase(@"AzureGr}", 1, "141cfd15-3941-4cbc-859f-d7125938fb72")] | ||
[TestCase(@"AzureGr}", 1, "ef7d18e6-5c4d-451a-9663-a976be81c91e")] | ||
public void DEBUG_SearchEntities(string inputValue, int expectedResultCount, string expectedEntityClaimValue) | ||
{ | ||
if (!TestSearch) { return; } | ||
|
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
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
Oops, something went wrong.