Skip to content
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 DCR integration tests #18491

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c7cb2e3
add test case for persisting newly added DCR attributes
SachiniSiriwardene Oct 11, 2023
685d9ad
change test case priority
SachiniSiriwardene Oct 11, 2023
ddae1d9
Merge branch 'master' of https://github.com/wso2/product-is
SachiniSiriwardene Oct 11, 2023
eba231d
Merge branch 'master' of https://github.com/wso2/product-is
SachiniSiriwardene Oct 12, 2023
ea7c445
refactor tests
SachiniSiriwardene Oct 13, 2023
ca0088c
refactor tests
SachiniSiriwardene Oct 14, 2023
eb36ea4
add update test case
SachiniSiriwardene Oct 15, 2023
a4dba8f
refactored code
SachiniSiriwardene Oct 16, 2023
4e95b8d
Merge branch 'master' of https://github.com/wso2/product-is into mast…
SachiniSiriwardene Dec 7, 2023
63497ce
add fapi validations for dcr tests
SachiniSiriwardene Oct 19, 2023
dffd497
add eof lines
SachiniSiriwardene Oct 19, 2023
1ebcbb0
refactor code
SachiniSiriwardene Oct 19, 2023
61dfc21
add fapi dcr validation tests to a separate class
SachiniSiriwardene Oct 21, 2023
cc18af5
add config changes
SachiniSiriwardene Oct 23, 2023
4b54440
address pr comments
SachiniSiriwardene Oct 31, 2023
9e06af6
update dcr tests
SachiniSiriwardene Oct 31, 2023
cfcb0d5
update dcr tests
SachiniSiriwardene Nov 1, 2023
9eb55f3
address pr comments
SachiniSiriwardene Nov 2, 2023
6bc1d76
change error message
SachiniSiriwardene Nov 2, 2023
eedca72
change application name to be common
SachiniSiriwardene Nov 3, 2023
faf21c9
fix test failures
SachiniSiriwardene Nov 5, 2023
cd98f8d
change application name for error scenarios
SachiniSiriwardene Nov 19, 2023
527e1e4
send tls_client_certificate_bound_access_tokens in dcr requests
SachiniSiriwardene Dec 8, 2023
4f48eed
Merge branch 'master' of https://github.com/wso2/product-is into mast…
SachiniSiriwardene Dec 22, 2023
e1567be
address pr comments
SachiniSiriwardene Jan 1, 2024
facd12a
Merge branch 'master' of https://github.com/wso2/product-is into mast…
SachiniSiriwardene Jan 1, 2024
d0f6e26
address pr comments
SachiniSiriwardene Jan 1, 2024
8eab0d7
change year in license header
SachiniSiriwardene Mar 20, 2024
1d55269
Merge branch 'master' of https://github.com/wso2/product-is into mast…
SachiniSiriwardene Mar 20, 2024
4be99dc
change year in license header
SachiniSiriwardene Mar 20, 2024
fe0b64d
fix failing tests
SachiniSiriwardene Apr 2, 2024
7b214e1
Merge branch 'master' of https://github.com/wso2/product-is into mast…
SachiniSiriwardene Apr 3, 2024
a7bf6d8
Merge branch 'master' of https://github.com/wso2/product-is into mast…
SachiniSiriwardene Apr 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/integration/tests-integration/tests-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@
<name>usedefaultlisteners</name>
<value>false</value>
</property>
<property>
<name>registration.requests.location</name>
<value>
${basedir}/src/test/resources/registration-requests/
</value>
</property>
<sec.verifier.dir>${basedir}/target/security-verifier/</sec.verifier.dir>
<emma.home>${basedir}/target/emma</emma.home>
<instr.file>${basedir}/src/test/resources/instrumentation.txt</instr.file>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
/*
* Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com) All Rights Reserved.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please check the license header, I think latest one should be

/**
 * Copyright (c) 2022, WSO2 LLC. (https://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.
 */

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mail: License Header for WSO2 code

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

*
* 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.oauth2.dcrm.api;

import org.apache.http.HttpHeaders;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.HttpClients;
import org.json.simple.JSONObject;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Factory;
import org.testng.annotations.Test;
import org.wso2.carbon.automation.engine.context.AutomationContext;
import org.wso2.carbon.automation.engine.context.TestUserMode;
import org.wso2.carbon.integration.common.utils.mgt.ServerConfigurationManager;
import org.wso2.identity.integration.common.utils.ISIntegrationTest;
import org.wso2.identity.integration.test.oauth2.dcrm.api.util.DCRUtils;
import org.wso2.identity.integration.test.oauth2.dcrm.api.util.OAuthDCRMConstants;
import org.wso2.identity.integration.test.util.Utils;

import java.io.File;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;

/**
* FAPI validation test case for the DCR flow
*/
public class FAPIDCRValidationsTestCase extends ISIntegrationTest {

private HttpClient client;
private String client_id;
private String username;
private String password;
private String tenant;
private ServerConfigurationManager serverConfigurationManager;

@Factory(dataProvider = "dcrmConfigProvider")
public FAPIDCRValidationsTestCase(TestUserMode userMode) throws Exception {

AutomationContext context = new AutomationContext("IDENTITY", userMode);
this.username = context.getContextTenant().getTenantAdmin().getUserName();
this.password = context.getContextTenant().getTenantAdmin().getPassword();
this.tenant = context.getContextTenant().getDomain();

}

@DataProvider(name = "dcrmConfigProvider")
public static Object[][] dcrmConfigProvider() {

return new Object[][]{{TestUserMode.SUPER_TENANT_ADMIN}, {TestUserMode.TENANT_ADMIN}};
}

@BeforeClass(alwaysRun = true)
public void testInit() throws Exception {

super.init();
client = HttpClients.createDefault();
changeISConfiguration();
}

@DataProvider(name = "dcrConfigProvider")
private static Object[][] dcrConfigProvider() throws Exception {

String INVALID_CLIENT_METADATA = "invalid_client_metadata";
String INVALID_SOFTWARE_STATEMENT = "invalid_software_statement";
return new Object[][]{
{
DCRUtils.getRegisterRequestJSON("request1.json"), INVALID_CLIENT_METADATA,
"Invalid token endpoint authentication method requested."
},
{
DCRUtils.getRegisterRequestJSON("request2.json"), INVALID_CLIENT_METADATA,
"Invalid signature algorithm requested"
},
{
DCRUtils.getRegisterRequestJSON("request3.json"), INVALID_CLIENT_METADATA,
"Invalid encryption algorithm requested"
},
{
DCRUtils.getRegisterRequestJSON("request4.json"), INVALID_CLIENT_METADATA,
"Sector identifier URI is needed for PPID calculation"
},
{
DCRUtils.getRegisterRequestJSON("request5.json"), INVALID_CLIENT_METADATA,
"Redirect URI missing in sector identifier URI set"
},
{
DCRUtils.getRegisterRequestJSON("request8.json"), INVALID_SOFTWARE_STATEMENT,
"Signature validation failed for the software statement"
}
};
}

private void changeISConfiguration() throws Exception {

log.info("Adding entity id of SSOService to deployment.toml file");
String carbonHome = Utils.getResidentCarbonHome();
File defaultConfigFile = getDeploymentTomlFile(carbonHome);
File configuredIdentityXML = new File(getISResourceLocation() + File.separator + "oauth"
+ File.separator + "dcr-fapi-validation-enabled.toml");
serverConfigurationManager = new ServerConfigurationManager(isServer);
serverConfigurationManager.applyConfigurationWithoutRestart(configuredIdentityXML,
defaultConfigFile, true);
serverConfigurationManager.restartGracefully();
}

@Test(alwaysRun = true, groups = "wso2.is", priority = 1,
description = "Check FAPI validations, PPID and SSA during DCR", dataProvider = "dcrConfigProvider")
public void validateErrorScenarios(JSONObject requestJSON, String errorCode, String errorMessage) throws Exception {

HttpPost request = new HttpPost(DCRUtils.getPath(tenant));
request.addHeader(HttpHeaders.AUTHORIZATION, DCRUtils.getAuthzHeader(username, password));
request.addHeader(HttpHeaders.CONTENT_TYPE, OAuthDCRMConstants.CONTENT_TYPE);
StringEntity entity = new StringEntity(requestJSON.toJSONString());
request.setEntity(entity);
HttpResponse response = client.execute(request);

assertEquals(response.getStatusLine().getStatusCode(), 400, "Service Provider " +
"should not be created successfully");
JSONObject errorResponse = DCRUtils.getPayload(response);
assertEquals(errorResponse.get("error"), errorCode);
assertEquals(errorResponse.get("error_description"), errorMessage);
}

@Test(alwaysRun = true, groups = "wso2.is", priority = 2,
description = "Check FAPI validations, PPID and SSA during DCR", dataProvider = "dcrConfigProvider")
public void validateErrorScenariosForDCRUpdate(JSONObject requestJSON, String errorCode, String errorMessage)
throws Exception {

// Create application.
HttpPost request = new HttpPost(DCRUtils.getPath(tenant));
JSONObject registerRequestJSON = DCRUtils.getRegisterRequestJSON("request6.json");
// Removing sending sector identifier uri to validate error message during update request.
if (errorMessage.equals("Sector identifier URI is needed for PPID calculation")) {
registerRequestJSON.remove("sector_identifier_uri");
}
request.addHeader(HttpHeaders.AUTHORIZATION, DCRUtils.getAuthzHeader(username, password));
request.addHeader(HttpHeaders.CONTENT_TYPE, OAuthDCRMConstants.CONTENT_TYPE);
StringEntity entity = new StringEntity(registerRequestJSON.toJSONString());
request.setEntity(entity);

HttpResponse response = client.execute(request);
assertEquals(response.getStatusLine().getStatusCode(), 201, "Service Provider " +
"created successfully");
JSONObject createResponsePayload = DCRUtils.getPayload(response);
client_id = ((JSONObject) createResponsePayload).get("client_id").toString();
assertNotNull(client_id, "client_id cannot be null");

// Check error scenarios for update request.
HttpPut updateRequest = new HttpPut(DCRUtils.getPath(tenant) + client_id);
updateRequest.addHeader(HttpHeaders.AUTHORIZATION, DCRUtils.getAuthzHeader(username, password));
updateRequest.addHeader(HttpHeaders.CONTENT_TYPE, OAuthDCRMConstants.CONTENT_TYPE);
entity = new StringEntity(requestJSON.toJSONString());
updateRequest.setEntity(entity);

HttpResponse updateResponse = client.execute(updateRequest);
assertEquals(updateResponse.getStatusLine().getStatusCode(), 400, "Service Provider should " +
"not be created successfully");
JSONObject errorResponse = DCRUtils.getPayload(updateResponse);
assertEquals(errorResponse.get("error"), errorCode);
assertEquals(errorResponse.get("error_description"), errorMessage);

// Delete application.
HttpDelete deleteRequest = new HttpDelete(DCRUtils.getPath(tenant) + client_id);
deleteRequest.addHeader(HttpHeaders.AUTHORIZATION, DCRUtils.getAuthzHeader(username, password));
HttpResponse deleteResponse = client.execute(deleteRequest);
assertEquals(deleteResponse.getStatusLine().getStatusCode(), 204, "Service provider " +
"deletion failed");
}
}
Loading