|
|
@ -18,35 +18,40 @@
|
|
|
|
package org.wso2.carbon.apimgt.webapp.publisher;
|
|
|
|
package org.wso2.carbon.apimgt.webapp.publisher;
|
|
|
|
|
|
|
|
|
|
|
|
import org.testng.Assert;
|
|
|
|
import org.testng.Assert;
|
|
|
|
import org.testng.annotations.AfterClass;
|
|
|
|
|
|
|
|
import org.testng.annotations.BeforeTest;
|
|
|
|
import org.testng.annotations.BeforeTest;
|
|
|
|
import org.testng.annotations.Test;
|
|
|
|
import org.testng.annotations.Test;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.config.APIResource;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.config.APIResource;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.config.APIResourceConfiguration;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.config.APIResourceConfiguration;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.config.WebappPublisherConfig;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.config.WebappPublisherConfig;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.dto.ApiScope;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.dto.ApiScope;
|
|
|
|
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.dto.ApiUriTemplate;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.exception.APIManagerPublisherException;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.exception.APIManagerPublisherException;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.utils.MockServletContext;
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.utils.MockServletContext;
|
|
|
|
|
|
|
|
import org.wso2.carbon.apimgt.webapp.publisher.utils.TestUtils;
|
|
|
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
|
|
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
|
|
|
import org.wso2.carbon.registry.core.exceptions.RegistryException;
|
|
|
|
import org.wso2.carbon.registry.core.exceptions.RegistryException;
|
|
|
|
import org.wso2.carbon.registry.core.jdbc.realm.InMemoryRealmService;
|
|
|
|
import org.wso2.carbon.registry.core.jdbc.realm.InMemoryRealmService;
|
|
|
|
import org.wso2.carbon.user.api.RealmConfiguration;
|
|
|
|
import org.wso2.carbon.user.api.RealmConfiguration;
|
|
|
|
import org.wso2.carbon.user.api.UserRealm;
|
|
|
|
import org.wso2.carbon.user.api.UserRealm;
|
|
|
|
import org.wso2.carbon.user.api.UserStoreException;
|
|
|
|
import org.wso2.carbon.user.api.UserStoreException;
|
|
|
|
import org.wso2.carbon.utils.multitenancy.MultitenantConstants;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.servlet.ServletContext;
|
|
|
|
import javax.servlet.ServletContext;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
|
|
|
|
import static org.wso2.carbon.apimgt.webapp.publisher.APIPublisherUtil.buildApiConfig;
|
|
|
|
import static org.wso2.carbon.apimgt.webapp.publisher.APIPublisherUtil.buildApiConfig;
|
|
|
|
|
|
|
|
import static org.wso2.carbon.apimgt.webapp.publisher.APIPublisherUtil.getApiEndpointUrl;
|
|
|
|
|
|
|
|
import static org.wso2.carbon.apimgt.webapp.publisher.APIPublisherUtil.setResourceAuthTypes;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* This is the test class for {@link APIPublisherUtil}
|
|
|
|
* This is the test class for {@link APIPublisherUtil}
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static final String AUTH_TYPE_NON_SECURED = "None";
|
|
|
|
|
|
|
|
|
|
|
|
@BeforeTest
|
|
|
|
@BeforeTest
|
|
|
|
public void initialConfigs() throws WebappPublisherConfigurationFailedException,
|
|
|
|
public void initialConfigs() throws WebappPublisherConfigurationFailedException,
|
|
|
|
org.wso2.carbon.user.core.UserStoreException, RegistryException {
|
|
|
|
org.wso2.carbon.user.core.UserStoreException, RegistryException {
|
|
|
@ -55,7 +60,7 @@ public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test(description = "test buildAPIConfig method and ensures an APIConfig is created")
|
|
|
|
@Test(description = "test buildAPIConfig method and ensures an APIConfig is created")
|
|
|
|
private void buildApiConfigTest() throws UserStoreException, RegistryException {
|
|
|
|
public void buildApiConfigTest() throws UserStoreException, RegistryException {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
startTenantFlowAsTestTenant();
|
|
|
|
startTenantFlowAsTestTenant();
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
@ -71,7 +76,7 @@ public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
|
|
|
|
|
|
|
|
@Test(description = "test buildAPIConfig method as SuperTenant and ensures" +
|
|
|
|
@Test(description = "test buildAPIConfig method as SuperTenant and ensures" +
|
|
|
|
" an APIConfig is created")
|
|
|
|
" an APIConfig is created")
|
|
|
|
private void buildApiConfigAsSuperTenat() throws UserStoreException {
|
|
|
|
public void buildApiConfigAsSuperTenant() throws UserStoreException {
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
@ -82,7 +87,7 @@ public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
|
|
|
|
|
|
|
|
@Test(description = "test buildAPIConfig with API tags specified and ensures " +
|
|
|
|
@Test(description = "test buildAPIConfig with API tags specified and ensures " +
|
|
|
|
"an APIConfig is created")
|
|
|
|
"an APIConfig is created")
|
|
|
|
private void buildApiConfigTestWithTags() throws UserStoreException {
|
|
|
|
public void buildApiConfigTestWithTags() throws UserStoreException {
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
@ -96,7 +101,7 @@ public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
|
|
|
|
|
|
|
|
@Test(description = "test buildAPIConfig method with API scopes specified and " +
|
|
|
|
@Test(description = "test buildAPIConfig method with API scopes specified and " +
|
|
|
|
"ensures an APIConfig is created")
|
|
|
|
"ensures an APIConfig is created")
|
|
|
|
private void buildApiConfigTestWithScope() throws UserStoreException, APIManagerPublisherException {
|
|
|
|
public void buildApiConfigTestWithScope() throws UserStoreException, APIManagerPublisherException {
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
@ -111,6 +116,38 @@ public class APIPublisherUtilTest extends BaseAPIPublisherTest {
|
|
|
|
Assert.assertNotNull(apiConfig, "API configuration is null.");
|
|
|
|
Assert.assertNotNull(apiConfig, "API configuration is null.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(description = "test method for setResourceAuthTypes")
|
|
|
|
|
|
|
|
public void testSetResourceAuthTypes() throws UserStoreException {
|
|
|
|
|
|
|
|
ServletContext servletContext = new MockServletContext();
|
|
|
|
|
|
|
|
APIResourceConfiguration apiDef = new APIResourceConfiguration();
|
|
|
|
|
|
|
|
List<APIResource> resources = new ArrayList<>();
|
|
|
|
|
|
|
|
apiDef.setResources(resources);
|
|
|
|
|
|
|
|
APIConfig apiConfig = buildApiConfig(servletContext, apiDef);
|
|
|
|
|
|
|
|
apiConfig.setContext("/*");
|
|
|
|
|
|
|
|
TestUtils util = new TestUtils();
|
|
|
|
|
|
|
|
util.setAPIURITemplates(apiConfig, "/*");
|
|
|
|
|
|
|
|
Assert.assertNotNull(apiConfig, "API configuration is null.");
|
|
|
|
|
|
|
|
setResourceAuthTypes(servletContext, apiConfig);
|
|
|
|
|
|
|
|
Set<ApiUriTemplate> templates = apiConfig.getUriTemplates();
|
|
|
|
|
|
|
|
Assert.assertEquals(templates.iterator().next().getAuthType(), AUTH_TYPE_NON_SECURED, "Resource " +
|
|
|
|
|
|
|
|
"auth type is not properly set");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(description = "test the method getApiEndpointUrl")
|
|
|
|
|
|
|
|
public void testGetApiEndpointUrl() {
|
|
|
|
|
|
|
|
String context = "/reboot";
|
|
|
|
|
|
|
|
String url = getApiEndpointUrl(context);
|
|
|
|
|
|
|
|
Assert.assertEquals(url, "https://localhost:9445/reboot", "Expected url " +
|
|
|
|
|
|
|
|
"is not same as actual url");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test(expectedExceptions = WebappPublisherConfigurationFailedException.class, description =
|
|
|
|
|
|
|
|
"this tests the method convertToDocument with a undefined file name and ensures an " +
|
|
|
|
|
|
|
|
"exception occurs ")
|
|
|
|
|
|
|
|
public void testConvertToDocumentForException() throws WebappPublisherConfigurationFailedException {
|
|
|
|
|
|
|
|
WebappPublisherUtil.convertToDocument(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void setUserRealm() throws RegistryException, org.wso2.carbon.user.core.UserStoreException {
|
|
|
|
private void setUserRealm() throws RegistryException, org.wso2.carbon.user.core.UserStoreException {
|
|
|
|
RealmConfiguration configuration = new RealmConfiguration();
|
|
|
|
RealmConfiguration configuration = new RealmConfiguration();
|
|
|
|
UserRealm userRealm = new InMemoryRealmService().getUserRealm(configuration);
|
|
|
|
UserRealm userRealm = new InMemoryRealmService().getUserRealm(configuration);
|
|
|
|