Skip to content

Commit

Permalink
delete: More references to /saml/service-providers endpoint
Browse files Browse the repository at this point in the history
[#182118433]
  • Loading branch information
hsinn0 committed Dec 8, 2023
1 parent 8fd16e9 commit a7f4f5a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
4 changes: 0 additions & 4 deletions metrics-data/src/main/resources/performance-url-groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@
limit: 10000
category: API
group: /groups
- pattern: /saml/service-providers/**
limit: 10000
category: API
group: /saml-sp
- pattern: /oauth/token/list/**
limit: 10000
category: API
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ void uri_groups_when_fails_to_load() {
map.add("/login/callback", "/login/callback/some-value");
map.add("/identity-providers", "/identity-providers");
map.add("/identity-providers", "/identity-providers/some-value");
map.add("/saml/service-providers", "/saml/service-providers");
map.add("/Groups/external", "/Groups/external");
map.add("/Groups/external", "/Groups/external/some-value");
map.add("/Groups/zones", "/Groups/zones");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,6 @@ public void testIdentityProvidersEndpoints() {
checkNotFoundForEndpoint(HttpMethod.PATCH,zoneUrl + "/identity-providers/id/status");
}

@Test
public void testSamlServiceProvidersEndpoints() {
checkNotFoundForEndpoint(HttpMethod.GET,zoneUrl + "/saml/idp/initiate");
checkNotFoundForEndpoint(HttpMethod.GET,zoneUrl + "/saml/service-providers");
checkNotFoundForEndpoint(HttpMethod.GET,zoneUrl + "/saml/service-providers/id");
checkNotFoundForEndpoint(HttpMethod.POST,zoneUrl + "/saml/service-providers");
checkNotFoundForEndpoint(HttpMethod.PUT,zoneUrl + "/saml/service-providers/id");
checkNotFoundForEndpoint(HttpMethod.DELETE,zoneUrl + "/saml/service-providers/id");
}

@Test
public void testMfaProvidersEndpoints() {
checkNotFoundForEndpoint(HttpMethod.GET,zoneUrl + "/mfa-providers");
Expand Down

0 comments on commit a7f4f5a

Please sign in to comment.