-
Notifications
You must be signed in to change notification settings - Fork 729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add integration tests for managing user defined federated authenticator #21646
Draft
Thisara-Welmilla
wants to merge
1
commit into
wso2:master
Choose a base branch
from
Thisara-Welmilla:add-cutsom-fed-mgt-test
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.
Draft
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
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
162 changes: 162 additions & 0 deletions
162
...a/org/wso2/identity/integration/test/rest/api/server/idp/v1/model/AuthenticationType.java
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,162 @@ | ||
/* | ||
* Copyright (c) 2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.wso2.identity.integration.test.rest.api.server.idp.v1.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
import javax.validation.Valid; | ||
import javax.validation.constraints.NotNull; | ||
import javax.xml.bind.annotation.XmlEnum; | ||
import javax.xml.bind.annotation.XmlEnumValue; | ||
import javax.xml.bind.annotation.XmlType; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.Objects; | ||
|
||
public class AuthenticationType { | ||
|
||
|
||
@XmlType(name="TypeEnum") | ||
@XmlEnum(String.class) | ||
public enum TypeEnum { | ||
|
||
@XmlEnumValue("NONE") NONE(String.valueOf("NONE")), @XmlEnumValue("BEARER") BEARER(String.valueOf("BEARER")), @XmlEnumValue("API_KEY") API_KEY(String.valueOf("API_KEY")), @XmlEnumValue("BASIC") BASIC(String.valueOf("BASIC")); | ||
|
||
|
||
private String value; | ||
|
||
TypeEnum(String v) { | ||
value = v; | ||
} | ||
|
||
public String value() { | ||
return value; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return String.valueOf(value); | ||
} | ||
|
||
public static TypeEnum fromValue(String value) { | ||
for (TypeEnum b : TypeEnum.values()) { | ||
if (b.value.equals(value)) { | ||
return b; | ||
} | ||
} | ||
throw new IllegalArgumentException("Unexpected value '" + value + "'"); | ||
} | ||
} | ||
|
||
private TypeEnum type; | ||
private Map<String, Object> properties = new HashMap<>(); | ||
|
||
|
||
/** | ||
**/ | ||
public AuthenticationType type(TypeEnum type) { | ||
|
||
this.type = type; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(example = "BASIC", required = true, value = "") | ||
@JsonProperty("type") | ||
@Valid | ||
@NotNull(message = "Property type cannot be null.") | ||
|
||
public TypeEnum getType() { | ||
return type; | ||
} | ||
public void setType(TypeEnum type) { | ||
this.type = type; | ||
} | ||
|
||
/** | ||
**/ | ||
public AuthenticationType properties(Map<String, Object> properties) { | ||
|
||
this.properties = properties; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(example = "{\"username\":\"auth_username\",\"password\":\"auth_password\"}", required = true, value = "") | ||
@JsonProperty("properties") | ||
@Valid | ||
@NotNull(message = "Property properties cannot be null.") | ||
|
||
public Map<String, Object> getProperties() { | ||
return properties; | ||
} | ||
public void setProperties(Map<String, Object> properties) { | ||
this.properties = properties; | ||
} | ||
|
||
|
||
public AuthenticationType putPropertiesItem(String key, Object propertiesItem) { | ||
this.properties.put(key, propertiesItem); | ||
return this; | ||
} | ||
|
||
|
||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
|
||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
AuthenticationType authenticationType = (AuthenticationType) o; | ||
return Objects.equals(this.type, authenticationType.type) && | ||
Objects.equals(this.properties, authenticationType.properties); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(type, properties); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
|
||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class AuthenticationType {\n"); | ||
|
||
sb.append(" type: ").append(toIndentedString(type)).append("\n"); | ||
sb.append(" properties: ").append(toIndentedString(properties)).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
|
||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n"); | ||
} | ||
} |
114 changes: 114 additions & 0 deletions
114
...c/test/java/org/wso2/identity/integration/test/rest/api/server/idp/v1/model/Endpoint.java
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,114 @@ | ||
/* | ||
* Copyright (c) 2024, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.wso2.identity.integration.test.rest.api.server.idp.v1.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
import javax.validation.Valid; | ||
import javax.validation.constraints.Pattern; | ||
import java.util.Objects; | ||
|
||
public class Endpoint { | ||
|
||
private String uri; | ||
private AuthenticationType authentication; | ||
|
||
/** | ||
**/ | ||
public Endpoint uri(String uri) { | ||
|
||
this.uri = uri; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(example = "https://abc.com/token", value = "") | ||
@JsonProperty("uri") | ||
@Valid | ||
@Pattern(regexp="^https?://.+") | ||
public String getUri() { | ||
return uri; | ||
} | ||
public void setUri(String uri) { | ||
this.uri = uri; | ||
} | ||
|
||
/** | ||
**/ | ||
public Endpoint authentication(AuthenticationType authentication) { | ||
|
||
this.authentication = authentication; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(value = "") | ||
@JsonProperty("authentication") | ||
@Valid | ||
public AuthenticationType getAuthentication() { | ||
return authentication; | ||
} | ||
public void setAuthentication(AuthenticationType authentication) { | ||
this.authentication = authentication; | ||
} | ||
|
||
|
||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
|
||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
Endpoint endpoint = (Endpoint) o; | ||
return Objects.equals(this.uri, endpoint.uri) && | ||
Objects.equals(this.authentication, endpoint.authentication); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(uri, authentication); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
|
||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class Endpoint {\n"); | ||
|
||
sb.append(" uri: ").append(toIndentedString(uri)).append("\n"); | ||
sb.append(" authentication: ").append(toIndentedString(authentication)).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
|
||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n"); | ||
} | ||
} |
Oops, something went wrong.
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.
Ideally IdP details should be verified. Can we verify this for user defined authenticator at least